├── scripts ├── home │ └── home.html ├── img │ ├── logo.png │ ├── vote.png │ ├── about.png │ ├── comment.png │ ├── follow.png │ ├── noimage.png │ ├── ollist.png │ ├── photo.png │ ├── reblog.png │ ├── ullist.png │ ├── steemicon.png │ ├── unfollow.png │ └── steemDeclined.png ├── fonts │ ├── ionicons.eot │ ├── ionicons.ttf │ ├── ionicons.woff │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── locales │ ├── README.md │ ├── zh.json │ ├── iw.json │ ├── ar.json │ ├── ro.json │ ├── ms.json │ ├── no.json │ ├── en.json │ ├── cn.json │ ├── it.json │ ├── jp.json │ ├── kr.json │ ├── tr.json │ └── vi.json ├── templates │ ├── reply.html │ ├── gallery_images.html │ ├── info.html │ ├── bookmarks.html │ ├── notifications.html │ ├── popover.html │ ├── search.html │ ├── send.html │ ├── story.html │ ├── login.html │ ├── follow.html │ ├── about.html │ ├── exchange.html │ ├── pincode.html │ ├── menu.html │ ├── settings.html │ ├── post.html │ └── posts.html ├── menu │ └── menu.js └── lib │ └── imgur.js ├── assets ├── icon.ico ├── icon.png └── icon.icns ├── .gitignore ├── LICENSE.md ├── main.js ├── README.md ├── index.html ├── package.json └── Gruntfile.js /scripts/home/home.html: -------------------------------------------------------------------------------- 1 | Button -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /scripts/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/logo.png -------------------------------------------------------------------------------- /scripts/img/vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/vote.png -------------------------------------------------------------------------------- /scripts/img/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/about.png -------------------------------------------------------------------------------- /scripts/img/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/comment.png -------------------------------------------------------------------------------- /scripts/img/follow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/follow.png -------------------------------------------------------------------------------- /scripts/img/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/noimage.png -------------------------------------------------------------------------------- /scripts/img/ollist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/ollist.png -------------------------------------------------------------------------------- /scripts/img/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/photo.png -------------------------------------------------------------------------------- /scripts/img/reblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/reblog.png -------------------------------------------------------------------------------- /scripts/img/ullist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/ullist.png -------------------------------------------------------------------------------- /scripts/img/steemicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/steemicon.png -------------------------------------------------------------------------------- /scripts/img/unfollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/unfollow.png -------------------------------------------------------------------------------- /scripts/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/fonts/ionicons.eot -------------------------------------------------------------------------------- /scripts/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/fonts/ionicons.ttf -------------------------------------------------------------------------------- /scripts/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/fonts/ionicons.woff -------------------------------------------------------------------------------- /scripts/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /scripts/img/steemDeclined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/img/steemDeclined.png -------------------------------------------------------------------------------- /scripts/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /scripts/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /scripts/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | build 4 | dist 5 | !scripts/lib/textAngular/dist 6 | typings 7 | .idea 8 | .DS_Store 9 | -------------------------------------------------------------------------------- /scripts/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecency/esteem-desktop/HEAD/scripts/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /scripts/locales/README.md: -------------------------------------------------------------------------------- 1 | # Translation Guide 2 | 3 | Please join here: https://poeditor.com/join/project/lvtH1j25hW 4 | 5 | If you want to review/update existing translation or help to finish specific translations, you can join and do that by signing up on POEditor, above is the link for translation team. 6 | 7 | You can also add/suggest new language translation, if you can contribute. 8 | 9 | # Need help? 10 | 11 | Contact: info@esteem.ws -------------------------------------------------------------------------------- /scripts/templates/reply.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

{{'REPLYTO'|translate}} @{{post.author}}

5 | 6 |
7 | 8 |
9 |
10 |
-------------------------------------------------------------------------------- /scripts/templates/gallery_images.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/templates/info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

{{'VOTERS_INFO'|translate}} ({{$root.voters.active_votes.length}})

4 | 5 |
6 | 7 |
8 |
9 | {{v.voter}}
{{v.reputation|reputation}}
10 |
11 |
12 | {{v.percent/100}}% 13 |
14 |
15 | 16 |
17 |
-------------------------------------------------------------------------------- /scripts/templates/bookmarks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

{{item.title}}

6 |
{{item.created|timeago}} {{'BY' | translate}} {{item.author}} 
{{item.author_reputation|reputation|number:0}}
7 | {{'REMOVE' | translate}} 8 | 9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /scripts/templates/notifications.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

{{item.title}}

7 | {{item.message}} 8 |
{{item.created|timeago}} {{'BY' | translate}} {{item.author}} 
9 | {{'REMOVE' | translate}} 10 | 11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 eSteem 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /scripts/templates/popover.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 33 | 34 | -------------------------------------------------------------------------------- /scripts/templates/search.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 |
15 | 16 |
17 |   18 |
19 | 20 | 33 | 34 |
-------------------------------------------------------------------------------- /scripts/templates/send.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | {{'TO'|translate}} 6 | 7 | 8 |
9 | 17 | 21 | 25 |

{{'AVAILABLE'|translate}}: {{balance.balance}}, {{balance.sbd_balance}}

26 |
27 |
30 |
31 |
32 |
{{$root.$storage.user.username}}
33 |
34 |
35 |
36 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | var app = require('electron').app; // Module to control application life. 2 | var BrowserWindow = require('electron').BrowserWindow; // Module to create native browser window. 3 | 4 | // Keep a global reference of the window object, if you don't, the window will 5 | // be closed automatically when the JavaScript object is garbage collected. 6 | var mainWindow = null; 7 | 8 | // Quit when all windows are closed. 9 | app.on('window-all-closed', function () { 10 | // On OS X it is common for applications and their menu bar 11 | // to stay active until the user quits explicitly with Cmd + Q 12 | if (process.platform !== 'darwin') { 13 | app.quit(); 14 | } 15 | }); 16 | 17 | // This method will be called when Electron has finished 18 | // initialization and is ready to create browser windows. 19 | app.on('ready', function () { 20 | // Create the browser window. 21 | 22 | 23 | mainWindow = new BrowserWindow({width: 1024, height: 768}); 24 | 25 | // and load the index.html of the app. 26 | mainWindow.loadURL('file://' + __dirname + '/index.html'); 27 | 28 | // Open the DevTools. 29 | 30 | // 31 | mainWindow.openDevTools(); 32 | // 33 | 34 | // Emitted when the window is closed. 35 | mainWindow.on('closed', function () { 36 | // Dereference the window object, usually you would store windows 37 | // in an array if your app supports multi windows, this is the time 38 | // when you should delete the corresponding element. 39 | mainWindow = null; 40 | }); 41 | 42 | // mainWindow is your instance of BrowserWindow 43 | var electron = require('electron'); 44 | var dialog = electron.dialog; 45 | exports.selectDirectory = function () { 46 | // dialog.showOpenDialog as before 47 | dialog.showOpenDialog(mainWindow, { 48 | properties: ['openFile'] 49 | }) 50 | }; 51 | function selectDirectory() { 52 | 53 | } 54 | }); -------------------------------------------------------------------------------- /scripts/templates/story.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

{{'SUBMIT_A_STORY'|translate}}

5 | 6 |
7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 |
16 |
17 | 22 |
23 |
24 | 25 | 26 |
27 |
28 | 30 |
31 | 32 |
33 |
-------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # eSteem Desktop 2 | 3 | eSteem is stand-alone application that works on cross platforms. You can specify websocket to connect and start using without worrying to send your credentials to any server. Or being censored, disconnected. 4 | 5 | You can also run Steem blockchain locally and connect through websocket specified in your configuration. 6 | 7 | eSteem keeps your private keys locally and only uses it to sign transaction and ONLY transaction hash is broadcasted to specified websocket. Your keys never leave app, make sure to keep your PC secure. 8 | 9 | Check out eSteem mobile versions as well, available on iOS and Android devices [eSteem mobile](http://esteem.ws). 10 | 11 | ## Only download and install versions provided on this [official github](https://github.com/feruzm/releases) 12 | 13 | ### For more info: 14 | 15 | http://www.esteem.ws 16 | 17 | info@esteem.ws 18 | 19 | https://steemit.com/@good-karma 20 | 21 | ## Requirements 22 | * NodeJS 23 | * npm 24 | * Platform Supported by Electron 25 | 26 | ## To Use 27 | 28 | To clone and run this repository you'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer. From your command line: 29 | 30 | ```bash 31 | # Clone this repository 32 | $ git clone https://github.com/jfmherokiller/esteem-desktop 33 | # Go into the repository 34 | $ cd esteem-desktop 35 | # Install dependencies and run the app 36 | $ npm install 37 | $ npm start 38 | ``` 39 | 40 | Learn more about Electron and its API in the [documentation](http://electron.atom.io/docs/latest). 41 | 42 | ## To build 43 | 44 | use `npm run buildApp` to package your Electron app using Electron Packager 45 | which will: 46 | 47 | - Clean any previous build 48 | - Prepare a minimal App in the `/build` folder (configurable in Gruntfile.js) 49 | - Find node_modules dependencies in your `index.html` and add them accordingly to the `build` folder 50 | - Install dependencies 51 | - Package the App using `ASAR` (configurable) 52 | - Create distribution package for all platforms (configurable) in the `dist` folder 53 | 54 | #### License [MIT](LICENSE.md) 55 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | eSteem 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eSteem", 3 | "version": "1.0.0", 4 | "description": "eSteem desktop", 5 | "main": "main.js", 6 | "scripts": { 7 | "start": "electron main.js", 8 | "installsteemrpc": "cd node_modules/steem-rpc && npm install", 9 | "installsteemjs": "cd node_modules/steemjs-lib && npm install", 10 | "install": "npm run installsteemrpc && npm run installsteemjs", 11 | "buildApp": "grunt build" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/feruz/esteem-desktop.git" 16 | }, 17 | "keywords": [ 18 | "eSteem", 19 | "AngularJS", 20 | "Electron", 21 | "Steem" 22 | ], 23 | "author": "Feruz M", 24 | "license": "MIT", 25 | "bugs": { 26 | "url": "https://github.com/feruzm/esteem-desktop/issues" 27 | }, 28 | "homepage": "http://www.esteem.ws", 29 | "devDependencies": { 30 | "angular": "^1.5.7", 31 | "angular-animate": "^1.5.7", 32 | "angular-aria": "^1.5.7", 33 | "angular-material": "^1.0.9", 34 | "angular-messages": "^1.6.6", 35 | "angular-route": "^1.5.7", 36 | "asar": "^0.11.0", 37 | "electron": "^1.8.1", 38 | "electron-packager": "^9.1.0", 39 | "grunt": "^1.0.1", 40 | "grunt-cli": "^1.2.0", 41 | "grunt-comment-toggler": "^0.2.2", 42 | "grunt-contrib-copy": "^1.0.0", 43 | "grunt-contrib-uglify": "^1.0.1", 44 | "grunt-search": "^0.1.8" 45 | }, 46 | "dependencies": { 47 | "angular-qr": "github:janantala/angular-qr#1134e40510ab773d45cc26a066ef6c787a96011a", 48 | "angular-sanitize": "^1.6.6", 49 | "angular-translate": "^2.13.1", 50 | "angular-ui-router": "^0.4.3", 51 | "angularjs-slider": "^6.4.0", 52 | "angularjs-toaster": "^1.1.0", 53 | "diff-match-patch": "^1.0.0", 54 | "form-data": "^2.1.2", 55 | "install": "^0.8.4", 56 | "ion-floating-menu": "github:pregiotek/ion-floating-menu#96bdf55d8d2ea288e31f445d4ced4bdabe565115", 57 | "ionic-sdk": "github:ionic-team/ionic-v1", 58 | "jquery": "^3.2.1", 59 | "markdowndeep": "^1.6.12", 60 | "marked": "^0.3.6", 61 | "ng-cordova": "^0.1.27-alpha", 62 | "ngstorage": "github:gsklee/ngStorage#253b718a0b35b044fba25c78b1b2020d672c4017", 63 | "request": "^2.79.0", 64 | "speakingurl": "^11.0.0", 65 | "steem-rpc": "github:feruzm/steem-rpc#c3c786e248d82c811d5439888b127000df31b004", 66 | "steemjs-lib": "github:feruzm/steemjs-lib#dd001122e7f4247c7bf6d45b6baf73277d6b8ee4", 67 | "textangular": "^1.5.16" 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /scripts/templates/login.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |
8 |
9 |

{{'WELCOME_BACK'|translate}}

10 |

{{'LOGIN_1'|translate}}

11 |
12 |
13 |
14 | 17 | 20 |
21 | 24 | 27 |

{{'LOGIN_2'|translate}}
28 | {{'LOGIN_3'|translate}}

29 |
30 | {{'ADVANCED'|translate}} 31 |

{{'LOGIN_4'|translate}}

32 |
33 |
34 |
35 |
36 | 37 |
38 |
39 |

{{'DONT_HAVE'|translate}} {{'SIGN_UP_NOW'|translate}}

40 |
41 |
42 |
43 | -------------------------------------------------------------------------------- /scripts/templates/follow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 8 |
9 |
10 | 14 |
15 |
16 |
17 | {{f.follower}} 18 | 21 | 24 |
25 |
26 |
27 |
28 | {{f.following}} 29 | 32 | 35 |
36 |
37 | 38 |
39 | 45 |
46 | -------------------------------------------------------------------------------- /scripts/templates/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

eSteem - {{'ABOUT_1'|translate}}

5 |

eSteem {{'ABOUT_2'|translate:'{ platformname: "Steem" }' }} good-karmagood-karma {{'ABOUT_3'|translate:'{ platformname: "Steem", sitename: "Steemit" }' }} 6 |
7 | {{'ABOUT_4'|translate}}
8 | {{'ABOUT_5'|translate}}
9 | {{'ABOUT_6'|translate}}
10 | {{'ABOUT_7'|translate}} 11 |

12 |
13 |

14 | {{'TRANSLATIONS'|translate}}
15 | Русский - testz, on0tole
16 | Deutsch - dez1337, homosapiens
17 | Français - pickoum
18 | Español - dresden, pgarcgo
19 | Ελληνικά - liondani, steemychicken1
20 | Български - rossenpavlov
21 | Nederlands - maxse
22 | Magyar - tibonova
23 | Čeština - valtr
24 | עברית‎ - bosrad
25 | Polski - knittybynature
26 | Português - alamyrjunior, charlie777pt
27 | Bahasa Indonesia - levycore, happyphoenix
28 | 繁體中文 - deanliu
29 | 34 |

35 |

36 | {{'ABOUT_9'|translate}} 37 |
info@esteem.ws 38 |

39 |

40 | {{'ABOUT_10'|translate}} 41 |
http://esteem.ws 42 |
https://steem.io 43 |
https://steemit.com 44 |

45 | 46 | 47 |
48 |
49 | -------------------------------------------------------------------------------- /scripts/menu/menu.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 'use strict'; 3 | 4 | // Module automatically included (only) in the Renderer process (Electron) 5 | //noinspection NodeRequireContents 6 | var Menu = require('electron').remote.Menu; 7 | 8 | var template = [ 9 | { 10 | label: 'eSteem', 11 | submenu: [ 12 | { 13 | label: 'Toggle Full Screen', 14 | accelerator: (function() { 15 | if (process.platform === 'darwin') 16 | return 'Ctrl+Command+F'; 17 | else 18 | return 'F11'; 19 | })(), 20 | click: function(item, focusedWindow) { 21 | if (focusedWindow) 22 | focusedWindow.setFullScreen(!focusedWindow.isFullScreen()); 23 | } 24 | }, 25 | { 26 | label: 'Reload', 27 | accelerator: 'CmdOrCtrl+R', 28 | click: function(item, focusedWindow) { 29 | if (focusedWindow) 30 | focusedWindow.reload(); 31 | } 32 | }, 33 | { 34 | label: 'Exit', 35 | accelerator: 'CmdOrCtrl+Q', 36 | role: 'close' 37 | } 38 | ] 39 | },{ 40 | label: "Edit", 41 | submenu: [ 42 | {label: "Undo", accelerator: "CmdOrCtrl+Z", selector: "undo:"}, 43 | {label: "Redo", accelerator: "Shift+CmdOrCtrl+Z", selector: "redo:"}, 44 | {type: "separator"}, 45 | {label: "Cut", accelerator: "CmdOrCtrl+X", selector: "cut:"}, 46 | {label: "Copy", accelerator: "CmdOrCtrl+C", selector: "copy:"}, 47 | {label: "Paste", accelerator: "CmdOrCtrl+V", selector: "paste:"}, 48 | {label: "Select All", accelerator: "CmdOrCtrl+A", selector: "selectAll:"} 49 | ] 50 | } 51 | /*, 52 | { 53 | label: 'Dev', 54 | submenu: [ 55 | { 56 | label: 'Reload', 57 | accelerator: 'CmdOrCtrl+R', 58 | click: function(item, focusedWindow) { 59 | if (focusedWindow) 60 | focusedWindow.reload(); 61 | } 62 | }, 63 | { 64 | label: 'Toggle Full Screen', 65 | accelerator: (function() { 66 | if (process.platform == 'darwin') 67 | return 'Ctrl+Command+F'; 68 | else 69 | return 'F11'; 70 | })(), 71 | click: function(item, focusedWindow) { 72 | if (focusedWindow) 73 | focusedWindow.setFullScreen(!focusedWindow.isFullScreen()); 74 | } 75 | }, 76 | { 77 | label: 'Toggle Developer Tools', 78 | accelerator: (function() { 79 | if (process.platform == 'darwin') 80 | return 'Alt+Command+I'; 81 | else 82 | return 'Ctrl+Shift+I'; 83 | })(), 84 | click: function(item, focusedWindow) { 85 | if (focusedWindow) 86 | focusedWindow.toggleDevTools(); 87 | } 88 | } 89 | ] 90 | }*/ 91 | ]; 92 | 93 | 94 | var menu = Menu.buildFromTemplate(template); 95 | Menu.setApplicationMenu(menu); 96 | 97 | })(); 98 | -------------------------------------------------------------------------------- /scripts/templates/exchange.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
{{'PRICE' | translate}}
6 |
{{'AMOUNT' | translate}}
7 |
{{'TOTAL' | translate}}
8 |
9 |
10 |
{{f.real_price|number:4}}
11 |
{{f.order_price.quote}}
12 |
{{f.order_price.base}}
13 |
14 |
15 |
16 |
17 |
{{'PRICE' | translate}}
18 |
{{'AMOUNT' | translate}}
19 |
{{'TOTAL' | translate}}
20 |
21 |
22 |
{{f.real_price|number:4}}
23 |
{{f.order_price.quote}}
24 |
{{f.order_price.base}}
25 |
26 |
27 |
28 |

29 | {{'NOORDERS' | translate}} @{{username}} 30 |

31 |
32 |
33 |
{{'PRICE' | translate}}
34 |
{{'AMOUNT' | translate}}
35 |
{{'TOTAL' | translate}}
36 |
37 |
38 |
{{f.real_price|number:4}}
39 |
{{f.sell_price.quote}}
40 |
{{f.sell_price.base}}
41 |
{{f.buy_price.quote}}
42 |
{{f.buy_price.base}}
43 |
44 |
45 |
46 |
47 | 48 |
49 |
50 |
{{'DATE' | translate}}
51 |
{{'PRICE' | translate}}
52 |
Steem
53 |
SD ($)
54 |
55 |
56 |
{{f.date|timeago}}
57 |
{{f.current_pays.split(" ")[0]/f.open_pays.split(" ")[0]|number:6}}
58 |
{{f.current_pays.split(" ")[0]|number:3}}
59 |
{{f.open_pays.split(" ")[0]|number:3}}
60 |
61 |
62 |
63 |
64 | 72 |
73 | -------------------------------------------------------------------------------- /scripts/templates/pincode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

{{$root.pinsubtitle}}

6 |

{{$root.pinerror}}

7 |
8 |
9 |
10 | {{passcode.substring(0, 1)}} 11 |
12 |
13 | {{passcode.substring(1, 2)}} 14 |
15 |
16 | {{passcode.substring(2, 3)}} 17 |
18 |
19 | {{passcode.substring(3, 4)}} 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 |
-------------------------------------------------------------------------------- /scripts/templates/menu.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 |
28 |
@{{$root.$storage.user.username}} 
{{$root.$storage.user.reputation|reputation:true|number:1}}
29 |
 {{$root.$storage.user.post_count}}   {{$root.$storage.user.voting_power/100|number:2}}
30 |
31 |
32 |
33 | 34 |
35 |
36 |

37 | 38 |

39 |
40 |
41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | {{'LOGIN'|translate}} 50 | 51 | 52 | 53 | {{'HOME'|translate}} 54 | 55 | 56 | 57 | {{'PROFILE'|translate}} 58 | 59 | 60 | 61 | {{'FOLLOW'|translate}} 62 | 63 | 64 | 65 | {{'BOOKMARKS'|translate}} 66 | 67 | 68 | 69 | {{'TRANSFER'|translate}} 70 | 71 | 72 | 73 | {{'MARKET'|translate}} 74 | 75 | 76 | 77 | {{'SETTINGS'|translate}} 78 | 79 | 80 | 81 | {{'ABOUT'|translate}} 82 | 83 | 84 | 85 | {{'LOGOUT'|translate}} 86 | 87 |
88 |
89 | 90 |
91 |
92 |

{{$root.$storage.appversion}}

93 |
94 |
95 |
96 |
97 | -------------------------------------------------------------------------------- /scripts/lib/imgur.js: -------------------------------------------------------------------------------- 1 | /*jslint browser: true, debug: true*/ 2 | /*global define, module, exports*/ 3 | (function (root, factory) { 4 | "use strict"; 5 | if (typeof define === 'function' && define.amd) { 6 | define([], factory); 7 | } else if (typeof exports === 'object') { 8 | module.exports = factory(); 9 | } else { 10 | root.Imgur = factory(); 11 | } 12 | }(this, function () { 13 | "use strict"; 14 | var Imgur = function (options) { 15 | if (!this || !(this instanceof Imgur)) { 16 | return new Imgur(options); 17 | } 18 | 19 | if (!options) { 20 | options = {}; 21 | } 22 | 23 | if (!options.clientid) { 24 | throw 'Provide a valid Client Id here: http://api.imgur.com/'; 25 | } 26 | 27 | this.clientid = options.clientid; 28 | this.endpoint = 'https://api.imgur.com/3/image'; 29 | this.callback = options.callback || undefined; 30 | this.dropzone = document.querySelectorAll('.dropzone'); 31 | 32 | this.run(); 33 | }; 34 | 35 | Imgur.prototype = { 36 | createEls: function (name, props, text) { 37 | var el = document.createElement(name), p; 38 | for (p in props) { 39 | if (props.hasOwnProperty(p)) { 40 | el[p] = props[p]; 41 | } 42 | } 43 | if (text) { 44 | el.appendChild(document.createTextNode(text)); 45 | } 46 | return el; 47 | }, 48 | insertAfter: function (referenceNode, newNode) { 49 | referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling); 50 | }, 51 | post: function (path, data, callback) { 52 | var xhttp = new XMLHttpRequest(); 53 | 54 | xhttp.open('POST', path, true); 55 | xhttp.setRequestHeader('Authorization', 'Client-ID ' + this.clientid); 56 | xhttp.onreadystatechange = function () { 57 | if (this.readyState === 4) { 58 | if (this.status >= 200 && this.status < 300) { 59 | var response = ''; 60 | try { 61 | response = JSON.parse(this.responseText); 62 | } catch (err) { 63 | response = this.responseText; 64 | } 65 | callback.call(window, response); 66 | } else { 67 | throw new Error(this.status + " - " + this.statusText); 68 | } 69 | } 70 | }; 71 | xhttp.send(data); 72 | xhttp = null; 73 | }, 74 | createDragZone: function () { 75 | var p, input; 76 | 77 | p = this.createEls('p', {}, 'Drag your files here or click in this area.'); 78 | input = this.createEls('input', {type: 'file', accept: 'image/*'}); 79 | 80 | Array.prototype.forEach.call(this.dropzone, function (zone) { 81 | zone.appendChild(p); 82 | zone.appendChild(input); 83 | this.status(zone); 84 | this.upload(zone); 85 | }.bind(this)); 86 | }, 87 | loading: function () { 88 | var div, img; 89 | 90 | div = this.createEls('div', {className: 'loading-modal'}); 91 | img = this.createEls('img', {className: 'loading-image', src: './svg/loading-spin.svg'}); 92 | 93 | div.appendChild(img); 94 | document.body.appendChild(div); 95 | }, 96 | status: function (el) { 97 | var div = this.createEls('div', {className: 'status'}); 98 | 99 | this.insertAfter(el, div); 100 | }, 101 | matchFiles: function (file, zone) { 102 | var status = zone.nextSibling; 103 | 104 | if (file.type.match(/image/) && file.type !== 'image/svg+xml') { 105 | document.body.classList.add('busy'); 106 | status.classList.remove('bg-success', 'bg-danger'); 107 | status.innerHTML = ''; 108 | 109 | var fd = new FormData(); 110 | fd.append('image', file); 111 | 112 | this.post(this.endpoint, fd, function (data) { 113 | document.body.classList.remove('busy'); 114 | typeof this.callback === 'function' && this.callback.call(this, data); 115 | }.bind(this)); 116 | } else { 117 | status.classList.remove('bg-success'); 118 | status.classList.add('bg-danger'); 119 | status.innerHTML = 'Invalid archive'; 120 | } 121 | }, 122 | upload: function (zone) { 123 | var events = ['dragenter', 'dragleave', 'dragover', 'drop'], 124 | file, target, i, len; 125 | 126 | zone.addEventListener('change', function (e) { 127 | if (e.target && e.target.nodeName === 'INPUT' && e.target.type === 'file') { 128 | target = e.target.files; 129 | 130 | for (i = 0, len = target.length; i < len; i += 1) { 131 | file = target[i]; 132 | this.matchFiles(file, zone); 133 | } 134 | } 135 | }.bind(this), false); 136 | 137 | events.map(function (event) { 138 | zone.addEventListener(event, function (e) { 139 | if (e.target && e.target.nodeName === 'INPUT' && e.target.type === 'file') { 140 | if (event === 'dragleave' || event === 'drop') { 141 | e.target.parentNode.classList.remove('dropzone-dragging'); 142 | } else { 143 | e.target.parentNode.classList.add('dropzone-dragging'); 144 | } 145 | } 146 | }, false); 147 | }); 148 | }, 149 | run: function () { 150 | var loadingModal = document.querySelector('.loading-modal'); 151 | 152 | if (!loadingModal) { 153 | this.loading(); 154 | } 155 | this.createDragZone(); 156 | } 157 | }; 158 | 159 | return Imgur; 160 | })); -------------------------------------------------------------------------------- /scripts/templates/settings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | {{'SECURITY'|translate}} 6 |
7 |
8 |
9 | {{'PIN_CODE'|translate}} 10 |
11 |
12 | 18 |
19 |
20 |
21 |
22 | {{'NOTIFICATIONS'|translate}} 23 |
24 |
25 |
26 | {{'VOTE'|translate}} 27 |
28 |
29 | 35 |
36 |
37 |
38 |
39 | {{'COMMENT'|translate}} 40 |
41 |
42 | 48 |
49 |
50 |
51 |
52 | {{'FOLLOW'|translate}} 53 |
54 |
55 | 61 |
62 |
63 |
64 |
65 | {{'MENTIONS'|translate}} 66 |
67 |
68 | 74 |
75 |
76 |
77 |
78 | {{'RESTEEM'|translate}} 79 |
80 |
81 | 87 |
88 |
89 |
90 |
91 | {{'CONFIGURATIONS'|translate}} 92 |
93 | 94 |
95 |
96 | {{'VOTING'|translate}} (%) 97 |
98 |
99 | 100 |
101 |
102 |
103 |
104 | {{'SERVER'|translate}} 105 |
106 |
107 | 108 |
109 |
110 | 111 |
112 |
113 | {{'LANGUAGES'|translate}} 114 |
115 |
116 | 119 | 120 |
121 |
122 | 123 | 124 | 131 |
132 | 140 |
141 | 142 |
143 |
144 |
145 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | module.exports = function (grunt) { 2 | grunt.loadNpmTasks('grunt-contrib-copy'); 3 | grunt.loadNpmTasks('grunt-contrib-uglify'); 4 | grunt.loadNpmTasks('grunt-search'); 5 | grunt.loadNpmTasks('grunt-comment-toggler'); 6 | 7 | var packager = require('electron-packager'); 8 | 9 | const BUILD_DIR = 'build/'; 10 | const DIST_DIR = 'dist/'; 11 | const APP_NAME = 'eSteem'; 12 | const PLATFORM = 'all'; 13 | const ARCH = 'all'; 14 | const ELECTRON_VERSION = '1.8.1'; 15 | const USE_ASAR = true; 16 | const ICON = 'assets/icon'; 17 | 18 | var toggleCommentsFiles = {files:{}}; 19 | toggleCommentsFiles.files[BUILD_DIR + 'main.js'] = 'main.js'; 20 | 21 | // Project configuration. 22 | grunt.initConfig( 23 | { 24 | pkg: grunt.file.readJSON('package.json'), 25 | uglify: { 26 | production: { 27 | files: [ 28 | { 29 | src : 'scripts/**/*.js', 30 | dest : BUILD_DIR + '/scripts/app.angular.min.js' 31 | }, 32 | { 33 | expand: true, 34 | src: BUILD_DIR + 'main.js' 35 | } 36 | ] 37 | } 38 | }, 39 | copy: { 40 | electron_app: { 41 | files: [ 42 | { 43 | expand: true, 44 | src: ['index.html', 'main.js', 'package.json'], 45 | dest: BUILD_DIR 46 | } 47 | ] 48 | }, 49 | angular_app_html: { 50 | files: [ 51 | { 52 | expand: true, 53 | src: ['scripts/**/*.*', 'bower_components/**/*.js'], 54 | dest: BUILD_DIR 55 | } 56 | ] 57 | } 58 | }, 59 | search: { 60 | node_modules_dependencies: { 61 | files: { 62 | src: ['index.html'] 63 | }, 64 | options: { 65 | searchString: /="node_modules\/.*?"/g, 66 | logFormat: "custom", 67 | onMatch: function (match) { 68 | var filePath = match.match.substring( 69 | 2, 70 | match.match.length - 1 71 | ); 72 | grunt.file.copy(filePath, BUILD_DIR + filePath); 73 | console.log('Found dependency: ' + filePath) 74 | }, 75 | customLogFormatCallback: function (params) { 76 | } 77 | } 78 | } 79 | }, 80 | toggleComments: { 81 | customOptions: { 82 | padding: 1, 83 | removeCommands: false 84 | }, 85 | files: toggleCommentsFiles 86 | } 87 | } 88 | ); 89 | 90 | grunt.registerTask( 91 | 'build', 92 | [ 93 | 'clean', 94 | 'copy:electron_app', 95 | 'copy:angular_app_html', 96 | 'toggleComments', 97 | 'search:node_modules_dependencies', 98 | 'install_node_dependencies', 99 | 'install_steem-rpc', 100 | 'install_steemjs-lib', 101 | //'uglify:production', 102 | 'package', 103 | 'fix_default_app' 104 | ] 105 | ); 106 | 107 | // Clean the build directory 108 | grunt.registerTask( 109 | 'clean', 110 | function () { 111 | if (grunt.file.isDir(BUILD_DIR)) { 112 | grunt.file.delete(BUILD_DIR, {force: true}); 113 | } 114 | } 115 | ); 116 | 117 | grunt.registerTask( 118 | 'package', 119 | function () { 120 | var done = this.async(); 121 | packager( 122 | { 123 | dir: BUILD_DIR, 124 | out: DIST_DIR, 125 | name: APP_NAME, 126 | platform: PLATFORM, 127 | arch: ARCH, 128 | version: ELECTRON_VERSION, 129 | asar: USE_ASAR, 130 | icon: ICON, 131 | }, 132 | function (err) { 133 | if (err) { 134 | grunt.warn(err); 135 | return; 136 | } 137 | 138 | done(); 139 | } 140 | ); 141 | } 142 | ); 143 | 144 | grunt.registerTask( 145 | 'install_node_dependencies', 146 | function () { 147 | var exec = require('child_process').exec; 148 | var cb = this.async(); 149 | exec('npm install', {cwd: './build'}, function(err, stdout, stderr) { 150 | console.log(stdout); 151 | cb(); 152 | }); 153 | } 154 | ); 155 | grunt.registerTask( 156 | 'install_steem-rpc', 157 | function () { 158 | var exec = require('child_process').exec; 159 | var cb = this.async(); 160 | exec('npm install', {cwd: './build/node_modules/steem-rpc'}, function(err, stdout, stderr) { 161 | console.log(stdout); 162 | cb(); 163 | }); 164 | } 165 | ); 166 | grunt.registerTask( 167 | 'install_steemjs-lib', 168 | function () { 169 | var exec = require('child_process').exec; 170 | var cb = this.async(); 171 | exec('npm install', {cwd: './build/node_modules/steemjs-lib'}, function(err, stdout, stderr) { 172 | console.log(stdout); 173 | cb(); 174 | }); 175 | } 176 | ); 177 | 178 | // Used as a temporary fix for: 179 | // https://github.com/maxogden/electron-packager/issues/49 180 | grunt.registerTask( 181 | 'fix_default_app', 182 | function () { 183 | 184 | var default_apps = grunt.file.expand( 185 | DIST_DIR + APP_NAME + '*/resources/default_app' 186 | ); 187 | 188 | default_apps.forEach( 189 | function (folder) { 190 | console.log('Removing ' + folder); 191 | grunt.file.delete(folder); 192 | } 193 | ); 194 | } 195 | ); 196 | }; -------------------------------------------------------------------------------- /scripts/templates/post.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {{'MENU'|translate}} 8 | 9 | 10 | 11 |   12 | 13 | 14 | 15 | {{'BOOKMARK'|translate}}   16 | {{'SHARE'|translate}} 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |

{{$root.$storage.sitem.title}}

30 |
{{$root.$storage.sitem.created|timeago}} {{'BY'|translate}}  {{$root.$storage.sitem.author}} 
{{$root.$storage.sitem.author_reputation|reputation|number:0}}
{{'IN'|translate}} {{$root.$storage.sitem.category}}
{{'DOWNVOTE'|translate}}{{'UNVOTE_DOWNVOTED'|translate}}
31 |
32 |
33 |
34 | 35 |
36 |
37 |
{{tag}}
38 |
39 |
40 | 41 |
42 |
43 |    {{$root.$storage.sitem.net_votes}}
44 | 45 |
46 | {{'UPVOTE'|translate}}{{'UNVOTE_UPVOTED'|translate}}   {{$root.$storage.sitem.net_votes}}
47 |
{{$root.$storage.sitem | sumPostTotal | number}}
48 |
{{$root.$storage.sitem.children}}
49 |
50 |
51 |
52 |
53 |

{{'POST_1'|translate}}

54 |

{{'POST_2'|translate}}

55 | 56 |
57 | 65 |
66 |
67 | -------------------------------------------------------------------------------- /scripts/templates/posts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {{'MENU'|translate}} 8 | 9 | 10 |
{{$root.$storage.filterName}} {{$root.$storage.tag}}  
11 |
12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 |
20 |
21 |
22 |
23 |
24 | {{'RESTEEMED_BY'|translate}} {{d.first_reblogged_by}} 25 |

{{d.title}}

26 |
{{d.created|timeago}} {{'BY'|translate}} {{d.author}} 
{{d.author_reputation|reputation|number:0}}
· {{d.body|readingtime}} {{'MIN_READ'|translate}}
27 |
28 |
29 |
30 | 31 |  {{d | sumPostTotal | number}} 32 | 33 | {{'UPVOTE'|translate}}{{'UNVOTE'|translate}} {{d | sumPostTotal | number}} 34 |
35 |
36 |  {{d.net_votes}} 37 |
38 |
39 |  {{d.children}} 40 |
41 |
42 |   43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | 53 |
54 | {{'RESTEEMED_BY'|translate}} {{ds.first_reblogged_by}} 55 |

{{ds.title}}

56 |
{{ds.created|timeago}} {{'BY'|translate}} {{ds.author}} 
{{ds.author_reputation|reputation|number:0}}
· {{ds.body|readingtime}} {{'MIN_READ'|translate}}
57 |
58 |
59 | 60 |
61 |
62 | 63 |  {{ds | sumPostTotal | number}} 64 | 65 | 66 | {{'UPVOTE'|translate}} 67 | {{'UNVOTE'|translate}} {{ds | sumPostTotal | number}} 68 | 69 |
70 |
71 |  {{ds.net_votes}} 72 |
73 |
74 |  {{ds.children}} 75 |
76 |
77 |   78 |
79 |
80 |
81 |
82 |
83 |
84 | 85 |
86 | 93 |
94 |
95 | -------------------------------------------------------------------------------- /scripts/locales/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "首頁", 3 | "LOGIN": "登入", 4 | "LOGOUT": "登出", 5 | "PROFILE": "關於", 6 | "FOLLOW": "追蹤", 7 | "BOOKMARKS": "書籤", 8 | "TRANSFER": "轉帳", 9 | "MARKET": "市場", 10 | "SETTINGS": "設定", 11 | "ABOUT": "關於", 12 | "ABOUT_1": "所有人的內容都可以在這裡獲得獎勵", 13 | "ABOUT_2": "是由{{platformname}}平台所支持。此App之開發者為", 14 | "ABOUT_3": "此為開源式、社區驅動之行動使用方案,提供使用者內容閱讀、評論、投票、文章發布與收入轉帳等功能。各項功能是由{{platformname}}之區塊鏈以及{{sitename}}網站所提供。", 15 | "ABOUT_4": "本App不會處理或管控使用者之資金。", 16 | "ABOUT_5": "本App提供客戶端安全使用模式,使用者私鑰只在本機內部使用,絕不送出到任何外部伺服器。", 17 | "ABOUT_6": "本App提供簡單好用之使用者介面與經驗。", 18 | "ABOUT_7": "本App絕不會向使用者要求提供任何個人資料。", 19 | "ABOUT_8": "投票支持good-karma成為witness", 20 | "ABOUT_9": "聯絡/意見回饋", 21 | "ABOUT_10": "更多訊息", 22 | "REMOVE": "移除", 23 | "MARKET_VIEW": "交易市場", 24 | "PRICE": "價格", 25 | "AMOUNT": "數量", 26 | "TOTAL": "總計", 27 | "NOORDERS": "無掛單", 28 | "DATE": "日期", 29 | "BUY": "買入", 30 | "SELL": "賣出", 31 | "OPEN": "掛單", 32 | "HISTORY": "歷史紀錄", 33 | "FOLLOW_BACK": "相互追蹤", 34 | "FOLLOWED": "正被追蹤", 35 | "UNFOLLOW": "取消追蹤", 36 | "FOLLOWING": "正在追蹤", 37 | "FOLLOWERS": "追蹤者", 38 | "SEARCH_FOLLOWERS": "搜尋被追蹤名單", 39 | "SEARCH_FOLLOWING": "搜尋已追蹤名單", 40 | "BY": "由", 41 | "IN": "在", 42 | "MENU": "選單", 43 | "BOOKMARK": "書籤", 44 | "REBLOG": "轉貼", 45 | "UPVOTE": "讚", 46 | "DOWNVOTE": "噓", 47 | "UNVOTE_DOWNVOTED": "取消噓", 48 | "UNVOTE_UPVOTED": "取消讚", 49 | "REPLY": "回覆", 50 | "EDIT": "編輯", 51 | "POST_1": "評論上向左滑以顯示動作清單", 52 | "POST_2": "點擊評論可展開下一層評論", 53 | "OPTIONS": "選項", 54 | "RESTEEMED_BY": "轉貼", 55 | "NOTHING_HERE": "施工中", 56 | "BALANCES": "結餘", 57 | "PROFILE_1": "{{platformname}} 是可交易的貨幣,隨時可以進行移轉。{{platformname}} 可以被轉換成 {{platformpower}},此一動作稱為powering up。", 58 | "PROFILE_2": "{{platformpower}} 可視為具有影響力的股權,持有可長期增值並對文章投票,持有數量越多對於其他人獎勵大小的影響力就越大,也更能從準確的投票行為中獲得獎勵。 ", 59 | "PROFILE_3": "目前持有{{platformsunit}}的{{platformname}}。", 60 | "ESTIMATED_VALUE": "概估價值", 61 | "PROFILE_4": "概估價值是以{{platformname}}3-5天之平均價為基礎", 62 | "TRANSACTION_HISTORY": "交易歷史紀錄", 63 | "POSTING": "Posting", 64 | "PROFILE_5": "Posting私鑰使用於發文與按讚活動上,其與Active以及Owner私鑰功能不同。", 65 | "OWNER": "Owner", 66 | "PROFILE_6": "Owner私鑰是本帳號之主鑰,具有更改其他私鑰的權力。安全起見,Owner私鑰密碼應該儘可能地離線儲存。", 67 | "ACTIVE": "Active", 68 | "PROFILE_7": "Active私鑰用於帳號資金處理活動以及於內部市場下單買賣方面。", 69 | "MEMO": "Memo", 70 | "PROFILE_8": "Memo私鑰用於創造與讀取memo訊息。", 71 | "BLOG": "部落格", 72 | "POSTS": "貼文", 73 | "REPLIES": "回覆", 74 | "WALLET": "錢包", 75 | "TAG": "標籤", 76 | "USER": "使用者", 77 | "CLOSE": "關閉", 78 | "TO": "到", 79 | "ASSET": "資產", 80 | "SEND": "傳送", 81 | "SECURITY": "安全性", 82 | "AVAILABLE": "可使用", 83 | "PUBLIC_MEMO": "公開訊息", 84 | "TO_DESC": "使用者,例如 good-karma", 85 | "PIN_CODE": "密碼", 86 | "PIN_TEXT": "設置此密碼以保護App與用戶資料。

注意:一旦啟用,你只能有4次解鎖機會,如果忘記密碼或是全數登入失敗,則App會移除登入資料。你可以再次登入並繼續使用App。", 87 | "NOTIFICATIONS": "通知", 88 | "VOTE_TEXT": "你的內容獲得別人按讚時會通知你!
注意: 通知內容包括按讚權重與提醒訊息。(按讚、按噓、取消讚)", 89 | "VOTE": "投票", 90 | "COMMENT_TEXT": "他人評論你的文章或評論時,你會收到通知!
注意: 對方若重新編輯評論內容,亦會通知你。", 91 | "COMMENT": "評論", 92 | "FOLLOW_TEXT": "他人追蹤或取消追蹤你時,你會收到通知!", 93 | "MENTIONS": "提及", 94 | "MENTIONS_TEXT": "他人在文章或評論中提及你時,你會收到通知!", 95 | "RESTEEM": "轉貼", 96 | "RESTEEM_TEXT": "他人轉貼你的文章時,你會收到通知!", 97 | "CONFIGURATIONS": "組態設定", 98 | "VOTING": "投票", 99 | "VOTING_TEXT": "投票權重會影響投票能量以及投票獎勵,你可以予以調整。
注意: 對權重之調整同樣適用於按讚與按噓,並持續保持此一權重。", 100 | "SERVER": "伺服器", 101 | "SERVER_TEXT": "推薦", 102 | "SAVE_CHANGES": "儲存變更", 103 | "VOTERS_INFO": "投票訊息", 104 | "WELCOME_BACK": "歡迎回來!", 105 | "LOGIN_1": "請以您的使用者帳號與密碼登入", 106 | "LOGIN_2": "Posting key用於發布文章、投票與追蹤。", 107 | "LOGIN_3": "Active key用於轉帳相關與「關於」之圖片更新。", 108 | "LOGIN_4": "使用者的認證資訊只保存在裝置本地端。登出後認證資訊將被移除。", 109 | "DONT_HAVE": "還沒有帳號嗎?", 110 | "SIGN_UP_NOW": "馬上去註冊", 111 | "CANCEL": "取消", 112 | "ADVANCED": "進階", 113 | "ACTIVE_PRIKEY": "Active private key", 114 | "POSTING_PRIKEY": "Posting private key", 115 | "MASTER_PASS": "Master密碼/主密碼", 116 | "USERNAME": "使用者名稱", 117 | "CARD_VIEW": "正常模式", 118 | "COMPACT_VIEW": "精簡模式", 119 | "SEARCH": "搜尋", 120 | "SUBMIT_A_STORY": "提交文章", 121 | "REPLYTO": "回覆", 122 | "POST": "貼文", 123 | "PREVIEW": "預覽", 124 | "DEFAULT": "預設 50% / 50%", 125 | "POWERUP": "Power Up 100%", 126 | "DECLINE_PAYOUT": "謝絕Payout", 127 | "SAVE_FOR_LATER": "預存草稿", 128 | "CLEAR": "清除", 129 | "POST_CONTENT": "貼文內容", 130 | "COMMENT_CONTENT": "評論內容", 131 | "TITLE": "標題", 132 | "TAGS": "標籤", 133 | "NOT_MATCH": "不符", 134 | "CONFIRM_PIN": "確認密碼", 135 | "INCORRECT": "不正確", 136 | "OPENING_POST": "打開貼文", 137 | "SET_PIN": "重設密碼", 138 | "ENTER_PIN": "輸入密碼", 139 | "ARE_YOU_SURE": "是否確定?", 140 | "REBLOG_TEXT": "轉貼無法取消,還要繼續嗎?", 141 | "BROADCAST_ERROR": "廣播錯誤,請再試一次!", 142 | "SUCCESS": "成功", 143 | "REBLOGGED_POST": "轉貼文章", 144 | "LOGIN_FAIL": "登入失敗!請確認你是以master密碼登入,或是在進階模式下以提供之Posting私鑰登入。", 145 | "LOGIN_FAIL_A": "登入失敗!請確認你是以master密碼登入,或是在進階模式下以提供之Active私鑰登入。", 146 | "WARNING": "警告", 147 | "VOTE_FOR_WITNESS": "投票支持見證人", 148 | "VOTED_FOR_WITNESS": "投票支持為見證人", 149 | "AGO": "前", 150 | "FROM_NOW": "還有", 151 | "SECS": "秒", 152 | "A_MIN": "一分鐘", 153 | "MINS": "分鐘", 154 | "AN_HOUR": "一小時", 155 | "HOURS": "小時", 156 | "A_DAY": "一天", 157 | "DAYS": "天", 158 | "A_MONTH": "一個月", 159 | "MONTHS": "個月", 160 | "A_YEAR": "一年", 161 | "YEARS": "個年", 162 | "MIN_READ": "分鐘閱讀時間", 163 | "DOWNVOTE_FLAG": "按噓", 164 | "CAPTURE_PICTURE": "獲取圖片", 165 | "SELECT_PICTURE": "選擇圖片", 166 | "SET_CUSTOM_URL": "設定專用連結", 167 | "INSERT_PICTURE": "插入圖片", 168 | "ERROR": "錯誤", 169 | "UPLOAD_ERROR": "上傳錯誤", 170 | "CAMERA_CANCELLED": "取消相機", 171 | "SET_URL": "設定URL", 172 | "DIRECT_LINK_PICTURE": "圖片之網站連結", 173 | "COMMENT_SUBMITTED": "評論送出", 174 | "DELETE_COMMENT": "刪除評論動作是不可恢復的", 175 | "DELETED_COMMENT": "已刪除之評論", 176 | "UPLOADING_PICTURE": "上傳圖片", 177 | "UPLOAD_COMPLETED": "上傳完成", 178 | "UPLOAD_FAILED": "上傳失敗", 179 | "PASSWORD_INCORRECT": "密碼或帳號名稱錯誤", 180 | "INFO": "訊息", 181 | "QR_TEXT": "請將QR code置於掃描區域內", 182 | "BALANCE_TEXT": "請確認有足夠餘額可供交易!", 183 | "NONEXIST_USER": "轉入帳號不存在", 184 | "TRANSFER_TEXT": "確定要進行轉帳?", 185 | "CONFIRMATION": "確認", 186 | "TX_BROADCASTED": "交易已廣播", 187 | "FEED": "動態消息", 188 | "TRENDING": "焦點", 189 | "HOT": "熱門", 190 | "NEW": "最新", 191 | "PROMOTED": "贊助", 192 | "VOTES": "票數", 193 | "PAYOUT": "收入", 194 | "COMMENTS": "評論", 195 | "TRENDING_30": "30天焦點", 196 | "SORT_POST_BY": "文章排序", 197 | "POTENTIAL_PAYOUT": "未實現收入", 198 | "PAST_PAYOUT": "已支付收入", 199 | "AUTHOR_PAYOUT": "作者收入", 200 | "CURATION_PAYOUT": "投票收入", 201 | "POST_SUBMITTED": "文章已送出", 202 | "POST_LATER": "待發文章", 203 | "SAVED": "已儲存", 204 | "CLEARED": "已清除", 205 | "FLAGGING_TEXT": "對文章按噓會影響其獎勵,並降低其能見度。

應在下列情況下按噓:", 206 | "REQUEST_LIMIT_TEXT": "已達要求限度,請查詢其他焦點文章或標籤!", 207 | "POST_IS_UNBOOKMARK": "文章已自書籤中移除", 208 | "POST_IS_BOOKMARK": "文章已加入書籤", 209 | "RESET": "重置", 210 | "MODIFY_PICTURE": "修改「關於」的圖片", 211 | "MODIFY_COVER_PICTURE": "修改封面圖片", 212 | "ACTIVE_KEY_REQUIRED_TEXT": "若選擇進階模式,請提供Active私鑰!", 213 | "RESET_PICTURE_TEXT": "此動作將重設使用者「關於」的圖片", 214 | "RESET_COVER_PICTURE_TEXT": "此動作將重設使用者封面圖片", 215 | "UPDATE_REQUIRES_RESTART": "由於伺服器更新需要重新啟動!", 216 | "SETTINGS_UPDATED": "設定已更新!", 217 | "LANGUAGES": "語言", 218 | "LANGUAGES_TEXT": "你可以在此更改APP的使用語言", 219 | "LOGIN_TO_X": "此一動作需要使用者以主密碼、Active私鑰或Posting私鑰登入。請登入再試一下。", 220 | "GALLERY": "陳列", 221 | "PAYOUT_CYCLE": "收入週期", 222 | "TRANSLATIONS": "多國語言翻譯工作協助者", 223 | "SHARE": "分享" 224 | } -------------------------------------------------------------------------------- /scripts/locales/iw.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "עמוד הבית", 3 | "LOGIN": "כניסה", 4 | "LOGOUT": "יציאה", 5 | "PROFILE": "פרופיל", 6 | "FOLLOW": "לעקוב", 7 | "BOOKMARKS": "סימניות", 8 | "TRANSFER": "העברה", 9 | "MARKET": "שוק", 10 | "SETTINGS": "אפשרויות", 11 | "ABOUT": "מידע", 12 | "ABOUT_1": "מקום שבו כל אחד יכול להרוויח בזכות בתכנים שלו!", 13 | "ABOUT_2": "מופעל על ידי {{platformname}}. האפילקציה נכתבה על ידי", 14 | "ABOUT_3": "והוא פתוח, ומונע על ידי הקהילה. הוא מציע גישה לקריאה, לכתיבת תגובות, ללייקים, להעברת כספים וכו'. הפעולות מוצעות על ידי הבלוקצ'יין של {{platformname}} ועל ידי {{sitename}}", 15 | "ABOUT_4": "1. לאפליקציה אין גישה לכספים של המשתמש.", 16 | "ABOUT_5": "2. האפליקציה היא בטוחה, כשהקוד הפרטי שמור מקומית ולא נשלח לשרתים חיצוניים.", 17 | "ABOUT_6": "3. האפליקציה מציעה גישה פשוטה ונוחה למשתמש.", 18 | "ABOUT_7": "4. האפליקציה לא מבקשת ממשתמשים מידע פרטי.", 19 | "ABOUT_8": "הצביעו ל-good-karma בתור עד", 20 | "ABOUT_9": "צור קשר", 21 | "ABOUT_10": "מידע נוסף:", 22 | "REMOVE": "הסרה", 23 | "MARKET_VIEW": "צפה בשוק", 24 | "PRICE": "מחיר", 25 | "AMOUNT": "כמות", 26 | "TOTAL": "סך הכל", 27 | "NOORDERS": "אין הזמנות פתוחות עבור", 28 | "DATE": "תאריך", 29 | "BUY": "קנייה", 30 | "SELL": "מכירה", 31 | "OPEN": "פתיחה", 32 | "HISTORY": "היסטוריה", 33 | "FOLLOW_BACK": "לעקוב", 34 | "FOLLOWED": "עוקב", 35 | "UNFOLLOW": "להפסיק לעקוב", 36 | "FOLLOWING": "עוקב", 37 | "FOLLOWERS": "עוקבים", 38 | "SEARCH_FOLLOWERS": "חיפוש בעוקבים אחריי", 39 | "SEARCH_FOLLOWING": "חיפוש במי שאני עוקב אחריו", 40 | "BY": "על ידי", 41 | "IN": "בתוך", 42 | "MENU": "תפריט", 43 | "BOOKMARK": "סימניה", 44 | "REBLOG": "עשו ריבלוג", 45 | "UPVOTE": "לייק", 46 | "DOWNVOTE": "אנלייק", 47 | "UNVOTE_DOWNVOTED": "ביטול אנלייק", 48 | "UNVOTE_UPVOTED": "ביטול לייק", 49 | "REPLY": "להשיב", 50 | "EDIT": "עריכה", 51 | "POST_1": "החלק את התגוה שמאלה לצפייה באפשרויות", 52 | "POST_2": "לחץ על תגובה כדי לראות תתי-תגובות", 53 | "OPTIONS": "אפשרויות", 54 | "RESTEEMED_BY": "עשו ריסטים", 55 | "NOTHING_HERE": "אין פה כלום עדיין...", 56 | "BALANCES": "כספים", 57 | "PROFILE_1": "{{platformname}}, מטבעות שניתנים להעברה בכל עת. ניתן להמיר {{platformname}} ל-{{platformpower}} בעזרת תהליך שנקרא פאוור-אפ.", 58 | "PROFILE_2": "{{platformpower}}, מטבעות השפעה שמוסיפים לכם כוח בהצבעה. ככל שיש לכם יותר, תוכלי להשפיע יותר על התשלום של פוסטים ותוכלו להרוויח רווחים גדולים יותר בהצבעה.", 59 | "PROFILE_3": "מטבעות ששויים {{platformsunit}} של {{platformname}}.", 60 | "ESTIMATED_VALUE": "ערך מוערך", 61 | "PROFILE_4": "הערך חושב על ידי ממוצע מחירים ב-7 הימים האחרונים של {{platformname}}.", 62 | "TRANSACTION_HISTORY": "היסטוריית פעולות", 63 | "POSTING": "העלאת פוסט", 64 | "PROFILE_5": "מפתח הפוסטים נועד לכתיבת פוסטים וללייקים. עליו להיות שונה מהמפתח הפעיל וממפתח המשתמש.", 65 | "OWNER": "בעלים", 66 | "PROFILE_6": "מפתח המשתמש הוא המפתח הראשי לחשבון והוא נחוץ על מנת לשנות מפתחות אחרים. המפתח הפרטי או הסיסמא לקבלת מפתח המשתמש חייבים להיות שמורים מחוץ לאתר.", 67 | "ACTIVE": "פעיל", 68 | "PROFILE_7": "המפתח הפעיל נועד לביצוע הברות כספים ולביצוע הזמנות בשוק הפנימי.", 69 | "MEMO": "הערה", 70 | "PROFILE_8": "מפתח התזיכירם נועד לכתיבת וקריאת תזכירים.", 71 | "BLOG": "בלוג", 72 | "POSTS": "פוסטים", 73 | "REPLIES": "תגובות", 74 | "WALLET": "ארנק", 75 | "TAG": "טאגים", 76 | "USER": "משתמש", 77 | "CLOSE": "סגור", 78 | "TO": "אל", 79 | "ASSET": "נכס", 80 | "SEND": "לשלוח", 81 | "SECURITY": "בטיחות", 82 | "AVAILABLE": "פנוי", 83 | "PUBLIC_MEMO": "הערה פומבית", 84 | "TO_DESC": "משתמש, לדוגמא good-karma", 85 | "PIN_CODE": "קוד", 86 | "PIN_TEXT": "קוד עוזר לכם לאבטח את האפילקציה ואת המידע שלכם. הערה: ברגע שהופעל, אפשר לנסות לפתוח עד 4 פעמים. אם שכחתם את הקוד, האפליקציה תמחק את המידע של המשתמש. תוכל להיכנס מחדש ולהשתמש באפליקציה.", 87 | "NOTIFICATIONS": "הודעות", 88 | "VOTE_TEXT": "תקבול הודעה כשמישהו יעשה לכם לייק! הערה: ההודעות יכללו גם את משקל הלייק (בין אם לייק, אנלייק, או ביטול לייק).", 89 | "VOTE": "להצביע", 90 | "COMMENT_TEXT": "תקבלו הודעה כשמישהו יגיב לפוסטים או לתגובות שלכם! הערה: תקבלו הודעה גם כשמישהו יערוך את התגובה שלו.", 91 | "COMMENT": "תגובה", 92 | "FOLLOW_TEXT": "תקבל הודעה כשמישהו יעקוב או יפסיק לעקוב אחריך!", 93 | "MENTIONS": "תזכורים", 94 | "MENTIONS_TEXT": "תקבל הודעה כשמישהו יזכיר אותך בפוסט או בתגובה!", 95 | "RESTEEM": "ריסטיים", 96 | "RESTEEM_TEXT": "תקבלו הודעה כשמישהו יעשה ריסטים לפוסט שלכם!", 97 | "CONFIGURATIONS": "קונפיגורציות", 98 | "VOTING": "הצבעות", 99 | "VOTING_TEXT": "משקל הלייק נותן לכם לשלוט בגודל הגמול שתקבלו. הערה: פעולה זו תשנה גם את המשקל עבור אנלייק", 100 | "SERVER": "שרת", 101 | "SERVER_TEXT": "מומלץ", 102 | "SAVE_CHANGES": "לשמור שינויים", 103 | "VOTERS_INFO": "מידע על מצביעים", 104 | "WELCOME_BACK": "ברוכים השבים!", 105 | "LOGIN_1": "היכנסו בעזרת שם המשתמש והסיסמא על מנת להמשיך.", 106 | "LOGIN_2": "מפתח הפוסטים נועד לכתיבת פוסטים ותגובות, וללייקים.", 107 | "LOGIN_3": "המפתח הפעיל נועד להעברות ולעדכון תמונת הפרופיל.", 108 | "LOGIN_4": "המידע על המשתמש שמור מקומית על המכשיר. כשמתנתקים המידע נמחק!", 109 | "DONT_HAVE": "אין לכם חשבון משתמש?", 110 | "SIGN_UP_NOW": "הרשמו עכשיו", 111 | "CANCEL": "ביטול", 112 | "ADVANCED": "מתקדם", 113 | "ACTIVE_PRIKEY": "מפתח פעיל", 114 | "POSTING_PRIKEY": "מפתח פוסטים", 115 | "MASTER_PASS": "מפתח ראשי", 116 | "USERNAME": "שם משתמש", 117 | "CARD_VIEW": "צפייה בכרטיסים", 118 | "COMPACT_VIEW": "צפייה קומפקטית", 119 | "SEARCH": "חיפוש", 120 | "SUBMIT_A_STORY": "כתבו פוסט", 121 | "REPLYTO": "השיבו ל-", 122 | "POST": "פוסט", 123 | "PREVIEW": "תצוגה מקדימה", 124 | "DEFAULT": "ברירת מחדך 50% / 50%", 125 | "POWERUP": "פאוור-אפ 100%", 126 | "DECLINE_PAYOUT": "סרבו לתשלום", 127 | "SAVE_FOR_LATER": "שמרו למאוחר יותר", 128 | "CLEAR": "ניקוי", 129 | "POST_CONTENT": "תוכן הפוסט", 130 | "COMMENT_CONTENT": "תוכן התגובה", 131 | "TITLE": "כותרת", 132 | "TAGS": "טאגים", 133 | "NOT_MATCH": "לא מתאים", 134 | "CONFIRM_PIN": "אשר קוד", 135 | "INCORRECT": "שגוי", 136 | "OPENING_POST": "פותח פוסט", 137 | "SET_PIN": "קבעו קוד", 138 | "ENTER_PIN": "הזינו קוד", 139 | "ARE_YOU_SURE": "בטוחים?", 140 | "REBLOG_TEXT": "אי אפשר לבטל ריסטים, תרצו להמשיך?", 141 | "BROADCAST_ERROR": "בעיית תקשורת, נסה שוב!", 142 | "SUCCESS": "הצלחה", 143 | "REBLOGGED_POST": "עשיתם לפוסט ריבלוג!", 144 | "LOGIN_FAIL": "הכניסה נכשלה! אנא ודאו שנכנסתם עם הסיסמא הראשית או שהזנתם את מפתח הפוסטים אם ניסיתם להיכנס במצב מתקדמת.", 145 | "LOGIN_FAIL_A": "הכניסה נכשלה! אנא ודאו שנכנסתם עם הסיסמא הראשית או שהזנתם את המפתח הפעיל אם ניסיתם להיכנס במצב מתקדמת.", 146 | "WARNING": "אזהרה", 147 | "VOTE_FOR_WITNESS": "הצבעה לעד", 148 | "VOTED_FOR_WITNESS": "הצבעה לעד בוצעה", 149 | "AGO": "לפני", 150 | "FROM_NOW": "מעכשיו", 151 | "SECS": "שניות", 152 | "A_MIN": "דקה", 153 | "MINS": "דקות", 154 | "AN_HOUR": "שעה", 155 | "HOURS": "שעות", 156 | "A_DAY": "יום", 157 | "DAYS": "ימים", 158 | "A_MONTH": "חודש", 159 | "MONTHS": "חודשים", 160 | "A_YEAR": "שנה", 161 | "YEARS": "שנים", 162 | "MIN_READ": "מינימום קריאה", 163 | "DOWNVOTE_FLAG": "עשו אנלייק", 164 | "CAPTURE_PICTURE": "צלמו תמונה", 165 | "SELECT_PICTURE": "בחר תמונה", 166 | "SET_CUSTOM_URL": "קבעו כתובת אישית", 167 | "INSERT_PICTURE": "הכנסה תמונה", 168 | "ERROR": "שגיאה", 169 | "UPLOAD_ERROR": "שגיאה בהעלאה", 170 | "CAMERA_CANCELLED": "מצלמה בוטלה", 171 | "SET_URL": "קבעו קישור", 172 | "DIRECT_LINK_PICTURE": "קישור לתמונה", 173 | "COMMENT_SUBMITTED": "התגובה נשלחה!", 174 | "DELETE_COMMENT": "אי אפשר לשחזר תגובה שנמחקה...", 175 | "DELETED_COMMENT": "תגובה נמחקה", 176 | "UPLOADING_PICTURE": "מעלה תמונה", 177 | "UPLOAD_COMPLETED": "תמונה הועלתה", 178 | "UPLOAD_FAILED": "העלאה נכשלה", 179 | "PASSWORD_INCORRECT": "הסיסמה או שם המתשמש שגויים", 180 | "INFO": "מידע", 181 | "QR_TEXT": "שימו קוד QR בתוך אזור הקריאה", 182 | "BALANCE_TEXT": "בדקו שיש לכם מספיק כספים להעברה!", 183 | "NONEXIST_USER": "המשתמש שאליו ניסיתם להעביר כספים לא קיים!", 184 | "TRANSFER_TEXT": "בטוח שתרצו להעביר את הכספים?", 185 | "CONFIRMATION": "אישור", 186 | "TX_BROADCASTED": "הפעולה נשלחה", 187 | "FEED": "פיד", 188 | "TRENDING": "מצליח", 189 | "HOT": "חם", 190 | "NEW": "חדש", 191 | "PROMOTED": "מקודמים", 192 | "VOTES": "לייקים", 193 | "PAYOUT": "תשלום", 194 | "COMMENTS": "תגובות", 195 | "TRENDING_30": "חמים ב-30 הימים האחרונים", 196 | "SORT_POST_BY": "מיינו לפי:", 197 | "POTENTIAL_PAYOUT": "תשלום עתידי", 198 | "PAST_PAYOUT": "תשלום עבר", 199 | "AUTHOR_PAYOUT": "תשלום לכותב", 200 | "CURATION_PAYOUT": "תשלום למשגיחים", 201 | "POST_SUBMITTED": "הפוסט נשלח!", 202 | "POST_LATER": "לשלוח מאוחר יותר", 203 | "SAVED": "נשמר", 204 | "CLEARED": "נוקה", 205 | "FLAGGING_TEXT": "אנלייק לפוסט מחסיר מהתשלום והופך אותו לפחות נראה. אנלייק מיועד למקרים הבאים: העתקה, גזענות, דברי שנאה, טרולינג, ספאם", 206 | "REQUEST_LIMIT_TEXT": "הגעתם לגבול מספר הבקשות. בדקו טאגים אחרים!", 207 | "POST_IS_UNBOOKMARK": "הפוסט הוסר מהסימניות!", 208 | "POST_IS_BOOKMARK": "הפוסט נשמר בסימניות!", 209 | "RESET": "איתחול", 210 | "MODIFY_PICTURE": "לשנות תמונת פרופיל", 211 | "MODIFY_COVER_PICTURE": "לשנות תמונת כותרת", 212 | "ACTIVE_KEY_REQUIRED_TEXT": "אנא הוסיפו מפתח פעיל אם תרצו להיכנס למצב מתקדם!", 213 | "RESET_PICTURE_TEXT": "תמונת הפרופיל תאותחל", 214 | "RESET_COVER_PICTURE_TEXT": "תמונת הכותרת תאותחל", 215 | "UPDATE_REQUIRES_RESTART": "עדכון השרת דורש אתחול!", 216 | "SETTINGS_UPDATED": "ההגדרות עודכנו!", 217 | "LANGUAGES": "שפות", 218 | "LANGUAGES_TEXT": "כאן ניתן לשנות את השפה.", 219 | "LOGIN_TO_X": "פעולה זו דורשת מהמשתמש להיות רשום עם הסיסמא הראשית והמפתח הפעיל או מפתח הפסוט. אנא כנסו ונסו שנית.", 220 | "GALLERY": "גלריה", 221 | "PAYOUT_CYCLE": "זמן תשלום", 222 | "TRANSLATIONS": "מתרגמים", 223 | "SHARE": "שתף" 224 | } -------------------------------------------------------------------------------- /scripts/locales/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by {{platformname}} platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by {{platformname}} blockchain and {{sitename}}.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences.", 18 | "ABOUT_7": "4. App never require users to input any personal information.", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "{{platformname}}, tradeable tokens that may be transferred at anytime. {{platformname}} can be converted to {{platformpower}} in a process called powering up.", 59 | "PROFILE_2": "{{platformpower}}, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about {{platformsunit}} of {{platformname}}.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of {{platformname}}.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Notifications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "VOTE_FOR_WITNESS": "Voting for witness", 150 | "VOTED_FOR_WITNESS": "Voted for witness", 151 | "AGO": "ago", 152 | "FROM_NOW": "from now", 153 | "SECS": "secs", 154 | "A_MIN": "a min", 155 | "MINS": "mins", 156 | "AN_HOUR": "an hr", 157 | "HOURS": "hrs", 158 | "A_DAY": "a day", 159 | "DAYS": "days", 160 | "A_MONTH": "a month", 161 | "MONTHS": "months", 162 | "A_YEAR": "a year", 163 | "YEARS": "years", 164 | "MIN_READ": "min read", 165 | "DOWNVOTE_FLAG": "Downvote or Flag", 166 | "CAPTURE_PICTURE": "Capture Picture", 167 | "SELECT_PICTURE": "Select Picture", 168 | "SET_CUSTOM_URL": "Set Custom URL", 169 | "INSERT_PICTURE": "Insert Picture", 170 | "ERROR": "Error", 171 | "UPLOAD_ERROR": "Upload Error", 172 | "CAMERA_CANCELLED": "Camera Cancelled", 173 | "SET_URL": "Set URL", 174 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 175 | "COMMENT_SUBMITTED": "Comment is submitted!", 176 | "DELETE_COMMENT": "Deleting comments are irreversible...", 177 | "DELETED_COMMENT": "Deleted comment", 178 | "UPLOADING_PICTURE": "Uploading Picture", 179 | "UPLOAD_COMPLETED": "Upload Completed", 180 | "UPLOAD_FAILED": "Upload Failed", 181 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 182 | "INFO": "Info", 183 | "QR_TEXT": "Place a QR code inside the scan area", 184 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 185 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 186 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 187 | "CONFIRMATION": "Confirmation", 188 | "TX_BROADCASTED": "Transaction is broadcasted", 189 | "FEED": "Feed", 190 | "TRENDING": "Trending", 191 | "HOT": "Hot", 192 | "NEW": "New", 193 | "PROMOTED": "Promoted", 194 | "VOTES": "Votes", 195 | "PAYOUT": "Payout", 196 | "COMMENTS": "Comments", 197 | "TRENDING_30": "Trending for 30 days", 198 | "SORT_POST_BY": "Sort Posts By:", 199 | "PAYOUT_CYCLE": "Payout Cycle", 200 | "POTENTIAL_PAYOUT": "Potential Payout", 201 | "PAST_PAYOUT": "Past Payout", 202 | "AUTHOR_PAYOUT": "Author Payout", 203 | "CURATION_PAYOUT": "Curation Payout", 204 | "POST_SUBMITTED": "Post is submitted!", 205 | "POST_LATER": "Post for later submission!", 206 | "SAVED": "Saved", 207 | "CLEARED": "Cleared", 208 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 209 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 210 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 211 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 212 | "RESET": "Reset", 213 | "MODIFY_PICTURE": "Modify Profile Picture", 214 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 215 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 216 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 217 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 218 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 219 | "SETTINGS_UPDATED": "Settings are updated!", 220 | "LANGUAGES": "Languages", 221 | "LANGUAGES_TEXT": "Here you can change language of the app.", 222 | "LOGIN_TO_X": "This operation requires user to be logged in with main password, active/posting key. Please login and try again.", 223 | "GALLERY": "Gallery" 224 | } -------------------------------------------------------------------------------- /scripts/locales/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by {{platformname}} platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by {{platformname}} blockchain and {{sitename}}.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences.", 18 | "ABOUT_7": "4. App never require users to input any personal information.", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "{{platformname}}, tradeable tokens that may be transferred at anytime. {{platformname}} can be converted to {{platformpower}} in a process called powering up.", 59 | "PROFILE_2": "{{platformpower}}, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about {{platformsunit}} of {{platformname}}.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of {{platformname}}.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Notifications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "VOTE_FOR_WITNESS": "Voting for witness", 150 | "VOTED_FOR_WITNESS": "Voted for witness", 151 | "AGO": "ago", 152 | "FROM_NOW": "from now", 153 | "SECS": "secs", 154 | "A_MIN": "a min", 155 | "MINS": "mins", 156 | "AN_HOUR": "an hr", 157 | "HOURS": "hrs", 158 | "A_DAY": "a day", 159 | "DAYS": "days", 160 | "A_MONTH": "a month", 161 | "MONTHS": "months", 162 | "A_YEAR": "a year", 163 | "YEARS": "years", 164 | "MIN_READ": "min read", 165 | "DOWNVOTE_FLAG": "Downvote or Flag", 166 | "CAPTURE_PICTURE": "Capture Picture", 167 | "SELECT_PICTURE": "Select Picture", 168 | "SET_CUSTOM_URL": "Set Custom URL", 169 | "INSERT_PICTURE": "Insert Picture", 170 | "ERROR": "Error", 171 | "UPLOAD_ERROR": "Upload Error", 172 | "CAMERA_CANCELLED": "Camera Cancelled", 173 | "SET_URL": "Set URL", 174 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 175 | "COMMENT_SUBMITTED": "Comment is submitted!", 176 | "DELETE_COMMENT": "Deleting comments are irreversible...", 177 | "DELETED_COMMENT": "Deleted comment", 178 | "UPLOADING_PICTURE": "Uploading Picture", 179 | "UPLOAD_COMPLETED": "Upload Completed", 180 | "UPLOAD_FAILED": "Upload Failed", 181 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 182 | "INFO": "Info", 183 | "QR_TEXT": "Place a QR code inside the scan area", 184 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 185 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 186 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 187 | "CONFIRMATION": "Confirmation", 188 | "TX_BROADCASTED": "Transaction is broadcasted", 189 | "FEED": "Feed", 190 | "TRENDING": "Trending", 191 | "HOT": "Hot", 192 | "NEW": "New", 193 | "PROMOTED": "Promoted", 194 | "VOTES": "Votes", 195 | "PAYOUT": "Payout", 196 | "COMMENTS": "Comments", 197 | "TRENDING_30": "Trending for 30 days", 198 | "SORT_POST_BY": "Sort Posts By:", 199 | "PAYOUT_CYCLE": "Payout Cycle", 200 | "POTENTIAL_PAYOUT": "Potential Payout", 201 | "PAST_PAYOUT": "Past Payout", 202 | "AUTHOR_PAYOUT": "Author Payout", 203 | "CURATION_PAYOUT": "Curation Payout", 204 | "POST_SUBMITTED": "Post is submitted!", 205 | "POST_LATER": "Post for later submission!", 206 | "SAVED": "Saved", 207 | "CLEARED": "Cleared", 208 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 209 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 210 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 211 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 212 | "RESET": "Reset", 213 | "MODIFY_PICTURE": "Modify Profile Picture", 214 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 215 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 216 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 217 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 218 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 219 | "SETTINGS_UPDATED": "Settings are updated!", 220 | "LANGUAGES": "Languages", 221 | "LANGUAGES_TEXT": "Here you can change language of the app.", 222 | "LOGIN_TO_X": "This operation requires user to be logged in with main password, active/posting key. Please login and try again.", 223 | "GALLERY": "Gallery" 224 | } -------------------------------------------------------------------------------- /scripts/locales/ms.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by {{platformname}} platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by {{platformname}} blockchain and {{sitename}}.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences.", 18 | "ABOUT_7": "4. App never require users to input any personal information.", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "{{platformname}}, tradeable tokens that may be transferred at anytime. {{platformname}} can be converted to {{platformpower}} in a process called powering up.", 59 | "PROFILE_2": "{{platformpower}}, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about {{platformsunit}} of {{platformname}}.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 3.5 day average value of {{platformname}}.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Notifications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "VOTE_FOR_WITNESS": "Voting for witness", 150 | "VOTED_FOR_WITNESS": "Voted for witness", 151 | "AGO": "ago", 152 | "FROM_NOW": "from now", 153 | "SECS": "secs", 154 | "A_MIN": "a min", 155 | "MINS": "mins", 156 | "AN_HOUR": "an hr", 157 | "HOURS": "hrs", 158 | "A_DAY": "a day", 159 | "DAYS": "days", 160 | "A_MONTH": "a month", 161 | "MONTHS": "months", 162 | "A_YEAR": "a year", 163 | "YEARS": "years", 164 | "MIN_READ": "min read", 165 | "DOWNVOTE_FLAG": "Downvote or Flag", 166 | "CAPTURE_PICTURE": "Capture Picture", 167 | "SELECT_PICTURE": "Select Picture", 168 | "SET_CUSTOM_URL": "Set Custom URL", 169 | "INSERT_PICTURE": "Insert Picture", 170 | "ERROR": "Error", 171 | "UPLOAD_ERROR": "Upload Error", 172 | "CAMERA_CANCELLED": "Camera Cancelled", 173 | "SET_URL": "Set URL", 174 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 175 | "COMMENT_SUBMITTED": "Comment is submitted!", 176 | "DELETE_COMMENT": "Deleting comments are irreversible...", 177 | "DELETED_COMMENT": "Deleted comment", 178 | "UPLOADING_PICTURE": "Uploading Picture", 179 | "UPLOAD_COMPLETED": "Upload Completed", 180 | "UPLOAD_FAILED": "Upload Failed", 181 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 182 | "INFO": "Info", 183 | "QR_TEXT": "Place a QR code inside the scan area", 184 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 185 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 186 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 187 | "CONFIRMATION": "Confirmation", 188 | "TX_BROADCASTED": "Transaction is broadcasted", 189 | "FEED": "Feed", 190 | "TRENDING": "Trending", 191 | "HOT": "Hot", 192 | "NEW": "New", 193 | "PROMOTED": "Promoted", 194 | "VOTES": "Votes", 195 | "PAYOUT": "Payout", 196 | "COMMENTS": "Comments", 197 | "TRENDING_30": "Trending for 30 days", 198 | "SORT_POST_BY": "Sort Posts By:", 199 | "PAYOUT_CYCLE": "Payout Cycle", 200 | "POTENTIAL_PAYOUT": "Potential Payout", 201 | "PAST_PAYOUT": "Past Payout", 202 | "AUTHOR_PAYOUT": "Author Payout", 203 | "CURATION_PAYOUT": "Curation Payout", 204 | "POST_SUBMITTED": "Post is submitted!", 205 | "POST_LATER": "Post for later submission!", 206 | "SAVED": "Saved", 207 | "CLEARED": "Cleared", 208 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 209 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 210 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 211 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 212 | "RESET": "Reset", 213 | "MODIFY_PICTURE": "Modify Profile Picture", 214 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 215 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 216 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 217 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 218 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 219 | "SETTINGS_UPDATED": "Settings are updated!", 220 | "LANGUAGES": "Languages", 221 | "LANGUAGES_TEXT": "Here you can change language of the app.", 222 | "LOGIN_TO_X": "This operation requires user to be logged in with main password, active/posting key. Please login and try again.", 223 | "GALLERY": "Gallery", 224 | "TRANSLATIONS": "Translation contributors" 225 | } -------------------------------------------------------------------------------- /scripts/locales/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by {{platformname}} platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by {{platformname}} blockchain and {{sitename}}.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences.", 18 | "ABOUT_7": "4. App never require users to input any personal information.", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "{{platformname}}, tradeable tokens that may be transferred at anytime. {{platformname}} can be converted to {{platformpower}} in a process called powering up.", 59 | "PROFILE_2": "{{platformpower}}, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about {{platformsunit}} of {{platformname}}.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 3.5 day average value of {{platformname}}.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Notifications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "VOTE_FOR_WITNESS": "Voting for witness", 150 | "VOTED_FOR_WITNESS": "Voted for witness", 151 | "AGO": "ago", 152 | "FROM_NOW": "from now", 153 | "SECS": "secs", 154 | "A_MIN": "a min", 155 | "MINS": "mins", 156 | "AN_HOUR": "an hr", 157 | "HOURS": "hrs", 158 | "A_DAY": "a day", 159 | "DAYS": "days", 160 | "A_MONTH": "a month", 161 | "MONTHS": "months", 162 | "A_YEAR": "a year", 163 | "YEARS": "years", 164 | "MIN_READ": "min read", 165 | "DOWNVOTE_FLAG": "Downvote or Flag", 166 | "CAPTURE_PICTURE": "Capture Picture", 167 | "SELECT_PICTURE": "Select Picture", 168 | "SET_CUSTOM_URL": "Set Custom URL", 169 | "INSERT_PICTURE": "Insert Picture", 170 | "ERROR": "Error", 171 | "UPLOAD_ERROR": "Upload Error", 172 | "CAMERA_CANCELLED": "Camera Cancelled", 173 | "SET_URL": "Set URL", 174 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 175 | "COMMENT_SUBMITTED": "Comment is submitted!", 176 | "DELETE_COMMENT": "Deleting comments are irreversible...", 177 | "DELETED_COMMENT": "Deleted comment", 178 | "UPLOADING_PICTURE": "Uploading Picture", 179 | "UPLOAD_COMPLETED": "Upload Completed", 180 | "UPLOAD_FAILED": "Upload Failed", 181 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 182 | "INFO": "Info", 183 | "QR_TEXT": "Place a QR code inside the scan area", 184 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 185 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 186 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 187 | "CONFIRMATION": "Confirmation", 188 | "TX_BROADCASTED": "Transaction is broadcasted", 189 | "FEED": "Feed", 190 | "TRENDING": "Trending", 191 | "HOT": "Hot", 192 | "NEW": "New", 193 | "PROMOTED": "Promoted", 194 | "VOTES": "Votes", 195 | "PAYOUT": "Payout", 196 | "COMMENTS": "Comments", 197 | "TRENDING_30": "Trending for 30 days", 198 | "SORT_POST_BY": "Sort Posts By:", 199 | "PAYOUT_CYCLE": "Payout Cycle", 200 | "POTENTIAL_PAYOUT": "Potential Payout", 201 | "PAST_PAYOUT": "Past Payout", 202 | "AUTHOR_PAYOUT": "Author Payout", 203 | "CURATION_PAYOUT": "Curation Payout", 204 | "POST_SUBMITTED": "Post is submitted!", 205 | "POST_LATER": "Post for later submission!", 206 | "SAVED": "Saved", 207 | "CLEARED": "Cleared", 208 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 209 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 210 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 211 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 212 | "RESET": "Reset", 213 | "MODIFY_PICTURE": "Modify Profile Picture", 214 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 215 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 216 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 217 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 218 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 219 | "SETTINGS_UPDATED": "Settings are updated!", 220 | "LANGUAGES": "Languages", 221 | "LANGUAGES_TEXT": "Here you can change language of the app.", 222 | "LOGIN_TO_X": "This operation requires user to be logged in with main password, active/posting key. Please login and try again.", 223 | "GALLERY": "Gallery", 224 | "TRANSLATIONS": "Translation contributors" 225 | } -------------------------------------------------------------------------------- /scripts/locales/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by {{platformname}} platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by {{platformname}} blockchain and {{sitename}}.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offers a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences.", 18 | "ABOUT_7": "4. App never require users to input any personal information.", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "{{platformname}}, tradeable tokens that may be transferred at anytime. {{platformname}} can be converted to {{platformpower}} in a process called powering up.", 59 | "PROFILE_2": "{{platformpower}}, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about {{platformsunit}} of {{platformname}}.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of {{platformname}}.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Notifications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "VOTE_FOR_WITNESS": "Voting for witness", 150 | "VOTED_FOR_WITNESS": "Voted for witness", 151 | "AGO": "ago", 152 | "FROM_NOW": "from now", 153 | "SECS": "secs", 154 | "A_MIN": "a min", 155 | "MINS": "mins", 156 | "AN_HOUR": "an hr", 157 | "HOURS": "hrs", 158 | "A_DAY": "a day", 159 | "DAYS": "days", 160 | "A_MONTH": "a month", 161 | "MONTHS": "months", 162 | "A_YEAR": "a year", 163 | "YEARS": "years", 164 | "MIN_READ": "min read", 165 | "DOWNVOTE_FLAG": "Downvote or Flag", 166 | "CAPTURE_PICTURE": "Capture Picture", 167 | "SELECT_PICTURE": "Select Picture", 168 | "SET_CUSTOM_URL": "Set Custom URL", 169 | "INSERT_PICTURE": "Insert Picture", 170 | "ERROR": "Error", 171 | "UPLOAD_ERROR": "Upload Error", 172 | "CAMERA_CANCELLED": "Camera Cancelled", 173 | "SET_URL": "Set URL", 174 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 175 | "COMMENT_SUBMITTED": "Comment is submitted!", 176 | "DELETE_COMMENT": "Deleting comments are irreversible...", 177 | "DELETED_COMMENT": "Deleted comment", 178 | "UPLOADING_PICTURE": "Uploading Picture", 179 | "UPLOAD_COMPLETED": "Upload Completed", 180 | "UPLOAD_FAILED": "Upload Failed", 181 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 182 | "INFO": "Info", 183 | "QR_TEXT": "Place a QR code inside the scan area", 184 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 185 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 186 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 187 | "CONFIRMATION": "Confirmation", 188 | "TX_BROADCASTED": "Transaction is broadcasted", 189 | "FEED": "Feed", 190 | "TRENDING": "Trending", 191 | "HOT": "Hot", 192 | "NEW": "New", 193 | "PROMOTED": "Promoted", 194 | "VOTES": "Votes", 195 | "PAYOUT": "Payout", 196 | "COMMENTS": "Comments", 197 | "TRENDING_30": "Trending for 30 days", 198 | "SORT_POST_BY": "Sort Posts By:", 199 | "PAYOUT_CYCLE": "Payout Cycle", 200 | "POTENTIAL_PAYOUT": "Potential Payout", 201 | "PAST_PAYOUT": "Past Payout", 202 | "AUTHOR_PAYOUT": "Author Payout", 203 | "CURATION_PAYOUT": "Curation Payout", 204 | "POST_SUBMITTED": "Post is submitted!", 205 | "POST_LATER": "Post for later submission!", 206 | "SAVED": "Saved", 207 | "CLEARED": "Cleared", 208 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 209 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 210 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 211 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 212 | "RESET": "Reset", 213 | "MODIFY_PICTURE": "Modify Profile Picture", 214 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 215 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 216 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 217 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 218 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 219 | "SETTINGS_UPDATED": "Settings are updated!", 220 | "LANGUAGES": "Languages", 221 | "LANGUAGES_TEXT": "Here you can change language of the app.", 222 | "LOGIN_TO_X": "This operation requires user to be logged in with main password, active/posting key. Please login and try again.", 223 | "GALLERY": "Gallery", 224 | "TRANSLATIONS": "Translation contributors", 225 | "SHARE": "Share" 226 | } -------------------------------------------------------------------------------- /scripts/locales/cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by Steem platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by Steem blockchain and Steemit.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences", 18 | "ABOUT_7": "4. App never require users to input any personal information", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "Steem, tradeable tokens that may be transferred at anytime. Steem can be converted to Steem Power in a process called powering up", 59 | "PROFILE_2": "Steem Power, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about $1.00 of Steem.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of Steem.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Nofications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "LOGIN_TO_REBLOG": "Please, login to Reblog", 150 | "LOGIN_TO_VOTE": "Please, login to Vote", 151 | "VOTE_FOR_WITNESS": "Voting for witness", 152 | "VOTED_FOR_WITNESS": "Voted for witness", 153 | "LOGIN_TO_VOTE_WITNESS": "Please, login to Vote Witness", 154 | "LOGIN_TO_FOLLOW": "Please, login to Follow", 155 | "AGO": "ago", 156 | "FROM_NOW": "from now", 157 | "SECS": "secs", 158 | "A_MIN": "a min", 159 | "MINS": "mins", 160 | "AN_HOUR": "an hr", 161 | "HOURS": "hrs", 162 | "A_DAY": "a day", 163 | "DAYS": "days", 164 | "A_MONTH": "a month", 165 | "MONTHS": "months", 166 | "A_YEAR": "a year", 167 | "YEARS": "years", 168 | "MIN_READ": "min read", 169 | "DOWNVOTE_FLAG": "Downvote or Flag", 170 | "CAPTURE_PICTURE": "Capture Picture", 171 | "SELECT_PICTURE": "Select Picture", 172 | "SET_CUSTOM_URL": "Set Custom URL", 173 | "INSERT_PICTURE": "Insert Picture", 174 | "ERROR": "Error", 175 | "UPLOAD_ERROR": "Upload Error", 176 | "CAMERA_CANCELLED": "Camera Cancelled", 177 | "SET_URL": "Set URL", 178 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 179 | "COMMENT_SUBMITTED": "Comment is submitted!", 180 | "LOGIN_TO_COMMENT": "Please, login to Comment", 181 | "DELETE_COMMENT": "Deleting comments are irreversible...", 182 | "DELETED_COMMENT": "Deleted comment", 183 | "LOGIN_TO_DELETE_COMMENT": "Please, login to Delete Comment", 184 | "UPLOADING_PICTURE": "Uploading Picture", 185 | "UPLOAD_COMPLETED": "Upload Completed", 186 | "UPLOAD_FAILED": "Upload Failed", 187 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 188 | "INFO": "Info", 189 | "QR_TEXT": "Place a QR code inside the scan area", 190 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 191 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 192 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 193 | "CONFIRMATION": "Confirmation", 194 | "TX_BROADCASTED": "Transaction is broadcasted", 195 | "LOGIN_TO_TRANSFER": "Please, login to Transfer", 196 | "FEED": "Feed", 197 | "TRENDING": "Trending", 198 | "HOT": "Hot", 199 | "NEW": "New", 200 | "PROMOTED": "Promoted", 201 | "VOTES": "Votes", 202 | "PAYOUT": "Payout", 203 | "COMMENTS": "Comments", 204 | "TRENDING_30": "Trending for 30 days", 205 | "SORT_POST_BY": "Sort Posts By:", 206 | "PAYOUT_CIRCLE": "Payout Circle", 207 | "POTENTIAL_PAYOUT": "Potential Payout", 208 | "PAST_PAYOUT": "Past Payout", 209 | "AUTHOR_PAYOUT": "Author Payout", 210 | "CURATION_PAYOUT": "Curation Payout", 211 | "POST_SUBMITTED": "Post is submitted!", 212 | "POST_LATER": "Post for later submission!", 213 | "SAVED": "Saved", 214 | "LOGIN_TO_POST": "Please, Login to Post", 215 | "CLEARED": "Cleared", 216 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 217 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 218 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 219 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 220 | "RESET": "Reset", 221 | "MODIFY_PICTURE": "Modify Profile Picture", 222 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 223 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 224 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 225 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 226 | "LOGIN_TO_UPDATE": "Please, login to Update", 227 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 228 | "SETTINGS_UPDATED": "Settings are updated!", 229 | "LANGUAGES": "Languages", 230 | "LANGUAGES_TEXT": "Here you can change language of the app." 231 | } -------------------------------------------------------------------------------- /scripts/locales/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by Steem platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by Steem blockchain and Steemit.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences", 18 | "ABOUT_7": "4. App never require users to input any personal information", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "Steem, tradeable tokens that may be transferred at anytime. Steem can be converted to Steem Power in a process called powering up", 59 | "PROFILE_2": "Steem Power, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about $1.00 of Steem.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of Steem.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Nofications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "LOGIN_TO_REBLOG": "Please, login to Reblog", 150 | "LOGIN_TO_VOTE": "Please, login to Vote", 151 | "VOTE_FOR_WITNESS": "Voting for witness", 152 | "VOTED_FOR_WITNESS": "Voted for witness", 153 | "LOGIN_TO_VOTE_WITNESS": "Please, login to Vote Witness", 154 | "LOGIN_TO_FOLLOW": "Please, login to Follow", 155 | "AGO": "ago", 156 | "FROM_NOW": "from now", 157 | "SECS": "secs", 158 | "A_MIN": "a min", 159 | "MINS": "mins", 160 | "AN_HOUR": "an hr", 161 | "HOURS": "hrs", 162 | "A_DAY": "a day", 163 | "DAYS": "days", 164 | "A_MONTH": "a month", 165 | "MONTHS": "months", 166 | "A_YEAR": "a year", 167 | "YEARS": "years", 168 | "MIN_READ": "min read", 169 | "DOWNVOTE_FLAG": "Downvote or Flag", 170 | "CAPTURE_PICTURE": "Capture Picture", 171 | "SELECT_PICTURE": "Select Picture", 172 | "SET_CUSTOM_URL": "Set Custom URL", 173 | "INSERT_PICTURE": "Insert Picture", 174 | "ERROR": "Error", 175 | "UPLOAD_ERROR": "Upload Error", 176 | "CAMERA_CANCELLED": "Camera Cancelled", 177 | "SET_URL": "Set URL", 178 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 179 | "COMMENT_SUBMITTED": "Comment is submitted!", 180 | "LOGIN_TO_COMMENT": "Please, login to Comment", 181 | "DELETE_COMMENT": "Deleting comments are irreversible...", 182 | "DELETED_COMMENT": "Deleted comment", 183 | "LOGIN_TO_DELETE_COMMENT": "Please, login to Delete Comment", 184 | "UPLOADING_PICTURE": "Uploading Picture", 185 | "UPLOAD_COMPLETED": "Upload Completed", 186 | "UPLOAD_FAILED": "Upload Failed", 187 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 188 | "INFO": "Info", 189 | "QR_TEXT": "Place a QR code inside the scan area", 190 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 191 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 192 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 193 | "CONFIRMATION": "Confirmation", 194 | "TX_BROADCASTED": "Transaction is broadcasted", 195 | "LOGIN_TO_TRANSFER": "Please, login to Transfer", 196 | "FEED": "Feed", 197 | "TRENDING": "Trending", 198 | "HOT": "Hot", 199 | "NEW": "New", 200 | "PROMOTED": "Promoted", 201 | "VOTES": "Votes", 202 | "PAYOUT": "Payout", 203 | "COMMENTS": "Comments", 204 | "TRENDING_30": "Trending for 30 days", 205 | "SORT_POST_BY": "Sort Posts By:", 206 | "PAYOUT_CIRCLE": "Payout Circle", 207 | "POTENTIAL_PAYOUT": "Potential Payout", 208 | "PAST_PAYOUT": "Past Payout", 209 | "AUTHOR_PAYOUT": "Author Payout", 210 | "CURATION_PAYOUT": "Curation Payout", 211 | "POST_SUBMITTED": "Post is submitted!", 212 | "POST_LATER": "Post for later submission!", 213 | "SAVED": "Saved", 214 | "LOGIN_TO_POST": "Please, Login to Post", 215 | "CLEARED": "Cleared", 216 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 217 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 218 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 219 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 220 | "RESET": "Reset", 221 | "MODIFY_PICTURE": "Modify Profile Picture", 222 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 223 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 224 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 225 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 226 | "LOGIN_TO_UPDATE": "Please, login to Update", 227 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 228 | "SETTINGS_UPDATED": "Settings are updated!", 229 | "LANGUAGES": "Languages", 230 | "LANGUAGES_TEXT": "Here you can change language of the app." 231 | } -------------------------------------------------------------------------------- /scripts/locales/jp.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by Steem platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by Steem blockchain and Steemit.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences", 18 | "ABOUT_7": "4. App never require users to input any personal information", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "Steem, tradeable tokens that may be transferred at anytime. Steem can be converted to Steem Power in a process called powering up", 59 | "PROFILE_2": "Steem Power, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about $1.00 of Steem.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of Steem.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Nofications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "LOGIN_TO_REBLOG": "Please, login to Reblog", 150 | "LOGIN_TO_VOTE": "Please, login to Vote", 151 | "VOTE_FOR_WITNESS": "Voting for witness", 152 | "VOTED_FOR_WITNESS": "Voted for witness", 153 | "LOGIN_TO_VOTE_WITNESS": "Please, login to Vote Witness", 154 | "LOGIN_TO_FOLLOW": "Please, login to Follow", 155 | "AGO": "ago", 156 | "FROM_NOW": "from now", 157 | "SECS": "secs", 158 | "A_MIN": "a min", 159 | "MINS": "mins", 160 | "AN_HOUR": "an hr", 161 | "HOURS": "hrs", 162 | "A_DAY": "a day", 163 | "DAYS": "days", 164 | "A_MONTH": "a month", 165 | "MONTHS": "months", 166 | "A_YEAR": "a year", 167 | "YEARS": "years", 168 | "MIN_READ": "min read", 169 | "DOWNVOTE_FLAG": "Downvote or Flag", 170 | "CAPTURE_PICTURE": "Capture Picture", 171 | "SELECT_PICTURE": "Select Picture", 172 | "SET_CUSTOM_URL": "Set Custom URL", 173 | "INSERT_PICTURE": "Insert Picture", 174 | "ERROR": "Error", 175 | "UPLOAD_ERROR": "Upload Error", 176 | "CAMERA_CANCELLED": "Camera Cancelled", 177 | "SET_URL": "Set URL", 178 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 179 | "COMMENT_SUBMITTED": "Comment is submitted!", 180 | "LOGIN_TO_COMMENT": "Please, login to Comment", 181 | "DELETE_COMMENT": "Deleting comments are irreversible...", 182 | "DELETED_COMMENT": "Deleted comment", 183 | "LOGIN_TO_DELETE_COMMENT": "Please, login to Delete Comment", 184 | "UPLOADING_PICTURE": "Uploading Picture", 185 | "UPLOAD_COMPLETED": "Upload Completed", 186 | "UPLOAD_FAILED": "Upload Failed", 187 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 188 | "INFO": "Info", 189 | "QR_TEXT": "Place a QR code inside the scan area", 190 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 191 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 192 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 193 | "CONFIRMATION": "Confirmation", 194 | "TX_BROADCASTED": "Transaction is broadcasted", 195 | "LOGIN_TO_TRANSFER": "Please, login to Transfer", 196 | "FEED": "Feed", 197 | "TRENDING": "Trending", 198 | "HOT": "Hot", 199 | "NEW": "New", 200 | "PROMOTED": "Promoted", 201 | "VOTES": "Votes", 202 | "PAYOUT": "Payout", 203 | "COMMENTS": "Comments", 204 | "TRENDING_30": "Trending for 30 days", 205 | "SORT_POST_BY": "Sort Posts By:", 206 | "PAYOUT_CIRCLE": "Payout Circle", 207 | "POTENTIAL_PAYOUT": "Potential Payout", 208 | "PAST_PAYOUT": "Past Payout", 209 | "AUTHOR_PAYOUT": "Author Payout", 210 | "CURATION_PAYOUT": "Curation Payout", 211 | "POST_SUBMITTED": "Post is submitted!", 212 | "POST_LATER": "Post for later submission!", 213 | "SAVED": "Saved", 214 | "LOGIN_TO_POST": "Please, Login to Post", 215 | "CLEARED": "Cleared", 216 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 217 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 218 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 219 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 220 | "RESET": "Reset", 221 | "MODIFY_PICTURE": "Modify Profile Picture", 222 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 223 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 224 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 225 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 226 | "LOGIN_TO_UPDATE": "Please, login to Update", 227 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 228 | "SETTINGS_UPDATED": "Settings are updated!", 229 | "LANGUAGES": "Languages", 230 | "LANGUAGES_TEXT": "Here you can change language of the app." 231 | } -------------------------------------------------------------------------------- /scripts/locales/kr.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by Steem platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by Steem blockchain and Steemit.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences", 18 | "ABOUT_7": "4. App never require users to input any personal information", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "Steem, tradeable tokens that may be transferred at anytime. Steem can be converted to Steem Power in a process called powering up", 59 | "PROFILE_2": "Steem Power, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about $1.00 of Steem.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of Steem.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Nofications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "LOGIN_TO_REBLOG": "Please, login to Reblog", 150 | "LOGIN_TO_VOTE": "Please, login to Vote", 151 | "VOTE_FOR_WITNESS": "Voting for witness", 152 | "VOTED_FOR_WITNESS": "Voted for witness", 153 | "LOGIN_TO_VOTE_WITNESS": "Please, login to Vote Witness", 154 | "LOGIN_TO_FOLLOW": "Please, login to Follow", 155 | "AGO": "ago", 156 | "FROM_NOW": "from now", 157 | "SECS": "secs", 158 | "A_MIN": "a min", 159 | "MINS": "mins", 160 | "AN_HOUR": "an hr", 161 | "HOURS": "hrs", 162 | "A_DAY": "a day", 163 | "DAYS": "days", 164 | "A_MONTH": "a month", 165 | "MONTHS": "months", 166 | "A_YEAR": "a year", 167 | "YEARS": "years", 168 | "MIN_READ": "min read", 169 | "DOWNVOTE_FLAG": "Downvote or Flag", 170 | "CAPTURE_PICTURE": "Capture Picture", 171 | "SELECT_PICTURE": "Select Picture", 172 | "SET_CUSTOM_URL": "Set Custom URL", 173 | "INSERT_PICTURE": "Insert Picture", 174 | "ERROR": "Error", 175 | "UPLOAD_ERROR": "Upload Error", 176 | "CAMERA_CANCELLED": "Camera Cancelled", 177 | "SET_URL": "Set URL", 178 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 179 | "COMMENT_SUBMITTED": "Comment is submitted!", 180 | "LOGIN_TO_COMMENT": "Please, login to Comment", 181 | "DELETE_COMMENT": "Deleting comments are irreversible...", 182 | "DELETED_COMMENT": "Deleted comment", 183 | "LOGIN_TO_DELETE_COMMENT": "Please, login to Delete Comment", 184 | "UPLOADING_PICTURE": "Uploading Picture", 185 | "UPLOAD_COMPLETED": "Upload Completed", 186 | "UPLOAD_FAILED": "Upload Failed", 187 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 188 | "INFO": "Info", 189 | "QR_TEXT": "Place a QR code inside the scan area", 190 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 191 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 192 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 193 | "CONFIRMATION": "Confirmation", 194 | "TX_BROADCASTED": "Transaction is broadcasted", 195 | "LOGIN_TO_TRANSFER": "Please, login to Transfer", 196 | "FEED": "Feed", 197 | "TRENDING": "Trending", 198 | "HOT": "Hot", 199 | "NEW": "New", 200 | "PROMOTED": "Promoted", 201 | "VOTES": "Votes", 202 | "PAYOUT": "Payout", 203 | "COMMENTS": "Comments", 204 | "TRENDING_30": "Trending for 30 days", 205 | "SORT_POST_BY": "Sort Posts By:", 206 | "PAYOUT_CIRCLE": "Payout Circle", 207 | "POTENTIAL_PAYOUT": "Potential Payout", 208 | "PAST_PAYOUT": "Past Payout", 209 | "AUTHOR_PAYOUT": "Author Payout", 210 | "CURATION_PAYOUT": "Curation Payout", 211 | "POST_SUBMITTED": "Post is submitted!", 212 | "POST_LATER": "Post for later submission!", 213 | "SAVED": "Saved", 214 | "LOGIN_TO_POST": "Please, Login to Post", 215 | "CLEARED": "Cleared", 216 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 217 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 218 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 219 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 220 | "RESET": "Reset", 221 | "MODIFY_PICTURE": "Modify Profile Picture", 222 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 223 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 224 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 225 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 226 | "LOGIN_TO_UPDATE": "Please, login to Update", 227 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 228 | "SETTINGS_UPDATED": "Settings are updated!", 229 | "LANGUAGES": "Languages", 230 | "LANGUAGES_TEXT": "Here you can change language of the app." 231 | } -------------------------------------------------------------------------------- /scripts/locales/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by Steem platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by Steem blockchain and Steemit.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences", 18 | "ABOUT_7": "4. App never require users to input any personal information", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "Steem, tradeable tokens that may be transferred at anytime. Steem can be converted to Steem Power in a process called powering up", 59 | "PROFILE_2": "Steem Power, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about $1.00 of Steem.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of Steem.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Nofications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "LOGIN_TO_REBLOG": "Please, login to Reblog", 150 | "LOGIN_TO_VOTE": "Please, login to Vote", 151 | "VOTE_FOR_WITNESS": "Voting for witness", 152 | "VOTED_FOR_WITNESS": "Voted for witness", 153 | "LOGIN_TO_VOTE_WITNESS": "Please, login to Vote Witness", 154 | "LOGIN_TO_FOLLOW": "Please, login to Follow", 155 | "AGO": "ago", 156 | "FROM_NOW": "from now", 157 | "SECS": "secs", 158 | "A_MIN": "a min", 159 | "MINS": "mins", 160 | "AN_HOUR": "an hr", 161 | "HOURS": "hrs", 162 | "A_DAY": "a day", 163 | "DAYS": "days", 164 | "A_MONTH": "a month", 165 | "MONTHS": "months", 166 | "A_YEAR": "a year", 167 | "YEARS": "years", 168 | "MIN_READ": "min read", 169 | "DOWNVOTE_FLAG": "Downvote or Flag", 170 | "CAPTURE_PICTURE": "Capture Picture", 171 | "SELECT_PICTURE": "Select Picture", 172 | "SET_CUSTOM_URL": "Set Custom URL", 173 | "INSERT_PICTURE": "Insert Picture", 174 | "ERROR": "Error", 175 | "UPLOAD_ERROR": "Upload Error", 176 | "CAMERA_CANCELLED": "Camera Cancelled", 177 | "SET_URL": "Set URL", 178 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 179 | "COMMENT_SUBMITTED": "Comment is submitted!", 180 | "LOGIN_TO_COMMENT": "Please, login to Comment", 181 | "DELETE_COMMENT": "Deleting comments are irreversible...", 182 | "DELETED_COMMENT": "Deleted comment", 183 | "LOGIN_TO_DELETE_COMMENT": "Please, login to Delete Comment", 184 | "UPLOADING_PICTURE": "Uploading Picture", 185 | "UPLOAD_COMPLETED": "Upload Completed", 186 | "UPLOAD_FAILED": "Upload Failed", 187 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 188 | "INFO": "Info", 189 | "QR_TEXT": "Place a QR code inside the scan area", 190 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 191 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 192 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 193 | "CONFIRMATION": "Confirmation", 194 | "TX_BROADCASTED": "Transaction is broadcasted", 195 | "LOGIN_TO_TRANSFER": "Please, login to Transfer", 196 | "FEED": "Feed", 197 | "TRENDING": "Trending", 198 | "HOT": "Hot", 199 | "NEW": "New", 200 | "PROMOTED": "Promoted", 201 | "VOTES": "Votes", 202 | "PAYOUT": "Payout", 203 | "COMMENTS": "Comments", 204 | "TRENDING_30": "Trending for 30 days", 205 | "SORT_POST_BY": "Sort Posts By:", 206 | "PAYOUT_CIRCLE": "Payout Circle", 207 | "POTENTIAL_PAYOUT": "Potential Payout", 208 | "PAST_PAYOUT": "Past Payout", 209 | "AUTHOR_PAYOUT": "Author Payout", 210 | "CURATION_PAYOUT": "Curation Payout", 211 | "POST_SUBMITTED": "Post is submitted!", 212 | "POST_LATER": "Post for later submission!", 213 | "SAVED": "Saved", 214 | "LOGIN_TO_POST": "Please, Login to Post", 215 | "CLEARED": "Cleared", 216 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 217 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 218 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 219 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 220 | "RESET": "Reset", 221 | "MODIFY_PICTURE": "Modify Profile Picture", 222 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 223 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 224 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 225 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 226 | "LOGIN_TO_UPDATE": "Please, login to Update", 227 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 228 | "SETTINGS_UPDATED": "Settings are updated!", 229 | "LANGUAGES": "Languages", 230 | "LANGUAGES_TEXT": "Here you can change language of the app." 231 | } -------------------------------------------------------------------------------- /scripts/locales/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "HOME": "Home", 3 | "LOGIN": "Login", 4 | "LOGOUT": "Logout", 5 | "PROFILE": "Profile", 6 | "FOLLOW": "Follow", 7 | "BOOKMARKS": "Bookmarks", 8 | "TRANSFER": "Transfer", 9 | "MARKET": "Market", 10 | "SETTINGS": "Settings", 11 | "ABOUT": "About", 12 | "ABOUT_1": "where anyone can earn rewards for their content!", 13 | "ABOUT_2": "is powered by {{platformname}} platform. App is created by", 14 | "ABOUT_3": "and it is open-source, community driven mobile project. It offers content access for reading, commenting, voting, posting, transfer earnings, etc. features offered by {{platformname}} blockchain and {{sitename}}.", 15 | "ABOUT_4": "1. App never access or hold onto user funds.", 16 | "ABOUT_5": "2. App offer a client-side security model, with private keys hosted locally and never sent to any servers.", 17 | "ABOUT_6": "3. App offers simple, attractive user interfaces and experiences.", 18 | "ABOUT_7": "4. App never require users to input any personal information.", 19 | "ABOUT_8": "Vote good-karma as witness", 20 | "ABOUT_9": "Contact/Feedback:", 21 | "ABOUT_10": "More info:", 22 | "REMOVE": "Remove", 23 | "MARKET_VIEW": "Market View", 24 | "PRICE": "Price", 25 | "AMOUNT": "Amount", 26 | "TOTAL": "Total", 27 | "NOORDERS": "No open orders for", 28 | "DATE": "Date", 29 | "BUY": "Buy", 30 | "SELL": "Sell", 31 | "OPEN": "Open", 32 | "HISTORY": "History", 33 | "FOLLOW_BACK": "Follow back", 34 | "FOLLOWED": "Followed", 35 | "UNFOLLOW": "Unfollow", 36 | "FOLLOWING": "Following", 37 | "FOLLOWERS": "Followers", 38 | "SEARCH_FOLLOWERS": "Search followers", 39 | "SEARCH_FOLLOWING": "Search following", 40 | "BY": "by", 41 | "IN": "in", 42 | "MENU": "Menu", 43 | "BOOKMARK": "Bookmark", 44 | "REBLOG": "Reblog", 45 | "UPVOTE": "Upvote", 46 | "DOWNVOTE": "Downvote", 47 | "UNVOTE_DOWNVOTED": "Unvote Downvoted", 48 | "UNVOTE_UPVOTED": "Unvote upvoted", 49 | "REPLY": "Reply", 50 | "EDIT": "Edit", 51 | "POST_1": "Swipe left on comments to see options", 52 | "POST_2": "Tap on comments to see sub-comments", 53 | "OPTIONS": "Options", 54 | "RESTEEMED_BY": "Resteemed by", 55 | "FOLLOW": "Follow", 56 | "NOTHING_HERE": "Nothing here, yet...", 57 | "BALANCES": "Balances", 58 | "PROFILE_1": "{{platformname}}, tradeable tokens that may be transferred at anytime. {{platformname}} can be converted to {{platformpower}} in a process called powering up.", 59 | "PROFILE_2": "{{platformpower}}, influence tokens that earn more power for holding long term and voting on posts. The more one holds the more one can influence other’s rewards and earn rewards for accurate voting.", 60 | "PROFILE_3": "Tokens worth about {{platformsunit}} of {{platformname}}.", 61 | "ESTIMATED_VALUE": "Estimated Value", 62 | "PROFILE_4": "The estimated value is based on a 7 day average value of {{platformname}}.", 63 | "TRANSACTION_HISTORY": "Transaction History", 64 | "POSTING": "Posting", 65 | "PROFILE_5": "The posting key is used for posting and voting. It should be different from the active and owner keys.", 66 | "OWNER": "Owner", 67 | "PROFILE_6": "The owner key is the master key for the account and is required to change the other keys. The private key or password for the owner key should be kept offline as much as possible.", 68 | "ACTIVE": "Active", 69 | "PROFILE_7": "The active key is used to make transfers and place orders in the internal market.", 70 | "MEMO": "Memo", 71 | "PROFILE_8": "The memo key is used to create and read memos.", 72 | "BLOG": "Blog", 73 | "POSTS": "Posts", 74 | "REPLIES": "Replies", 75 | "WALLET": "Wallet", 76 | "TAG": "Tag", 77 | "USER": "User", 78 | "CLOSE": "Close", 79 | "USER": "User", 80 | "TO": "To", 81 | "ASSET": "Asset", 82 | "SEND": "Send", 83 | "SECURITY": "Security", 84 | "AVAILABLE": "Available", 85 | "PUBLIC_MEMO": "Public Memo", 86 | "TO_DESC": "User e.g. good-karma", 87 | "PIN_CODE": "Pin Code", 88 | "PIN_TEXT": "PIN code helps you to secure app and your data.

Note: Once enabled, you have max 4 tries to unlock, if you forgot pin or fail, app will remove logged in user data. You can re-login and continue using app.", 89 | "NOTIFICATIONS": "Notifications", 90 | "VOTE_TEXT": "You will get notification when someone votes your content!
Note: Notifications include voting weight as well in alert message. (be it up-vote, down-vote, un-vote).", 91 | "VOTE": "Vote", 92 | "COMMENT_TEXT": "You will get notification when someone comments on your posts or comments!
Note: Notifications include when someone edits their comments as well.", 93 | "COMMENT": "Comment", 94 | "FOLLOW_TEXT": "You will get notification when someone Follow or Unfollow you!", 95 | "MENTIONS": "Mentions", 96 | "MENTIONS_TEXT": "You will get notification when someone mentions you in their post/comment!", 97 | "RESTEEM": "Resteem", 98 | "RESTEEM_TEXT": "You will get notification when someone resteems your post!", 99 | "CONFIGURATIONS": "Configurations", 100 | "VOTING": "Voting", 101 | "VOTING_TEXT": "Vote weight or percentage affects voting power on app, so you can regulate your voting reward.

Note: This will change voting weight/percentage for downvoting as well and it is everywhere on app", 102 | "SERVER": "Server", 103 | "SERVER_TEXT": "Recommended", 104 | "SAVE_CHANGES": "Save Changes", 105 | "VOTERS_INFO": "Voters info", 106 | "WELCOME_BACK": "Welcome back!", 107 | "LOGIN_1": "Sign in with your username and password to continue.", 108 | "LOGIN_2": "Posting key is used for post, comment, vote, follow.", 109 | "LOGIN_3": "Active key is used for transfers and profile picture update.", 110 | "LOGIN_4": "User credentials are kept locally on the device. Upon Logout credentials are removed!", 111 | "DONT_HAVE": "Don't have an account?", 112 | "SIGN_UP_NOW": "Sign up now", 113 | "CANCEL": "Cancel", 114 | "ADVANCED": "Advanced", 115 | "ACTIVE_PRIKEY": "Active private key", 116 | "POSTING_PRIKEY": "Posting private key", 117 | "MASTER_PASS": "Master/main password", 118 | "USERNAME": "Username", 119 | "CARD_VIEW": "Card view", 120 | "COMPACT_VIEW": "Compact view", 121 | "SEARCH": "Search", 122 | "SUBMIT_A_STORY": "Submit a story", 123 | "REPLYTO": "Reply to", 124 | "POST": "Post", 125 | "PREVIEW": "Preview", 126 | "DEFAULT": "Default 50% / 50%", 127 | "POWERUP": "Power Up 100%", 128 | "DECLINE_PAYOUT": "Decline Payout", 129 | "SAVE_FOR_LATER": "SAVE FOR LATER", 130 | "CLEAR": "CLEAR", 131 | "POST_CONTENT": "Post content", 132 | "COMMENT_CONTENT": "Comment content", 133 | "TITLE": "Title", 134 | "TAGS": "Tags", 135 | "NOT_MATCH": "NOT MATCH", 136 | "CONFIRM_PIN": "Confirm PIN", 137 | "INCORRECT": "INCORRECT", 138 | "OPENING_POST": "opening post", 139 | "SET_PIN": "Set PIN", 140 | "ENTER_PIN": "Enter PIN", 141 | "ARE_YOU_SURE": "Are you sure?", 142 | "REBLOG_TEXT": "Resteem is irreversible, do you want to continue?", 143 | "BROADCAST_ERROR": "Broadcast error, try again!", 144 | "SUCCESS": "Success", 145 | "REBLOGGED_POST": "Reblogged post!", 146 | "LOGIN_FAIL": "Login failed! Please make sure you have logged in with master password or provided Posting private key on Login if you have choosed Advanced mode.", 147 | "LOGIN_FAIL_A": "Login failed! Please make sure you have logged in with master password or provided Active private key on Login if you have chosen Advanced mode.", 148 | "WARNING": "Warning", 149 | "VOTE_FOR_WITNESS": "Voting for witness", 150 | "VOTED_FOR_WITNESS": "Voted for witness", 151 | "AGO": "ago", 152 | "FROM_NOW": "from now", 153 | "SECS": "secs", 154 | "A_MIN": "a min", 155 | "MINS": "mins", 156 | "AN_HOUR": "an hr", 157 | "HOURS": "hrs", 158 | "A_DAY": "a day", 159 | "DAYS": "days", 160 | "A_MONTH": "a month", 161 | "MONTHS": "months", 162 | "A_YEAR": "a year", 163 | "YEARS": "years", 164 | "MIN_READ": "min read", 165 | "DOWNVOTE_FLAG": "Downvote or Flag", 166 | "CAPTURE_PICTURE": "Capture Picture", 167 | "SELECT_PICTURE": "Select Picture", 168 | "SET_CUSTOM_URL": "Set Custom URL", 169 | "INSERT_PICTURE": "Insert Picture", 170 | "ERROR": "Error", 171 | "UPLOAD_ERROR": "Upload Error", 172 | "CAMERA_CANCELLED": "Camera Cancelled", 173 | "SET_URL": "Set URL", 174 | "DIRECT_LINK_PICTURE": "Direct web link for the picture", 175 | "COMMENT_SUBMITTED": "Comment is submitted!", 176 | "DELETE_COMMENT": "Deleting comments are irreversible...", 177 | "DELETED_COMMENT": "Deleted comment", 178 | "UPLOADING_PICTURE": "Uploading Picture", 179 | "UPLOAD_COMPLETED": "Upload Completed", 180 | "UPLOAD_FAILED": "Upload Failed", 181 | "PASSWORD_INCORRECT": "The password or account name was incorrect", 182 | "INFO": "Info", 183 | "QR_TEXT": "Place a QR code inside the scan area", 184 | "BALANCE_TEXT": "Make sure you have enough balance for transaction!", 185 | "NONEXIST_USER": "User you are trying to transfer fund, doesn't exist!", 186 | "TRANSFER_TEXT": "Are you sure you want to transfer?", 187 | "CONFIRMATION": "Confirmation", 188 | "TX_BROADCASTED": "Transaction is broadcasted", 189 | "FEED": "Feed", 190 | "TRENDING": "Trending", 191 | "HOT": "Hot", 192 | "NEW": "New", 193 | "PROMOTED": "Promoted", 194 | "VOTES": "Votes", 195 | "PAYOUT": "Payout", 196 | "COMMENTS": "Comments", 197 | "TRENDING_30": "Trending for 30 days", 198 | "SORT_POST_BY": "Sort Posts By:", 199 | "PAYOUT_CYCLE": "Payout Cycle", 200 | "POTENTIAL_PAYOUT": "Potential Payout", 201 | "PAST_PAYOUT": "Past Payout", 202 | "AUTHOR_PAYOUT": "Author Payout", 203 | "CURATION_PAYOUT": "Curation Payout", 204 | "POST_SUBMITTED": "Post is submitted!", 205 | "POST_LATER": "Post for later submission!", 206 | "SAVED": "Saved", 207 | "CLEARED": "Cleared", 208 | "FLAGGING_TEXT": "Flagging a post can remove rewards and make this material less visible.

The flag should be used for the following: ", 209 | "REQUEST_LIMIT_TEXT": "Request limit reached. Check out other trend/tags!", 210 | "POST_IS_UNBOOKMARK": "Post is removed from bookmarks!", 211 | "POST_IS_BOOKMARK": "Post is added to bookmarks!", 212 | "RESET": "Reset", 213 | "MODIFY_PICTURE": "Modify Profile Picture", 214 | "MODIFY_COVER_PICTURE": "Modify Cover Picture", 215 | "ACTIVE_KEY_REQUIRED_TEXT": "Please provide Active private key if you have chosen Advanced login mode!", 216 | "RESET_PICTURE_TEXT": "This will reset user profile picture", 217 | "RESET_COVER_PICTURE_TEXT": "This will reset user cover picture", 218 | "UPDATE_REQUIRES_RESTART": "Server update requires Restart!", 219 | "SETTINGS_UPDATED": "Settings are updated!", 220 | "LANGUAGES": "Languages", 221 | "LANGUAGES_TEXT": "Here you can change language of the app.", 222 | "LOGIN_TO_X": "This operation requires user to be logged in with main password, active/posting key. Please login and try again.", 223 | "GALLERY": "Gallery", 224 | "TRANSLATIONS": "Translation contributors", 225 | "RUSSIAN": "Russian", 226 | "GERMAN": "German", 227 | "FRENCH": "French", 228 | "ENGLISH": "English", 229 | "ROMANIAN": "Romanian", 230 | "DUTCH": "Dutch", 231 | "PORTUGUESE": "Portuguese", 232 | "VIETNAMESE": "Vietnamese", 233 | "POLISH": "Polish", 234 | "GREEK": "Greek", 235 | "BULGARIAN": "Bulgarian", 236 | "ARABIC": "Arabic" 237 | } --------------------------------------------------------------------------------