-
Notifications
You must be signed in to change notification settings - Fork 10
/
en.js
193 lines (191 loc) · 4.18 KB
/
en.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
l10n.translations.en = {
logout: "Log out",
disconnect: "Disconnect from %source",
error: {
a: "Something went wrong. Please",
b: "reload",
c: "Here some technical details:",
},
sourceName: {
gdrive: "Google Drive",
dropbox: "Dropbox",
facebook: "Facebook",
instagram: "Instagram",
vk: "VK",
box: "Box",
evernote: "Evernote",
skydrive: "OneDrive",
onedrive: "OneDrive",
flickr: "Flickr",
huddle: "Huddle",
gphotos: "Google Photos",
nft: "NFT",
},
login: {
title: "Upload a file from %source",
lineA: {
onedrive: "Get files from your OneDrive account.",
gdrive: "Get files from your Google account.",
dropbox: "Get files from your Dropbox account.",
box: "Get files from your Box account.",
evernote: "Get files from your Evernote account.",
instagram: "Get your photos.",
flickr: "Get your or your friend's photos.",
facebook: "Get images from your albums.",
vk: "Get photos and docs from your account.",
gphotos: "Get photos from your Google Photos account.",
nft: "Get files from your NFT assets.",
},
lineB: "We play nice. You just need to login.",
button: "Connect to %source",
facebookButton: "Continue with Facebook",
note: "We will open a new page to connect your %source account.",
cookieWarning:
"You have blocked third-party cookies in your browser. " +
"Authorization requires third-party cookies at least for " +
"<code>social.uploadcare.com</code> domain.",
cookieRetry: "I've unblocked cookies and want to try again.",
},
pagination: {
loading: "Loading more items...",
loadMore: "Load more",
failed: {
a: "Loading failed.",
b: "Try again",
},
},
dropbox: {
menu: {
myFiles: "Files",
team: "Team files",
search: "Search files",
},
search: {
placeholder: "Search files",
button: "Search files",
},
},
instagram: {
menu: {
myPhotos: "My Photos",
},
},
onedrive: {
menu: {
myFiles: "My files",
shared: "Shared with me",
sharepoint: "SharePoint",
myDrives: "My drives",
groups: "My groups",
},
},
gdrive: {
menu: {
myFiles: "My Files",
shared: "Shared with me",
starred: "Starred",
search: "Search",
teamDrives: "Team drives",
},
search: {
placeholder: "Search files",
button: "Search",
},
},
facebook: {
menu: {
myAlbums: "My Albums",
likedPages: "Pages",
},
},
vk: {
menu: {
myAlbums: "My Albums",
page: "Profile Pictures",
withMe: "Photos with Me",
saved: "Saved Photos",
myFriends: "My Friends",
docs: "My Documents",
},
},
evernote: {
menu: {
allNotes: "All Notes",
notebooks: "Notebooks",
tags: "Tags",
search: "Search",
},
search: {
placeholder: "Search notes",
button: "Search",
},
},
flickr: {
menu: {
myPhotostream: "Photostream",
myAlbums: "Albums",
myFavorites: "Favorites",
follows: "Followings",
},
},
gphotos: {
menu: {
myAlbums: "Albums",
myPhotos: "Photos",
},
},
huddle: {
menu: {
workspaces: "Workspaces",
},
},
nft: {
menu: {
myAssets: "My Assets",
owner: "Owner address",
},
assets: {
button: "Show",
},
},
search: {
empty: "Folder is empty",
noResult: "No results for",
retry: "Please enter the search query",
placeholder: "Search",
clear: "Clear",
},
// pluralization example
files: {
one: "%n file",
other: "%n files",
},
list: {
table: {
title: "Title",
size: "Size",
},
},
};
// Pluralization rules taken from:
// https://unicode.org/cldr/charts/34/supplemental/language_plural_rules.html
l10n.pluralize.en = function (n) {
return n === 1 ? "one" : "other";
};
l10n.date.en = function (d) {
var months = [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
];
return "" + d.getDate() + " " + months[d.getMonth()] + " " + d.getFullYear();
};