display barcode misfires
[xtuple] / lib / enyo-x / source / en / strings.js
1 /*jshint node:true, indent:2, curly:false, eqeqeq:true, immed:true,
2 latedef:true, newcap:true, noarg:true, regexp:true, undef:true,
3 strict:true, trailing:true, white:true */
4 /*global XT:true */
5
6 // Place strings you want to localize here.  In your app, use the key and
7 // localize it using "key string".loc().  HINT: For your key names, use the
8 // english string with an underscore in front.  This way you can still see
9 // how your UI will look and you'll notice right away when something needs a
10 // localized string added to this file!
11
12 (function () {
13   "use strict";
14
15   var lang = XT.stringsFor("en_US", {
16     "_about": "About",
17     "_accountParent": "Account Parent",
18     "_actions": "Actions",
19     "_advancedSearch": "Advanced Search",
20     "_addChart": "Add Chart",
21     "_always": "Always",
22     "_any": "Any",
23     "_apply": "Apply",
24     "_attr": "Attr",
25     "_back": "Back",
26     "_cancel": "Cancel",
27     "_changePassword": "Change Password",
28     "_child": "Child",
29     "_childOf": "Child of",
30     "_chooseOne": "Choose One",
31     "_city": "City",
32     "_column": "Column",
33     "_changeLayout": "Change Layout",
34     "_comments": "Comments",
35     "_characteristics": "Characteristics",
36     "_country": "Country",
37     "_currentLayout": "Current Layout",
38     "_dashboard": "Dashboard",
39     "_delete": "Delete",
40     "_discard": "Discard",
41     "_documents": "Documents",
42     "_done": "Done",
43     "_download": "Download",
44     "_duplicate": "Duplicate",
45     "_duplicateOf": "Duplicate of",
46     "_edit": "Edit",
47     "_editAddress": "Edit Address",
48     "_expand": "Expand",
49     "_export": "Export",
50     "_field": "Field",
51     "_filter": "Filter",
52     "_filters": "Filters",
53     "_filterOn": "Filter On",
54     "_filterName": "Filter Name",
55     "_groupBy": "Group By",
56     "_help": "Help",
57     "_hide": "Hide",
58     "_history" : "History",
59     "_isShared": "Shared",
60     "_issueDate": "Issue Date",
61     "_issueSelected": "Issue All Selected",
62     "_issueSelectedStock": "Issue Quantity for Selected",
63     "_layout": "Layout",
64     "_layoutName": "Layout Name",
65     "_less": "Less Options",
66     "_loading": "Loading",
67     "_manage": "Manage",
68     "_manageFilters": "Manage Filters",
69     "_manageLayouts": "Manage Layouts",
70     "_map": "Map",
71     "_more": "More Options",
72     "_myAccount": "My Account",
73     "_new": "New",
74     "_never": "Never",
75     "_next": "Next",
76     "_no": "No",
77     "_none": "None",
78     "_ok": "Ok",
79     "_oldPassword": "Old Password",
80     "_open": "Open",
81     "_openNewTab": "New Tab",
82     "_overview": "Overview",
83     "_parameters": "Parameters",
84     "_parent": "Parent",
85     "_parentOf": "Parent of",
86     "_passwordMismatch": "Passwords don't match",
87     "_post": "Post",
88     "_postalCode": "Postal Code",
89     "_preferences": "Preferences",
90     "_previous": "Previous",
91     "_print": "Print",
92     "_printList": "Print List",
93     "_printSelect": "Print Selected",
94     "_processing": "Processing",
95     "_purpose": "Purpose",
96     "_refresh": "Refresh",
97     "_related": "Related",
98     "_relatedTo": "Related to",
99     "_report": "Report",
100     "_reportList": "Report List",
101     "_requireSufficientInventory": "Require Sufficient Inventory",
102     "_returnSelected": "Return All Selected",
103     "_removeChart": "Remove Chart",
104     "_row": "Row",
105     "_save": "Save",
106     "_saveAndNew": "Save and New",
107     "_saveLayout": "Save Layout",
108     "_saving": "Saving",
109     "_saveFilter": "Save Filter",
110     "_savedFilters": "Saved Filters",
111     "_search": "Search",
112     "_sort": "Sort",
113     "_sortBy": "Sort By...",
114     "_street": "Street",
115     "_state": "State",
116     "_then": "Then...",
117     "_yes": "Yes",
118
119     // ********
120     // Messages
121     // ********
122     "_confirmAction": "Are you sure this is what you want to do?",
123     "_changeAll": "Change All",
124     "_changeOne": "Change only this one",
125     "_confirmDelete": "This will permanently delete this record.",
126     "_editFilter?": "Do you want to edit this filter?",
127     "_filterExists": "A filter exists with this name.",
128     "_invalidPassword": "Entry does not match your old password. Please re-enter.",
129     "_insufficientCreatePrivileges": "You do not have sufficient privileges to create this record.",
130     "_insufficientViewPrivileges": "You do not have sufficient privileges to view this record.",
131     "_loadingApplicationData": "Loading Application Data",
132     "_loadingExtensions": "Loading Extensions",
133     "_loadingSchema": "Loading Schema",
134     "_loadingSessionData": "Loading Session Data",
135     "_lockInfo": "This record has been locked by {user} since {effective}.",
136     "_logoutConfirmation": "Are you sure you want to log out?",
137     "_openAdvancedWorkspace": "Open Advanced Workspace",
138     "_newPassword": "New Password",
139     "_noDescription": "No Description",
140     "_noDocumentFound": "No Document Found.",
141     "_noEligibleActions": "No Eligible Actions",
142     "_noItemFound": "No item found",
143     "_noOldPassword": "Please enter your old password",
144     "_unsavedChanges": "You have unsaved changes.",
145     "_saveYourWork?": "Do you want to save your work?"
146   });
147
148   if (typeof exports !== 'undefined') {
149     exports.language = lang;
150   }
151 }());