Merge branch '21601'
[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     "_any": "Any",
22     "_apply": "Apply",
23     "_attr": "Attr",
24     "_back": "Back",
25     "_cancel": "Cancel",
26     "_changePassword": "Change Password",
27     "_child": "Child",
28     "_childOf": "Child of",
29     "_chooseOne": "Choose One",
30     "_city": "City",
31     "_column": "Column",
32     "_changeLayout": "Change Layout",
33     "_comments": "Comments",
34     "_characteristics": "Characteristics",
35     "_country": "Country",
36     "_currentLayout": "Current Layout",
37     "_dashboard": "Dashboard",
38     "_delete": "Delete",
39     "_discard": "Discard",
40     "_documents": "Documents",
41     "_done": "Done",
42     "_duplicate": "Duplicate",
43     "_duplicateOf": "Duplicate of",
44     "_edit": "Edit",
45     "_editAddress": "Edit Address",
46     "_expand": "Expand",
47     "_export": "Export",
48     "_field": "Field",
49     "_filter": "Filter",
50     "_filters": "Filters",
51     "_filterOn": "Filter On",
52     "_filterName": "Filter Name",
53     "_groupBy": "Group By",
54     "_help": "Help",
55     "_hide": "Hide",
56     "_history" : "History",
57     "_isShared": "Shared",
58     "_issueDate": "Issue Date",
59     "_issueSelected": "Issue All Selected",
60     "_issueSelectedStock": "Issue Quantity for Selected",
61     "_layout": "Layout",
62     "_layoutName": "Layout Name",
63     "_less": "Less Options",
64     "_loading": "Loading",
65     "_manage": "Manage",
66     "_manageFilters": "Manage Filters",
67     "_manageLayouts": "Manage Layouts",
68     "_map": "Map",
69     "_more": "More Options",
70     "_myAccount": "My Account",
71     "_new": "New",
72     "_next": "Next",
73     "_no": "No",
74     "_none": "None",
75     "_ok": "Ok",
76     "_oldPassword": "Old Password",
77     "_open": "Open",
78     "_openNewTab": "New Tab",
79     "_overview": "Overview",
80     "_parameters": "Parameters",
81     "_parent": "Parent",
82     "_parentOf": "Parent of",
83     "_passwordMismatch": "Passwords don't match",
84     "_postalCode": "Postal Code",
85     "_preferences": "Preferences",
86     "_previous": "Previous",
87     "_print": "Print",
88     "_purpose": "Purpose",
89     "_refresh": "Refresh",
90     "_related": "Related",
91     "_relatedTo": "Related to",
92     "_requireSufficientInventory": "Require Sufficient Inventory",
93     "_returnSelected": "Return All Selected",
94     "_removeChart": "Remove Chart",
95     "_row": "Row",
96     "_save": "Save",
97     "_saveAndNew": "Save and New",
98     "_saveLayout": "Save Layout",
99     "_saving": "Saving",
100     "_saveFilter": "Save Filter",
101     "_savedFilters": "Saved Filters",
102     "_search": "Search",
103     "_sort": "Sort",
104     "_sortBy": "Sort By...",
105     "_street": "Street",
106     "_state": "State",
107     "_then": "Then...",
108     "_yes": "Yes",
109
110     // ********
111     // Messages
112     // ********
113     "_confirmAction": "Are you sure this is what you want to do?",
114     "_changeAll": "Change All",
115     "_changeOne": "Change only this one",
116     "_confirmDelete": "This will permanently delete this record.",
117     "_editFilter?": "Do you want to edit this filter?",
118     "_filterExists": "A filter exists with this name.",
119     "_invalidPassword": "Entry does not match your old password. Please re-enter.",
120     "_insufficientCreatePrivileges": "You do not have sufficient privileges to create this record.",
121     "_insufficientViewPrivileges": "You do not have sufficient privileges to view this record.",
122     "_loadingApplicationData": "Loading Application Data",
123     "_loadingExtensions": "Loading Extensions",
124     "_loadingSchema": "Loading Schema",
125     "_loadingSessionData": "Loading Session Data",
126     "_lockInfo": "This record has been locked by {user} since {effective}.",
127     "_logoutConfirmation": "Are you sure you want to log out?",
128     "_openAdvancedWorkspace": "Open Advanced Workspace",
129     "_newPassword": "New Password",
130     "_noDescription": "No Description",
131     "_noDocumentFound": "No Document Found.",
132     "_noOldPassword": "Please enter your old password",
133     "_unsavedChanges": "You have unsaved changes.",
134     "_saveYourWork?": "Do you want to save your work?"
135   });
136
137   if (typeof exports !== 'undefined') {
138     exports.language = lang;
139   }
140 }());