forked from uploadcare/social-l10n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.js
110 lines (109 loc) · 2.38 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
l10n.translations.en = {
logout: 'Log out',
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',
flickr: 'Flickr'
},
login: {
title: 'Upload a file from %source',
lineA: {
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 or your friend\'s photos.',
flickr: 'Get your or your friend\'s photos.',
facebook: 'Get images from your or your friend\'s albums.',
vk: 'Get photos and docs from your account.'
},
lineB: 'We play nice. You just need to login.',
button: 'Connect to %source',
note: 'We will open a new page to connect your %source account.'
},
pagination: {
loading: 'Loading more items...',
loadMore: 'Load more',
failed: {
a: 'Loading failed.',
b: 'Try again'
}
},
instagram: {
menu: {
myPhotos: 'My Photos',
myLikes: 'My Likes',
myFollowings: 'My Followings',
search: 'Search'
},
search: {
placeholder: 'Search photos by hashtags',
button: 'Search'
}
},
gdrive: {
menu: {
myFiles: 'My Files',
starred: 'Starred'
}
},
facebook: {
menu: {
myAlbums: 'My Albums',
myFriends: 'My Friends'
}
},
vk: {
menu: {
myAlbums: 'My Albums',
page: 'Profile Pictures',
withMe: 'Photos with Me',
saved: 'Saved Photos',
myFriends: 'My Friends',
docs: 'My Documents'
}
},
evernote: {
menu: {
notebooks: 'Notebooks',
tags: 'Tags',
search: 'Search'
},
search: {
placeholder: 'Search files in notes',
button: 'Search'
}
},
flickr: {
menu: {
myPhotostream: 'Photostream',
myAlbums: 'Albums',
myFavorites: 'Favorites',
follows: 'Followings'
}
},
files: { // pluralization example
one: '1 file',
other: '%n files'
},
list: {
table: {
title: 'Title',
size: 'Size'
}
}
};
l10n.pluralize.en = function (n) {
return n === 1 ? 'one' : 'other';
};