1<?php
2/**
3 * English language file for ghissues plugin
4 *
5 * @author Zach Smith <zsmith12@umd.edu>
6 */
7
8// custom language strings for the plugin
9$lang['reporter']      = "Reported by: %s on ";      // Message giving who reported the issue on GH
10$lang['badhttpstatus'] = "Server Error: Status %s";  // Message reporting server error on API response
11$lang['noIssues']      = "No Issues Found!";         // Message for when a repo has no issues under that filter
12$lang['issuesIn']      = " Issues in ";              // Part of header, for 'Open/Closed/All Issues in...'
13$lang['open']          = "Open";                     // Part of header, for 'Open Issues in...'
14$lang['closed']        = "Closed";                   // Part of header, for 'Closed Issues in...'
15$lang['all']           = "All";                      // Part of header, for 'All Issues in...'
16$lang['viewOnGH']      = "View this list on GitHub"; // Footer, holds link to GH's version of listing
17$lang['and']           = " and ";                    // And
18$lang['withLabel']     = " with label ";             // Part of header, for '...Issue with label ___"
19$lang['withLabels']    = " with labels ";            // plural form of above
20//Setup VIM: ex: et ts=4 :
21