From d726ed0b2362213ad696af9d3f2c1436f894bd94 Mon Sep 17 00:00:00 2001 From: Bert Verhelst Date: Sat, 16 Mar 2019 11:29:17 +0100 Subject: [PATCH 1/3] feat: #2101 Add option to hide tabbar labels --- app/ux/WebView.js | 3 ++- app/view/preferences/Preferences.js | 6 ++++++ electron/main.js | 7 ++++--- resources/languages/af.js | 2 +- resources/languages/bg.js | 2 +- resources/languages/bn.js | 2 +- resources/languages/bs2.js | 2 +- resources/languages/ca.js | 2 +- resources/languages/ceb.js | 2 +- resources/languages/cs.js | 2 +- resources/languages/da.js | 2 +- resources/languages/de-CH.js | 2 +- resources/languages/de.js | 2 +- resources/languages/en.js | 2 +- resources/languages/fi.js | 2 +- resources/languages/fil.js | 2 +- resources/languages/fr.js | 2 +- resources/languages/he.js | 2 +- resources/languages/hi.js | 2 +- resources/languages/hr.js | 2 +- resources/languages/hu.js | 2 +- resources/languages/it.js | 2 +- resources/languages/ja.js | 2 +- resources/languages/nl.js | 2 +- resources/languages/no.js | 2 +- resources/languages/pl.js | 2 +- resources/languages/pt-BR.js | 2 +- resources/languages/pt-PT.js | 2 +- resources/languages/ro.js | 2 +- resources/languages/sk.js | 2 +- resources/languages/sr.js | 2 +- resources/languages/sv-SE.js | 2 +- resources/languages/uk.js | 2 +- resources/languages/vi.js | 2 +- resources/languages/zh-CN.js | 2 +- resources/languages/zh-TW.js | 2 +- 36 files changed, 45 insertions(+), 37 deletions(-) diff --git a/app/ux/WebView.js b/app/ux/WebView.js index adeb9d13..394ddded 100644 --- a/app/ux/WebView.js +++ b/app/ux/WebView.js @@ -37,9 +37,10 @@ Ext.define('Rambox.ux.WebView',{ // Allow Custom sites with self certificates //if ( me.record.get('trust') ) ipc.send('allowCertificate', me.src); + const prefConfig = ipc.sendSync('getConfig'); Ext.apply(me, { items: me.webViewConstructor() - ,title: me.record.get('tabname') ? me.record.get('name') : '' + ,title: prefConfig.hide_tabbar_labels ? '' : (me.record.get('tabname') ? me.record.get('name') : '') ,icon: me.record.get('type') === 'custom' ? (me.record.get('logo') === '' ? 'resources/icons/custom.png' : me.record.get('logo')) : 'resources/icons/'+me.record.get('logo') ,src: me.record.get('url') ,type: me.record.get('type') diff --git a/app/view/preferences/Preferences.js b/app/view/preferences/Preferences.js index 4f540c25..c51ad366 100644 --- a/app/view/preferences/Preferences.js +++ b/app/view/preferences/Preferences.js @@ -167,6 +167,12 @@ Ext.define('Rambox.view.preferences.Preferences',{ ] }) } + ,{ + xtype: 'checkbox' + ,name: 'hide_tabbar_labels' + ,boxLabel: locale['preferences[28]'] + ,value: config.hide_tabbar_labels + } ,{ xtype: 'combo' ,name: 'default_service' diff --git a/electron/main.js b/electron/main.js index dfbb78e9..65f56ba6 100644 --- a/electron/main.js +++ b/electron/main.js @@ -23,6 +23,7 @@ const config = new Config({ always_on_top: false ,hide_menu_bar: false ,tabbar_location: 'top' + ,hide_tabbar_labels: true ,window_display_behavior: 'taskbar_tray' ,auto_launch: !isDev ,flash_frame: true @@ -299,7 +300,7 @@ ipcMain.on('setServiceNotifications', function(event, partition, op) { ipcMain.on('setDontDisturb', function(event, arg) { config.set('dont_disturb', arg); -}) +}); // Reload app ipcMain.on('reloadApp', function(event) { @@ -312,7 +313,7 @@ ipcMain.on('relaunchApp', function(event) { app.exit(0); }); -const shouldQuit = app.requestSingleInstanceLock() +const shouldQuit = app.requestSingleInstanceLock(); if (!shouldQuit) { app.quit(); return; @@ -421,7 +422,7 @@ if ( config.get('proxy') ) { if(!authInfo.isProxy) return; - event.preventDefault() + event.preventDefault(); callback(config.get('proxyLogin'), config.get('proxyPassword')) }) } diff --git a/resources/languages/af.js b/resources/languages/af.js index c2063a4d..0053256f 100644 --- a/resources/languages/af.js +++ b/resources/languages/af.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/bg.js b/resources/languages/bg.js index c2063a4d..0053256f 100644 --- a/resources/languages/bg.js +++ b/resources/languages/bg.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/bn.js b/resources/languages/bn.js index c2063a4d..0053256f 100644 --- a/resources/languages/bn.js +++ b/resources/languages/bn.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/bs2.js b/resources/languages/bs2.js index c2063a4d..0053256f 100644 --- a/resources/languages/bs2.js +++ b/resources/languages/bs2.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/ca.js b/resources/languages/ca.js index c2063a4d..0053256f 100644 --- a/resources/languages/ca.js +++ b/resources/languages/ca.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/ceb.js b/resources/languages/ceb.js index c2063a4d..0053256f 100644 --- a/resources/languages/ceb.js +++ b/resources/languages/ceb.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/cs.js b/resources/languages/cs.js index b88da5dc..fb6d966e 100644 --- a/resources/languages/cs.js +++ b/resources/languages/cs.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Předvolby";locale["preferences[1]"]="Automatický skrývat panel nabídek";locale["preferences[2]"]="Zobrazit na hlavním panelu";locale["preferences[3]"]="Nechat Rambox spuštěný na pozadí při zavření okna";locale["preferences[4]"]="Spouštět minimalizované";locale["preferences[5]"]="Spustit automaticky při startu systému";locale["preferences[6]"]="Nemusíte vidět menu celou dobu?";locale["preferences[7]"]="Chcete-li dočasně zobrazit panel nabídek, stačí stisknìte klávesu Alt.";locale["app.update[0]"]="Je dostupná nová verze!";locale["app.update[1]"]="Stáhnout";locale["app.update[2]"]="Seznam změn";locale["app.update[3]"]="Máte aktualizováno!";locale["app.update[4]"]="Máte nejnovější verzi Rambox.";locale["app.about[0]"]="O Rambox";locale["app.about[1]"]="Zdarma a open source aplikace na odesílání zpráv, která kombinuje běžné webové aplikace do jedné.";locale["app.about[2]"]="Verze";locale["app.about[3]"]="Platforma";locale["app.about[4]"]="Vyvinuto";locale["app.main[0]"]="Přidat novou službu";locale["app.main[1]"]="Zprávy";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Nebyly nalezeny žádné služby... Zkuste jiné hledání.";locale["app.main[4]"]="Povolené služby";locale["app.main[5]"]="ZAROVNÁNÍ";locale["app.main[6]"]="Vlevo";locale["app.main[7]"]="Vpravo";locale["app.main[8]"]="Položka";locale["app.main[9]"]="Položky";locale["app.main[10]"]="Odebrat všechny služby";locale["app.main[11]"]="Zabránit oznámení";locale["app.main[12]"]="Ztlumeno";locale["app.main[13]"]="Konfigurace";locale["app.main[14]"]="Odstranit";locale["app.main[15]"]="Žádné přidané služby...";locale["app.main[16]"]="Nerušit";locale["app.main[17]"]="Zakáže oznámení a zvuky ve všech službách. Perfektní pro koncentraci a soustředění.";locale["app.main[18]"]="Klávesová zkratka";locale["app.main[19]"]="Zámek Rambox";locale["app.main[20]"]="Uzamknout tuto aplikaci, pokud budete nějaký čas pryč.";locale["app.main[21]"]="Odhlášení";locale["app.main[22]"]="Přihlášení";locale["app.main[23]"]="Přihlášení pro uložení vaší konfigurace (bez uložení přihlašovacích údajů) pro účely synchronizace se všemi vašimi počítači.";locale["app.main[24]"]="Běží na";locale["app.main[25]"]="Přispět";locale["app.main[26]"]="s";locale["app.main[27]"]="z Argentiny jako Open Source projekt.";locale["app.window[0]"]="Přidat";locale["app.window[1]"]="Upravit";locale["app.window[2]"]="Jméno";locale["app.window[3]"]="Nastavení";locale["app.window[4]"]="Zarovnat doprava";locale["app.window[5]"]="Zobrazovat oznámení";locale["app.window[6]"]="Vypnout všechny zvuky";locale["app.window[7]"]="Rozšířené";locale["app.window[8]"]="Vlastní kód";locale["app.window[9]"]="Více...";locale["app.window[10]"]="Přidat službu";locale["app.window[11]"]="tým";locale["app.window[12]"]="Prosím, potvrďte...";locale["app.window[13]"]="Jste si jisti, že chcete odebrat";locale["app.window[14]"]="Opravdu chcete odstranit všechny služby?";locale["app.window[15]"]="Přidat vlastní služby";locale["app.window[16]"]="Upravit vlastní službu";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Důvěřovat neplatným certifikátům";locale["app.window[20]"]="Zap.";locale["app.window[21]"]="Vyp.";locale["app.window[22]"]="Zadejte dočasné heslo k pozdějšímu odemčení";locale["app.window[23]"]="Dočasné heslo znovu";locale["app.window[24]"]="Varování";locale["app.window[25]"]="Hesla nejsou stejné. Opakujte akci...";locale["app.window[26]"]="Rambox je uzamčen";locale["app.window[27]"]="Odemknout";locale["app.window[28]"]="Připojování...";locale["app.window[29]"]="Počkejte prosím, než se stáhne vaše nastavení.";locale["app.window[30]"]="Import";locale["app.window[31]"]="Nemáte uloženy žádné služby. Chcete importovat vaše současné služby?";locale["app.window[32]"]="Vymazat služby";locale["app.window[33]"]="Chcete odstranit všechny vaše současné služby a začít znovu?";locale["app.window[34]"]="Pokud ne, budete odhlášeni.";locale["app.window[35]"]="Potvrdit";locale["app.window[36]"]="Chcete-li importovat nastavení, Rambox musí odstranit všechny vaše aktuální služby. Chcete pokračovat?";locale["app.window[37]"]="Uzavírání připojení...";locale["app.window[38]"]="Jste si jisti, že se chcete odhlásit?";locale["app.webview[0]"]="Obnovit";locale["app.webview[1]"]="Přejít do režimu Online";locale["app.webview[2]"]="Přejít do režimu Offline";locale["app.webview[3]"]="Nástroje pro vývojáře";locale["app.webview[4]"]="Nahrávám...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Zrušit";locale["button[2]"]="Ano";locale["button[3]"]="Ne";locale["button[4]"]="Uložit";locale["main.dialog[0]"]="Chyba certifikátu";locale["main.dialog[1]"]="Služba s následující adresou URL má neplatný certifikát.";locale["main.dialog[2]"]="Budete muset odstranit službu a přidat ji znovu";locale["menu.help[0]"]="Navštivte stránky Rambox";locale["menu.help[1]"]="Nahlásit chybu...";locale["menu.help[2]"]="Požádat o pomoc";locale["menu.help[3]"]="Přispět";locale["menu.help[4]"]="Nápověda";locale["menu.edit[0]"]="Upravit";locale["menu.edit[1]"]="Vrátit";locale["menu.edit[2]"]="Provést znovu";locale["menu.edit[3]"]="Vyjmout";locale["menu.edit[4]"]="Kopírovat";locale["menu.edit[5]"]="Vložit";locale["menu.edit[6]"]="Vybrat Vše";locale["menu.view[0]"]="Zobrazení";locale["menu.view[1]"]="Obnovit";locale["menu.view[2]"]="Přepnout na celou obrazovku";locale["menu.view[3]"]="Nástroje pro vývojáře";locale["menu.window[0]"]="Okno";locale["menu.window[1]"]="Minimalizovat";locale["menu.window[2]"]="Zavřít";locale["menu.window[3]"]="Vždy navrchu";locale["menu.help[5]"]="Zkontrolovat aktualizace...";locale["menu.help[6]"]="O Rambox";locale["menu.osx[0]"]="Služby";locale["menu.osx[1]"]="Skrýt Rambox";locale["menu.osx[2]"]="Skrýt ostatní";locale["menu.osx[3]"]="Ukázat vše";locale["menu.file[0]"]="Soubor";locale["menu.file[1]"]="Ukončete Rambox";locale["tray[0]"]="Zobrazit/Skrýt okno";locale["tray[1]"]="Ukončit";locale["services[0]"]="WhatsApp je multiplatformní mobilní messaging aplikace pro iPhone, BlackBerry, Android, Windows Phone a Nokia. Zdarma posílejte text, video, obrázky, audio.";locale["services[1]"]="Slack přichází se sdružením veškeré vaší komunikace na jednom místě. Je to zasílání zpráv v reálném čase, archivace zpráv a jejich vyhledávání pro moderní týmy.";locale["services[2]"]="Noysi je komunikační nástroj pro týmy, kde je zaručeno soukromí. S Noysi můžete přistupovat k vašim konverzacím a souborům v sekundách z libovolného místa a neomezeně.";locale["services[3]"]="Okamžitě a zdarma kontaktujte lidi ve svém životě. Messenger je stejný jako SMS, ale není nutné platit za každou zprávu.";locale["services[4]"]="Zůstaňte v kontaktu s rodinou a přáteli zdarma. Získejte mezinárodní volání, online hovory zdarma a Skype pro firmy na počítače a mobilní zařízení.";locale["services[5]"]="Hangouts přináší konverzace s fotografiemi, emotikony a skupinovými videohovory zdarma. Spojte se s přáteli přes počítače, Android a Apple zařízení.";locale["services[6]"]="HipChat je poskytovatelem skupinového chatu a video chatu pro týmy. Nabízí spolupráci v reálném čase s trvalými konverzačními skupinami, sdílením souborů a sdílením obrazovky.";locale["services[7]"]="Telegram je aplikace pro zasílání zpráv se zaměřením na rychlost a bezpečnost. Je to super rychlé, jednoduché, bezpečné a zdarma.";locale["services[8]"]="WeChat je bezplatná aplikace na zasílání zpráv a volání";locale["services[9]"]="Gmail, bezplatná e-mailová služba společnosti Google, je jedním z nejpopulárnějších e-mailových aplikací na světě.";locale["services[10]"]="Služba Inbox od Gmailu je nová aplikace od týmu služby Gmail. Doručená pošta je organizované místo, které vám umožňuje věnovat se důležitým věcem. Udělejte si ve svých e-mailech pořádek.";locale["services[11]"]="ChatWork je aplikace skupinového chatu pro podnikání. Bezpečné zasílání zpráv, video chat, správa úkolů a sdílení souborů. Real-time komunikace a zvýšení produktivity pro týmy.";locale["services[12]"]="GroupMe přináší skupinové textové zprávy na každý telefon. Pište si skupinové zprávy s lidmi ve vašem životě, kteří jsou pro vás důležití.";locale["services[13]"]="Světově nejpokročilejší týmový chat splňuje funkce vyhledávané manažery.";locale["services[14]"]="Gitter je nadstavbou GitHub a je úzce integrován s organizacemi, úložišti, řešením problémů a aktivitou.";locale["services[15]"]="Steam je digitální distribuční platforma vyvinutá společností Valve Corporation, která nabízí správu digitálních práv (DRM), hraní pro více hráčů a služby sociálních sítí.";locale["services[16]"]="Zlepšete vaši hru s moderní aplikací poskytující hlasovou a textovou komunikaci. Nabízí mimo jiné křišťálově čistý hlas, více serverů, podporu kanálů, mobilní aplikace a další.";locale["services[17]"]="Převezměte kontrolu. Udělejte víc. Aplikace Outlook je e-mailová a kalendářová služba, která vám pomůže zůstat na vrcholu a odvést kus práce.";locale["services[18]"]="Aplikace Outlook pro podnikání";locale["services[19]"]="Webová e-mailová služba nabízená americkou společností Yahoo!. Tato služba je zdarma pro osobní použití, a placená pro podnikatele a firmy.";locale["services[20]"]="Svobodná webová šifrovaná e-mailová služba, která vznikla v roce 2013 ve výzkumném ústavu CERN. ProtonMail je vytvářen pro uživatele s novými znalostmi jako systém využívající šifrování na straně klienta k ochraně e-mailů a uživatelských dat před jejich odesláním na servery na rozdíl od jiných služeb typu Gmail nebo Hotmail.";locale["services[21]"]="Tutanota je open source end-to-end šifrovací e-mailový software a freemium šifrovaná e-mailová služba vytvořená na základě tohoto softwaru.";locale["services[22]"]="Webová e-mailová služba nabízející PGP šifrované e-maily. Hushmail má bezplatnou a placenou verzi služby a používá standard OpenPGP. Zdrojové kódy jsou k dispozici ke stažení.";locale["services[23]"]="E-mail pro spolupráci a chat ve vláknech pro produktivní týmy. Jedna aplikace pro veškerou vaší interní a externí komunikaci.";locale["services[24]"]="S pomocí skupinových zpráv a video hovorů překonat funkce tradiční technické podpory. Naším cílem je stát se jedničkou v poskytování chatového multiplatformního open-source řešení.";locale["services[25]"]="Hovory s HD kvalitou, soukromý a skupinový chat s vloženými fotografiemi, zvukem a videem. Vše dostupné pro váš telefon nebo tablet.";locale["services[26]"]="Sync je chatovací nástroj, který zvýší produktivitu vašeho týmu.";locale["services[27]"]="Bez popisu...";locale["services[28]"]="Umožňuje odesílat rychle zprávy komukoli na serveru Yahoo. Pozná, když vám přijde e-mail a poskytuje kurzy akcií.";locale["services[29]"]="Voxer je aplikace pro zasílání zpráv pro váš smartphone s živým hlasem (jako vysílačka PTT), textovými zprávami, obrázky a sdílením polohy.";locale["services[30]"]="Dasher umožňuje říct, co opravdu chcete s obrázky, GIFy, odkazy a dalším. Zjistěte, co vaši přátelé opravdu myslí.";locale["services[31]"]="Flowdock je váš týmový chat se sdíleným inboxem. Týmy jsou s pomocí Flowdock neustále v obraze, reagují v řádu vteřin namísto dnů a nikdy nic nezapomenou.";locale["services[32]"]="Mattermost je open source samoobslužná Slack alternativa. Jako alternativa k zasílání zpráv pomocí proprietární SaaS Mattermost přináší komunikaci všech vašich týmů do jednoho místa, navíc je prohledávatelný a přístupný kdekoli.";locale["services[33]"]="DingTalk je vícestranná platforma, která umožňuje malým a středně velkým firmám efektivně komunikovat.";locale["services[34]"]="Rodina aplikací mysms vám umožňuje odesílat textové zprávy kdekoli na vašem smartphonu, tabletu i počítači.";locale["services[35]"]="ICQ je open source aplikace pro rychlé zasílání zpráv na počítač, která byla vyvinuta a zpopularizována mezi prvními.";locale["services[36]"]="TweetDeck je sociální multimédiální aplikace pro správu účtů sítě Twitter.";locale["services[37]"]="Vlastní služba";locale["services[38]"]="Přidejte si vlastní službu, pokud není v seznamu uvedena.";locale["services[39]"]="Zinc je zabezpečená komunikační aplikace pro mobilní pracovníky, s textovými zprávami, hlasem, videem, sdílením souborů a dalším.";locale["services[40]"]="Freenode, dříve známá jako Open Projects Network, je IRC síť používaná k diskuzi při týmovém řízení projektů.";locale["services[41]"]="Textové zprávy z počítače, synchronizace s Android telefonem s číslem.";locale["services[42]"]="Svobodný a open source webmail software pro masy, napsaný v PHP.";locale["services[43]"]="Horde je svobodný a open source webový groupware.";locale["services[44]"]="SquirrelMail je standardní webmail balíček napsaný v PHP.";locale["services[45]"]="E-mailový business hosting bez reklam s jednoduchým a minimalistickým rozhraním. Obsahuje integrovaný kalendář, kontakty, poznámky a úkoly.";locale["services[46]"]="Zoho chat je bezpečná a škálovatelná platforma pro real-time komunikaci a spolupráci mezi týmy, které tím zlepší svou produktivitu.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Předvolby";locale["preferences[1]"]="Automatický skrývat panel nabídek";locale["preferences[2]"]="Zobrazit na hlavním panelu";locale["preferences[3]"]="Nechat Rambox spuštěný na pozadí při zavření okna";locale["preferences[4]"]="Spouštět minimalizované";locale["preferences[5]"]="Spustit automaticky při startu systému";locale["preferences[6]"]="Nemusíte vidět menu celou dobu?";locale["preferences[7]"]="Chcete-li dočasně zobrazit panel nabídek, stačí stisknìte klávesu Alt.";locale["app.update[0]"]="Je dostupná nová verze!";locale["app.update[1]"]="Stáhnout";locale["app.update[2]"]="Seznam změn";locale["app.update[3]"]="Máte aktualizováno!";locale["app.update[4]"]="Máte nejnovější verzi Rambox.";locale["app.about[0]"]="O Rambox";locale["app.about[1]"]="Zdarma a open source aplikace na odesílání zpráv, která kombinuje běžné webové aplikace do jedné.";locale["app.about[2]"]="Verze";locale["app.about[3]"]="Platforma";locale["app.about[4]"]="Vyvinuto";locale["app.main[0]"]="Přidat novou službu";locale["app.main[1]"]="Zprávy";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Nebyly nalezeny žádné služby... Zkuste jiné hledání.";locale["app.main[4]"]="Povolené služby";locale["app.main[5]"]="ZAROVNÁNÍ";locale["app.main[6]"]="Vlevo";locale["app.main[7]"]="Vpravo";locale["app.main[8]"]="Položka";locale["app.main[9]"]="Položky";locale["app.main[10]"]="Odebrat všechny služby";locale["app.main[11]"]="Zabránit oznámení";locale["app.main[12]"]="Ztlumeno";locale["app.main[13]"]="Konfigurace";locale["app.main[14]"]="Odstranit";locale["app.main[15]"]="Žádné přidané služby...";locale["app.main[16]"]="Nerušit";locale["app.main[17]"]="Zakáže oznámení a zvuky ve všech službách. Perfektní pro koncentraci a soustředění.";locale["app.main[18]"]="Klávesová zkratka";locale["app.main[19]"]="Zámek Rambox";locale["app.main[20]"]="Uzamknout tuto aplikaci, pokud budete nějaký čas pryč.";locale["app.main[21]"]="Odhlášení";locale["app.main[22]"]="Přihlášení";locale["app.main[23]"]="Přihlášení pro uložení vaší konfigurace (bez uložení přihlašovacích údajů) pro účely synchronizace se všemi vašimi počítači.";locale["app.main[24]"]="Běží na";locale["app.main[25]"]="Přispět";locale["app.main[26]"]="s";locale["app.main[27]"]="z Argentiny jako Open Source projekt.";locale["app.window[0]"]="Přidat";locale["app.window[1]"]="Upravit";locale["app.window[2]"]="Jméno";locale["app.window[3]"]="Nastavení";locale["app.window[4]"]="Zarovnat doprava";locale["app.window[5]"]="Zobrazovat oznámení";locale["app.window[6]"]="Vypnout všechny zvuky";locale["app.window[7]"]="Rozšířené";locale["app.window[8]"]="Vlastní kód";locale["app.window[9]"]="Více...";locale["app.window[10]"]="Přidat službu";locale["app.window[11]"]="tým";locale["app.window[12]"]="Prosím, potvrďte...";locale["app.window[13]"]="Jste si jisti, že chcete odebrat";locale["app.window[14]"]="Opravdu chcete odstranit všechny služby?";locale["app.window[15]"]="Přidat vlastní služby";locale["app.window[16]"]="Upravit vlastní službu";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Důvěřovat neplatným certifikátům";locale["app.window[20]"]="Zap.";locale["app.window[21]"]="Vyp.";locale["app.window[22]"]="Zadejte dočasné heslo k pozdějšímu odemčení";locale["app.window[23]"]="Dočasné heslo znovu";locale["app.window[24]"]="Varování";locale["app.window[25]"]="Hesla nejsou stejné. Opakujte akci...";locale["app.window[26]"]="Rambox je uzamčen";locale["app.window[27]"]="Odemknout";locale["app.window[28]"]="Připojování...";locale["app.window[29]"]="Počkejte prosím, než se stáhne vaše nastavení.";locale["app.window[30]"]="Import";locale["app.window[31]"]="Nemáte uloženy žádné služby. Chcete importovat vaše současné služby?";locale["app.window[32]"]="Vymazat služby";locale["app.window[33]"]="Chcete odstranit všechny vaše současné služby a začít znovu?";locale["app.window[34]"]="Pokud ne, budete odhlášeni.";locale["app.window[35]"]="Potvrdit";locale["app.window[36]"]="Chcete-li importovat nastavení, Rambox musí odstranit všechny vaše aktuální služby. Chcete pokračovat?";locale["app.window[37]"]="Uzavírání připojení...";locale["app.window[38]"]="Jste si jisti, že se chcete odhlásit?";locale["app.webview[0]"]="Obnovit";locale["app.webview[1]"]="Přejít do režimu Online";locale["app.webview[2]"]="Přejít do režimu Offline";locale["app.webview[3]"]="Nástroje pro vývojáře";locale["app.webview[4]"]="Nahrávám...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Zrušit";locale["button[2]"]="Ano";locale["button[3]"]="Ne";locale["button[4]"]="Uložit";locale["main.dialog[0]"]="Chyba certifikátu";locale["main.dialog[1]"]="Služba s následující adresou URL má neplatný certifikát.";locale["main.dialog[2]"]="Budete muset odstranit službu a přidat ji znovu";locale["menu.help[0]"]="Navštivte stránky Rambox";locale["menu.help[1]"]="Nahlásit chybu...";locale["menu.help[2]"]="Požádat o pomoc";locale["menu.help[3]"]="Přispět";locale["menu.help[4]"]="Nápověda";locale["menu.edit[0]"]="Upravit";locale["menu.edit[1]"]="Vrátit";locale["menu.edit[2]"]="Provést znovu";locale["menu.edit[3]"]="Vyjmout";locale["menu.edit[4]"]="Kopírovat";locale["menu.edit[5]"]="Vložit";locale["menu.edit[6]"]="Vybrat Vše";locale["menu.view[0]"]="Zobrazení";locale["menu.view[1]"]="Obnovit";locale["menu.view[2]"]="Přepnout na celou obrazovku";locale["menu.view[3]"]="Nástroje pro vývojáře";locale["menu.window[0]"]="Okno";locale["menu.window[1]"]="Minimalizovat";locale["menu.window[2]"]="Zavřít";locale["menu.window[3]"]="Vždy navrchu";locale["menu.help[5]"]="Zkontrolovat aktualizace...";locale["menu.help[6]"]="O Rambox";locale["menu.osx[0]"]="Služby";locale["menu.osx[1]"]="Skrýt Rambox";locale["menu.osx[2]"]="Skrýt ostatní";locale["menu.osx[3]"]="Ukázat vše";locale["menu.file[0]"]="Soubor";locale["menu.file[1]"]="Ukončete Rambox";locale["tray[0]"]="Zobrazit/Skrýt okno";locale["tray[1]"]="Ukončit";locale["services[0]"]="WhatsApp je multiplatformní mobilní messaging aplikace pro iPhone, BlackBerry, Android, Windows Phone a Nokia. Zdarma posílejte text, video, obrázky, audio.";locale["services[1]"]="Slack přichází se sdružením veškeré vaší komunikace na jednom místě. Je to zasílání zpráv v reálném čase, archivace zpráv a jejich vyhledávání pro moderní týmy.";locale["services[2]"]="Noysi je komunikační nástroj pro týmy, kde je zaručeno soukromí. S Noysi můžete přistupovat k vašim konverzacím a souborům v sekundách z libovolného místa a neomezeně.";locale["services[3]"]="Okamžitě a zdarma kontaktujte lidi ve svém životě. Messenger je stejný jako SMS, ale není nutné platit za každou zprávu.";locale["services[4]"]="Zůstaňte v kontaktu s rodinou a přáteli zdarma. Získejte mezinárodní volání, online hovory zdarma a Skype pro firmy na počítače a mobilní zařízení.";locale["services[5]"]="Hangouts přináší konverzace s fotografiemi, emotikony a skupinovými videohovory zdarma. Spojte se s přáteli přes počítače, Android a Apple zařízení.";locale["services[6]"]="HipChat je poskytovatelem skupinového chatu a video chatu pro týmy. Nabízí spolupráci v reálném čase s trvalými konverzačními skupinami, sdílením souborů a sdílením obrazovky.";locale["services[7]"]="Telegram je aplikace pro zasílání zpráv se zaměřením na rychlost a bezpečnost. Je to super rychlé, jednoduché, bezpečné a zdarma.";locale["services[8]"]="WeChat je bezplatná aplikace na zasílání zpráv a volání";locale["services[9]"]="Gmail, bezplatná e-mailová služba společnosti Google, je jedním z nejpopulárnějších e-mailových aplikací na světě.";locale["services[10]"]="Služba Inbox od Gmailu je nová aplikace od týmu služby Gmail. Doručená pošta je organizované místo, které vám umožňuje věnovat se důležitým věcem. Udělejte si ve svých e-mailech pořádek.";locale["services[11]"]="ChatWork je aplikace skupinového chatu pro podnikání. Bezpečné zasílání zpráv, video chat, správa úkolů a sdílení souborů. Real-time komunikace a zvýšení produktivity pro týmy.";locale["services[12]"]="GroupMe přináší skupinové textové zprávy na každý telefon. Pište si skupinové zprávy s lidmi ve vašem životě, kteří jsou pro vás důležití.";locale["services[13]"]="Světově nejpokročilejší týmový chat splňuje funkce vyhledávané manažery.";locale["services[14]"]="Gitter je nadstavbou GitHub a je úzce integrován s organizacemi, úložišti, řešením problémů a aktivitou.";locale["services[15]"]="Steam je digitální distribuční platforma vyvinutá společností Valve Corporation, která nabízí správu digitálních práv (DRM), hraní pro více hráčů a služby sociálních sítí.";locale["services[16]"]="Zlepšete vaši hru s moderní aplikací poskytující hlasovou a textovou komunikaci. Nabízí mimo jiné křišťálově čistý hlas, více serverů, podporu kanálů, mobilní aplikace a další.";locale["services[17]"]="Převezměte kontrolu. Udělejte víc. Aplikace Outlook je e-mailová a kalendářová služba, která vám pomůže zůstat na vrcholu a odvést kus práce.";locale["services[18]"]="Aplikace Outlook pro podnikání";locale["services[19]"]="Webová e-mailová služba nabízená americkou společností Yahoo!. Tato služba je zdarma pro osobní použití, a placená pro podnikatele a firmy.";locale["services[20]"]="Svobodná webová šifrovaná e-mailová služba, která vznikla v roce 2013 ve výzkumném ústavu CERN. ProtonMail je vytvářen pro uživatele s novými znalostmi jako systém využívající šifrování na straně klienta k ochraně e-mailů a uživatelských dat před jejich odesláním na servery na rozdíl od jiných služeb typu Gmail nebo Hotmail.";locale["services[21]"]="Tutanota je open source end-to-end šifrovací e-mailový software a freemium šifrovaná e-mailová služba vytvořená na základě tohoto softwaru.";locale["services[22]"]="Webová e-mailová služba nabízející PGP šifrované e-maily. Hushmail má bezplatnou a placenou verzi služby a používá standard OpenPGP. Zdrojové kódy jsou k dispozici ke stažení.";locale["services[23]"]="E-mail pro spolupráci a chat ve vláknech pro produktivní týmy. Jedna aplikace pro veškerou vaší interní a externí komunikaci.";locale["services[24]"]="S pomocí skupinových zpráv a video hovorů překonat funkce tradiční technické podpory. Naším cílem je stát se jedničkou v poskytování chatového multiplatformního open-source řešení.";locale["services[25]"]="Hovory s HD kvalitou, soukromý a skupinový chat s vloženými fotografiemi, zvukem a videem. Vše dostupné pro váš telefon nebo tablet.";locale["services[26]"]="Sync je chatovací nástroj, který zvýší produktivitu vašeho týmu.";locale["services[27]"]="Bez popisu...";locale["services[28]"]="Umožňuje odesílat rychle zprávy komukoli na serveru Yahoo. Pozná, když vám přijde e-mail a poskytuje kurzy akcií.";locale["services[29]"]="Voxer je aplikace pro zasílání zpráv pro váš smartphone s živým hlasem (jako vysílačka PTT), textovými zprávami, obrázky a sdílením polohy.";locale["services[30]"]="Dasher umožňuje říct, co opravdu chcete s obrázky, GIFy, odkazy a dalším. Zjistěte, co vaši přátelé opravdu myslí.";locale["services[31]"]="Flowdock je váš týmový chat se sdíleným inboxem. Týmy jsou s pomocí Flowdock neustále v obraze, reagují v řádu vteřin namísto dnů a nikdy nic nezapomenou.";locale["services[32]"]="Mattermost je open source samoobslužná Slack alternativa. Jako alternativa k zasílání zpráv pomocí proprietární SaaS Mattermost přináší komunikaci všech vašich týmů do jednoho místa, navíc je prohledávatelný a přístupný kdekoli.";locale["services[33]"]="DingTalk je vícestranná platforma, která umožňuje malým a středně velkým firmám efektivně komunikovat.";locale["services[34]"]="Rodina aplikací mysms vám umožňuje odesílat textové zprávy kdekoli na vašem smartphonu, tabletu i počítači.";locale["services[35]"]="ICQ je open source aplikace pro rychlé zasílání zpráv na počítač, která byla vyvinuta a zpopularizována mezi prvními.";locale["services[36]"]="TweetDeck je sociální multimédiální aplikace pro správu účtů sítě Twitter.";locale["services[37]"]="Vlastní služba";locale["services[38]"]="Přidejte si vlastní službu, pokud není v seznamu uvedena.";locale["services[39]"]="Zinc je zabezpečená komunikační aplikace pro mobilní pracovníky, s textovými zprávami, hlasem, videem, sdílením souborů a dalším.";locale["services[40]"]="Freenode, dříve známá jako Open Projects Network, je IRC síť používaná k diskuzi při týmovém řízení projektů.";locale["services[41]"]="Textové zprávy z počítače, synchronizace s Android telefonem s číslem.";locale["services[42]"]="Svobodný a open source webmail software pro masy, napsaný v PHP.";locale["services[43]"]="Horde je svobodný a open source webový groupware.";locale["services[44]"]="SquirrelMail je standardní webmail balíček napsaný v PHP.";locale["services[45]"]="E-mailový business hosting bez reklam s jednoduchým a minimalistickým rozhraním. Obsahuje integrovaný kalendář, kontakty, poznámky a úkoly.";locale["services[46]"]="Zoho chat je bezpečná a škálovatelná platforma pro real-time komunikaci a spolupráci mezi týmy, které tím zlepší svou produktivitu.";module.exports = locale; diff --git a/resources/languages/da.js b/resources/languages/da.js index c2063a4d..0053256f 100644 --- a/resources/languages/da.js +++ b/resources/languages/da.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/de-CH.js b/resources/languages/de-CH.js index c2063a4d..0053256f 100644 --- a/resources/languages/de-CH.js +++ b/resources/languages/de-CH.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/de.js b/resources/languages/de.js index 94e288f0..1d95d134 100644 --- a/resources/languages/de.js +++ b/resources/languages/de.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Einstellungen";locale["preferences[1]"]="Menüleiste automatisch verstecken";locale["preferences[2]"]="In der Taskleiste anzeigen";locale["preferences[3]"]="Rambox beim Schließen in der Taskleiste behalten";locale["preferences[4]"]="Minimiert starten";locale["preferences[5]"]="Beim Systemstart automatisch starten";locale["preferences[6]"]="Die Menüleiste nicht ständig anzeigen?";locale["preferences[7]"]="Um die Menüleiste temporär anzuzeigen, die 'Alt' Taste drücken.";locale["app.update[0]"]="Eine neue Version ist verfügbar!";locale["app.update[1]"]="Herunterladen";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="Sie benutzen bereits die neueste Version!";locale["app.update[4]"]="Sie benutzen bereits die neueste Version von Rambox.";locale["app.about[0]"]="Über Rambox";locale["app.about[1]"]="Kostenlose, Open-Source Nachrichten- und E-Mail-Anwendung, die verbreitete Web-Anwendungen in einer Oberfläche vereinigt.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Plattform";locale["app.about[4]"]="Entwickelt von";locale["app.main[0]"]="Neuen Dienst hinzufügen";locale["app.main[1]"]="Mitteilungen";locale["app.main[2]"]="E-Mail";locale["app.main[3]"]="Keine Dienste gefunden... Verwenden Sie einen neuen Suchbegriff.";locale["app.main[4]"]="Aktivierte Dienste";locale["app.main[5]"]="Ausrichtung";locale["app.main[6]"]="Linksbündig";locale["app.main[7]"]="Rechtsbündig";locale["app.main[8]"]="Eintrag";locale["app.main[9]"]="Einträge";locale["app.main[10]"]="Alle Dienste entfernen";locale["app.main[11]"]="Benachrichtigungen unterdrücken";locale["app.main[12]"]="Stumm";locale["app.main[13]"]="Konfigurieren";locale["app.main[14]"]="Entfernen";locale["app.main[15]"]="Keine Dienste hinzugefügt...";locale["app.main[16]"]="Nicht stören";locale["app.main[17]"]="Deaktiviert Benachrichtigungen und Töne aller Dienste. Perfekt, um sich zu konzentrieren und fokussieren.";locale["app.main[18]"]="Tastenkombination";locale["app.main[19]"]="Rambox sperren";locale["app.main[20]"]="Sperren Sie diese Anwendung, wenn Sie für eine Weile abwesend sind.";locale["app.main[21]"]="Abmelden";locale["app.main[22]"]="Anmelden";locale["app.main[23]"]="Melden Sie sich an, um die Konfiguration mit Ihren anderen Geräten zu synchronisieren. Es werden keine Anmeldeinformationen gespeichert.";locale["app.main[24]"]="Unterstützt von";locale["app.main[25]"]="Spenden";locale["app.main[26]"]="mit";locale["app.main[27]"]="aus Argentinien als Open-Source-Projekt.";locale["app.window[0]"]="Hinzufügen";locale["app.window[1]"]="Bearbeiten";locale["app.window[2]"]="Name";locale["app.window[3]"]="Optionen";locale["app.window[4]"]="Rechts ausrichten";locale["app.window[5]"]="Benachrichtigungen anzeigen";locale["app.window[6]"]="Alle Töne stummschalten";locale["app.window[7]"]="Erweiterte Einstellungen";locale["app.window[8]"]="Benutzerdefinierter Code";locale["app.window[9]"]="weiterlesen...";locale["app.window[10]"]="Dienst hinzufügen";locale["app.window[11]"]="Team";locale["app.window[12]"]="Bitte bestätigen...";locale["app.window[13]"]="Sind Sie sicher, dass Sie folgendes entfernen möchten:";locale["app.window[14]"]="Sind Sie sicher, dass Sie alle Dienste entfernen möchten?";locale["app.window[15]"]="Benutzerdefinierten Dienst hinzufügen";locale["app.window[16]"]="Benutzerdefinierten Dienst bearbeiten";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Ungültigen Autorisierungszertifikaten vertrauen";locale["app.window[20]"]="AN";locale["app.window[21]"]="AUS";locale["app.window[22]"]="Geben Sie ein temporäres Passwort ein, um später wieder zu entsperren";locale["app.window[23]"]="Das temporäre Passwort wiederholen";locale["app.window[24]"]="Warnung";locale["app.window[25]"]="Kennwörter stimmen nicht überein. Bitte versuchen Sie es erneut...";locale["app.window[26]"]="Rambox ist gesperrt";locale["app.window[27]"]="ENTSPERREN";locale["app.window[28]"]="Verbindung wird hergestellt...";locale["app.window[29]"]="Bitte warten Sie, bis wir Ihre Konfiguration erhalten.";locale["app.window[30]"]="Importieren";locale["app.window[31]"]="Sie haben keine Dienste gespeichert. Möchten Sie Ihre aktuellen Dienste importieren?";locale["app.window[32]"]="Alle Dienste löschen";locale["app.window[33]"]="Möchten Sie Ihre aktuellen Dienste entfernen, um von vorne zu beginnen?";locale["app.window[34]"]="Falls nicht, werden Sie abgemeldet.";locale["app.window[35]"]="Bestätigen";locale["app.window[36]"]="Um Ihre Konfiguration zu importieren, muss Rambox Ihre aktuellen Dienste entfernen. Möchten Sie fortfahren?";locale["app.window[37]"]="Ihre Sitzung wird beendet...";locale["app.window[38]"]="Sind Sie sicher, dass Sie sich abmelden wollen?";locale["app.webview[0]"]="Aktualisieren";locale["app.webview[1]"]="Online gehen";locale["app.webview[2]"]="Offline gehen";locale["app.webview[3]"]="Entwickler-Werkzeuge an-/ausschalten";locale["app.webview[4]"]="Wird geladen...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Abbrechen";locale["button[2]"]="Ja";locale["button[3]"]="Nein";locale["button[4]"]="Speichern";locale["main.dialog[0]"]="Zertifikatsfehler";locale["main.dialog[1]"]="Der Dienst mit der folgenden URL hat ein ungültiges Zertifikat.";locale["main.dialog[2]"]=".";locale["menu.help[0]"]="Rambox Website besuchen";locale["menu.help[1]"]="Ein Problem melden...";locale["menu.help[2]"]="Um Hilfe bitten";locale["menu.help[3]"]="Spenden";locale["menu.help[4]"]="Hilfe";locale["menu.edit[0]"]="Bearbeiten";locale["menu.edit[1]"]="Rückgängig";locale["menu.edit[2]"]="Wiederholen";locale["menu.edit[3]"]="Ausschneiden";locale["menu.edit[4]"]="Kopieren";locale["menu.edit[5]"]="Einfügen";locale["menu.edit[6]"]="Alles markieren";locale["menu.view[0]"]="Anzeige";locale["menu.view[1]"]="Neu laden";locale["menu.view[2]"]="Vollbild ein/aus";locale["menu.view[3]"]="Entwickler-Werkzeuge ein/aus";locale["menu.window[0]"]="Fenster";locale["menu.window[1]"]="Minimieren";locale["menu.window[2]"]="Schließen";locale["menu.window[3]"]="Immer im Vordergrund";locale["menu.help[5]"]="Nach Updates suchen...";locale["menu.help[6]"]="Über Rambox";locale["menu.osx[0]"]="Dienste";locale["menu.osx[1]"]="Rambox ausblenden";locale["menu.osx[2]"]="Andere ausblenden";locale["menu.osx[3]"]="Alles zeigen";locale["menu.file[0]"]="Datei";locale["menu.file[1]"]="Rambox beenden";locale["tray[0]"]="Fenster ein-/ausblenden";locale["tray[1]"]="Beenden";locale["services[0]"]="WhatsApp ist eine plattformübergreifende, mobile Nachrichten-Anwendung für iPhone, Android, Windows Phone, BlackBerry und Nokia. Senden Sie kostenfrei Text, Videos, Bilder, Audio.";locale["services[1]"]="Slack vereint alle Ihre Kommunikation an einem Ort. Es ist ein Echtzeit-Messenger, Archivierungssystem und eine Suche für moderne Teams.";locale["services[2]"]="Noysi ist ein Kommunikations-Tool für Teams, welches Privatsphäre garantiert. Mit Noysi können Sie auf Ihre Gespräche und Dateien in Sekunden überall und unbegrenzt zugreifen.";locale["services[3]"]="Erreichen Sie die Menschen in Ihrem Leben sofort kostenlos. Messenger-Nachrichten sind wie SMS, aber Sie müssen nicht für jede Nachricht zahlen.";locale["services[4]"]="Bleiben Sie kostenlos in Kontakt mit Familie und Freund_innen. Sie können internationale Anrufe, kostenlose Online-Anrufe sowie Skype für Business nutzen, am Desktop und mobil.";locale["services[5]"]="Hangouts ermöglicht kostenfreie Gespräche mit Fotos, Emoji und sogar Gruppen-Videoanrufe. Verbinde Sie sich mit Freunden auf Computern, Android- und Apple Geräten.";locale["services[6]"]="HipChat ist ein für Teams gehosteter Gruppen-Chat und Video-Chat. Nutzen Sie Echtzeit-Zusammenarbeit in dauerhaften Chaträumen sowie bei Datei- und Bildschirmfreigaben.";locale["services[7]"]="Telegram ist ein Messenger mit Fokus auf Geschwindigkeit und Sicherheit. Er ist super schnell, einfach, sicher und kostenlos.";locale["services[8]"]="WeChat ist eine kostenlose Nachrichten-/Anruf-App, die es dir erlaubt auf einfache Art und Weise mit deiner Familie und deinen Freunden in Kontakt zu treten. Es ist die kostenlose All-in-One Kommunikationsanwendung für Text- (SMS/MMS), Sprachnachrichten, Videoanrufe und zum Teilen von Fotos und Spielen.";locale["services[9]"]="Google Mail, Googles kostenloser e-Mail-Service ist einers der weltweit beliebtesten e-Mail-Programme.";locale["services[10]"]="Inbox von Google Mail ist eine neue Anwendung vom Google Mail-Team. Inbox ist ein organisierter Ort, um Dinge zu erledigen und sich drauf zu besinnen, worauf es ankommt. Gruppierungen halten e-Mails organisiert.";locale["services[11]"]="ChatWork ist ein Gruppenchat für Unternehmen. Mit sicherem Nachrichtenversand, Video-Chat, Aufgabenmanagement und Dateifreigaben. Nutzen Sie Echtzeitkommunikation und steigern Sie die Produktivität in Teams.";locale["services[12]"]="GroupMe bringt Gruppennachrichten auf jedes Handy. Schreiben Sie Nachrichten mit den Menschen in Ihrem Leben, die Ihnen wichtig sind.";locale["services[13]"]="-Funktionen.";locale["services[14]"]="Gitter baut auf Github auf und ist eng mit Ihren Organisationen, Repositories, Issues und Aktivitäten integriert.";locale["services[15]"]="Steam ist eine digitale Vertriebsplattform entwickelt von der Valve Corporation. Sie bietet digitale Rechteverwaltung (DRM), Multiplayer-Spiele und Social-Networking-Dienste.";locale["services[16]"]="Statte dein Spiel mit einer modernen Sprach- und Text-Chat-App aus. Kristallklare Sprachübertragung, Mehrfach-Server- und Channel-Unterstützung, mobile Anwendungen und mehr.";locale["services[17]"]="Übernehmen Sie die Kontrolle. Erledigen Sie mehr. Outlook ist der kostenlose e-Mail- und Kalenderdienst, der Ihnen hilft, den Überblick zu behalten und Dinge zu erledigen.";locale["services[18]"]="Outlook für Unternehmen";locale["services[19]"]="Web-basierter E-Mail-Service von der amerikanischen Firma Yahoo!. Das Angebot ist kostenlos für den persönlichen Gebrauch, und bezahlte E-Mail-Businesspläne stehen zur Verfügung.";locale["services[20]"]="Kostenloser, webbasierter E-Mail-Service, gegründet 2013 an der CERN Forschungseinrichtung. ProtonMail ist, ganz anders als bei gängigen Webmailanbietern wie Gmail und Hotmail, auf einem zero-knowledge System entworfen, das unter Verwendung von Client-Side-Verschlüsselung E-Mail- und Benutzerdaten schützt, bevor sie zu den ProtonMail-Servern gesendet werden.";locale["services[21]"]="Tutanota ist eine Open-Source E-Mail Anwendung mit Ende-zu-Ende-Verschlüsselung und mit sicher gehosteten Freemium E-Mail Diensten auf Basis dieser Software.";locale["services[22]"]="Webbasierter E-Mail Service, der PGP-verschlüsselte E-Mails und einen Vanity-Domain-Service anbietet. Hushmail benutzt OpenPGP-Standards und der Quellcode ist zum Download verfügbar.";locale["services[23]"]="Gemeinschaftliches E-Mailen und thematisierte Gruppenchats für produktive Teams. Eine einzelne App für all deine interne und externe Kommunikation.";locale["services[24]"]="Von Gruppennachrichten und Videoanrufen bis hin zu Helpdesk-Killer-Funktionen. Unser Ziel ist es die Nummer eins bei plattformübergreifenden, quelloffenen Chat-Lösungen zu werden.";locale["services[25]"]="Anrufe in HD-Qualität, private und Gruppenchats mit Inline-Fotos, Musik und Videos. Auch erhältlich für dein Tablet und Smartphone.";locale["services[26]"]="Sync ist eine Business-Chat-Anwendung, die die Produktivität Ihres Teams steigern wird.";locale["services[27]"]="Keine Beschreibung...";locale["services[28]"]="Erlaubt Ihnen Sofortnachrichten mit jedem Benutzer des Yahoo-Servers zu teilen. Sie erhalten Benachrichtigungen zu E-Mails und Aktienkursen.";locale["services[29]"]="Voxer ist eine Messaging-App für dein Smartphone mit Live-Sprachübertragung (ähnlich Push-To-Talk bei WalkieTalkies), Text-, Foto- und Location-Sharing.";locale["services[30]"]="Mit Dasher kannst du sagen, was was du wirklich willst. Zum Beispiel mit Bildern, GIFs, Links und vielem mehr. Erstelle eine Umfrage, um herauszufinden, was deine Freunde wirklich von deiner neuen Bekanntschaft denken.";locale["services[31]"]="Flowdock ist Ihr Team-Chat mit einem gemeinsamen Posteingang. Teams mit Flowdock bleiben auf dem neuesten Stand, reagieren in Sekunden statt Tagen und vergessen niemals etwas.";locale["services[32]"]="Mattermost ist eine Open-Source, selbst-gehostete Slack-Alternative. Als Alternative zu proprietären SaaS Nachrichten-Lösungen bringt Mattermost Ihre Teamkommunikation an einem Ort, überall durchsuchbar und zugänglich.";locale["services[33]"]="DingTalk ist eine vielseitige Plattform und ermöglicht es kleinen und mittleren Unternehmen, effektiv zu kommunizieren.";locale["services[34]"]="Die Familie der mysms Anwendungen hilft Ihnen Nachrichten überall zu versenden und verbessert Ihr Nachrichten-Erlebnis auf Ihrem Smartphone, Tablet und Computer.";locale["services[35]"]="ICQ ist ein Open-Source Sofortnachrichten-Computer-Programm, das früh entwickelt und populär wurde.";locale["services[36]"]="TweetDeck ist eine Social-Media-Anwendung für die Verwaltung von Twitter-Accounts.";locale["services[37]"]="Benutzerdefinierter Dienst";locale["services[38]"]="Fügen Sie einen benutzerdefinierten Dienst hinzu, wenn er oben nicht aufgeführt ist.";locale["services[39]"]="Zinc ist eine sichere Kommunikationsanwendung für mobile Mitarbeiter, mit Text, Sprache, Video, Dateifreigaben und mehr.";locale["services[40]"]="Freenode, früher bekannt als Open-Projects-Network ist ein IRC-Netzwerk, oft genutzt um in Eigenregie zu diskutieren.";locale["services[41]"]="Schreiben Sie Nachrichten von Ihrem Computer und diese werden mit Ihrem Android-Handy & Ihrer Telefonnummer synchronisiert.";locale["services[42]"]="Kostenlose, Open-Source Webmail-Software für die Massen. In PHP geschrieben.";locale["services[43]"]="Horde ist eine kostenlose und Open-Source web-basierte Groupware.";locale["services[44]"]="SquirrelMail ist ein in PHP geschriebenes standard-basiertes Webmail-Paket.";locale["services[45]"]="Werbefreies Business e-Mail-Hosting mit einer aufgeräumten, minimalistischen Oberfläche. Kalender-, Kontakt-, Notiz- und Aufgabenanwendungen sind integriert.";locale["services[46]"]="Zoho Chat ist eine sichere und skalierbare Echtzeit-Kommunikations- und Kollaborations-Plattform für Teams, um ihre Produktivität zu verbessern.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Einstellungen";locale["preferences[1]"]="Menüleiste automatisch verstecken";locale["preferences[2]"]="In der Taskleiste anzeigen";locale["preferences[3]"]="Rambox beim Schließen in der Taskleiste behalten";locale["preferences[4]"]="Minimiert starten";locale["preferences[5]"]="Beim Systemstart automatisch starten";locale["preferences[6]"]="Die Menüleiste nicht ständig anzeigen?";locale["preferences[7]"]="Um die Menüleiste temporär anzuzeigen, die 'Alt' Taste drücken.";locale["app.update[0]"]="Eine neue Version ist verfügbar!";locale["app.update[1]"]="Herunterladen";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="Sie benutzen bereits die neueste Version!";locale["app.update[4]"]="Sie benutzen bereits die neueste Version von Rambox.";locale["app.about[0]"]="Über Rambox";locale["app.about[1]"]="Kostenlose, Open-Source Nachrichten- und E-Mail-Anwendung, die verbreitete Web-Anwendungen in einer Oberfläche vereinigt.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Plattform";locale["app.about[4]"]="Entwickelt von";locale["app.main[0]"]="Neuen Dienst hinzufügen";locale["app.main[1]"]="Mitteilungen";locale["app.main[2]"]="E-Mail";locale["app.main[3]"]="Keine Dienste gefunden... Verwenden Sie einen neuen Suchbegriff.";locale["app.main[4]"]="Aktivierte Dienste";locale["app.main[5]"]="Ausrichtung";locale["app.main[6]"]="Linksbündig";locale["app.main[7]"]="Rechtsbündig";locale["app.main[8]"]="Eintrag";locale["app.main[9]"]="Einträge";locale["app.main[10]"]="Alle Dienste entfernen";locale["app.main[11]"]="Benachrichtigungen unterdrücken";locale["app.main[12]"]="Stumm";locale["app.main[13]"]="Konfigurieren";locale["app.main[14]"]="Entfernen";locale["app.main[15]"]="Keine Dienste hinzugefügt...";locale["app.main[16]"]="Nicht stören";locale["app.main[17]"]="Deaktiviert Benachrichtigungen und Töne aller Dienste. Perfekt, um sich zu konzentrieren und fokussieren.";locale["app.main[18]"]="Tastenkombination";locale["app.main[19]"]="Rambox sperren";locale["app.main[20]"]="Sperren Sie diese Anwendung, wenn Sie für eine Weile abwesend sind.";locale["app.main[21]"]="Abmelden";locale["app.main[22]"]="Anmelden";locale["app.main[23]"]="Melden Sie sich an, um die Konfiguration mit Ihren anderen Geräten zu synchronisieren. Es werden keine Anmeldeinformationen gespeichert.";locale["app.main[24]"]="Unterstützt von";locale["app.main[25]"]="Spenden";locale["app.main[26]"]="mit";locale["app.main[27]"]="aus Argentinien als Open-Source-Projekt.";locale["app.window[0]"]="Hinzufügen";locale["app.window[1]"]="Bearbeiten";locale["app.window[2]"]="Name";locale["app.window[3]"]="Optionen";locale["app.window[4]"]="Rechts ausrichten";locale["app.window[5]"]="Benachrichtigungen anzeigen";locale["app.window[6]"]="Alle Töne stummschalten";locale["app.window[7]"]="Erweiterte Einstellungen";locale["app.window[8]"]="Benutzerdefinierter Code";locale["app.window[9]"]="weiterlesen...";locale["app.window[10]"]="Dienst hinzufügen";locale["app.window[11]"]="Team";locale["app.window[12]"]="Bitte bestätigen...";locale["app.window[13]"]="Sind Sie sicher, dass Sie folgendes entfernen möchten:";locale["app.window[14]"]="Sind Sie sicher, dass Sie alle Dienste entfernen möchten?";locale["app.window[15]"]="Benutzerdefinierten Dienst hinzufügen";locale["app.window[16]"]="Benutzerdefinierten Dienst bearbeiten";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Ungültigen Autorisierungszertifikaten vertrauen";locale["app.window[20]"]="AN";locale["app.window[21]"]="AUS";locale["app.window[22]"]="Geben Sie ein temporäres Passwort ein, um später wieder zu entsperren";locale["app.window[23]"]="Das temporäre Passwort wiederholen";locale["app.window[24]"]="Warnung";locale["app.window[25]"]="Kennwörter stimmen nicht überein. Bitte versuchen Sie es erneut...";locale["app.window[26]"]="Rambox ist gesperrt";locale["app.window[27]"]="ENTSPERREN";locale["app.window[28]"]="Verbindung wird hergestellt...";locale["app.window[29]"]="Bitte warten Sie, bis wir Ihre Konfiguration erhalten.";locale["app.window[30]"]="Importieren";locale["app.window[31]"]="Sie haben keine Dienste gespeichert. Möchten Sie Ihre aktuellen Dienste importieren?";locale["app.window[32]"]="Alle Dienste löschen";locale["app.window[33]"]="Möchten Sie Ihre aktuellen Dienste entfernen, um von vorne zu beginnen?";locale["app.window[34]"]="Falls nicht, werden Sie abgemeldet.";locale["app.window[35]"]="Bestätigen";locale["app.window[36]"]="Um Ihre Konfiguration zu importieren, muss Rambox Ihre aktuellen Dienste entfernen. Möchten Sie fortfahren?";locale["app.window[37]"]="Ihre Sitzung wird beendet...";locale["app.window[38]"]="Sind Sie sicher, dass Sie sich abmelden wollen?";locale["app.webview[0]"]="Aktualisieren";locale["app.webview[1]"]="Online gehen";locale["app.webview[2]"]="Offline gehen";locale["app.webview[3]"]="Entwickler-Werkzeuge an-/ausschalten";locale["app.webview[4]"]="Wird geladen...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Abbrechen";locale["button[2]"]="Ja";locale["button[3]"]="Nein";locale["button[4]"]="Speichern";locale["main.dialog[0]"]="Zertifikatsfehler";locale["main.dialog[1]"]="Der Dienst mit der folgenden URL hat ein ungültiges Zertifikat.";locale["main.dialog[2]"]=".";locale["menu.help[0]"]="Rambox Website besuchen";locale["menu.help[1]"]="Ein Problem melden...";locale["menu.help[2]"]="Um Hilfe bitten";locale["menu.help[3]"]="Spenden";locale["menu.help[4]"]="Hilfe";locale["menu.edit[0]"]="Bearbeiten";locale["menu.edit[1]"]="Rückgängig";locale["menu.edit[2]"]="Wiederholen";locale["menu.edit[3]"]="Ausschneiden";locale["menu.edit[4]"]="Kopieren";locale["menu.edit[5]"]="Einfügen";locale["menu.edit[6]"]="Alles markieren";locale["menu.view[0]"]="Anzeige";locale["menu.view[1]"]="Neu laden";locale["menu.view[2]"]="Vollbild ein/aus";locale["menu.view[3]"]="Entwickler-Werkzeuge ein/aus";locale["menu.window[0]"]="Fenster";locale["menu.window[1]"]="Minimieren";locale["menu.window[2]"]="Schließen";locale["menu.window[3]"]="Immer im Vordergrund";locale["menu.help[5]"]="Nach Updates suchen...";locale["menu.help[6]"]="Über Rambox";locale["menu.osx[0]"]="Dienste";locale["menu.osx[1]"]="Rambox ausblenden";locale["menu.osx[2]"]="Andere ausblenden";locale["menu.osx[3]"]="Alles zeigen";locale["menu.file[0]"]="Datei";locale["menu.file[1]"]="Rambox beenden";locale["tray[0]"]="Fenster ein-/ausblenden";locale["tray[1]"]="Beenden";locale["services[0]"]="WhatsApp ist eine plattformübergreifende, mobile Nachrichten-Anwendung für iPhone, Android, Windows Phone, BlackBerry und Nokia. Senden Sie kostenfrei Text, Videos, Bilder, Audio.";locale["services[1]"]="Slack vereint alle Ihre Kommunikation an einem Ort. Es ist ein Echtzeit-Messenger, Archivierungssystem und eine Suche für moderne Teams.";locale["services[2]"]="Noysi ist ein Kommunikations-Tool für Teams, welches Privatsphäre garantiert. Mit Noysi können Sie auf Ihre Gespräche und Dateien in Sekunden überall und unbegrenzt zugreifen.";locale["services[3]"]="Erreichen Sie die Menschen in Ihrem Leben sofort kostenlos. Messenger-Nachrichten sind wie SMS, aber Sie müssen nicht für jede Nachricht zahlen.";locale["services[4]"]="Bleiben Sie kostenlos in Kontakt mit Familie und Freund_innen. Sie können internationale Anrufe, kostenlose Online-Anrufe sowie Skype für Business nutzen, am Desktop und mobil.";locale["services[5]"]="Hangouts ermöglicht kostenfreie Gespräche mit Fotos, Emoji und sogar Gruppen-Videoanrufe. Verbinde Sie sich mit Freunden auf Computern, Android- und Apple Geräten.";locale["services[6]"]="HipChat ist ein für Teams gehosteter Gruppen-Chat und Video-Chat. Nutzen Sie Echtzeit-Zusammenarbeit in dauerhaften Chaträumen sowie bei Datei- und Bildschirmfreigaben.";locale["services[7]"]="Telegram ist ein Messenger mit Fokus auf Geschwindigkeit und Sicherheit. Er ist super schnell, einfach, sicher und kostenlos.";locale["services[8]"]="WeChat ist eine kostenlose Nachrichten-/Anruf-App, die es dir erlaubt auf einfache Art und Weise mit deiner Familie und deinen Freunden in Kontakt zu treten. Es ist die kostenlose All-in-One Kommunikationsanwendung für Text- (SMS/MMS), Sprachnachrichten, Videoanrufe und zum Teilen von Fotos und Spielen.";locale["services[9]"]="Google Mail, Googles kostenloser e-Mail-Service ist einers der weltweit beliebtesten e-Mail-Programme.";locale["services[10]"]="Inbox von Google Mail ist eine neue Anwendung vom Google Mail-Team. Inbox ist ein organisierter Ort, um Dinge zu erledigen und sich drauf zu besinnen, worauf es ankommt. Gruppierungen halten e-Mails organisiert.";locale["services[11]"]="ChatWork ist ein Gruppenchat für Unternehmen. Mit sicherem Nachrichtenversand, Video-Chat, Aufgabenmanagement und Dateifreigaben. Nutzen Sie Echtzeitkommunikation und steigern Sie die Produktivität in Teams.";locale["services[12]"]="GroupMe bringt Gruppennachrichten auf jedes Handy. Schreiben Sie Nachrichten mit den Menschen in Ihrem Leben, die Ihnen wichtig sind.";locale["services[13]"]="-Funktionen.";locale["services[14]"]="Gitter baut auf Github auf und ist eng mit Ihren Organisationen, Repositories, Issues und Aktivitäten integriert.";locale["services[15]"]="Steam ist eine digitale Vertriebsplattform entwickelt von der Valve Corporation. Sie bietet digitale Rechteverwaltung (DRM), Multiplayer-Spiele und Social-Networking-Dienste.";locale["services[16]"]="Statte dein Spiel mit einer modernen Sprach- und Text-Chat-App aus. Kristallklare Sprachübertragung, Mehrfach-Server- und Channel-Unterstützung, mobile Anwendungen und mehr.";locale["services[17]"]="Übernehmen Sie die Kontrolle. Erledigen Sie mehr. Outlook ist der kostenlose e-Mail- und Kalenderdienst, der Ihnen hilft, den Überblick zu behalten und Dinge zu erledigen.";locale["services[18]"]="Outlook für Unternehmen";locale["services[19]"]="Web-basierter E-Mail-Service von der amerikanischen Firma Yahoo!. Das Angebot ist kostenlos für den persönlichen Gebrauch, und bezahlte E-Mail-Businesspläne stehen zur Verfügung.";locale["services[20]"]="Kostenloser, webbasierter E-Mail-Service, gegründet 2013 an der CERN Forschungseinrichtung. ProtonMail ist, ganz anders als bei gängigen Webmailanbietern wie Gmail und Hotmail, auf einem zero-knowledge System entworfen, das unter Verwendung von Client-Side-Verschlüsselung E-Mail- und Benutzerdaten schützt, bevor sie zu den ProtonMail-Servern gesendet werden.";locale["services[21]"]="Tutanota ist eine Open-Source E-Mail Anwendung mit Ende-zu-Ende-Verschlüsselung und mit sicher gehosteten Freemium E-Mail Diensten auf Basis dieser Software.";locale["services[22]"]="Webbasierter E-Mail Service, der PGP-verschlüsselte E-Mails und einen Vanity-Domain-Service anbietet. Hushmail benutzt OpenPGP-Standards und der Quellcode ist zum Download verfügbar.";locale["services[23]"]="Gemeinschaftliches E-Mailen und thematisierte Gruppenchats für produktive Teams. Eine einzelne App für all deine interne und externe Kommunikation.";locale["services[24]"]="Von Gruppennachrichten und Videoanrufen bis hin zu Helpdesk-Killer-Funktionen. Unser Ziel ist es die Nummer eins bei plattformübergreifenden, quelloffenen Chat-Lösungen zu werden.";locale["services[25]"]="Anrufe in HD-Qualität, private und Gruppenchats mit Inline-Fotos, Musik und Videos. Auch erhältlich für dein Tablet und Smartphone.";locale["services[26]"]="Sync ist eine Business-Chat-Anwendung, die die Produktivität Ihres Teams steigern wird.";locale["services[27]"]="Keine Beschreibung...";locale["services[28]"]="Erlaubt Ihnen Sofortnachrichten mit jedem Benutzer des Yahoo-Servers zu teilen. Sie erhalten Benachrichtigungen zu E-Mails und Aktienkursen.";locale["services[29]"]="Voxer ist eine Messaging-App für dein Smartphone mit Live-Sprachübertragung (ähnlich Push-To-Talk bei WalkieTalkies), Text-, Foto- und Location-Sharing.";locale["services[30]"]="Mit Dasher kannst du sagen, was was du wirklich willst. Zum Beispiel mit Bildern, GIFs, Links und vielem mehr. Erstelle eine Umfrage, um herauszufinden, was deine Freunde wirklich von deiner neuen Bekanntschaft denken.";locale["services[31]"]="Flowdock ist Ihr Team-Chat mit einem gemeinsamen Posteingang. Teams mit Flowdock bleiben auf dem neuesten Stand, reagieren in Sekunden statt Tagen und vergessen niemals etwas.";locale["services[32]"]="Mattermost ist eine Open-Source, selbst-gehostete Slack-Alternative. Als Alternative zu proprietären SaaS Nachrichten-Lösungen bringt Mattermost Ihre Teamkommunikation an einem Ort, überall durchsuchbar und zugänglich.";locale["services[33]"]="DingTalk ist eine vielseitige Plattform und ermöglicht es kleinen und mittleren Unternehmen, effektiv zu kommunizieren.";locale["services[34]"]="Die Familie der mysms Anwendungen hilft Ihnen Nachrichten überall zu versenden und verbessert Ihr Nachrichten-Erlebnis auf Ihrem Smartphone, Tablet und Computer.";locale["services[35]"]="ICQ ist ein Open-Source Sofortnachrichten-Computer-Programm, das früh entwickelt und populär wurde.";locale["services[36]"]="TweetDeck ist eine Social-Media-Anwendung für die Verwaltung von Twitter-Accounts.";locale["services[37]"]="Benutzerdefinierter Dienst";locale["services[38]"]="Fügen Sie einen benutzerdefinierten Dienst hinzu, wenn er oben nicht aufgeführt ist.";locale["services[39]"]="Zinc ist eine sichere Kommunikationsanwendung für mobile Mitarbeiter, mit Text, Sprache, Video, Dateifreigaben und mehr.";locale["services[40]"]="Freenode, früher bekannt als Open-Projects-Network ist ein IRC-Netzwerk, oft genutzt um in Eigenregie zu diskutieren.";locale["services[41]"]="Schreiben Sie Nachrichten von Ihrem Computer und diese werden mit Ihrem Android-Handy & Ihrer Telefonnummer synchronisiert.";locale["services[42]"]="Kostenlose, Open-Source Webmail-Software für die Massen. In PHP geschrieben.";locale["services[43]"]="Horde ist eine kostenlose und Open-Source web-basierte Groupware.";locale["services[44]"]="SquirrelMail ist ein in PHP geschriebenes standard-basiertes Webmail-Paket.";locale["services[45]"]="Werbefreies Business e-Mail-Hosting mit einer aufgeräumten, minimalistischen Oberfläche. Kalender-, Kontakt-, Notiz- und Aufgabenanwendungen sind integriert.";locale["services[46]"]="Zoho Chat ist eine sichere und skalierbare Echtzeit-Kommunikations- und Kollaborations-Plattform für Teams, um ihre Produktivität zu verbessern.";module.exports = locale; diff --git a/resources/languages/en.js b/resources/languages/en.js index 896d7aee..ed38a69b 100644 --- a/resources/languages/en.js +++ b/resources/languages/en.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when closing it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organizations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when closing it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organizations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/fi.js b/resources/languages/fi.js index c2063a4d..0053256f 100644 --- a/resources/languages/fi.js +++ b/resources/languages/fi.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/fil.js b/resources/languages/fil.js index c2063a4d..0053256f 100644 --- a/resources/languages/fil.js +++ b/resources/languages/fil.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/fr.js b/resources/languages/fr.js index a23f1e14..f8912537 100644 --- a/resources/languages/fr.js +++ b/resources/languages/fr.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Préférences";locale["preferences[1]"]="Cacher automatiquement la barre de menus";locale["preferences[2]"]="Afficher dans la barre des tâches";locale["preferences[3]"]="Minimiser Rambox dans la barre des tâches à la fermeture";locale["preferences[4]"]="Démarrer en mode réduit";locale["preferences[5]"]="Démarrer automatiquement au démarrage du système";locale["preferences[6]"]="Pas besoin d'afficher la barre de menus en permanence ?";locale["preferences[7]"]="Pour afficher temporairement la barre de menus, appuyez sur la touche Alt.";locale["app.update[0]"]="Une nouvelle version est disponible !";locale["app.update[1]"]="Télécharger";locale["app.update[2]"]="Historiques des changements";locale["app.update[3]"]="Vous êtes à jour !";locale["app.update[4]"]="Vous avez la dernière version de Rambox.";locale["app.about[0]"]="À propos de Rambox";locale["app.about[1]"]="Application de messagerie gratuite et open source, qui combine les applications web les plus courantes en une seule.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Plateforme";locale["app.about[4]"]="Développé par";locale["app.main[0]"]="Ajouter un nouveau service";locale["app.main[1]"]="Messagerie";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Aucun service trouvé... Essayez une autre recherche.";locale["app.main[4]"]="Services actifs";locale["app.main[5]"]="ALIGNER";locale["app.main[6]"]="À gauche";locale["app.main[7]"]="À droite";locale["app.main[8]"]="Élément";locale["app.main[9]"]="Éléments";locale["app.main[10]"]="Supprimer tous les services";locale["app.main[11]"]="Désactiver les notifications";locale["app.main[12]"]="Muet";locale["app.main[13]"]="Configurer";locale["app.main[14]"]="Supprimer";locale["app.main[15]"]="Aucun service ajouté...";locale["app.main[16]"]="Ne pas déranger";locale["app.main[17]"]="Désactiver les notifications et les sons de tous les services. Parfait pour rester concentré.";locale["app.main[18]"]="Raccourci clavier";locale["app.main[19]"]="Verrouiller Rambox";locale["app.main[20]"]="Verrouiller l'application si vous vous absentez un instant.";locale["app.main[21]"]="Se déconnecter";locale["app.main[22]"]="Se connecter";locale["app.main[23]"]="Connectez-vous pour enregistrer votre configuration (aucun identifiant n'est stocké) et la synchroniser sur tous vos ordinateurs.";locale["app.main[24]"]="Propulsé par";locale["app.main[25]"]="Faire un don";locale["app.main[26]"]="avec";locale["app.main[27]"]="un projet Open Source en provenance d'Argentine.";locale["app.window[0]"]="Ajouter";locale["app.window[1]"]="Éditer";locale["app.window[2]"]="Nom";locale["app.window[3]"]="Options";locale["app.window[4]"]="Aligner à droite";locale["app.window[5]"]="Afficher les notifications";locale["app.window[6]"]="Couper tous les sons";locale["app.window[7]"]="Options avancées";locale["app.window[8]"]="Code personnalisé";locale["app.window[9]"]="en savoir plus...";locale["app.window[10]"]="Ajouter un service";locale["app.window[11]"]="équipe";locale["app.window[12]"]="Veuillez confirmer...";locale["app.window[13]"]="Êtes-vous sûr de vouloir supprimer";locale["app.window[14]"]="Êtes-vous sûr de vouloir supprimer tous les services ?";locale["app.window[15]"]="Ajouter un service personnalisé";locale["app.window[16]"]="Modifier un service personnalisé";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Approuver les certificats de securités invalides";locale["app.window[20]"]="ACTIVÉ";locale["app.window[21]"]="DESACTIVÉ";locale["app.window[22]"]="Entrez un mot de passe temporaire pour le prochain déverrouillage";locale["app.window[23]"]="Répétez le mot de passe temporaire";locale["app.window[24]"]="Avertissement";locale["app.window[25]"]="Les mots de passe sont différents. Essayez à nouveau...";locale["app.window[26]"]="Rambox est verrouillé";locale["app.window[27]"]="DÉVERROUILLER";locale["app.window[28]"]="Connexion en cours...";locale["app.window[29]"]="Veuillez patienter pendant la récupération de votre configuration.";locale["app.window[30]"]="Importer";locale["app.window[31]"]="Vous n'avez aucun service sauvegardé. Voulez-vous importer vos services actuels ?";locale["app.window[32]"]="Nettoyer les services";locale["app.window[33]"]="Voulez-vous supprimer tous vos services actuels afin de recommencer ?";locale["app.window[34]"]="Si non, vous serez déconnecté.";locale["app.window[35]"]="Valider";locale["app.window[36]"]="Pour importer votre configuration, Rambox doit retirer tous vos services actuels. Voulez-vous continuer ?";locale["app.window[37]"]="Fermeture de la session...";locale["app.window[38]"]="Souhaitez-vous vraiment vous déconnecter ?";locale["app.webview[0]"]="Recharger";locale["app.webview[1]"]="Passer en ligne";locale["app.webview[2]"]="Passer hors-ligne";locale["app.webview[3]"]="Afficher/Cacher les outils de développement";locale["app.webview[4]"]="Chargement en cours...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="OK";locale["button[1]"]="Annuler";locale["button[2]"]="Oui";locale["button[3]"]="Non";locale["button[4]"]="Sauvegarder";locale["main.dialog[0]"]="Erreur de certificat";locale["main.dialog[1]"]="Le service lié à l'adresse suivante a un certificat invalide.";locale["main.dialog[2]"]=".";locale["menu.help[0]"]="Visiter le site de Rambox";locale["menu.help[1]"]="Signaler un problème...";locale["menu.help[2]"]="Demander de l’aide";locale["menu.help[3]"]="Faire un don";locale["menu.help[4]"]="Aide";locale["menu.edit[0]"]="Éditer";locale["menu.edit[1]"]="Annuler";locale["menu.edit[2]"]="Refaire";locale["menu.edit[3]"]="Couper";locale["menu.edit[4]"]="Copier";locale["menu.edit[5]"]="Coller";locale["menu.edit[6]"]="Tout sélectionner";locale["menu.view[0]"]="Affichage";locale["menu.view[1]"]="Recharger";locale["menu.view[2]"]="Activer/Désactiver le mode Plein Écran";locale["menu.view[3]"]="Afficher/Cacher les outils de développement";locale["menu.window[0]"]="Fenêtre";locale["menu.window[1]"]="Réduire";locale["menu.window[2]"]="Fermer";locale["menu.window[3]"]="Toujours au premier plan";locale["menu.help[5]"]="Rechercher des mises à jour...";locale["menu.help[6]"]="À propos de Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Masquer Rambox";locale["menu.osx[2]"]="Masquer les autres fenêtres";locale["menu.osx[3]"]="Afficher Tout";locale["menu.file[0]"]="Fichier";locale["menu.file[1]"]="Quitter Rambox";locale["tray[0]"]="Afficher/Masquer la fenêtre";locale["tray[1]"]="Quitter";locale["services[0]"]="WhatsApp est une application de messagerie mobile multi-plateforme pour iPhone, BlackBerry, Android, Windows Phone et Nokia. Envoyez du texte, des vidéos, des images, des clips audio gratuitement.";locale["services[1]"]="Slack regroupe tous vos outils de communications en un seul endroit. C’est une messagerie en temps réel, une solution d'archivage et un outil de recherche pour les équipes à la pointe.";locale["services[2]"]="Noysi est un outil de communication pour les équipes qui assure la confidentialité des données. Avec Noysi vous pouvez accéder à toutes vos conversations et fichiers en quelques secondes depuis n’importe où et en illimité.";locale["services[3]"]="Instantly vous permet de joindre les personnes qui comptent dans votre vie, et ce gratuitement. Messenger s'utilise comme les SMS hormis que cela est gratuit.";locale["services[4]"]="Restez en contact avec votre famille et vos amis gratuitement. Bénéficiez d'appels internationaux, des appels gratuits et Skype version business sur ordinateur et mobile.";locale["services[5]"]="Dans les Hangouts, les conversations prennent vie avec des photos, des emoji et même des appels vidéo de groupe gratuits. Communiquez avec vos amis sur ordinateur ou sur des appareils Android ou Apple.";locale["services[6]"]="HipChat est un groupe de chat et de chat vidéo hébergé et pensé pour des équipes . Boostez votre collaboration en temps réel grâce aux groupes de chat privés , aux partages de documents et aux partages d’écran.";locale["services[7]"]="Telegram est une application de messagerie rapide, simple d'utilisation et sécurisée. L'application gratuite est disponible sur Android, iOS, Windows Phone ainsi que sur ordinateur (Linux, Os X et Windows).";locale["services[8]"]="WeChat est une application d'appel et de messagerie gratuite qui vous permettra de rester en contact avec votre famille et vos amis, partout dans le monde. Il s'agit d'une application de communication tout-en-un munie des fonctions gratuites de messagerie texte (SMS/MMS), d'émission d'appels vocaux et vidéo, moments, de partage de photos et de jeux.";locale["services[9]"]="Gmail est le service de mail gratuit de Google, c'est l'un des services d’émail les plus populaire au monde.";locale["services[10]"]="Nouvelle application conçue par l'équipe Gmail, Inbox crée par Gmail met l'accent sur l'organisation pour vous aider à être plus efficace et à mieux gérer vos priorités. Vos e-mails sont classés par groupes. Les informations importantes dans vos messages sont mises en évidence sans que vous ayez à les ouvrir. Vous pouvez mettre certains e-mails en attente jusqu'au moment souhaité et définir des rappels pour ne rien oublier.";locale["services[11]"]="ChatWork est un groupe de chat pour le travail . Des messages sécurisés , du chat vidéo , des gestionnaires de taches , du partage de documents. Des communications en temps-réel afin d’améliorer la productivité des équipes de travail.";locale["services[12]"]="GroupMe — un moyen simple et gratuit de rester en contact avec les personnes qui comptent le plus pour vous, facilement et rapidement.";locale["services[13]"]="C'est le chat d’équipe le plus avancé pour des entreprises.";locale["services[14]"]="Gitter repose sur GitHub. Il permet de discuter avec des personnes sur GitHub, permettant ainsi de résoudre vos problèmes et/ou vos questions sur vos répertoires.";locale["services[15]"]="Steam est une plate-forme de distribution de contenu en ligne, de gestion des droits et de communication développée par Valve . Orientée autour des jeux vidéo, elle permet aux utilisateurs d'acheter des jeux, du contenu pour les jeux, de les mettre à jour automatiquement, de gérer la partie multi-joueur des jeux et offre des outils communautaires autour des jeux utilisant Steam.";locale["services[16]"]="Discord est une plateforme de chat écrit & vocal orientée pour les joueurs. Ce programme possède de multiples serveurs et supporte les différents canaux afin de permettre aux joueurs d’organiser leurs conversations dans différents canaux.";locale["services[17]"]="Prenez le contrôle. Allez plus loin. Outlook est un service de messagerie et de calendrier gratuit qui vous aide à vous tenir informé de l'essentiel et à être efficace.";locale["services[18]"]="Outlook pour entreprises";locale["services[19]"]="Yahoo! Mail est une messagerie web gratuite, offerte par l'entreprise américaine Yahoo!. Il s'agit d'une application Web permettant de communiquer par courriers électroniques.";locale["services[20]"]="ProtonMail est un service de messagerie web créé en 2013 au CERN. ProtonMail se singularise d'autres services email (Gmail";locale[""]="";locale["services[21]"]="Tutanota est un service de webmail allemand qui s'est créé suite aux révélations de Snowden et qui chiffre les emails de bout en bout (et en local dans le navigateur) aussi bien entre les utilisateurs du service que les utilisateurs externes.";locale["services[22]"]="Service de messagerie Web offrant le service un chiffrement PGP. HushMail propose des versions « libres » et « payantes » avec plus de fonctionalitées. HushMail utilise le standard OpenPGP pour le chiffrement des emails.";locale["services[23]"]="Messagerie collaboratives et de groupe de discussion pour les équipes de production. Une application pour toute votre communication interne et externe. La meilleure solution de gestion du travail, essayez-la gratuitement.";locale["services[24]"]="Rocket Chat, la plate-forme chat en ligne ultime. Des messages de groupe et de la vidéo ou juste de l'audio nous essayons de devenir la boite a outils ultime pour votre ordinateur. Notre objectif est de devenir le numéro un multi-plateforme solution de chat open source.";locale["services[25]"]="Appels audio/vidéo en HD et conversations de groupes. Pas de publicité. Toujours crypté.";locale["Toujours disponible sur mobiles"]="tablettes";locale["services[26]"]="Sync est un outil de chat pour le travail, qui va booster votre productivité et votre travail d’équipe.";locale["services[27]"]="Aucune description...";locale["services[28]"]="Yahoo! Messenger vous propose de découvrir le nouveau look de votre logiciel de messagerie instantanée. En plus des skins, des couleurs plus design et des emôticones toujours plus expressifs, vous disposerez de nouvelles fonctionnalités de communication telles que le module de téléphonie de Pc à Pc (VoIP), l'envoi de Sms, l'installation de plugins pour accéder rapidement à des services interactifs, le partage de photos par Flickr et autres documents, la vidéo conférence par webcam et bien d'autres encore. Vous pourrez toujours discuter librement avec vos amis dans des conversations privées (même avec des utilisateurs de Windows Live Messenger) ou dans des salons de discussions, gérer vos contacts et votre profil, archiver les messages, consulter l'historique, etc.";locale["services[29]"]="Accédez à vos messages vocaux instantanés n’importe où et n’importe quand. Avec Voxer, chaque message vocal est en temps réel (vos amis vous entendent au moment où vous parlez) et enregistré (vous pouvez l’écouter plus tard). Vous pouvez également envoyer des SMS, des photos, et partager votre localisation en plus des messages audio.";locale["services[30]"]="Dasher vous laisse dire ce que vous voulez vraiment avec des images, des gifs, des hyperliens et plus encore. Faite des votes pour savoir ce que vos amis pense de vous.";locale["services[31]"]="Flowdock est le chat de votre équipe avec une messagerie partagée. Les équipes qui utilisent Flowdock restent à jour, réagissent en quelques secondes au lieu de jours et n'oublient jamais rien.";locale["services[32]"]="Mattermost est un logiciel libre, auto-hébergé , c'est un logiciel alternatif a Slack. Mattermost apporte toutes les communications de votre équipe en un seul endroit, rendant consultable et accessible n’importe où.";locale["services[33]"]="DingTalk est une plateforme multi-usages permet aux petites et moyennes entreprises de communiquer efficacement.";locale["services[34]"]="L'application Mysms vous permet de synchroniser vos messages entre vos différents appareils : tablettes, ordinateurs fixes ou portables et mobiles.";locale["services[35]"]="ICQ est le premier logiciel connu et open-source de messagerie instantané.";locale["services[36]"]="TweetDeck est un panneau de visualisation et de gestion des diffèrents messages/notifications/mentions de comptes twitter.";locale["services[37]"]="Service personnalisé";locale["services[38]"]="Ajouter un service personnalisé si celui-ci n’est pas répertorié ci-dessus.";locale["services[39]"]="Zinc est l'application de communication sécurisée qui relie les employés à l'intérieur et à l'extérieur du bureau. Combinez les fonctionnalités que les employés aiment (partage de fichiers, appels vidéos, ...) avec la sécurité que votre entreprise a besoin.";locale["services[40]"]="Freenode (en français « nœud libre » ) anciennement nommé Openprojects (en français « projets ouverts ») est un réseau IRC (en français « discussion relayée par Internet ») utilisé principalement par des développeurs de projets libres ou Open Source (au littéral : « code source libre »). Les informaticiens sont majoritaires, mais on retrouve aussi la communauté du libre en général.";locale["services[41]"]="MightyText permet de rédiger, de consulter et de gérer vos Sms depuis votre poste de travail. Très pratique en cas de perte ou d'oubli de votre mobile.";locale["services[42]"]="Solution de webmail gratuite et open source pour les masses... en PHP.";locale["services[43]"]="Horde est un groupware web, gratuit et open source.";locale["services[44]"]="SquirrelMail est un logiciel de messagerie basé sur un package (en français : paquet) écrit en PHP ( langage de programmation pour des pages web).";locale["services[45]"]="Zoho Email est une messagerie sans pub hébergée avec une interface propre minimaliste , qui intègre un calendrier des contacts, des notes et un gestionnaires des taches.";locale["services[46]"]="Zoho chat est une plateforme sécurisée et évolutive de communication en temps réel et de collaboration qui aide les équipes à améliorer leur productivité.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Préférences";locale["preferences[1]"]="Cacher automatiquement la barre de menus";locale["preferences[2]"]="Afficher dans la barre des tâches";locale["preferences[3]"]="Minimiser Rambox dans la barre des tâches à la fermeture";locale["preferences[4]"]="Démarrer en mode réduit";locale["preferences[5]"]="Démarrer automatiquement au démarrage du système";locale["preferences[6]"]="Pas besoin d'afficher la barre de menus en permanence ?";locale["preferences[7]"]="Pour afficher temporairement la barre de menus, appuyez sur la touche Alt.";locale["app.update[0]"]="Une nouvelle version est disponible !";locale["app.update[1]"]="Télécharger";locale["app.update[2]"]="Historiques des changements";locale["app.update[3]"]="Vous êtes à jour !";locale["app.update[4]"]="Vous avez la dernière version de Rambox.";locale["app.about[0]"]="À propos de Rambox";locale["app.about[1]"]="Application de messagerie gratuite et open source, qui combine les applications web les plus courantes en une seule.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Plateforme";locale["app.about[4]"]="Développé par";locale["app.main[0]"]="Ajouter un nouveau service";locale["app.main[1]"]="Messagerie";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Aucun service trouvé... Essayez une autre recherche.";locale["app.main[4]"]="Services actifs";locale["app.main[5]"]="ALIGNER";locale["app.main[6]"]="À gauche";locale["app.main[7]"]="À droite";locale["app.main[8]"]="Élément";locale["app.main[9]"]="Éléments";locale["app.main[10]"]="Supprimer tous les services";locale["app.main[11]"]="Désactiver les notifications";locale["app.main[12]"]="Muet";locale["app.main[13]"]="Configurer";locale["app.main[14]"]="Supprimer";locale["app.main[15]"]="Aucun service ajouté...";locale["app.main[16]"]="Ne pas déranger";locale["app.main[17]"]="Désactiver les notifications et les sons de tous les services. Parfait pour rester concentré.";locale["app.main[18]"]="Raccourci clavier";locale["app.main[19]"]="Verrouiller Rambox";locale["app.main[20]"]="Verrouiller l'application si vous vous absentez un instant.";locale["app.main[21]"]="Se déconnecter";locale["app.main[22]"]="Se connecter";locale["app.main[23]"]="Connectez-vous pour enregistrer votre configuration (aucun identifiant n'est stocké) et la synchroniser sur tous vos ordinateurs.";locale["app.main[24]"]="Propulsé par";locale["app.main[25]"]="Faire un don";locale["app.main[26]"]="avec";locale["app.main[27]"]="un projet Open Source en provenance d'Argentine.";locale["app.window[0]"]="Ajouter";locale["app.window[1]"]="Éditer";locale["app.window[2]"]="Nom";locale["app.window[3]"]="Options";locale["app.window[4]"]="Aligner à droite";locale["app.window[5]"]="Afficher les notifications";locale["app.window[6]"]="Couper tous les sons";locale["app.window[7]"]="Options avancées";locale["app.window[8]"]="Code personnalisé";locale["app.window[9]"]="en savoir plus...";locale["app.window[10]"]="Ajouter un service";locale["app.window[11]"]="équipe";locale["app.window[12]"]="Veuillez confirmer...";locale["app.window[13]"]="Êtes-vous sûr de vouloir supprimer";locale["app.window[14]"]="Êtes-vous sûr de vouloir supprimer tous les services ?";locale["app.window[15]"]="Ajouter un service personnalisé";locale["app.window[16]"]="Modifier un service personnalisé";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Approuver les certificats de securités invalides";locale["app.window[20]"]="ACTIVÉ";locale["app.window[21]"]="DESACTIVÉ";locale["app.window[22]"]="Entrez un mot de passe temporaire pour le prochain déverrouillage";locale["app.window[23]"]="Répétez le mot de passe temporaire";locale["app.window[24]"]="Avertissement";locale["app.window[25]"]="Les mots de passe sont différents. Essayez à nouveau...";locale["app.window[26]"]="Rambox est verrouillé";locale["app.window[27]"]="DÉVERROUILLER";locale["app.window[28]"]="Connexion en cours...";locale["app.window[29]"]="Veuillez patienter pendant la récupération de votre configuration.";locale["app.window[30]"]="Importer";locale["app.window[31]"]="Vous n'avez aucun service sauvegardé. Voulez-vous importer vos services actuels ?";locale["app.window[32]"]="Nettoyer les services";locale["app.window[33]"]="Voulez-vous supprimer tous vos services actuels afin de recommencer ?";locale["app.window[34]"]="Si non, vous serez déconnecté.";locale["app.window[35]"]="Valider";locale["app.window[36]"]="Pour importer votre configuration, Rambox doit retirer tous vos services actuels. Voulez-vous continuer ?";locale["app.window[37]"]="Fermeture de la session...";locale["app.window[38]"]="Souhaitez-vous vraiment vous déconnecter ?";locale["app.webview[0]"]="Recharger";locale["app.webview[1]"]="Passer en ligne";locale["app.webview[2]"]="Passer hors-ligne";locale["app.webview[3]"]="Afficher/Cacher les outils de développement";locale["app.webview[4]"]="Chargement en cours...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Annuler";locale["button[2]"]="Oui";locale["button[3]"]="Non";locale["button[4]"]="Sauvegarder";locale["main.dialog[0]"]="Erreur de certificat";locale["main.dialog[1]"]="Le service lié à l'adresse suivante a un certificat invalide.";locale["main.dialog[2]"]=".";locale["menu.help[0]"]="Visiter le site de Rambox";locale["menu.help[1]"]="Signaler un problème...";locale["menu.help[2]"]="Demander de l’aide";locale["menu.help[3]"]="Faire un don";locale["menu.help[4]"]="Aide";locale["menu.edit[0]"]="Éditer";locale["menu.edit[1]"]="Annuler";locale["menu.edit[2]"]="Refaire";locale["menu.edit[3]"]="Couper";locale["menu.edit[4]"]="Copier";locale["menu.edit[5]"]="Coller";locale["menu.edit[6]"]="Tout sélectionner";locale["menu.view[0]"]="Affichage";locale["menu.view[1]"]="Recharger";locale["menu.view[2]"]="Activer/Désactiver le mode Plein Écran";locale["menu.view[3]"]="Afficher/Cacher les outils de développement";locale["menu.window[0]"]="Fenêtre";locale["menu.window[1]"]="Réduire";locale["menu.window[2]"]="Fermer";locale["menu.window[3]"]="Toujours au premier plan";locale["menu.help[5]"]="Rechercher des mises à jour...";locale["menu.help[6]"]="À propos de Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Masquer Rambox";locale["menu.osx[2]"]="Masquer les autres fenêtres";locale["menu.osx[3]"]="Afficher Tout";locale["menu.file[0]"]="Fichier";locale["menu.file[1]"]="Quitter Rambox";locale["tray[0]"]="Afficher/Masquer la fenêtre";locale["tray[1]"]="Quitter";locale["services[0]"]="WhatsApp est une application de messagerie mobile multi-plateforme pour iPhone, BlackBerry, Android, Windows Phone et Nokia. Envoyez du texte, des vidéos, des images, des clips audio gratuitement.";locale["services[1]"]="Slack regroupe tous vos outils de communications en un seul endroit. C’est une messagerie en temps réel, une solution d'archivage et un outil de recherche pour les équipes à la pointe.";locale["services[2]"]="Noysi est un outil de communication pour les équipes qui assure la confidentialité des données. Avec Noysi vous pouvez accéder à toutes vos conversations et fichiers en quelques secondes depuis n’importe où et en illimité.";locale["services[3]"]="Instantly vous permet de joindre les personnes qui comptent dans votre vie, et ce gratuitement. Messenger s'utilise comme les SMS hormis que cela est gratuit.";locale["services[4]"]="Restez en contact avec votre famille et vos amis gratuitement. Bénéficiez d'appels internationaux, des appels gratuits et Skype version business sur ordinateur et mobile.";locale["services[5]"]="Dans les Hangouts, les conversations prennent vie avec des photos, des emoji et même des appels vidéo de groupe gratuits. Communiquez avec vos amis sur ordinateur ou sur des appareils Android ou Apple.";locale["services[6]"]="HipChat est un groupe de chat et de chat vidéo hébergé et pensé pour des équipes . Boostez votre collaboration en temps réel grâce aux groupes de chat privés , aux partages de documents et aux partages d’écran.";locale["services[7]"]="Telegram est une application de messagerie rapide, simple d'utilisation et sécurisée. L'application gratuite est disponible sur Android, iOS, Windows Phone ainsi que sur ordinateur (Linux, Os X et Windows).";locale["services[8]"]="WeChat est une application d'appel et de messagerie gratuite qui vous permettra de rester en contact avec votre famille et vos amis, partout dans le monde. Il s'agit d'une application de communication tout-en-un munie des fonctions gratuites de messagerie texte (SMS/MMS), d'émission d'appels vocaux et vidéo, moments, de partage de photos et de jeux.";locale["services[9]"]="Gmail est le service de mail gratuit de Google, c'est l'un des services d’émail les plus populaire au monde.";locale["services[10]"]="Nouvelle application conçue par l'équipe Gmail, Inbox crée par Gmail met l'accent sur l'organisation pour vous aider à être plus efficace et à mieux gérer vos priorités. Vos e-mails sont classés par groupes. Les informations importantes dans vos messages sont mises en évidence sans que vous ayez à les ouvrir. Vous pouvez mettre certains e-mails en attente jusqu'au moment souhaité et définir des rappels pour ne rien oublier.";locale["services[11]"]="ChatWork est un groupe de chat pour le travail . Des messages sécurisés , du chat vidéo , des gestionnaires de taches , du partage de documents. Des communications en temps-réel afin d’améliorer la productivité des équipes de travail.";locale["services[12]"]="GroupMe — un moyen simple et gratuit de rester en contact avec les personnes qui comptent le plus pour vous, facilement et rapidement.";locale["services[13]"]="C'est le chat d’équipe le plus avancé pour des entreprises.";locale["services[14]"]="Gitter repose sur GitHub. Il permet de discuter avec des personnes sur GitHub, permettant ainsi de résoudre vos problèmes et/ou vos questions sur vos répertoires.";locale["services[15]"]="Steam est une plate-forme de distribution de contenu en ligne, de gestion des droits et de communication développée par Valve . Orientée autour des jeux vidéo, elle permet aux utilisateurs d'acheter des jeux, du contenu pour les jeux, de les mettre à jour automatiquement, de gérer la partie multi-joueur des jeux et offre des outils communautaires autour des jeux utilisant Steam.";locale["services[16]"]="Discord est une plateforme de chat écrit & vocal orientée pour les joueurs. Ce programme possède de multiples serveurs et supporte les différents canaux afin de permettre aux joueurs d’organiser leurs conversations dans différents canaux.";locale["services[17]"]="Prenez le contrôle. Allez plus loin. Outlook est un service de messagerie et de calendrier gratuit qui vous aide à vous tenir informé de l'essentiel et à être efficace.";locale["services[18]"]="Outlook pour entreprises";locale["services[19]"]="Yahoo! Mail est une messagerie web gratuite, offerte par l'entreprise américaine Yahoo!. Il s'agit d'une application Web permettant de communiquer par courriers électroniques.";locale["services[20]"]="ProtonMail est un service de messagerie web créé en 2013 au CERN. ProtonMail se singularise d'autres services email (Gmail";locale[""]="";locale["services[21]"]="Tutanota est un service de webmail allemand qui s'est créé suite aux révélations de Snowden et qui chiffre les emails de bout en bout (et en local dans le navigateur) aussi bien entre les utilisateurs du service que les utilisateurs externes.";locale["services[22]"]="Service de messagerie Web offrant le service un chiffrement PGP. HushMail propose des versions « libres » et « payantes » avec plus de fonctionalitées. HushMail utilise le standard OpenPGP pour le chiffrement des emails.";locale["services[23]"]="Messagerie collaboratives et de groupe de discussion pour les équipes de production. Une application pour toute votre communication interne et externe. La meilleure solution de gestion du travail, essayez-la gratuitement.";locale["services[24]"]="Rocket Chat, la plate-forme chat en ligne ultime. Des messages de groupe et de la vidéo ou juste de l'audio nous essayons de devenir la boite a outils ultime pour votre ordinateur. Notre objectif est de devenir le numéro un multi-plateforme solution de chat open source.";locale["services[25]"]="Appels audio/vidéo en HD et conversations de groupes. Pas de publicité. Toujours crypté.";locale["Toujours disponible sur mobiles"]="tablettes";locale["services[26]"]="Sync est un outil de chat pour le travail, qui va booster votre productivité et votre travail d’équipe.";locale["services[27]"]="Aucune description...";locale["services[28]"]="Yahoo! Messenger vous propose de découvrir le nouveau look de votre logiciel de messagerie instantanée. En plus des skins, des couleurs plus design et des emôticones toujours plus expressifs, vous disposerez de nouvelles fonctionnalités de communication telles que le module de téléphonie de Pc à Pc (VoIP), l'envoi de Sms, l'installation de plugins pour accéder rapidement à des services interactifs, le partage de photos par Flickr et autres documents, la vidéo conférence par webcam et bien d'autres encore. Vous pourrez toujours discuter librement avec vos amis dans des conversations privées (même avec des utilisateurs de Windows Live Messenger) ou dans des salons de discussions, gérer vos contacts et votre profil, archiver les messages, consulter l'historique, etc.";locale["services[29]"]="Accédez à vos messages vocaux instantanés n’importe où et n’importe quand. Avec Voxer, chaque message vocal est en temps réel (vos amis vous entendent au moment où vous parlez) et enregistré (vous pouvez l’écouter plus tard). Vous pouvez également envoyer des SMS, des photos, et partager votre localisation en plus des messages audio.";locale["services[30]"]="Dasher vous laisse dire ce que vous voulez vraiment avec des images, des gifs, des hyperliens et plus encore. Faite des votes pour savoir ce que vos amis pense de vous.";locale["services[31]"]="Flowdock est le chat de votre équipe avec une messagerie partagée. Les équipes qui utilisent Flowdock restent à jour, réagissent en quelques secondes au lieu de jours et n'oublient jamais rien.";locale["services[32]"]="Mattermost est un logiciel libre, auto-hébergé , c'est un logiciel alternatif a Slack. Mattermost apporte toutes les communications de votre équipe en un seul endroit, rendant consultable et accessible n’importe où.";locale["services[33]"]="DingTalk est une plateforme multi-usages permet aux petites et moyennes entreprises de communiquer efficacement.";locale["services[34]"]="L'application Mysms vous permet de synchroniser vos messages entre vos différents appareils : tablettes, ordinateurs fixes ou portables et mobiles.";locale["services[35]"]="ICQ est le premier logiciel connu et open-source de messagerie instantané.";locale["services[36]"]="TweetDeck est un panneau de visualisation et de gestion des diffèrents messages/notifications/mentions de comptes twitter.";locale["services[37]"]="Service personnalisé";locale["services[38]"]="Ajouter un service personnalisé si celui-ci n’est pas répertorié ci-dessus.";locale["services[39]"]="Zinc est l'application de communication sécurisée qui relie les employés à l'intérieur et à l'extérieur du bureau. Combinez les fonctionnalités que les employés aiment (partage de fichiers, appels vidéos, ...) avec la sécurité que votre entreprise a besoin.";locale["services[40]"]="Freenode (en français « nœud libre » ) anciennement nommé Openprojects (en français « projets ouverts ») est un réseau IRC (en français « discussion relayée par Internet ») utilisé principalement par des développeurs de projets libres ou Open Source (au littéral : « code source libre »). Les informaticiens sont majoritaires, mais on retrouve aussi la communauté du libre en général.";locale["services[41]"]="MightyText permet de rédiger, de consulter et de gérer vos Sms depuis votre poste de travail. Très pratique en cas de perte ou d'oubli de votre mobile.";locale["services[42]"]="Solution de webmail gratuite et open source pour les masses... en PHP.";locale["services[43]"]="Horde est un groupware web, gratuit et open source.";locale["services[44]"]="SquirrelMail est un logiciel de messagerie basé sur un package (en français : paquet) écrit en PHP ( langage de programmation pour des pages web).";locale["services[45]"]="Zoho Email est une messagerie sans pub hébergée avec une interface propre minimaliste , qui intègre un calendrier des contacts, des notes et un gestionnaires des taches.";locale["services[46]"]="Zoho chat est une plateforme sécurisée et évolutive de communication en temps réel et de collaboration qui aide les équipes à améliorer leur productivité.";module.exports = locale; diff --git a/resources/languages/he.js b/resources/languages/he.js index c2063a4d..0053256f 100644 --- a/resources/languages/he.js +++ b/resources/languages/he.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/hi.js b/resources/languages/hi.js index c2063a4d..0053256f 100644 --- a/resources/languages/hi.js +++ b/resources/languages/hi.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/hr.js b/resources/languages/hr.js index c2063a4d..0053256f 100644 --- a/resources/languages/hr.js +++ b/resources/languages/hr.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/hu.js b/resources/languages/hu.js index c2063a4d..0053256f 100644 --- a/resources/languages/hu.js +++ b/resources/languages/hu.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/it.js b/resources/languages/it.js index e6e1b3a6..35f5be1d 100644 --- a/resources/languages/it.js +++ b/resources/languages/it.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferenze";locale["preferences[1]"]="Nascondi automaticamente la barra del menù";locale["preferences[2]"]="Mostra nella barra delle applicazioni";locale["preferences[3]"]="Mantieni Rambox nella barra delle applicazione quando viene chiuso";locale["preferences[4]"]="Avvia minimizzato";locale["preferences[5]"]="Avvia automaticamente all'avvio del sistema";locale["preferences[6]"]="Non hai bisogno di vedere costantemente la barra dei menu?";locale["preferences[7]"]="Per vedere temporaneamente la barra dei menù basta premere il tasto Alt.";locale["app.update[0]"]="Una nuova versione è disponibile!";locale["app.update[1]"]="Scarica";locale["app.update[2]"]="Registro delle modifiche";locale["app.update[3]"]="Il software è aggiornato!";locale["app.update[4]"]="Hai l'ultima versione di Rambox.";locale["app.about[0]"]="Informazioni su Rambox";locale["app.about[1]"]="Servizio di messaggistica e di e-mail libero e open source che combina le più comuni applicazioni web in una sola.";locale["app.about[2]"]="Versione";locale["app.about[3]"]="Piattaforma";locale["app.about[4]"]="Sviluppato da";locale["app.main[0]"]="Aggiungi un nuovo servizio";locale["app.main[1]"]="Messaggistica";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Nessun servizio trovato. Fai un'altra ricerca.";locale["app.main[4]"]="Servizi attivati";locale["app.main[5]"]="Allineamento";locale["app.main[6]"]="Sinistra";locale["app.main[7]"]="Destra";locale["app.main[8]"]="Oggetto";locale["app.main[9]"]="Oggetti";locale["app.main[10]"]="Rimuovi tutti i servizi";locale["app.main[11]"]="Blocca notifiche";locale["app.main[12]"]="Silenziato";locale["app.main[13]"]="Configura";locale["app.main[14]"]="Rimuovi";locale["app.main[15]"]="Nessun servizio aggiunto...";locale["app.main[16]"]="Non disturbare";locale["app.main[17]"]="Disattiva le notifiche e suoni di tutti i servizi. Perfetto per rimanere concentrati e focalizzati.";locale["app.main[18]"]="Tasto di scelta rapida";locale["app.main[19]"]="Blocca Rambox";locale["app.main[20]"]="Blocca quest'app se starai via per un certo periodo di tempo.";locale["app.main[21]"]="Disconnettiti";locale["app.main[22]"]="Connettiti";locale["app.main[23]"]="Connettiti per salvare la configurazione (senza credenziali archiviate) per la sincronizzazione con tutti i tuoi computer.";locale["app.main[24]"]="Realizzato da";locale["app.main[25]"]="Dona";locale["app.main[26]"]="con";locale["app.main[27]"]="dall'Argentina come progetto Open Source.";locale["app.window[0]"]="Aggiungi";locale["app.window[1]"]="Modifica";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opzioni";locale["app.window[4]"]="Allinea a destra";locale["app.window[5]"]="Mostra notifiche";locale["app.window[6]"]="Silenzia tutti i suoni";locale["app.window[7]"]="Avanzate";locale["app.window[8]"]="Codice personalizzato";locale["app.window[9]"]="leggi di più...";locale["app.window[10]"]="Aggiungi servizio";locale["app.window[11]"]="team";locale["app.window[12]"]="Conferma...";locale["app.window[13]"]="Sei sicuro di voler rimuovere";locale["app.window[14]"]="Sei sicuro di voler rimuovere tutti i servizi?";locale["app.window[15]"]="Aggiungi servizio personalizzato";locale["app.window[16]"]="Modifica servizio personalizzato";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Fidati dei certificati di autorità non validi";locale["app.window[20]"]="On";locale["app.window[21]"]="Off";locale["app.window[22]"]="Inserisci una password temporanea per sbloccare il servizio successivamente";locale["app.window[23]"]="Reinserisci la password temporanea";locale["app.window[24]"]="Attenzione";locale["app.window[25]"]="Le password non sono uguali. Riprova...";locale["app.window[26]"]="Rambox è bloccato";locale["app.window[27]"]="SBLOCCA";locale["app.window[28]"]="Connessione in corso...";locale["app.window[29]"]="Si prega di attendere fino a quando non otteniamo la tua configurazione.";locale["app.window[30]"]="Importa";locale["app.window[31]"]="Non hai alcun servizio salvato. Vuoi importare i tuoi servizi attuali?";locale["app.window[32]"]="Pulisci servizi";locale["app.window[33]"]="Vuoi rimuovere tutti i tuoi servizi attuali per ricominciare da capo?";locale["app.window[34]"]="Se no, verrai disconnesso.";locale["app.window[35]"]="Conferma";locale["app.window[36]"]="Per importare la configurazione, Rambox deve rimuovere tutti i tuoi servizi attuali. Vuoi continuare?";locale["app.window[37]"]="Chiusura della sessione...";locale["app.window[38]"]="Sei sicuro di volerti disconnettere?";locale["app.webview[0]"]="Ricarica";locale["app.webview[1]"]="Vai online";locale["app.webview[2]"]="Vai offline";locale["app.webview[3]"]="Attiva/disattiva strumenti di sviluppo";locale["app.webview[4]"]="Caricamento in corso...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Annulla";locale["button[2]"]="Sì";locale["button[3]"]="No";locale["button[4]"]="Salva";locale["main.dialog[0]"]="Errore di certificazione";locale["main.dialog[1]"]="Il servizio con il seguente URL ha un certificato di autorità non valido.";locale["main.dialog[2]"]="È necessario rimuovere il servizio e aggiungerlo nuovamente";locale["menu.help[0]"]="Visita il sito web di Rambox";locale["menu.help[1]"]="Riporta un problema...";locale["menu.help[2]"]="Chiedi aiuto";locale["menu.help[3]"]="Dona";locale["menu.help[4]"]="Aiuto";locale["menu.edit[0]"]="Modifica";locale["menu.edit[1]"]="Annulla azione";locale["menu.edit[2]"]="Rifai";locale["menu.edit[3]"]="Taglia";locale["menu.edit[4]"]="Copia";locale["menu.edit[5]"]="Incolla";locale["menu.edit[6]"]="Seleziona tutto";locale["menu.view[0]"]="Visualizza";locale["menu.view[1]"]="Ricarica";locale["menu.view[2]"]="Attiva/disattiva schermo intero";locale["menu.view[3]"]="Attiva/disattiva strumenti di sviluppo";locale["menu.window[0]"]="Finestra";locale["menu.window[1]"]="Minimizza";locale["menu.window[2]"]="Chiudi";locale["menu.window[3]"]="Sempre in primo piano";locale["menu.help[5]"]="Controlla aggiornamenti...";locale["menu.help[6]"]="Informazioni su Rambox";locale["menu.osx[0]"]="Servizi";locale["menu.osx[1]"]="Nascondi Rambox";locale["menu.osx[2]"]="Nascondi altri";locale["menu.osx[3]"]="Mostra tutti";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Chiudi Rambox";locale["tray[0]"]="Mostra/Nascondi finestra";locale["tray[1]"]="Chiudi";locale["services[0]"]="WhatsApp è un'app di messaggistica mobile multi-piattaforma per iPhone, BlackBerry, Android, Windows Phone e Nokia. Invia gratuitamente messaggi, video, immagini, audio.";locale["services[1]"]="Slack riunisce tutte le tue comunicazioni in un unico luogo. Messaggistica in tempo reale, archiviazione e ricerca per team moderni.";locale["services[2]"]="Noysi è uno strumento di comunicazione per le squadre dove la privacy è garantita. Con Noysi è possibile accedere a tutte le conversazioni e i file in pochi secondi da qualsiasi luogo e senza limiti.";locale["services[3]"]="Raggiungere immediatamente le persone nella vostra vita gratuitamente. Messenger è proprio come gli Sms, ma non devi pagare per ogni messaggio.";locale["services[4]"]="Rimanere in contatto con la famiglia e gli amici gratuitamente. Chiamate internazionali, gratuito chiamate online e Skype per Business sul desktop e mobile.";locale["services[5]"]="Hangouts porta vita alle conversazioni con foto, emoji e videochiamate di gruppo anche gratuitamente. Connettersi con gli amici attraverso computers, Android e dispositivi Apple.";locale["services[6]"]="HipChat è un servizio di chat e video-chat di gruppo, costruito per le squadre. Collaborazione in tempo reale sovraccaricata con stanze permanenti, condivisione di file e condivisione dello schermo.";locale["services[7]"]="Telegram è un'app di messaggistica con un focus su velocità e sicurezza. È super veloce, semplice, sicura e gratuita.";locale["services[8]"]="WeChat è un'applicazione di chiamata e messaggistica che ti permette di connetterti con la tua famiglia e i tuoi amici facilmente.";locale["services[9]"]="Gmail, servizio di posta gratuito di Google, è uno dei più popolari programmi di posta elettronica del mondo.";locale["services[10]"]="Inbox by Gmail è una nuova app dal team di Gmail. Inbox è un luogo organizzato per fare le cose e tornare a ciò che conta. Conservare e-mail organizzata in gruppi.";locale["services[11]"]="ChatWork è un'app per chat di gruppo per il business. Messaggistica sicura, video chat, gestione delle attività e condivisione di file. Comunicazione in tempo reale e più produttività per i team di lavoro.";locale["services[12]"]="GroupMe porta i messaggi di testo di gruppo a tutti i telefoni. Crea il tuo gruppo e messaggia con le persone che sono importanti per te.";locale["services[13]"]="La team chat più avanzata al mondo si unisce con la ricerca aziendale.";locale["services[14]"]="Gitter è basato su GitHub ed interagisce strettamente con le tue organizzazioni, repository, problemi e attività.";locale["services[15]"]="Steam è una piattaforma di distribuzione digitale sviluppata da Valve Corporation offre la gestione dei diritti digitali (DRM), modalità multiplayer e servizi di social networking.";locale["services[16]"]="Aumenta la tua esperienza nei tuoi giochi preferiti con un'applicazione di chat vocale e testuale moderna. Crystal Clear Voice, numerosi server e canale di assistenza clienti, una applicazione per smartphone e molto di più.";locale["services[17]"]="Prendi il controllo. Ottimizza il tuo tempo. Outlook è un servizio di posta elettronica gratuito che ti aiuta a rimanere focalizzato su ciò che conta e riempire i tuoi obbiettivi.";locale["services[18]"]="Outlook per il business";locale["services[19]"]="Servizio di posta elettronica basati sul Web offerto dall'azienda americana Yahoo!. Il servizio è gratuito per uso personale e sono previsti piani a pagamento per le imprese.";locale["services[20]"]="Servizio di posta elettronica gratuito, crittografato e basato su web fondato nel 2013 presso l'impianto di ricerca CERN. ProtonMail è stato progettato come un sistema che funziona senza particolari conoscenze o impostazioni utilizzando la crittografia lato client per proteggere i messaggi di posta elettronica e dati utente prima che vengano inviati ai server di ProtonMail, a differenza di altri comuni servizi di webmail come Gmail e Hotmail.";locale["services[21]"]="Tutanota è un software open-source per l'invio di e-mail crittografate e offre un servizio freemium di posta elettronica sicura basata sul suo software software.";locale["services[22]"]="Servizio di posta elettronica web che offre email criptate con PGP ed un servizio di vanity domain. Hushmail offre un servizio gratuito ed uno commerciale. Hushmail utilizza gli standard OpenPGP ed il sorgente è scaricabile.";locale["services[23]"]="Email collaborativa e chat di gruppo organizzata per la produttività dei team. Una app singola per le comunicazioni, sia interne che esterne.";locale["services[24]"]="Dai messaggi di gruppo e video chiamate a tutte le killer features per il servizio di helpdesk, il nostro obiettivo è diventare la soluzione numero uno come chat cross-platform e open source.";locale["services[25]"]="Chiamate vocali in HD, sessioni di chat private o di gruppo con la possibilità di includere foto, musiche e video. Disponibile anche sul vostro smartphone o tablet.";locale["services[26]"]="Sync è una chat per il business che aumenterà la produttività del vostro team.";locale["services[27]"]="Nessuna descrizione...";locale["services[28]"]="Ti permette scambiare messaggi con chiunque sul server Yahoo. Ti notifica la ricezione della posta e dà quotazioni di borsa.";locale["services[29]"]="Voxer è un'app di messaggistica per il tuo smartphone con viva voce (come un walkie talkie PTT), messaggi di testo, foto e condivisione della geoposizione.";locale["services[30]"]="Dasher ti permette di dire quello che vuoi veramente con foto, gif, links e altro ancora. Fai un sondaggio per scoprire cosa veramente pensano i tuoi amici di qualcosa.";locale["services[31]"]="Flowdock è chat di gruppo con una casella di posta condivisa. I Team che utilizzano Flowdock sono sempre aggiornati, reagiscono in secondi anziché in giorni e non dimenticano nulla.";locale["services[32]"]="Mattermost è un'alternativa open source e self-hosted di Slack. Come alternativa alla messaggistica proprietaria SaaS, Mattermost porta tutte le tue comunicazioni del team in un unico luogo, rendendole ricercabili e accessibili ovunque.";locale["services[33]"]="DingTalk è una piattaforma multi-sided che consente alle piccole e medie imprese di comunicare efficacemente.";locale["services[34]"]="La famiglia di applicazioni mysms consente di inviare messaggi di testo ovunque e migliora l'esperienza di messaggistica su smartphone, tablet e computer.";locale["services[35]"]="ICQ è un software open source per la messaggistica immediata, uno dei primi ad essere sviluppati e resi popolari.";locale["services[36]"]="TweetDeck è un' applicazione dashboard di social media per la gestione di account di Twitter.";locale["services[37]"]="Servizio personalizzato";locale["services[38]"]="Aggiungi un servizio personalizzato se non è presente nell'elenco.";locale["services[39]"]="Zinc è un'applicazione di comunicazione securizata per lavoratori mobili e che include chat testuale, video chat, chiamate vocali e condivisione di file ma anche molto altro.";locale["services[40]"]="Freenode, precedentemente conosciuto come Open Projects Network, è una rete di server IRC per discutere di progetti orientati peer.";locale["services[41]"]="Invia SMS dal tuo computer, grazie alla sincronizzazione con il tuo telefono Android e numero di telefono.";locale["services[42]"]="Webmail gratuita e open source per le masse, scritta in PHP.";locale["services[43]"]="Horde è un servizio open source gratuito e collaborativo basato sul web.";locale["services[44]"]="SquirrelMail è un pacchetto software basato su webmail standard e scritto in PHP.";locale["services[45]"]="Soluzione Email per il business, senza pubblicità, con un'interfaccia pulita e minimalista. Integra al suo interno delle app di Calendario, Blocco Note, Attività.";locale["services[46]"]="Zoho chat è una piattaforma, sicura e scalabile, per la comunicazione in tempo reale e la collaborazione dei team di lavoro, pensata in modo da migliorarne la produttività.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferenze";locale["preferences[1]"]="Nascondi automaticamente la barra del menù";locale["preferences[2]"]="Mostra nella barra delle applicazioni";locale["preferences[3]"]="Mantieni Rambox nella barra delle applicazione quando viene chiuso";locale["preferences[4]"]="Avvia minimizzato";locale["preferences[5]"]="Avvia automaticamente all'avvio del sistema";locale["preferences[6]"]="Non hai bisogno di vedere costantemente la barra dei menu?";locale["preferences[7]"]="Per vedere temporaneamente la barra dei menù basta premere il tasto Alt.";locale["app.update[0]"]="Una nuova versione è disponibile!";locale["app.update[1]"]="Scarica";locale["app.update[2]"]="Registro delle modifiche";locale["app.update[3]"]="Il software è aggiornato!";locale["app.update[4]"]="Hai l'ultima versione di Rambox.";locale["app.about[0]"]="Informazioni su Rambox";locale["app.about[1]"]="Servizio di messaggistica e di e-mail libero e open source che combina le più comuni applicazioni web in una sola.";locale["app.about[2]"]="Versione";locale["app.about[3]"]="Piattaforma";locale["app.about[4]"]="Sviluppato da";locale["app.main[0]"]="Aggiungi un nuovo servizio";locale["app.main[1]"]="Messaggistica";locale["app.main[2]"]="E-mail";locale["app.main[3]"]="Nessun servizio trovato. Fai un'altra ricerca.";locale["app.main[4]"]="Servizi attivati";locale["app.main[5]"]="Allineamento";locale["app.main[6]"]="Sinistra";locale["app.main[7]"]="Destra";locale["app.main[8]"]="Oggetto";locale["app.main[9]"]="Oggetti";locale["app.main[10]"]="Rimuovi tutti i servizi";locale["app.main[11]"]="Blocca notifiche";locale["app.main[12]"]="Silenziato";locale["app.main[13]"]="Configura";locale["app.main[14]"]="Rimuovi";locale["app.main[15]"]="Nessun servizio aggiunto...";locale["app.main[16]"]="Non disturbare";locale["app.main[17]"]="Disattiva le notifiche e suoni di tutti i servizi. Perfetto per rimanere concentrati e focalizzati.";locale["app.main[18]"]="Tasto di scelta rapida";locale["app.main[19]"]="Blocca Rambox";locale["app.main[20]"]="Blocca quest'app se starai via per un certo periodo di tempo.";locale["app.main[21]"]="Disconnettiti";locale["app.main[22]"]="Connettiti";locale["app.main[23]"]="Connettiti per salvare la configurazione (senza credenziali archiviate) per la sincronizzazione con tutti i tuoi computer.";locale["app.main[24]"]="Realizzato da";locale["app.main[25]"]="Dona";locale["app.main[26]"]="con";locale["app.main[27]"]="dall'Argentina come progetto Open Source.";locale["app.window[0]"]="Aggiungi";locale["app.window[1]"]="Modifica";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opzioni";locale["app.window[4]"]="Allinea a destra";locale["app.window[5]"]="Mostra notifiche";locale["app.window[6]"]="Silenzia tutti i suoni";locale["app.window[7]"]="Avanzate";locale["app.window[8]"]="Codice personalizzato";locale["app.window[9]"]="leggi di più...";locale["app.window[10]"]="Aggiungi servizio";locale["app.window[11]"]="team";locale["app.window[12]"]="Conferma...";locale["app.window[13]"]="Sei sicuro di voler rimuovere";locale["app.window[14]"]="Sei sicuro di voler rimuovere tutti i servizi?";locale["app.window[15]"]="Aggiungi servizio personalizzato";locale["app.window[16]"]="Modifica servizio personalizzato";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Fidati dei certificati di autorità non validi";locale["app.window[20]"]="On";locale["app.window[21]"]="Off";locale["app.window[22]"]="Inserisci una password temporanea per sbloccare il servizio successivamente";locale["app.window[23]"]="Reinserisci la password temporanea";locale["app.window[24]"]="Attenzione";locale["app.window[25]"]="Le password non sono uguali. Riprova...";locale["app.window[26]"]="Rambox è bloccato";locale["app.window[27]"]="SBLOCCA";locale["app.window[28]"]="Connessione in corso...";locale["app.window[29]"]="Si prega di attendere fino a quando non otteniamo la tua configurazione.";locale["app.window[30]"]="Importa";locale["app.window[31]"]="Non hai alcun servizio salvato. Vuoi importare i tuoi servizi attuali?";locale["app.window[32]"]="Pulisci servizi";locale["app.window[33]"]="Vuoi rimuovere tutti i tuoi servizi attuali per ricominciare da capo?";locale["app.window[34]"]="Se no, verrai disconnesso.";locale["app.window[35]"]="Conferma";locale["app.window[36]"]="Per importare la configurazione, Rambox deve rimuovere tutti i tuoi servizi attuali. Vuoi continuare?";locale["app.window[37]"]="Chiusura della sessione...";locale["app.window[38]"]="Sei sicuro di volerti disconnettere?";locale["app.webview[0]"]="Ricarica";locale["app.webview[1]"]="Vai online";locale["app.webview[2]"]="Vai offline";locale["app.webview[3]"]="Attiva/disattiva strumenti di sviluppo";locale["app.webview[4]"]="Caricamento in corso...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Annulla";locale["button[2]"]="Sì";locale["button[3]"]="No";locale["button[4]"]="Salva";locale["main.dialog[0]"]="Errore di certificazione";locale["main.dialog[1]"]="Il servizio con il seguente URL ha un certificato di autorità non valido.";locale["main.dialog[2]"]="È necessario rimuovere il servizio e aggiungerlo nuovamente";locale["menu.help[0]"]="Visita il sito web di Rambox";locale["menu.help[1]"]="Riporta un problema...";locale["menu.help[2]"]="Chiedi aiuto";locale["menu.help[3]"]="Dona";locale["menu.help[4]"]="Aiuto";locale["menu.edit[0]"]="Modifica";locale["menu.edit[1]"]="Annulla azione";locale["menu.edit[2]"]="Rifai";locale["menu.edit[3]"]="Taglia";locale["menu.edit[4]"]="Copia";locale["menu.edit[5]"]="Incolla";locale["menu.edit[6]"]="Seleziona tutto";locale["menu.view[0]"]="Visualizza";locale["menu.view[1]"]="Ricarica";locale["menu.view[2]"]="Attiva/disattiva schermo intero";locale["menu.view[3]"]="Attiva/disattiva strumenti di sviluppo";locale["menu.window[0]"]="Finestra";locale["menu.window[1]"]="Minimizza";locale["menu.window[2]"]="Chiudi";locale["menu.window[3]"]="Sempre in primo piano";locale["menu.help[5]"]="Controlla aggiornamenti...";locale["menu.help[6]"]="Informazioni su Rambox";locale["menu.osx[0]"]="Servizi";locale["menu.osx[1]"]="Nascondi Rambox";locale["menu.osx[2]"]="Nascondi altri";locale["menu.osx[3]"]="Mostra tutti";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Chiudi Rambox";locale["tray[0]"]="Mostra/Nascondi finestra";locale["tray[1]"]="Chiudi";locale["services[0]"]="WhatsApp è un'app di messaggistica mobile multi-piattaforma per iPhone, BlackBerry, Android, Windows Phone e Nokia. Invia gratuitamente messaggi, video, immagini, audio.";locale["services[1]"]="Slack riunisce tutte le tue comunicazioni in un unico luogo. Messaggistica in tempo reale, archiviazione e ricerca per team moderni.";locale["services[2]"]="Noysi è uno strumento di comunicazione per le squadre dove la privacy è garantita. Con Noysi è possibile accedere a tutte le conversazioni e i file in pochi secondi da qualsiasi luogo e senza limiti.";locale["services[3]"]="Raggiungere immediatamente le persone nella vostra vita gratuitamente. Messenger è proprio come gli Sms, ma non devi pagare per ogni messaggio.";locale["services[4]"]="Rimanere in contatto con la famiglia e gli amici gratuitamente. Chiamate internazionali, gratuito chiamate online e Skype per Business sul desktop e mobile.";locale["services[5]"]="Hangouts porta vita alle conversazioni con foto, emoji e videochiamate di gruppo anche gratuitamente. Connettersi con gli amici attraverso computers, Android e dispositivi Apple.";locale["services[6]"]="HipChat è un servizio di chat e video-chat di gruppo, costruito per le squadre. Collaborazione in tempo reale sovraccaricata con stanze permanenti, condivisione di file e condivisione dello schermo.";locale["services[7]"]="Telegram è un'app di messaggistica con un focus su velocità e sicurezza. È super veloce, semplice, sicura e gratuita.";locale["services[8]"]="WeChat è un'applicazione di chiamata e messaggistica che ti permette di connetterti con la tua famiglia e i tuoi amici facilmente.";locale["services[9]"]="Gmail, servizio di posta gratuito di Google, è uno dei più popolari programmi di posta elettronica del mondo.";locale["services[10]"]="Inbox by Gmail è una nuova app dal team di Gmail. Inbox è un luogo organizzato per fare le cose e tornare a ciò che conta. Conservare e-mail organizzata in gruppi.";locale["services[11]"]="ChatWork è un'app per chat di gruppo per il business. Messaggistica sicura, video chat, gestione delle attività e condivisione di file. Comunicazione in tempo reale e più produttività per i team di lavoro.";locale["services[12]"]="GroupMe porta i messaggi di testo di gruppo a tutti i telefoni. Crea il tuo gruppo e messaggia con le persone che sono importanti per te.";locale["services[13]"]="La team chat più avanzata al mondo si unisce con la ricerca aziendale.";locale["services[14]"]="Gitter è basato su GitHub ed interagisce strettamente con le tue organizzazioni, repository, problemi e attività.";locale["services[15]"]="Steam è una piattaforma di distribuzione digitale sviluppata da Valve Corporation offre la gestione dei diritti digitali (DRM), modalità multiplayer e servizi di social networking.";locale["services[16]"]="Aumenta la tua esperienza nei tuoi giochi preferiti con un'applicazione di chat vocale e testuale moderna. Crystal Clear Voice, numerosi server e canale di assistenza clienti, una applicazione per smartphone e molto di più.";locale["services[17]"]="Prendi il controllo. Ottimizza il tuo tempo. Outlook è un servizio di posta elettronica gratuito che ti aiuta a rimanere focalizzato su ciò che conta e riempire i tuoi obbiettivi.";locale["services[18]"]="Outlook per il business";locale["services[19]"]="Servizio di posta elettronica basati sul Web offerto dall'azienda americana Yahoo!. Il servizio è gratuito per uso personale e sono previsti piani a pagamento per le imprese.";locale["services[20]"]="Servizio di posta elettronica gratuito, crittografato e basato su web fondato nel 2013 presso l'impianto di ricerca CERN. ProtonMail è stato progettato come un sistema che funziona senza particolari conoscenze o impostazioni utilizzando la crittografia lato client per proteggere i messaggi di posta elettronica e dati utente prima che vengano inviati ai server di ProtonMail, a differenza di altri comuni servizi di webmail come Gmail e Hotmail.";locale["services[21]"]="Tutanota è un software open-source per l'invio di e-mail crittografate e offre un servizio freemium di posta elettronica sicura basata sul suo software software.";locale["services[22]"]="Servizio di posta elettronica web che offre email criptate con PGP ed un servizio di vanity domain. Hushmail offre un servizio gratuito ed uno commerciale. Hushmail utilizza gli standard OpenPGP ed il sorgente è scaricabile.";locale["services[23]"]="Email collaborativa e chat di gruppo organizzata per la produttività dei team. Una app singola per le comunicazioni, sia interne che esterne.";locale["services[24]"]="Dai messaggi di gruppo e video chiamate a tutte le killer features per il servizio di helpdesk, il nostro obiettivo è diventare la soluzione numero uno come chat cross-platform e open source.";locale["services[25]"]="Chiamate vocali in HD, sessioni di chat private o di gruppo con la possibilità di includere foto, musiche e video. Disponibile anche sul vostro smartphone o tablet.";locale["services[26]"]="Sync è una chat per il business che aumenterà la produttività del vostro team.";locale["services[27]"]="Nessuna descrizione...";locale["services[28]"]="Ti permette scambiare messaggi con chiunque sul server Yahoo. Ti notifica la ricezione della posta e dà quotazioni di borsa.";locale["services[29]"]="Voxer è un'app di messaggistica per il tuo smartphone con viva voce (come un walkie talkie PTT), messaggi di testo, foto e condivisione della geoposizione.";locale["services[30]"]="Dasher ti permette di dire quello che vuoi veramente con foto, gif, links e altro ancora. Fai un sondaggio per scoprire cosa veramente pensano i tuoi amici di qualcosa.";locale["services[31]"]="Flowdock è chat di gruppo con una casella di posta condivisa. I Team che utilizzano Flowdock sono sempre aggiornati, reagiscono in secondi anziché in giorni e non dimenticano nulla.";locale["services[32]"]="Mattermost è un'alternativa open source e self-hosted di Slack. Come alternativa alla messaggistica proprietaria SaaS, Mattermost porta tutte le tue comunicazioni del team in un unico luogo, rendendole ricercabili e accessibili ovunque.";locale["services[33]"]="DingTalk è una piattaforma multi-sided che consente alle piccole e medie imprese di comunicare efficacemente.";locale["services[34]"]="La famiglia di applicazioni mysms consente di inviare messaggi di testo ovunque e migliora l'esperienza di messaggistica su smartphone, tablet e computer.";locale["services[35]"]="ICQ è un software open source per la messaggistica immediata, uno dei primi ad essere sviluppati e resi popolari.";locale["services[36]"]="TweetDeck è un' applicazione dashboard di social media per la gestione di account di Twitter.";locale["services[37]"]="Servizio personalizzato";locale["services[38]"]="Aggiungi un servizio personalizzato se non è presente nell'elenco.";locale["services[39]"]="Zinc è un'applicazione di comunicazione securizata per lavoratori mobili e che include chat testuale, video chat, chiamate vocali e condivisione di file ma anche molto altro.";locale["services[40]"]="Freenode, precedentemente conosciuto come Open Projects Network, è una rete di server IRC per discutere di progetti orientati peer.";locale["services[41]"]="Invia SMS dal tuo computer, grazie alla sincronizzazione con il tuo telefono Android e numero di telefono.";locale["services[42]"]="Webmail gratuita e open source per le masse, scritta in PHP.";locale["services[43]"]="Horde è un servizio open source gratuito e collaborativo basato sul web.";locale["services[44]"]="SquirrelMail è un pacchetto software basato su webmail standard e scritto in PHP.";locale["services[45]"]="Soluzione Email per il business, senza pubblicità, con un'interfaccia pulita e minimalista. Integra al suo interno delle app di Calendario, Blocco Note, Attività.";locale["services[46]"]="Zoho chat è una piattaforma, sicura e scalabile, per la comunicazione in tempo reale e la collaborazione dei team di lavoro, pensata in modo da migliorarne la produttività.";module.exports = locale; diff --git a/resources/languages/ja.js b/resources/languages/ja.js index c2063a4d..0053256f 100644 --- a/resources/languages/ja.js +++ b/resources/languages/ja.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/nl.js b/resources/languages/nl.js index c2063a4d..0053256f 100644 --- a/resources/languages/nl.js +++ b/resources/languages/nl.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/no.js b/resources/languages/no.js index c2063a4d..0053256f 100644 --- a/resources/languages/no.js +++ b/resources/languages/no.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/pl.js b/resources/languages/pl.js index e4eda1df..a0137096 100644 --- a/resources/languages/pl.js +++ b/resources/languages/pl.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Ustawienia";locale["preferences[1]"]="Automatyczne ukrywanie paska Menu";locale["preferences[2]"]="Pokaż na pasku zadań";locale["preferences[3]"]="Pokaż Rambox na pasku zadań po zamknięciu okna aplikacji";locale["preferences[4]"]="Uruchom zminimalizowany";locale["preferences[5]"]="Uruchom Rambox przy starcie systemu";locale["preferences[6]"]="Nie potrzebujesz widzieć cały czas paska menu?";locale["preferences[7]"]="Aby tymczasowo wyświetlić pasek menu, naciśnij klawisz Alt.";locale["app.update[0]"]="Dostępna jest nowa wersja!";locale["app.update[1]"]="Pobierz";locale["app.update[2]"]="Dziennik zmian";locale["app.update[3]"]="Masz najnowszą wersję";locale["app.update[4]"]="Masz najnowszą wersję Rambox.";locale["app.about[0]"]="O Rambox";locale["app.about[1]"]="Darmowa i Wolna aplikacja do jednoczesnej obsługi wielu komunikatorów internetowych i klientów email bazujących na aplikacjach webowych.";locale["app.about[2]"]="Wersja";locale["app.about[3]"]="Platforma";locale["app.about[4]"]="Stworzone przez";locale["app.main[0]"]="Dodaj nową usługę";locale["app.main[1]"]="Komunikatory";locale["app.main[2]"]="Serwisy email";locale["app.main[3]"]="Nie znaleziono usług... Spróbuj ponownie.";locale["app.main[4]"]="Bieżące usługi";locale["app.main[5]"]="Wyrównanie";locale["app.main[6]"]="do lewej";locale["app.main[7]"]="do prawej";locale["app.main[8]"]="usługa";locale["app.main[9]"]="usługi";locale["app.main[10]"]="Usuń wszystkie usługi";locale["app.main[11]"]="Wyłącz powiadomienia";locale["app.main[12]"]="Wyciszony";locale["app.main[13]"]="Konfiguracja";locale["app.main[14]"]="Usuń";locale["app.main[15]"]="Brak usług";locale["app.main[16]"]="Nie Przeszkadzać";locale["app.main[17]"]="Pozwala wyłączyć powiadomienia i dźwięki we wszystkich usługach jednocześnie. Idealny tryb, gdy musisz się skupić.";locale["app.main[18]"]="Skrót klawiszowy";locale["app.main[19]"]="Zablokuj Rambox";locale["app.main[20]"]="Zablokuj tę aplikację, jeśli nie będziesz dostępny przez pewien okres czasu.";locale["app.main[21]"]="Wyloguj";locale["app.main[22]"]="Zaloguj";locale["app.main[23]"]="Zaloguj się, aby zapisać konfigurację oraz dodane usługi i synchronizować wszystkie swoje komputery (hasła nie są przechowywane).";locale["app.main[24]"]="Wspierane przez";locale["app.main[25]"]="Wspomóż";locale["app.main[26]"]="z";locale["app.main[27]"]="prosto z dalekiej Argentyny jako projekt Open Source.";locale["app.window[0]"]="Dodaj";locale["app.window[1]"]="Edytuj";locale["app.window[2]"]="Nazwa";locale["app.window[3]"]="Ustawienia";locale["app.window[4]"]="Wyrównaj do prawej";locale["app.window[5]"]="Pokazuj powiadomienia";locale["app.window[6]"]="Wycisz wszystkie dźwięki";locale["app.window[7]"]="Zaawansowane";locale["app.window[8]"]="Niestandardowy kod JS";locale["app.window[9]"]="więcej...";locale["app.window[10]"]="Dodaj usługę";locale["app.window[11]"]="Team";locale["app.window[12]"]="Potwierdź";locale["app.window[13]"]="Czy na pewno chcesz usunąć";locale["app.window[14]"]="Czy na pewno chcesz usunąć wszystkie usługi?";locale["app.window[15]"]="Dodaj inną usługę";locale["app.window[16]"]="Edytuj inną usługę";locale["app.window[17]"]="Adres URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Ignoruj nieprawidłowe certyfikaty SSL";locale["app.window[20]"]="włączony";locale["app.window[21]"]="wyłączony";locale["app.window[22]"]="Wprowadź hasło do odblokowania aplikacji";locale["app.window[23]"]="Powtórz hasło tymczasowe";locale["app.window[24]"]="Uwaga";locale["app.window[25]"]="Hasła nie są takie same. Proszę spróbować ponownie...";locale["app.window[26]"]="Rambox jest zablokowany";locale["app.window[27]"]="Odblokuj";locale["app.window[28]"]="Łączenie...";locale["app.window[29]"]="Proszę czekać, pobieranie konfiguracji...";locale["app.window[30]"]="Import";locale["app.window[31]"]="Nie znaleziono zapisanych usług. Czy chcesz zaimportować swoje bieżące usługi?";locale["app.window[32]"]="Usuwanie usług";locale["app.window[33]"]="Czy chcesz usunąć wszystkie bieżące usługi?";locale["app.window[34]"]="Jeśli nie, zostaniesz wylogowany.";locale["app.window[35]"]="Potwierdzenie";locale["app.window[36]"]="Aby zaimportować konfigurację, Rambox musi usunąć wszystkie bieżące usługi. Czy chcesz kontynuować?";locale["app.window[37]"]="Wylogowywanie...";locale["app.window[38]"]="Czy na pewno chcesz się wylogować?";locale["app.webview[0]"]="Odśwież";locale["app.webview[1]"]="Przejdź w tryb online";locale["app.webview[2]"]="Przejdź w tryb offline";locale["app.webview[3]"]="Narzędzia dla deweloperów";locale["app.webview[4]"]="Trwa ładowanie...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="OK";locale["button[1]"]="Anuluj";locale["button[2]"]="Tak";locale["button[3]"]="Nie";locale["button[4]"]="Zapisz";locale["main.dialog[0]"]="Błąd certyfikatu";locale["main.dialog[1]"]="Usługa z następującym adresem URL ma nieprawidłowy certyfikat SSL.";locale["main.dialog[2]"]="Należy usunąć usługę i dodać ją ponownie";locale["menu.help[0]"]="Odwiedź stronę internetową Rambox";locale["menu.help[1]"]="Zgłoś problem...";locale["menu.help[2]"]="Poproś o pomoc";locale["menu.help[3]"]="Wspomóż";locale["menu.help[4]"]="Pomoc";locale["menu.edit[0]"]="Edycja";locale["menu.edit[1]"]="Cofnij";locale["menu.edit[2]"]="Powtórz";locale["menu.edit[3]"]="Wytnij";locale["menu.edit[4]"]="Kopiuj";locale["menu.edit[5]"]="Wklej";locale["menu.edit[6]"]="Zaznacz wszystko";locale["menu.view[0]"]="Widok";locale["menu.view[1]"]="Przeładuj";locale["menu.view[2]"]="Tryb pełnoekranowy";locale["menu.view[3]"]="Narzędzia dla deweloperów";locale["menu.window[0]"]="Okno";locale["menu.window[1]"]="Zminimalizuj";locale["menu.window[2]"]="Zamknij";locale["menu.window[3]"]="Zawsze na wierzchu";locale["menu.help[5]"]="Sprawdź dostępność aktualizacji...";locale["menu.help[6]"]="O Rambox";locale["menu.osx[0]"]="Usługi";locale["menu.osx[1]"]="Ukryj Rambox";locale["menu.osx[2]"]="Ukryj pozostałe";locale["menu.osx[3]"]="Pokaż wszystko";locale["menu.file[0]"]="Plik";locale["menu.file[1]"]="Zakończ Rambox";locale["tray[0]"]="Pokaż/Ukryj okno";locale["tray[1]"]="Zakończ";locale["services[0]"]="WhatsApp – mobilna aplikacja dla smartfonów służąca jako komunikator internetowy, dostępna dla różnych platform: iOS, Android, Windows Phone, do końca 2016 także: BlackBerry OS, Symbian i Nokia S40.";locale["services[1]"]="Slack to darmowa, lecz zaawansowana platforma do komunikacji zespołowej. Aplikacja pozwala użytkownikowi na integrację w jednym miejscu wiadomości, obrazów i filmów wideo, w tym także tych zgromadzonych na Google Drive lub na Dropboxie.";locale["services[2]"]="Noysi jest narzędziem komunikacji dla zespołów, który gwarantuje prywatność. Noysi pozwala uzyskać dostęp do wszystkich konwersacji i plików z dowolnego miejsca, bez ograniczeń.";locale["services[3]"]="Facebook Messenger to oficjalna aplikacja służąca do obsługi komunikatora oferowanego przez największą sieć społecznościową. Pozwala on na komunikację z użytkownikami którzy korzystają z czaty poprzez stronę internetową, ale również dedykowane aplikacje dla konkretnych platform tj. Android, iOS oraz Windows Phone. Aplikacja pozwala na wykonywanie bezpłatnych połączeń głosowych do użytkowników swojej sieci.";locale["services[4]"]="Skype to darmowy klient usługi komunikacji głosowej i wideo o takiej samej nazwie. Aplikacja pozwala na logowanie do konta Skype, obsługuje także konta Microsoft. Chociaż głównym jej zadaniem są rozmowy głosowe i wideo, udostępnia także funkcję czatu tekstowego.";locale["services[5]"]="Hangouts, to następca komunikatora Google Talk. Aplikacja podobnie do Skype umożliwia zarówno prowadzenie rozmów tekstowych, jak i zupełnie darmowych wideo-rozmów. Rozpoznaje ona kontakty konta Google, pozwala na rozmowy z osobami posiadającymi profil Google+, jak również z zupełnie innych serwerów XMPP.";locale["services[6]"]="HipChat to komunikator stworzony z myślą o efektywnej współpracy - synchronizacja na wielu urządzeniach, dostęp do archiwum rozmów przez wyszukiwanie fraz, wideorozmowy, udostępnianie ekranu, gwarancja bezpieczeństwa rozmów.";locale["services[7]"]="Telegram skupia się na wymianie wiadomości tekstowych. Za jego pomocą możemy przesyłać również zdjęcia i pliki oraz nagrane pliki dźwiękowe. Według zapewnień autorów nasze rozmowy mają być szyfrowane, a bezpieczeństwo jest ich priorytetem.";locale["services[8]"]="WeChat to rozbudowana aplikacja służąca do komunikacji, służąca do wysyłania wiadomości tekstowych, a także do rozmów telefonicznych oraz wideo.";locale["services[9]"]="Gmail to bezpłatny serwis webmail od Google. Cechuje go brak uciążliwych reklam, prosta obsługa, szyfrowanie połączenia, skuteczny filtr antyspamowy i wbudowany komunikator.";locale["services[10]"]="Inbox to alternatywna aplikacja do obsługi poczty zgromadzonej na koncie Gmail autorstwa Google'a. Zapewnia nam dostęp do tych samych wiadomości i kontaktów, ale proponuje nieco inne podejście do e-maili. Głównym założeniem Inboxa ma być pomoc w zarządzaniu mailami, traktowanie ich jak zadań oraz wspieranie idei Inbox Zero. Aplikacja sama analizuje treść i przydatność wiadomości.";locale["services[11]"]="ChatWork to chat grupowy dla biznesu. Bezpieczne wiadomości, czat wideo, zarządzanie zadaniami i udostępnianie plików. Komunikacja w czasie rzeczywistym i zwiększenie wydajności zespołów.";locale["services[12]"]="GroupMe to komunikator społecznościowy należący do Skype'a. Skupia się na komunikacji i wymianie treści w grupie bliskich osób, znajomych. Jest dostępny również z poziomu serwisu www.";locale["services[13]"]="Grape to inteligentne rozwiązanie komunikacyjne dla zespołów, które oferuje jedne z najbardziej zaawansowanej integracji danych.";locale["services[14]"]="Gitter jest zbudowany wokół GitHub i jest ściśle zintegrowany organizacjami, repozytoriami, zgłoszeniami i aktywnością w serwisie GitHub.";locale["services[15]"]="Steam to cyfrowa platforma dystrybucji opracowany przez Valve Corporation, oferuje zarządzanie DRM, gry multiplayer i usługi społecznościowe.";locale["services[16]"]="Discord to aplikacja, która służy do komunikacji między graczami. Oferuje możliwość prowadzenia rozmów tekstowych i głosowych, a także wysyłanie załączników w różnych formatach, m.in. zdjęć i filmów.";locale["services[17]"]="Outlook to bezpłatna usługa poczty i kalendarza, która pomaga być na bieżąco z istotnymi sprawami i wykonywać zadania.";locale["services[18]"]="Outlook w ramach Office 365 dla firm (logowanie do aplikacji Outlook w sieci Web dla firm, z własną domeną).";locale["services[19]"]="Yahoo Mail to oficjalna aplikacja do obsługi konta pocztowego w ramach darmowych usług oferowanych przez firmę Yahoo. Aplikacja posiada wszystkie najważniejsze funkcje jakich należy szukać w kliencie pocztowym: pozwala na dostęp do poszczególnych kategorii, szybkie zarządzanie wieloma wiadomościami jednocześnie, a także dodawanie wielu kont. Atutem aplikacji jest obsługa motywów.";locale["services[20]"]="ProtonMail to darmowy klient pocztowy szwajcarskiej usługi opracowanej w CERN, gwarantującej wysoki poziom ochrony bezpieczeństwa danych użytkownika.";locale["services[21]"]="Tutanota to klient poczty elektronicznej, którego twórcy postawili mocno na bezpieczeństwo prywatności użytkownika i przesyłanych danych. Aplikacja Tutanota jest projektem open source'owym, a jej kod źródłowy można znaleźć na Git Hubie.";locale["services[22]"]="Hushmail to usługa e-mail, oferująca szyfrowanie PGP.";locale["services[23]"]="Missive to email i czat grupowy dla zespołów wytwórczych. Jedna aplikacja dla całej Twojej komunikacji wewnętrznej i zewnętrznej. Najlepsze rozwiązanie do zarządzania pracą.";locale["services[24]"]="Od wiadomości grupowych i połączeń wideo, aż do obsługi helpdesku. Naszym celem jest stać się numerem jeden w kategorii wolnoźródłowych i wieloplatformowych rozwiązań czatowych.";locale["services[25]"]="Wire to kolejny multiplatfromowy komunikator, za którym stoi między innymi część ekipy odpowiedzialnej za aplikację Skype. Główną zaletą Wire oraz tym co wyróżnia go na tle innych ma być interfejs i jego wykonanie. Autorzy opisują go jako piękny i czysty, jest w tych sformułowaniach sporo prawdy.";locale["services[26]"]="Sync to japońska aplikacja do wiadomości grupowych dla zespołów. Przeznaczony do wspólnej pracy nad projektami.";locale["services[27]"]="Brak opisu";locale["services[28]"]="Pozwala na wysyłanie wiadomości błyskawicznych z każdym na serwerze Yahoo. Informuje, gdy dostaniesz maila, i daje notowania giełdowe.";locale["services[29]"]="Voxer to aplikacja do wysyłania wiadomości głosowych na żywo (jak walkie talkie), a także tekstu, zdjęć i udostępniania lokalizacji.";locale["services[30]"]="Dasher pozwala Ci powiedzieć, to co naprawdę chcesz dzięki zdjęciom, obrazkom GIF i linkom. Zrób ankietę, aby dowiedzieć się, co Twoi znajomi naprawdę myślą.";locale["services[31]"]="Flowdock jest czatem ze wspólną skrzynką mailową dla Twojego zespołu. Zespoły korzystające Flowdock są na bieżąco, reagują w ciągu kilku sekund, a nie dni i nigdy nie zapominają niczego.";locale["services[32]"]="Mattermost jest open source, self-hosted alternatywą dla Slacka. Mattermost pozwala utrzymać całą komunikację zespołu w jednym miejscu.";locale["services[33]"]="DingTalk jest platformą, pozwalającą małym i średnim biznesom na skuteczne porozumiewanie się.";locale["services[34]"]="mySMS pozwala na pisanie i czytanie SMSów z każdego miejsca (wymaga telefonu z Androidem).";locale["services[35]"]="ICQ jest otwarto źródłowym komunikatorem, który jako pierwszy na świecie zyskał dużą popularność.";locale["services[36]"]="TweetDeck jest pulpitem nawigacyjnym do zarządzania kontami Twitter.";locale["services[37]"]="Inna usługa";locale["services[38]"]="Dodaj usługę, której nie ma na powyższej liście";locale["services[39]"]="Zinc to bezpieczna aplikacja komunikacyjna dla pracowników mobilnych, z tekstem, głosem, wideo, udostępnianiem plików.";locale["services[40]"]="Freenode, dawniej znany jako Open Projects Network to sieć IRC stosowana w celu omówienia projektów.";locale["services[41]"]="Pisz SMSy z komputera i synchronizuj je z Twoim Androidem.";locale["services[42]"]="Wolne i otwarte oprogramowanie webmail dla mas, napisane w PHP.";locale["services[43]"]="Hordy jest darmowym i otwarto źródłowym oprogramowaniem do pracy grupowej.";locale["services[44]"]="SquirrelMail jest opartym na standardach pakietem webmail napisanym w PHP.";locale["services[45]"]="Biznesowy hosting email, bez reklam z czystym, minimalistycznym interfejsem. Zintegrowany z kalendarzem, kontaktami i notatkami.";locale["services[46]"]="Czat Zoho jest bezpiecznym i skalowalnym w czasie rzeczywistym narzędziem do komunikacji i współpracy dla zespołów.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Ustawienia";locale["preferences[1]"]="Automatyczne ukrywanie paska Menu";locale["preferences[2]"]="Pokaż na pasku zadań";locale["preferences[3]"]="Pokaż Rambox na pasku zadań po zamknięciu okna aplikacji";locale["preferences[4]"]="Uruchom zminimalizowany";locale["preferences[5]"]="Uruchom Rambox przy starcie systemu";locale["preferences[6]"]="Nie potrzebujesz widzieć cały czas paska menu?";locale["preferences[7]"]="Aby tymczasowo wyświetlić pasek menu, naciśnij klawisz Alt.";locale["app.update[0]"]="Dostępna jest nowa wersja!";locale["app.update[1]"]="Pobierz";locale["app.update[2]"]="Dziennik zmian";locale["app.update[3]"]="Masz najnowszą wersję";locale["app.update[4]"]="Masz najnowszą wersję Rambox.";locale["app.about[0]"]="O Rambox";locale["app.about[1]"]="Darmowa i Wolna aplikacja do jednoczesnej obsługi wielu komunikatorów internetowych i klientów email bazujących na aplikacjach webowych.";locale["app.about[2]"]="Wersja";locale["app.about[3]"]="Platforma";locale["app.about[4]"]="Stworzone przez";locale["app.main[0]"]="Dodaj nową usługę";locale["app.main[1]"]="Komunikatory";locale["app.main[2]"]="Serwisy email";locale["app.main[3]"]="Nie znaleziono usług... Spróbuj ponownie.";locale["app.main[4]"]="Bieżące usługi";locale["app.main[5]"]="Wyrównanie";locale["app.main[6]"]="do lewej";locale["app.main[7]"]="do prawej";locale["app.main[8]"]="usługa";locale["app.main[9]"]="usługi";locale["app.main[10]"]="Usuń wszystkie usługi";locale["app.main[11]"]="Wyłącz powiadomienia";locale["app.main[12]"]="Wyciszony";locale["app.main[13]"]="Konfiguracja";locale["app.main[14]"]="Usuń";locale["app.main[15]"]="Brak usług";locale["app.main[16]"]="Nie Przeszkadzać";locale["app.main[17]"]="Pozwala wyłączyć powiadomienia i dźwięki we wszystkich usługach jednocześnie. Idealny tryb, gdy musisz się skupić.";locale["app.main[18]"]="Skrót klawiszowy";locale["app.main[19]"]="Zablokuj Rambox";locale["app.main[20]"]="Zablokuj tę aplikację, jeśli nie będziesz dostępny przez pewien okres czasu.";locale["app.main[21]"]="Wyloguj";locale["app.main[22]"]="Zaloguj";locale["app.main[23]"]="Zaloguj się, aby zapisać konfigurację oraz dodane usługi i synchronizować wszystkie swoje komputery (hasła nie są przechowywane).";locale["app.main[24]"]="Wspierane przez";locale["app.main[25]"]="Wspomóż";locale["app.main[26]"]="z";locale["app.main[27]"]="prosto z dalekiej Argentyny jako projekt Open Source.";locale["app.window[0]"]="Dodaj";locale["app.window[1]"]="Edytuj";locale["app.window[2]"]="Nazwa";locale["app.window[3]"]="Ustawienia";locale["app.window[4]"]="Wyrównaj do prawej";locale["app.window[5]"]="Pokazuj powiadomienia";locale["app.window[6]"]="Wycisz wszystkie dźwięki";locale["app.window[7]"]="Zaawansowane";locale["app.window[8]"]="Niestandardowy kod JS";locale["app.window[9]"]="więcej...";locale["app.window[10]"]="Dodaj usługę";locale["app.window[11]"]="Team";locale["app.window[12]"]="Potwierdź";locale["app.window[13]"]="Czy na pewno chcesz usunąć";locale["app.window[14]"]="Czy na pewno chcesz usunąć wszystkie usługi?";locale["app.window[15]"]="Dodaj inną usługę";locale["app.window[16]"]="Edytuj inną usługę";locale["app.window[17]"]="Adres URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Ignoruj nieprawidłowe certyfikaty SSL";locale["app.window[20]"]="włączony";locale["app.window[21]"]="wyłączony";locale["app.window[22]"]="Wprowadź hasło do odblokowania aplikacji";locale["app.window[23]"]="Powtórz hasło tymczasowe";locale["app.window[24]"]="Uwaga";locale["app.window[25]"]="Hasła nie są takie same. Proszę spróbować ponownie...";locale["app.window[26]"]="Rambox jest zablokowany";locale["app.window[27]"]="Odblokuj";locale["app.window[28]"]="Łączenie...";locale["app.window[29]"]="Proszę czekać, pobieranie konfiguracji...";locale["app.window[30]"]="Import";locale["app.window[31]"]="Nie znaleziono zapisanych usług. Czy chcesz zaimportować swoje bieżące usługi?";locale["app.window[32]"]="Usuwanie usług";locale["app.window[33]"]="Czy chcesz usunąć wszystkie bieżące usługi?";locale["app.window[34]"]="Jeśli nie, zostaniesz wylogowany.";locale["app.window[35]"]="Potwierdzenie";locale["app.window[36]"]="Aby zaimportować konfigurację, Rambox musi usunąć wszystkie bieżące usługi. Czy chcesz kontynuować?";locale["app.window[37]"]="Wylogowywanie...";locale["app.window[38]"]="Czy na pewno chcesz się wylogować?";locale["app.webview[0]"]="Odśwież";locale["app.webview[1]"]="Przejdź w tryb online";locale["app.webview[2]"]="Przejdź w tryb offline";locale["app.webview[3]"]="Narzędzia dla deweloperów";locale["app.webview[4]"]="Trwa ładowanie...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Anuluj";locale["button[2]"]="Tak";locale["button[3]"]="Nie";locale["button[4]"]="Zapisz";locale["main.dialog[0]"]="Błąd certyfikatu";locale["main.dialog[1]"]="Usługa z następującym adresem URL ma nieprawidłowy certyfikat SSL.";locale["main.dialog[2]"]="Należy usunąć usługę i dodać ją ponownie";locale["menu.help[0]"]="Odwiedź stronę internetową Rambox";locale["menu.help[1]"]="Zgłoś problem...";locale["menu.help[2]"]="Poproś o pomoc";locale["menu.help[3]"]="Wspomóż";locale["menu.help[4]"]="Pomoc";locale["menu.edit[0]"]="Edycja";locale["menu.edit[1]"]="Cofnij";locale["menu.edit[2]"]="Powtórz";locale["menu.edit[3]"]="Wytnij";locale["menu.edit[4]"]="Kopiuj";locale["menu.edit[5]"]="Wklej";locale["menu.edit[6]"]="Zaznacz wszystko";locale["menu.view[0]"]="Widok";locale["menu.view[1]"]="Przeładuj";locale["menu.view[2]"]="Tryb pełnoekranowy";locale["menu.view[3]"]="Narzędzia dla deweloperów";locale["menu.window[0]"]="Okno";locale["menu.window[1]"]="Zminimalizuj";locale["menu.window[2]"]="Zamknij";locale["menu.window[3]"]="Zawsze na wierzchu";locale["menu.help[5]"]="Sprawdź dostępność aktualizacji...";locale["menu.help[6]"]="O Rambox";locale["menu.osx[0]"]="Usługi";locale["menu.osx[1]"]="Ukryj Rambox";locale["menu.osx[2]"]="Ukryj pozostałe";locale["menu.osx[3]"]="Pokaż wszystko";locale["menu.file[0]"]="Plik";locale["menu.file[1]"]="Zakończ Rambox";locale["tray[0]"]="Pokaż/Ukryj okno";locale["tray[1]"]="Zakończ";locale["services[0]"]="WhatsApp – mobilna aplikacja dla smartfonów służąca jako komunikator internetowy, dostępna dla różnych platform: iOS, Android, Windows Phone, do końca 2016 także: BlackBerry OS, Symbian i Nokia S40.";locale["services[1]"]="Slack to darmowa, lecz zaawansowana platforma do komunikacji zespołowej. Aplikacja pozwala użytkownikowi na integrację w jednym miejscu wiadomości, obrazów i filmów wideo, w tym także tych zgromadzonych na Google Drive lub na Dropboxie.";locale["services[2]"]="Noysi jest narzędziem komunikacji dla zespołów, który gwarantuje prywatność. Noysi pozwala uzyskać dostęp do wszystkich konwersacji i plików z dowolnego miejsca, bez ograniczeń.";locale["services[3]"]="Facebook Messenger to oficjalna aplikacja służąca do obsługi komunikatora oferowanego przez największą sieć społecznościową. Pozwala on na komunikację z użytkownikami którzy korzystają z czaty poprzez stronę internetową, ale również dedykowane aplikacje dla konkretnych platform tj. Android, iOS oraz Windows Phone. Aplikacja pozwala na wykonywanie bezpłatnych połączeń głosowych do użytkowników swojej sieci.";locale["services[4]"]="Skype to darmowy klient usługi komunikacji głosowej i wideo o takiej samej nazwie. Aplikacja pozwala na logowanie do konta Skype, obsługuje także konta Microsoft. Chociaż głównym jej zadaniem są rozmowy głosowe i wideo, udostępnia także funkcję czatu tekstowego.";locale["services[5]"]="Hangouts, to następca komunikatora Google Talk. Aplikacja podobnie do Skype umożliwia zarówno prowadzenie rozmów tekstowych, jak i zupełnie darmowych wideo-rozmów. Rozpoznaje ona kontakty konta Google, pozwala na rozmowy z osobami posiadającymi profil Google+, jak również z zupełnie innych serwerów XMPP.";locale["services[6]"]="HipChat to komunikator stworzony z myślą o efektywnej współpracy - synchronizacja na wielu urządzeniach, dostęp do archiwum rozmów przez wyszukiwanie fraz, wideorozmowy, udostępnianie ekranu, gwarancja bezpieczeństwa rozmów.";locale["services[7]"]="Telegram skupia się na wymianie wiadomości tekstowych. Za jego pomocą możemy przesyłać również zdjęcia i pliki oraz nagrane pliki dźwiękowe. Według zapewnień autorów nasze rozmowy mają być szyfrowane, a bezpieczeństwo jest ich priorytetem.";locale["services[8]"]="WeChat to rozbudowana aplikacja służąca do komunikacji, służąca do wysyłania wiadomości tekstowych, a także do rozmów telefonicznych oraz wideo.";locale["services[9]"]="Gmail to bezpłatny serwis webmail od Google. Cechuje go brak uciążliwych reklam, prosta obsługa, szyfrowanie połączenia, skuteczny filtr antyspamowy i wbudowany komunikator.";locale["services[10]"]="Inbox to alternatywna aplikacja do obsługi poczty zgromadzonej na koncie Gmail autorstwa Google'a. Zapewnia nam dostęp do tych samych wiadomości i kontaktów, ale proponuje nieco inne podejście do e-maili. Głównym założeniem Inboxa ma być pomoc w zarządzaniu mailami, traktowanie ich jak zadań oraz wspieranie idei Inbox Zero. Aplikacja sama analizuje treść i przydatność wiadomości.";locale["services[11]"]="ChatWork to chat grupowy dla biznesu. Bezpieczne wiadomości, czat wideo, zarządzanie zadaniami i udostępnianie plików. Komunikacja w czasie rzeczywistym i zwiększenie wydajności zespołów.";locale["services[12]"]="GroupMe to komunikator społecznościowy należący do Skype'a. Skupia się na komunikacji i wymianie treści w grupie bliskich osób, znajomych. Jest dostępny również z poziomu serwisu www.";locale["services[13]"]="Grape to inteligentne rozwiązanie komunikacyjne dla zespołów, które oferuje jedne z najbardziej zaawansowanej integracji danych.";locale["services[14]"]="Gitter jest zbudowany wokół GitHub i jest ściśle zintegrowany organizacjami, repozytoriami, zgłoszeniami i aktywnością w serwisie GitHub.";locale["services[15]"]="Steam to cyfrowa platforma dystrybucji opracowany przez Valve Corporation, oferuje zarządzanie DRM, gry multiplayer i usługi społecznościowe.";locale["services[16]"]="Discord to aplikacja, która służy do komunikacji między graczami. Oferuje możliwość prowadzenia rozmów tekstowych i głosowych, a także wysyłanie załączników w różnych formatach, m.in. zdjęć i filmów.";locale["services[17]"]="Outlook to bezpłatna usługa poczty i kalendarza, która pomaga być na bieżąco z istotnymi sprawami i wykonywać zadania.";locale["services[18]"]="Outlook w ramach Office 365 dla firm (logowanie do aplikacji Outlook w sieci Web dla firm, z własną domeną).";locale["services[19]"]="Yahoo Mail to oficjalna aplikacja do obsługi konta pocztowego w ramach darmowych usług oferowanych przez firmę Yahoo. Aplikacja posiada wszystkie najważniejsze funkcje jakich należy szukać w kliencie pocztowym: pozwala na dostęp do poszczególnych kategorii, szybkie zarządzanie wieloma wiadomościami jednocześnie, a także dodawanie wielu kont. Atutem aplikacji jest obsługa motywów.";locale["services[20]"]="ProtonMail to darmowy klient pocztowy szwajcarskiej usługi opracowanej w CERN, gwarantującej wysoki poziom ochrony bezpieczeństwa danych użytkownika.";locale["services[21]"]="Tutanota to klient poczty elektronicznej, którego twórcy postawili mocno na bezpieczeństwo prywatności użytkownika i przesyłanych danych. Aplikacja Tutanota jest projektem open source'owym, a jej kod źródłowy można znaleźć na Git Hubie.";locale["services[22]"]="Hushmail to usługa e-mail, oferująca szyfrowanie PGP.";locale["services[23]"]="Missive to email i czat grupowy dla zespołów wytwórczych. Jedna aplikacja dla całej Twojej komunikacji wewnętrznej i zewnętrznej. Najlepsze rozwiązanie do zarządzania pracą.";locale["services[24]"]="Od wiadomości grupowych i połączeń wideo, aż do obsługi helpdesku. Naszym celem jest stać się numerem jeden w kategorii wolnoźródłowych i wieloplatformowych rozwiązań czatowych.";locale["services[25]"]="Wire to kolejny multiplatfromowy komunikator, za którym stoi między innymi część ekipy odpowiedzialnej za aplikację Skype. Główną zaletą Wire oraz tym co wyróżnia go na tle innych ma być interfejs i jego wykonanie. Autorzy opisują go jako piękny i czysty, jest w tych sformułowaniach sporo prawdy.";locale["services[26]"]="Sync to japońska aplikacja do wiadomości grupowych dla zespołów. Przeznaczony do wspólnej pracy nad projektami.";locale["services[27]"]="Brak opisu";locale["services[28]"]="Pozwala na wysyłanie wiadomości błyskawicznych z każdym na serwerze Yahoo. Informuje, gdy dostaniesz maila, i daje notowania giełdowe.";locale["services[29]"]="Voxer to aplikacja do wysyłania wiadomości głosowych na żywo (jak walkie talkie), a także tekstu, zdjęć i udostępniania lokalizacji.";locale["services[30]"]="Dasher pozwala Ci powiedzieć, to co naprawdę chcesz dzięki zdjęciom, obrazkom GIF i linkom. Zrób ankietę, aby dowiedzieć się, co Twoi znajomi naprawdę myślą.";locale["services[31]"]="Flowdock jest czatem ze wspólną skrzynką mailową dla Twojego zespołu. Zespoły korzystające Flowdock są na bieżąco, reagują w ciągu kilku sekund, a nie dni i nigdy nie zapominają niczego.";locale["services[32]"]="Mattermost jest open source, self-hosted alternatywą dla Slacka. Mattermost pozwala utrzymać całą komunikację zespołu w jednym miejscu.";locale["services[33]"]="DingTalk jest platformą, pozwalającą małym i średnim biznesom na skuteczne porozumiewanie się.";locale["services[34]"]="mySMS pozwala na pisanie i czytanie SMSów z każdego miejsca (wymaga telefonu z Androidem).";locale["services[35]"]="ICQ jest otwarto źródłowym komunikatorem, który jako pierwszy na świecie zyskał dużą popularność.";locale["services[36]"]="TweetDeck jest pulpitem nawigacyjnym do zarządzania kontami Twitter.";locale["services[37]"]="Inna usługa";locale["services[38]"]="Dodaj usługę, której nie ma na powyższej liście";locale["services[39]"]="Zinc to bezpieczna aplikacja komunikacyjna dla pracowników mobilnych, z tekstem, głosem, wideo, udostępnianiem plików.";locale["services[40]"]="Freenode, dawniej znany jako Open Projects Network to sieć IRC stosowana w celu omówienia projektów.";locale["services[41]"]="Pisz SMSy z komputera i synchronizuj je z Twoim Androidem.";locale["services[42]"]="Wolne i otwarte oprogramowanie webmail dla mas, napisane w PHP.";locale["services[43]"]="Hordy jest darmowym i otwarto źródłowym oprogramowaniem do pracy grupowej.";locale["services[44]"]="SquirrelMail jest opartym na standardach pakietem webmail napisanym w PHP.";locale["services[45]"]="Biznesowy hosting email, bez reklam z czystym, minimalistycznym interfejsem. Zintegrowany z kalendarzem, kontaktami i notatkami.";locale["services[46]"]="Czat Zoho jest bezpiecznym i skalowalnym w czasie rzeczywistym narzędziem do komunikacji i współpracy dla zespołów.";module.exports = locale; diff --git a/resources/languages/pt-BR.js b/resources/languages/pt-BR.js index c3ed9d2c..72fcb242 100644 --- a/resources/languages/pt-BR.js +++ b/resources/languages/pt-BR.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferências";locale["preferences[1]"]="Ocultar automaticamente a barra de Menu";locale["preferences[2]"]="Mostrar na barra de tarefas";locale["preferences[3]"]="Manter o Rambox na barra de tarefas ao fechar";locale["preferences[4]"]="Iniciar minimizado";locale["preferences[5]"]="Iniciar automaticamente ao inicializar o sistema";locale["preferences[6]"]="Não precisa ver a barra de menu o tempo todo?";locale["preferences[7]"]="Para mostrar temporariamente a barra de menu, basta pressionar a tecla Alt.";locale["app.update[0]"]="Uma nova versão está disponível!";locale["app.update[1]"]="Baixar";locale["app.update[2]"]="Histórico de alterações";locale["app.update[3]"]="O programa está atualizado!";locale["app.update[4]"]="Você tem a versão mais recente do Rambox.";locale["app.about[0]"]="Sobre o Rambox";locale["app.about[1]"]="Aplicação de Software Livre e Open Source, que combina as aplicações web mais utilizadas de mensagens e de e-mail em um único aplicativo.";locale["app.about[2]"]="Versão";locale["app.about[3]"]="Plataforma";locale["app.about[4]"]="Desenvolvido por";locale["app.main[0]"]="Adicionar um novo serviço";locale["app.main[1]"]="Mensagens";locale["app.main[2]"]="Email";locale["app.main[3]"]="Nenhum serviço encontrado... Tente outra pesquisa.";locale["app.main[4]"]="Serviços habilitados";locale["app.main[5]"]="ALINHAR";locale["app.main[6]"]="Esquerda";locale["app.main[7]"]="Direita";locale["app.main[8]"]="Item";locale["app.main[9]"]="Itens";locale["app.main[10]"]="Remover todos os serviços";locale["app.main[11]"]="Desativar notificações";locale["app.main[12]"]="Silencioso";locale["app.main[13]"]="Configurar";locale["app.main[14]"]="Remover";locale["app.main[15]"]="Nenhum serviço adicionado...";locale["app.main[16]"]="Não perturbe";locale["app.main[17]"]="Desative as notificações e sons de todos os serviços. Perfeito para ser manter concentrado e focado.";locale["app.main[18]"]="Teclas de atalho";locale["app.main[19]"]="Bloquear Rambox";locale["app.main[20]"]="Bloquear este aplicativo se você ficar inativo por um período de tempo.";locale["app.main[21]"]="Sair";locale["app.main[22]"]="Iniciar Sessão";locale["app.main[23]"]="Conectar para salvar suas configurações (nenhumas credenciais são armazenadas) para sincronização com todos os seus computadores.";locale["app.main[24]"]="Desenvolvido por";locale["app.main[25]"]="Faça uma doação";locale["app.main[26]"]="com";locale["app.main[27]"]="da Argentina como um projeto Open Source.";locale["app.window[0]"]="Adicionar";locale["app.window[1]"]="Editar";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opções";locale["app.window[4]"]="Alinhar à direita";locale["app.window[5]"]="Mostrar notificações";locale["app.window[6]"]="Silenciar todos os sons";locale["app.window[7]"]="Avançado";locale["app.window[8]"]="Código customizado";locale["app.window[9]"]="ler mais...";locale["app.window[10]"]="Adicionar serviço";locale["app.window[11]"]="equipe";locale["app.window[12]"]="Confirme por favor...";locale["app.window[13]"]="Tem certeza que deseja remover";locale["app.window[14]"]="Tem certeza que deseja remover todos os serviços?";locale["app.window[15]"]="Adicionar serviço personalizado";locale["app.window[16]"]="Editar serviço personalizado";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Confiar em certificados de autoridade inválida";locale["app.window[20]"]="LIGADO";locale["app.window[21]"]="DESLIGADO";locale["app.window[22]"]="Digite uma senha temporária para desbloquear mais tarde";locale["app.window[23]"]="Repetir a senha temporária";locale["app.window[24]"]="Atenção";locale["app.window[25]"]="As senhas não são iguais. Por favor, tente novamente...";locale["app.window[26]"]="RamBox está bloqueado";locale["app.window[27]"]="DESBLOQUEAR";locale["app.window[28]"]="Conectando...";locale["app.window[29]"]="Por favor espere até obtermos a sua configuração.";locale["app.window[30]"]="Importar";locale["app.window[31]"]="Você não tem qualquer serviço salvo. Você quer importar os seus serviços atuais?";locale["app.window[32]"]="Limpar serviços";locale["app.window[33]"]="Deseja remover todos os seus serviços actuais para começar de novo?";locale["app.window[34]"]="Se não, você será desconectado.";locale["app.window[35]"]="Confirmar";locale["app.window[36]"]="Para importar a sua configuração, Rambox precisa de remover todos os seus serviços atuais. Deseja continuar?";locale["app.window[37]"]="Desconectando...";locale["app.window[38]"]="Tem certeza de que deseja sair?";locale["app.webview[0]"]="Atualizar";locale["app.webview[1]"]="Ficar Online";locale["app.webview[2]"]="Ficar inativo";locale["app.webview[3]"]="Alternar Ferramentas de programador";locale["app.webview[4]"]="Carregando...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancelar";locale["button[2]"]="Sim";locale["button[3]"]="Não";locale["button[4]"]="Salvar";locale["main.dialog[0]"]="Erro de certificação";locale["main.dialog[1]"]="O serviço com o seguinte URL contem um certificador inválido.";locale["main.dialog[2]"]="Você tem que remover o serviço e adicioná-lo novamente";locale["menu.help[0]"]="Visite o site do Rambox";locale["menu.help[1]"]="Reportar um problema...";locale["menu.help[2]"]="Pedir ajuda";locale["menu.help[3]"]="Faça uma doação";locale["menu.help[4]"]="Ajuda";locale["menu.edit[0]"]="Editar";locale["menu.edit[1]"]="Desfazer";locale["menu.edit[2]"]="Refazer";locale["menu.edit[3]"]="Cortar";locale["menu.edit[4]"]="Copiar";locale["menu.edit[5]"]="Colar";locale["menu.edit[6]"]="Selecionar tudo";locale["menu.view[0]"]="Exibir";locale["menu.view[1]"]="Atualizar";locale["menu.view[2]"]="Alternar Tela Cheia";locale["menu.view[3]"]="Alternar ferramentas de programador";locale["menu.window[0]"]="Janela";locale["menu.window[1]"]="Minimizar";locale["menu.window[2]"]="Fechar";locale["menu.window[3]"]="Sempre visível";locale["menu.help[5]"]="Verificar atualizações...";locale["menu.help[6]"]="Sobre o Rambox";locale["menu.osx[0]"]="Serviços";locale["menu.osx[1]"]="Ocultar Rambox";locale["menu.osx[2]"]="Ocultar outros";locale["menu.osx[3]"]="Mostrar todos";locale["menu.file[0]"]="Arquivo";locale["menu.file[1]"]="Sair do Rambox";locale["tray[0]"]="Mostrar/Ocultar janela";locale["tray[1]"]="Sair";locale["services[0]"]="WhatsApp é uma aplicação móvel de mensagens multiplataforma para iPhone, BlackBerry, Android, Windows Phone e Nokia. Envie texto, vídeo, imagens, áudio gratuitamente.";locale["services[1]"]="Slack reúne toda a sua comunicação em um só lugar. É um serviço em tempo real de mensagens, arquivos e busca para equipes modernas.";locale["services[2]"]="Noysi é uma ferramenta de comunicação para as equipes onde a privacidade é garantida. Com Noysi você pode acessar todas as suas conversas e arquivos em segundos, de qualquer lugar e ilimitado.";locale["services[3]"]="Alcance instantaneamente pessoas em sua vida de graça. Messenger é como um Sms mas sem ter que pagar por cada mensagem.";locale["services[4]"]="Esteja em contato com a família e amigos gratuitamente. Faça chamadas internacionais, chamadas on-line gratuitas e Skype para negócios no desktop e mobile.";locale["services[5]"]="Hangouts dá vida as conversas, disponibilizando fotos, emojis, videochamadas e até mesmo conversas em grupo de forma gratuita. Conecte-se com seus amigos através de computadores e dispositivos Apple e Android.";locale["services[6]"]="HipChat é um serviço de mensagens e vídeo, construído para equipes. Aumente a colaboração em tempo real, com salas de chat persistentes, compartilhamento de arquivos e compartilhamento de tela.";locale["services[7]"]="Telegram é um serviço de mensagens com foco em velocidade e segurança. É super rápido, simples, seguro e gratuito.";locale["services[8]"]="WeChat é um aplicativo gratuito de chamadas e de mensagens que permite que você conecte-se facilmente com familiares e amigos em todos os países. É um aplicativo tudo em um que integra serviço de messages (SMS/MMS), voz, chamadas de vídeo, momentos, compartilhamento de fotos e jogos.";locale["services[9]"]="Gmail, serviço de e-mail gratuito do Google, é um dos programas de e-mail mais populares do mundo.";locale["services[10]"]="Inbox do Gmail é um novo aplicativo da equipe do Gmail. Inbox é um lugar organizado para agilizar suas tarefas e fazer o que realmente importa. Pacotes mantém os e-mails organizados.";locale["services[11]"]="ChatWork é um aplicativo de bate-papo voltado para negócios. Envio seguro de mensagens, vídeo chat, gerenciamento de tarefas e compartilhamento de arquivos. Comunicação em tempo real e aumento de produtividade para as equipes.";locale["services[12]"]="GroupMe traz mensagens de texto em grupo para telefones. Converse em grupo com as pessoas importantes da sua vida.";locale["services[13]"]="A mais avançada equipe de chat se juntada à pesquisa empresarial.";locale["services[14]"]="Gitter é construído com base no GitHub e se integra firmemente com suas organizações, repositórios, problemas e atividades.";locale["services[15]"]="Steam é uma plataforma de distribuição digital desenvolvida pela Valve Corporation oferecendo gerenciamento de direitos digitais (DRM), jogos multiplayer e serviços de redes sociais.";locale["services[16]"]="Reforce o seu jogo com um aplicativo de chat e voz moderno. Voz limpa, múltiplos servidores e suporte a canais, apps móveis e muito mais.";locale["services[17]"]="Assuma o controle. Faça mais. Outlook é o e-mail gratuito e serviço de calendário que ajuda você a ficar atento do que realmente importa e precisa ser feito.";locale["services[18]"]="Outlook para Negócios";locale["services[19]"]="Serviço de e-mail oferecido pela companhia americana Yahoo! O serviço é gratuito para uso pessoal, porém possui planos pagos para empresas.";locale["services[20]"]="Serviço de email criptografado, livre e baseado na web, fundado em 2013 no centro de pesquisas CERN. ProtonMail foi projetado usando a criptografia front-end para proteger emails e dados do usuário antes de serem enviados aos servidores do ProtonMail, diferenciado-se de outros serviços comuns de webmail, como Gmail e Hotmail.";locale["services[21]"]="Tutanota é um software de e-mail criptografado de codigo livre com a comunicação fim-a-fim e com o serviço de hospedagem gratuita segura baseada neste software.";locale["services[22]"]="Serviço de email que oferece mensagens criptografadas em PGP e serviços de domínio. Hushmail oferece versões gratuitas e pagas de seus serviços. Hushmail usa padrões OpenPGP e o código fonte está disponível para download.";locale["services[23]"]="Email colaborativo e chat em grupo para equipes produtivas. Um aplicativo único para todas as suas comunicações internas e externas.";locale["services[24]"]="Desde mensagens de grupo e chamadas de vídeo, até recursos de assistência técnica. O nosso objetivo é de se tornar a solução de chat multiplataforma e open source número um.";locale["services[25]"]="Chamadas em alta definição, chats privados com foto, áudio e vídeo. Também está disponível para seu celular ou tablet.";locale["services[26]"]="Sync é uma ferramenta de chat para empresas que irá impulsionar a produtividade de sua equipe.";locale["services[27]"]="Nenhuma descrição...";locale["services[28]"]="Possibilita mensagens instantâneas com qualquer pessoa no servidor Yahoo. Avisa quando você recebe emails e dá cotações de ações da bolsa de valores.";locale["services[29]"]="Voxer é um aplicativo de mensagens para o seu smartphone com chamada de voz (como um walkie talkie PTT), texto, imagem e compartilhamento de localização.";locale["services[30]"]="Dasher permite que você diga o que realmente que com pics, GIFs, links e muito mais. Faça uma pesquisa para descobrir o que seus amigos realmente pensam do seu novo boo.";locale["services[31]"]="Flowdock é um chat para a sua equipe com uma inbox compartilhada. As equipes que usam Flowdock ficam sempre atualizadas, respondem em segundos, em vez de dias, e nunca esquecem de nada.";locale["services[32]"]="Mattermost é uma alternativa open source para mensagens SaaS proprietárias. Mattermost oferece toda a comunicação da sua equipe em um único lugar, tornando-se pesquisável e acessível em qualquer lugar.";locale["services[33]"]="DingTalk é uma plataforma multiface que capacita pequenas e médias empresas para se comunicarem de forma eficaz.";locale["services[34]"]="A família de aplicações mysms ajuda você com os seus textos em qualquer lugar e melhora a experiência de suas mensagens em seu smartphone, tablet e computador.";locale["services[35]"]="ICQ é um programa de código aberto de mensagem instantânea para computador que foi desenvolvido e o primeiro a ser tornar popular";locale["services[36]"]="TweetDeck é um aplicativo de dashboard de mídia social para gerenciar contas do Twitter.";locale["services[37]"]="Serviço personalizado";locale["services[38]"]="Adicione um serviço personalizado se o mesmo não estiver listado acima.";locale["services[39]"]="Zinc é um aplicativo de comunicação segura para trabalhar em movimento, com texto, voz, vídeo, compartilhamento de arquivos e muito mais.";locale["services[40]"]="Freenode, anteriormente conhecida como Open Projects Network, é uma rede IRC usada para discutir projetos.";locale["services[41]"]="Sincronize mensagens e telefones do celular com o computador e do computador com o celular.";locale["services[42]"]="Software gratuito de código aberto para envio de e-mail em massa, feito com PHP.";locale["services[43]"]="Horde é uma ferramenta gratuita e open source de trabalho em grupo.";locale["services[44]"]="SquirrelMail é uma ferramenta padrão de webmail feita com PHP.";locale["services[45]"]="Email gratuito e livre de anúncios para o seu negócio com uma interface limpa e minimalista. Integra aplicativos de Calendário, Contatos, Notas e Tarefas.";locale["services[46]"]="Zoho chat é uma ferramenta segura e escalável para comunicação e colaboração entre equipes buscando melhorar sua produtividade.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferências";locale["preferences[1]"]="Ocultar automaticamente a barra de Menu";locale["preferences[2]"]="Mostrar na barra de tarefas";locale["preferences[3]"]="Manter o Rambox na barra de tarefas ao fechar";locale["preferences[4]"]="Iniciar minimizado";locale["preferences[5]"]="Iniciar automaticamente ao inicializar o sistema";locale["preferences[6]"]="Não precisa ver a barra de menu o tempo todo?";locale["preferences[7]"]="Para mostrar temporariamente a barra de menu, basta pressionar a tecla Alt.";locale["app.update[0]"]="Uma nova versão está disponível!";locale["app.update[1]"]="Baixar";locale["app.update[2]"]="Histórico de alterações";locale["app.update[3]"]="O programa está atualizado!";locale["app.update[4]"]="Você tem a versão mais recente do Rambox.";locale["app.about[0]"]="Sobre o Rambox";locale["app.about[1]"]="Aplicação de Software Livre e Open Source, que combina as aplicações web mais utilizadas de mensagens e de e-mail em um único aplicativo.";locale["app.about[2]"]="Versão";locale["app.about[3]"]="Plataforma";locale["app.about[4]"]="Desenvolvido por";locale["app.main[0]"]="Adicionar um novo serviço";locale["app.main[1]"]="Mensagens";locale["app.main[2]"]="Email";locale["app.main[3]"]="Nenhum serviço encontrado... Tente outra pesquisa.";locale["app.main[4]"]="Serviços habilitados";locale["app.main[5]"]="ALINHAR";locale["app.main[6]"]="Esquerda";locale["app.main[7]"]="Direita";locale["app.main[8]"]="Item";locale["app.main[9]"]="Itens";locale["app.main[10]"]="Remover todos os serviços";locale["app.main[11]"]="Desativar notificações";locale["app.main[12]"]="Silencioso";locale["app.main[13]"]="Configurar";locale["app.main[14]"]="Remover";locale["app.main[15]"]="Nenhum serviço adicionado...";locale["app.main[16]"]="Não perturbe";locale["app.main[17]"]="Desative as notificações e sons de todos os serviços. Perfeito para ser manter concentrado e focado.";locale["app.main[18]"]="Teclas de atalho";locale["app.main[19]"]="Bloquear Rambox";locale["app.main[20]"]="Bloquear este aplicativo se você ficar inativo por um período de tempo.";locale["app.main[21]"]="Sair";locale["app.main[22]"]="Iniciar Sessão";locale["app.main[23]"]="Conectar para salvar suas configurações (nenhumas credenciais são armazenadas) para sincronização com todos os seus computadores.";locale["app.main[24]"]="Desenvolvido por";locale["app.main[25]"]="Faça uma doação";locale["app.main[26]"]="com";locale["app.main[27]"]="da Argentina como um projeto Open Source.";locale["app.window[0]"]="Adicionar";locale["app.window[1]"]="Editar";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opções";locale["app.window[4]"]="Alinhar à direita";locale["app.window[5]"]="Mostrar notificações";locale["app.window[6]"]="Silenciar todos os sons";locale["app.window[7]"]="Avançado";locale["app.window[8]"]="Código customizado";locale["app.window[9]"]="ler mais...";locale["app.window[10]"]="Adicionar serviço";locale["app.window[11]"]="equipe";locale["app.window[12]"]="Confirme por favor...";locale["app.window[13]"]="Tem certeza que deseja remover";locale["app.window[14]"]="Tem certeza que deseja remover todos os serviços?";locale["app.window[15]"]="Adicionar serviço personalizado";locale["app.window[16]"]="Editar serviço personalizado";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Confiar em certificados de autoridade inválida";locale["app.window[20]"]="LIGADO";locale["app.window[21]"]="DESLIGADO";locale["app.window[22]"]="Digite uma senha temporária para desbloquear mais tarde";locale["app.window[23]"]="Repetir a senha temporária";locale["app.window[24]"]="Atenção";locale["app.window[25]"]="As senhas não são iguais. Por favor, tente novamente...";locale["app.window[26]"]="RamBox está bloqueado";locale["app.window[27]"]="DESBLOQUEAR";locale["app.window[28]"]="Conectando...";locale["app.window[29]"]="Por favor espere até obtermos a sua configuração.";locale["app.window[30]"]="Importar";locale["app.window[31]"]="Você não tem qualquer serviço salvo. Você quer importar os seus serviços atuais?";locale["app.window[32]"]="Limpar serviços";locale["app.window[33]"]="Deseja remover todos os seus serviços actuais para começar de novo?";locale["app.window[34]"]="Se não, você será desconectado.";locale["app.window[35]"]="Confirmar";locale["app.window[36]"]="Para importar a sua configuração, Rambox precisa de remover todos os seus serviços atuais. Deseja continuar?";locale["app.window[37]"]="Desconectando...";locale["app.window[38]"]="Tem certeza de que deseja sair?";locale["app.webview[0]"]="Atualizar";locale["app.webview[1]"]="Ficar Online";locale["app.webview[2]"]="Ficar inativo";locale["app.webview[3]"]="Alternar Ferramentas de programador";locale["app.webview[4]"]="Carregando...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancelar";locale["button[2]"]="Sim";locale["button[3]"]="Não";locale["button[4]"]="Salvar";locale["main.dialog[0]"]="Erro de certificação";locale["main.dialog[1]"]="O serviço com o seguinte URL contem um certificador inválido.";locale["main.dialog[2]"]="Você tem que remover o serviço e adicioná-lo novamente";locale["menu.help[0]"]="Visite o site do Rambox";locale["menu.help[1]"]="Reportar um problema...";locale["menu.help[2]"]="Pedir ajuda";locale["menu.help[3]"]="Faça uma doação";locale["menu.help[4]"]="Ajuda";locale["menu.edit[0]"]="Editar";locale["menu.edit[1]"]="Desfazer";locale["menu.edit[2]"]="Refazer";locale["menu.edit[3]"]="Cortar";locale["menu.edit[4]"]="Copiar";locale["menu.edit[5]"]="Colar";locale["menu.edit[6]"]="Selecionar tudo";locale["menu.view[0]"]="Exibir";locale["menu.view[1]"]="Atualizar";locale["menu.view[2]"]="Alternar Tela Cheia";locale["menu.view[3]"]="Alternar ferramentas de programador";locale["menu.window[0]"]="Janela";locale["menu.window[1]"]="Minimizar";locale["menu.window[2]"]="Fechar";locale["menu.window[3]"]="Sempre visível";locale["menu.help[5]"]="Verificar atualizações...";locale["menu.help[6]"]="Sobre o Rambox";locale["menu.osx[0]"]="Serviços";locale["menu.osx[1]"]="Ocultar Rambox";locale["menu.osx[2]"]="Ocultar outros";locale["menu.osx[3]"]="Mostrar todos";locale["menu.file[0]"]="Arquivo";locale["menu.file[1]"]="Sair do Rambox";locale["tray[0]"]="Mostrar/Ocultar janela";locale["tray[1]"]="Sair";locale["services[0]"]="WhatsApp é uma aplicação móvel de mensagens multiplataforma para iPhone, BlackBerry, Android, Windows Phone e Nokia. Envie texto, vídeo, imagens, áudio gratuitamente.";locale["services[1]"]="Slack reúne toda a sua comunicação em um só lugar. É um serviço em tempo real de mensagens, arquivos e busca para equipes modernas.";locale["services[2]"]="Noysi é uma ferramenta de comunicação para as equipes onde a privacidade é garantida. Com Noysi você pode acessar todas as suas conversas e arquivos em segundos, de qualquer lugar e ilimitado.";locale["services[3]"]="Alcance instantaneamente pessoas em sua vida de graça. Messenger é como um Sms mas sem ter que pagar por cada mensagem.";locale["services[4]"]="Esteja em contato com a família e amigos gratuitamente. Faça chamadas internacionais, chamadas on-line gratuitas e Skype para negócios no desktop e mobile.";locale["services[5]"]="Hangouts dá vida as conversas, disponibilizando fotos, emojis, videochamadas e até mesmo conversas em grupo de forma gratuita. Conecte-se com seus amigos através de computadores e dispositivos Apple e Android.";locale["services[6]"]="HipChat é um serviço de mensagens e vídeo, construído para equipes. Aumente a colaboração em tempo real, com salas de chat persistentes, compartilhamento de arquivos e compartilhamento de tela.";locale["services[7]"]="Telegram é um serviço de mensagens com foco em velocidade e segurança. É super rápido, simples, seguro e gratuito.";locale["services[8]"]="WeChat é um aplicativo gratuito de chamadas e de mensagens que permite que você conecte-se facilmente com familiares e amigos em todos os países. É um aplicativo tudo em um que integra serviço de messages (SMS/MMS), voz, chamadas de vídeo, momentos, compartilhamento de fotos e jogos.";locale["services[9]"]="Gmail, serviço de e-mail gratuito do Google, é um dos programas de e-mail mais populares do mundo.";locale["services[10]"]="Inbox do Gmail é um novo aplicativo da equipe do Gmail. Inbox é um lugar organizado para agilizar suas tarefas e fazer o que realmente importa. Pacotes mantém os e-mails organizados.";locale["services[11]"]="ChatWork é um aplicativo de bate-papo voltado para negócios. Envio seguro de mensagens, vídeo chat, gerenciamento de tarefas e compartilhamento de arquivos. Comunicação em tempo real e aumento de produtividade para as equipes.";locale["services[12]"]="GroupMe traz mensagens de texto em grupo para telefones. Converse em grupo com as pessoas importantes da sua vida.";locale["services[13]"]="A mais avançada equipe de chat se juntada à pesquisa empresarial.";locale["services[14]"]="Gitter é construído com base no GitHub e se integra firmemente com suas organizações, repositórios, problemas e atividades.";locale["services[15]"]="Steam é uma plataforma de distribuição digital desenvolvida pela Valve Corporation oferecendo gerenciamento de direitos digitais (DRM), jogos multiplayer e serviços de redes sociais.";locale["services[16]"]="Reforce o seu jogo com um aplicativo de chat e voz moderno. Voz limpa, múltiplos servidores e suporte a canais, apps móveis e muito mais.";locale["services[17]"]="Assuma o controle. Faça mais. Outlook é o e-mail gratuito e serviço de calendário que ajuda você a ficar atento do que realmente importa e precisa ser feito.";locale["services[18]"]="Outlook para Negócios";locale["services[19]"]="Serviço de e-mail oferecido pela companhia americana Yahoo! O serviço é gratuito para uso pessoal, porém possui planos pagos para empresas.";locale["services[20]"]="Serviço de email criptografado, livre e baseado na web, fundado em 2013 no centro de pesquisas CERN. ProtonMail foi projetado usando a criptografia front-end para proteger emails e dados do usuário antes de serem enviados aos servidores do ProtonMail, diferenciado-se de outros serviços comuns de webmail, como Gmail e Hotmail.";locale["services[21]"]="Tutanota é um software de e-mail criptografado de codigo livre com a comunicação fim-a-fim e com o serviço de hospedagem gratuita segura baseada neste software.";locale["services[22]"]="Serviço de email que oferece mensagens criptografadas em PGP e serviços de domínio. Hushmail oferece versões gratuitas e pagas de seus serviços. Hushmail usa padrões OpenPGP e o código fonte está disponível para download.";locale["services[23]"]="Email colaborativo e chat em grupo para equipes produtivas. Um aplicativo único para todas as suas comunicações internas e externas.";locale["services[24]"]="Desde mensagens de grupo e chamadas de vídeo, até recursos de assistência técnica. O nosso objetivo é de se tornar a solução de chat multiplataforma e open source número um.";locale["services[25]"]="Chamadas em alta definição, chats privados com foto, áudio e vídeo. Também está disponível para seu celular ou tablet.";locale["services[26]"]="Sync é uma ferramenta de chat para empresas que irá impulsionar a produtividade de sua equipe.";locale["services[27]"]="Nenhuma descrição...";locale["services[28]"]="Possibilita mensagens instantâneas com qualquer pessoa no servidor Yahoo. Avisa quando você recebe emails e dá cotações de ações da bolsa de valores.";locale["services[29]"]="Voxer é um aplicativo de mensagens para o seu smartphone com chamada de voz (como um walkie talkie PTT), texto, imagem e compartilhamento de localização.";locale["services[30]"]="Dasher permite que você diga o que realmente que com pics, GIFs, links e muito mais. Faça uma pesquisa para descobrir o que seus amigos realmente pensam do seu novo boo.";locale["services[31]"]="Flowdock é um chat para a sua equipe com uma inbox compartilhada. As equipes que usam Flowdock ficam sempre atualizadas, respondem em segundos, em vez de dias, e nunca esquecem de nada.";locale["services[32]"]="Mattermost é uma alternativa open source para mensagens SaaS proprietárias. Mattermost oferece toda a comunicação da sua equipe em um único lugar, tornando-se pesquisável e acessível em qualquer lugar.";locale["services[33]"]="DingTalk é uma plataforma multiface que capacita pequenas e médias empresas para se comunicarem de forma eficaz.";locale["services[34]"]="A família de aplicações mysms ajuda você com os seus textos em qualquer lugar e melhora a experiência de suas mensagens em seu smartphone, tablet e computador.";locale["services[35]"]="ICQ é um programa de código aberto de mensagem instantânea para computador que foi desenvolvido e o primeiro a ser tornar popular";locale["services[36]"]="TweetDeck é um aplicativo de dashboard de mídia social para gerenciar contas do Twitter.";locale["services[37]"]="Serviço personalizado";locale["services[38]"]="Adicione um serviço personalizado se o mesmo não estiver listado acima.";locale["services[39]"]="Zinc é um aplicativo de comunicação segura para trabalhar em movimento, com texto, voz, vídeo, compartilhamento de arquivos e muito mais.";locale["services[40]"]="Freenode, anteriormente conhecida como Open Projects Network, é uma rede IRC usada para discutir projetos.";locale["services[41]"]="Sincronize mensagens e telefones do celular com o computador e do computador com o celular.";locale["services[42]"]="Software gratuito de código aberto para envio de e-mail em massa, feito com PHP.";locale["services[43]"]="Horde é uma ferramenta gratuita e open source de trabalho em grupo.";locale["services[44]"]="SquirrelMail é uma ferramenta padrão de webmail feita com PHP.";locale["services[45]"]="Email gratuito e livre de anúncios para o seu negócio com uma interface limpa e minimalista. Integra aplicativos de Calendário, Contatos, Notas e Tarefas.";locale["services[46]"]="Zoho chat é uma ferramenta segura e escalável para comunicação e colaboração entre equipes buscando melhorar sua produtividade.";module.exports = locale; diff --git a/resources/languages/pt-PT.js b/resources/languages/pt-PT.js index 75cbf7db..3191583f 100644 --- a/resources/languages/pt-PT.js +++ b/resources/languages/pt-PT.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferências";locale["preferences[1]"]="Ocultar automaticamente a barra de Menu";locale["preferences[2]"]="Mostrar na barra de tarefas";locale["preferences[3]"]="Manter o Rambox na barra de tarefas ao fechar";locale["preferences[4]"]="Iniciar minimizado";locale["preferences[5]"]="Iniciar automaticamente no arranque do sistema";locale["preferences[6]"]="Não precisa de ver a barra de menu o tempo todo?";locale["preferences[7]"]="Para mostrar temporariamente a barra de menu, basta pressionar a tecla Alt.";locale["app.update[0]"]="Está disponível uma nova versão!";locale["app.update[1]"]="Transferir";locale["app.update[2]"]="Histórico de alterações";locale["app.update[3]"]="O Programa está actualizado!";locale["app.update[4]"]="Você tem a versão mais recente do Rambox.";locale["app.about[0]"]="Sobre o Rambox";locale["app.about[1]"]="Aplicação Livre e Open Source, que combina as aplicações web mais comuns de mensagens e de e-mail numa só.";locale["app.about[2]"]="Versão";locale["app.about[3]"]="Plataforma";locale["app.about[4]"]="Desenvolvido por";locale["app.main[0]"]="Adicionar um novo serviço";locale["app.main[1]"]="Mensagens";locale["app.main[2]"]="Email";locale["app.main[3]"]="Nenhum serviço encontrado... Tente outra pesquisa.";locale["app.main[4]"]="Serviços activos";locale["app.main[5]"]="ALINHAR";locale["app.main[6]"]="Esquerda";locale["app.main[7]"]="Direita";locale["app.main[8]"]="Item";locale["app.main[9]"]="Itens";locale["app.main[10]"]="Remover todos os serviços";locale["app.main[11]"]="Evitar notificações";locale["app.main[12]"]="Silêncio";locale["app.main[13]"]="Configurar";locale["app.main[14]"]="Remover";locale["app.main[15]"]="Nenhum serviço adicionado...";locale["app.main[16]"]="Não perturbar";locale["app.main[17]"]="Desactive notificações e sons de todos os serviços. Perfeito para ser manter concentrado e focado.";locale["app.main[18]"]="Tecla de atalho";locale["app.main[19]"]="Bloquear Rambox";locale["app.main[20]"]="Bloquear esta aplicação se ficar fora por um período de tempo.";locale["app.main[21]"]="Terminar Sessão";locale["app.main[22]"]="Iniciar Sessão";locale["app.main[23]"]="Iniciar sessão para salvar a sua configuração (nenhumas credenciais são armazenadas) para sincronização com todos os seus computadores.";locale["app.main[24]"]="Desenvolvido por";locale["app.main[25]"]="Fazer um donativo";locale["app.main[26]"]="com";locale["app.main[27]"]="da Argentina como um projecto Open Source.";locale["app.window[0]"]="Adicionar";locale["app.window[1]"]="Editar";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opções";locale["app.window[4]"]="Alinhar à direita";locale["app.window[5]"]="Mostrar notificações";locale["app.window[6]"]="Silenciar todos os sons";locale["app.window[7]"]="Avançado";locale["app.window[8]"]="Código personalizado";locale["app.window[9]"]="ler mais...";locale["app.window[10]"]="Adicionar serviço";locale["app.window[11]"]="equipa";locale["app.window[12]"]="Confirme por favor...";locale["app.window[13]"]="Tem certeza que deseja remover";locale["app.window[14]"]="Tem a certeza que deseja remover todos os serviços?";locale["app.window[15]"]="Adicionar serviço personalizado";locale["app.window[16]"]="Editar serviço personalizado";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logótipo";locale["app.window[19]"]="Confiar em certificados de autoridade inválidos";locale["app.window[20]"]="LIGADO";locale["app.window[21]"]="DESLIGADO";locale["app.window[22]"]="Digite uma senha temporária para desbloquear mais tarde";locale["app.window[23]"]="Repetir a senha temporária";locale["app.window[24]"]="Atenção";locale["app.window[25]"]="As senhas não são iguais. Por favor, tente novamente...";locale["app.window[26]"]="RamBox está bloqueado";locale["app.window[27]"]="DESBLOQUEAR";locale["app.window[28]"]="A ligar...";locale["app.window[29]"]="Por favor espere até obtermos a sua configuração.";locale["app.window[30]"]="Importar";locale["app.window[31]"]="Você não tem qualquer serviço guardado. Você quer importar os seus serviços actuais?";locale["app.window[32]"]="Limpar serviços";locale["app.window[33]"]="Deseja remover todos os seus serviços actuais para começar de novo?";locale["app.window[34]"]="Se não, terminará a sua sessão.";locale["app.window[35]"]="Confirmar";locale["app.window[36]"]="Para importar a sua configuração, Rambox precisa de remover todos os seus serviços actuais. Deseja continuar?";locale["app.window[37]"]="A terminar a sua sessão...";locale["app.window[38]"]="Tem certeza que deseja terminar sessão?";locale["app.webview[0]"]="Actualizar";locale["app.webview[1]"]="Ligar-se";locale["app.webview[2]"]="Ficar off-line";locale["app.webview[3]"]="Activar/desactivar Ferramentas de programador";locale["app.webview[4]"]="A Carregar...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancelar";locale["button[2]"]="Sim";locale["button[3]"]="Não";locale["button[4]"]="Guardar";locale["main.dialog[0]"]="Erro de certificação";locale["main.dialog[1]"]="O serviço com o seguinte URL tem um certificado de autoridade inválido.";locale["main.dialog[2]"]="Você tem que remover o serviço e adicioná-lo novamente";locale["menu.help[0]"]="Visite o site do Rambox";locale["menu.help[1]"]="Reportar um problema...";locale["menu.help[2]"]="Pedir ajuda";locale["menu.help[3]"]="Fazer um donativo";locale["menu.help[4]"]="Ajuda";locale["menu.edit[0]"]="Editar";locale["menu.edit[1]"]="Anular alteração";locale["menu.edit[2]"]="Refazer";locale["menu.edit[3]"]="Cortar";locale["menu.edit[4]"]="Copiar";locale["menu.edit[5]"]="Colar";locale["menu.edit[6]"]="Seleccionar Tudo";locale["menu.view[0]"]="Ver";locale["menu.view[1]"]="Recarregar";locale["menu.view[2]"]="Ativar/desactivar janela maximizada";locale["menu.view[3]"]="Activar/desactivar Ferramentas de programador";locale["menu.window[0]"]="Janela";locale["menu.window[1]"]="Minimizar";locale["menu.window[2]"]="Fechar";locale["menu.window[3]"]="Sempre visível";locale["menu.help[5]"]="Procurar actualizações...";locale["menu.help[6]"]="Sobre o Rambox";locale["menu.osx[0]"]="Serviços";locale["menu.osx[1]"]="Esconder Rambox";locale["menu.osx[2]"]="Ocultar outros";locale["menu.osx[3]"]="Mostrar Tudo";locale["menu.file[0]"]="Ficheiro";locale["menu.file[1]"]="Sair do Rambox";locale["tray[0]"]="Mostrar/Ocultar janela";locale["tray[1]"]="Sair";locale["services[0]"]="WhatsApp é uma aplicação de mensagens móveis multi-plataforma para iPhone, BlackBerry, Android, Windows Phone e Nokia. Envie mensagens de texto, vídeo, imagens, áudio gratuitamente.";locale["services[1]"]="Slack reúne a sua comunicação num só lugar. É um serviço em tempo real de mensagens, arquivo e pesquisa para equipas modernas.";locale["services[2]"]="Noisy é uma ferramenta de comunicação para as equipas, onde a privacidade é garantida. Com Noisy você pode aceder a todas as suas conversas e arquivos em segundos de qualquer lugar e de forma ilimitada.";locale["services[3]"]="Alcance instantaneamente as pessoas na sua vida de graça. Messenger é como mandar mensagens de texto, mas você não tem que pagar por cada mensagem.";locale["services[4]"]="Permaneça em contacto com sua a família e os amigos de graça. Obtenha chamadas internacionais, chamadas online grátis e Skype for Business no portátil e telemóvel.";locale["services[5]"]="Hangouts dá vida às conversas com fotos, emoticons, e até mesmo vídeo chamadas em grupo, gratuitamente. Conecte-se com amigos em todos os computadores, dispositivos Android e Apple.";locale["services[6]"]="HipChat é um recurso de conversas em grupo e conversas de vídeo construído para as equipas. Sobrecarregue a colaboração em tempo real com quartos persistentes de conversas, compartilhamento de arquivos e compartilhamento de tela.";locale["services[7]"]="Telegram é uma aplicação de mensagens com foco na velocidade e segurança. É super-rápido, simples, seguro e gratuito.";locale["services[8]"]="WeChat é um serviço de envio de mensagens livre que permite que você facilmente se conecte com a família; amigos entre países. É uma aplicação tudo-em-um de comunicações de texto grátis (SMS / MMS), voz; chamadas de vídeo, momentos, compartilhamento de fotos e jogos.";locale["services[9]"]="Gmail, serviço de e-mail gratuito do Google, é um dos programas de email mais populares do mundo.";locale["services[10]"]="Inbox by Gmail é um novo aplicativo da equipa do Gmail. Inbox é um lugar organizado para fazer as coisas e voltar para o que importa. Pacotes mantêm os e-mails organizados.";locale["services[11]"]="ChatWork é uma aplicação de conversas em grupo para os negócios. Mensagens seguras, conversa de vídeo, gerência de tarefas e compartilhamento de arquivos. Comunicação em tempo real e aumento de produtividade para as equipas.";locale["services[12]"]="GroupMe traz mensagens de texto de grupo para cada telefone. Realize mensagens de grupo com as pessoas na sua vida que são importantes para você.";locale["services[13]"]="O serviço de conversas mais avançado do mundo encontra busca corporativa.";locale["services[14]"]="Gitter está construído em cima do GitHub e é totalmente integrado com as suas organizações, repositórios, entregas e actividade.";locale["services[15]"]="Steam é uma plataforma de distribuição digital desenvolvida pela Valve Corporation, oferecendo administração de direitos digitais (DRM), jogos multi-jogador e serviços de redes sociais.";locale["services[16]"]="Intensifique o seu jogo com uma aplicação de mensagens de voz e de texto moderna. Voz nítida, múltiplos servidores e suporte de canal, aplicações móveis e muito mais.";locale["services[17]"]="Assuma o controlo. Faça mais. Outlook é um serviço grátis de email e de calendário que o ajuda a estar em cima de tudo o que importa e ter as coisas feitas.";locale["services[18]"]="Outlook para Empresas";locale["services[19]"]="Serviço de email oferecido pela empresa americana Yahoo!. O serviço é gratuito para uso pessoal, e tem disponíveis planos de e-mail de negócios pagos.";locale["services[20]"]="Serviço de email grátis e baseado na web fundado em 2013 no centro de investigação do CERN. ProtonMail é projetado como um sistema de zero conhecimento, utilizando encriptação do lado do cliente para proteger emails e os dados do utilizador antes de serem enviados para os servidores do ProtonMail, ao contrário de outros serviços mais comuns de webmail como o Gmail e Hotmail.";locale["services[21]"]="Tutanota é um software de email open-source de encriptação end-to-end e um serviço de email seguro e freemium baseado neste software.";locale["services[22]"]=". Hushmail usa standards OpenPGP e a fonte está disponível para download.";locale["services[23]"]="Email colaborativo e chat de group em linha para equipas produtivas. Uma unica app para todas as comunicações internas e externas.";locale["services[24]"]="The mensagens de grupo e video-chamadas para um helpdesk com features matadoras, o nosso objectivo é tornarmo-nos na principal multi-plataforma open source de chat.";locale["services[25]"]="Chamadas alta-definição, chats de grupo e privados com fotos alinhadas, música e video. Também disponível no teu telefone ou tablet.";locale["services[26]"]="Sync é uma ferramenta de chat para negócios que irá aumentar a produtividade de sua equipa.";locale["services[27]"]="Sem descrição...";locale["services[28]"]="Permite mensagens instântaneas a qualquer pessoa no servidor Yahoo. Notifica-te quando recebes email, e dá as quotas da bolsa.";locale["services[29]"]="Voxer é uma aplicação para o teu smartphone com voz ao vivo (estilo PTT walkie talkie), texto, foto e partilha de localização.";locale["services[30]"]="Dashes premite-te dizer o que realmente queres fazer com fotos, gifs, links e muito mais. Faz um questionário para descobrires o que os teus amigos realmente pensam sobre o teu novo amor.";locale["services[31]"]="Flowdock é o chat da tua equipa com uma caixa de correio partilhada. As equipas que usam Flowdock estão sempre atualizadas, reagem em seguindos em vez de dias, e nunca esquecem nada.";locale["services[32]"]="Mattermost é uma aplicação open-source, com servidor, alternativa ao Slack. Como uma alternativa a propriedade de mensagens SaaS, a Mattermost traz a comunicação toda da equipa num sitio só, tornando tudo pesquisável e acessível em qualquer lado.";locale["services[33]"]="DingTalk é que uma plataforma multi-sided para pequenas e médias empresas com comunicação eficaz.";locale["services[34]"]="A família mysms de aplicativos ajuda você a texto em qualquer lugar e melhora a sua experiência de mensagens no seu smartphone, tablet e computador.";locale["services[35]"]="ICQ é um programa de computador de código aberto de mensagens instantâneas que foi desenvolvido e popularizado em primeiro lugar.";locale["services[36]"]="TweetDeck é uma aplicação de meios de comunicação social, de painel, para a gestão de contas do Twitter.";locale["services[37]"]="Serviço personalizado";locale["services[38]"]="Adicione um serviço personalizado se este não se encontrar listado acima.";locale["services[39]"]="Zinc é uma aplicação de comunicação segura para os trabalhadores móveis, com texto, voz, vídeo, compartilhamento de arquivos e muito mais.";locale["services[40]"]="Freenode, anteriormente conhecido como Open Projects Network, é uma rede IRC usada para discutir projectos em pares.";locale["services[41]"]="Mande mensagens do seu computador, sincronize com o número de telemóvel e do Android.";locale["services[42]"]="gratuito e aberto para as massas, escrito em PHP.";locale["services[43]"]="Horde é um groupware grátis e de código aberto.";locale["services[44]"]="SquirrelMail é um pacote de webmail baseado em padrões, escrito em PHP.";locale["services[45]"]="Hospedeiro de email de negócio, sem anúncios com uma interface limpa e minimalista. Com calendário, contactos, notas e aplicações para tarefas integrados.";locale["services[46]"]="Zoho Chat é uma plataforma de comunicação e colaboração em tempo real segura e escalável para melhorar a produtividade das equipas.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferências";locale["preferences[1]"]="Ocultar automaticamente a barra de Menu";locale["preferences[2]"]="Mostrar na barra de tarefas";locale["preferences[3]"]="Manter o Rambox na barra de tarefas ao fechar";locale["preferences[4]"]="Iniciar minimizado";locale["preferences[5]"]="Iniciar automaticamente no arranque do sistema";locale["preferences[6]"]="Não precisa de ver a barra de menu o tempo todo?";locale["preferences[7]"]="Para mostrar temporariamente a barra de menu, basta pressionar a tecla Alt.";locale["app.update[0]"]="Está disponível uma nova versão!";locale["app.update[1]"]="Transferir";locale["app.update[2]"]="Histórico de alterações";locale["app.update[3]"]="O Programa está actualizado!";locale["app.update[4]"]="Você tem a versão mais recente do Rambox.";locale["app.about[0]"]="Sobre o Rambox";locale["app.about[1]"]="Aplicação Livre e Open Source, que combina as aplicações web mais comuns de mensagens e de e-mail numa só.";locale["app.about[2]"]="Versão";locale["app.about[3]"]="Plataforma";locale["app.about[4]"]="Desenvolvido por";locale["app.main[0]"]="Adicionar um novo serviço";locale["app.main[1]"]="Mensagens";locale["app.main[2]"]="Email";locale["app.main[3]"]="Nenhum serviço encontrado... Tente outra pesquisa.";locale["app.main[4]"]="Serviços activos";locale["app.main[5]"]="ALINHAR";locale["app.main[6]"]="Esquerda";locale["app.main[7]"]="Direita";locale["app.main[8]"]="Item";locale["app.main[9]"]="Itens";locale["app.main[10]"]="Remover todos os serviços";locale["app.main[11]"]="Evitar notificações";locale["app.main[12]"]="Silêncio";locale["app.main[13]"]="Configurar";locale["app.main[14]"]="Remover";locale["app.main[15]"]="Nenhum serviço adicionado...";locale["app.main[16]"]="Não perturbar";locale["app.main[17]"]="Desactive notificações e sons de todos os serviços. Perfeito para ser manter concentrado e focado.";locale["app.main[18]"]="Tecla de atalho";locale["app.main[19]"]="Bloquear Rambox";locale["app.main[20]"]="Bloquear esta aplicação se ficar fora por um período de tempo.";locale["app.main[21]"]="Terminar Sessão";locale["app.main[22]"]="Iniciar Sessão";locale["app.main[23]"]="Iniciar sessão para salvar a sua configuração (nenhumas credenciais são armazenadas) para sincronização com todos os seus computadores.";locale["app.main[24]"]="Desenvolvido por";locale["app.main[25]"]="Fazer um donativo";locale["app.main[26]"]="com";locale["app.main[27]"]="da Argentina como um projecto Open Source.";locale["app.window[0]"]="Adicionar";locale["app.window[1]"]="Editar";locale["app.window[2]"]="Nome";locale["app.window[3]"]="Opções";locale["app.window[4]"]="Alinhar à direita";locale["app.window[5]"]="Mostrar notificações";locale["app.window[6]"]="Silenciar todos os sons";locale["app.window[7]"]="Avançado";locale["app.window[8]"]="Código personalizado";locale["app.window[9]"]="ler mais...";locale["app.window[10]"]="Adicionar serviço";locale["app.window[11]"]="equipa";locale["app.window[12]"]="Confirme por favor...";locale["app.window[13]"]="Tem certeza que deseja remover";locale["app.window[14]"]="Tem a certeza que deseja remover todos os serviços?";locale["app.window[15]"]="Adicionar serviço personalizado";locale["app.window[16]"]="Editar serviço personalizado";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logótipo";locale["app.window[19]"]="Confiar em certificados de autoridade inválidos";locale["app.window[20]"]="LIGADO";locale["app.window[21]"]="DESLIGADO";locale["app.window[22]"]="Digite uma senha temporária para desbloquear mais tarde";locale["app.window[23]"]="Repetir a senha temporária";locale["app.window[24]"]="Atenção";locale["app.window[25]"]="As senhas não são iguais. Por favor, tente novamente...";locale["app.window[26]"]="RamBox está bloqueado";locale["app.window[27]"]="DESBLOQUEAR";locale["app.window[28]"]="A ligar...";locale["app.window[29]"]="Por favor espere até obtermos a sua configuração.";locale["app.window[30]"]="Importar";locale["app.window[31]"]="Você não tem qualquer serviço guardado. Você quer importar os seus serviços actuais?";locale["app.window[32]"]="Limpar serviços";locale["app.window[33]"]="Deseja remover todos os seus serviços actuais para começar de novo?";locale["app.window[34]"]="Se não, terminará a sua sessão.";locale["app.window[35]"]="Confirmar";locale["app.window[36]"]="Para importar a sua configuração, Rambox precisa de remover todos os seus serviços actuais. Deseja continuar?";locale["app.window[37]"]="A terminar a sua sessão...";locale["app.window[38]"]="Tem certeza que deseja terminar sessão?";locale["app.webview[0]"]="Actualizar";locale["app.webview[1]"]="Ligar-se";locale["app.webview[2]"]="Ficar off-line";locale["app.webview[3]"]="Activar/desactivar Ferramentas de programador";locale["app.webview[4]"]="A Carregar...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancelar";locale["button[2]"]="Sim";locale["button[3]"]="Não";locale["button[4]"]="Guardar";locale["main.dialog[0]"]="Erro de certificação";locale["main.dialog[1]"]="O serviço com o seguinte URL tem um certificado de autoridade inválido.";locale["main.dialog[2]"]="Você tem que remover o serviço e adicioná-lo novamente";locale["menu.help[0]"]="Visite o site do Rambox";locale["menu.help[1]"]="Reportar um problema...";locale["menu.help[2]"]="Pedir ajuda";locale["menu.help[3]"]="Fazer um donativo";locale["menu.help[4]"]="Ajuda";locale["menu.edit[0]"]="Editar";locale["menu.edit[1]"]="Anular alteração";locale["menu.edit[2]"]="Refazer";locale["menu.edit[3]"]="Cortar";locale["menu.edit[4]"]="Copiar";locale["menu.edit[5]"]="Colar";locale["menu.edit[6]"]="Seleccionar Tudo";locale["menu.view[0]"]="Ver";locale["menu.view[1]"]="Recarregar";locale["menu.view[2]"]="Ativar/desactivar janela maximizada";locale["menu.view[3]"]="Activar/desactivar Ferramentas de programador";locale["menu.window[0]"]="Janela";locale["menu.window[1]"]="Minimizar";locale["menu.window[2]"]="Fechar";locale["menu.window[3]"]="Sempre visível";locale["menu.help[5]"]="Procurar actualizações...";locale["menu.help[6]"]="Sobre o Rambox";locale["menu.osx[0]"]="Serviços";locale["menu.osx[1]"]="Esconder Rambox";locale["menu.osx[2]"]="Ocultar outros";locale["menu.osx[3]"]="Mostrar Tudo";locale["menu.file[0]"]="Ficheiro";locale["menu.file[1]"]="Sair do Rambox";locale["tray[0]"]="Mostrar/Ocultar janela";locale["tray[1]"]="Sair";locale["services[0]"]="WhatsApp é uma aplicação de mensagens móveis multi-plataforma para iPhone, BlackBerry, Android, Windows Phone e Nokia. Envie mensagens de texto, vídeo, imagens, áudio gratuitamente.";locale["services[1]"]="Slack reúne a sua comunicação num só lugar. É um serviço em tempo real de mensagens, arquivo e pesquisa para equipas modernas.";locale["services[2]"]="Noisy é uma ferramenta de comunicação para as equipas, onde a privacidade é garantida. Com Noisy você pode aceder a todas as suas conversas e arquivos em segundos de qualquer lugar e de forma ilimitada.";locale["services[3]"]="Alcance instantaneamente as pessoas na sua vida de graça. Messenger é como mandar mensagens de texto, mas você não tem que pagar por cada mensagem.";locale["services[4]"]="Permaneça em contacto com sua a família e os amigos de graça. Obtenha chamadas internacionais, chamadas online grátis e Skype for Business no portátil e telemóvel.";locale["services[5]"]="Hangouts dá vida às conversas com fotos, emoticons, e até mesmo vídeo chamadas em grupo, gratuitamente. Conecte-se com amigos em todos os computadores, dispositivos Android e Apple.";locale["services[6]"]="HipChat é um recurso de conversas em grupo e conversas de vídeo construído para as equipas. Sobrecarregue a colaboração em tempo real com quartos persistentes de conversas, compartilhamento de arquivos e compartilhamento de tela.";locale["services[7]"]="Telegram é uma aplicação de mensagens com foco na velocidade e segurança. É super-rápido, simples, seguro e gratuito.";locale["services[8]"]="WeChat é um serviço de envio de mensagens livre que permite que você facilmente se conecte com a família; amigos entre países. É uma aplicação tudo-em-um de comunicações de texto grátis (SMS / MMS), voz; chamadas de vídeo, momentos, compartilhamento de fotos e jogos.";locale["services[9]"]="Gmail, serviço de e-mail gratuito do Google, é um dos programas de email mais populares do mundo.";locale["services[10]"]="Inbox by Gmail é um novo aplicativo da equipa do Gmail. Inbox é um lugar organizado para fazer as coisas e voltar para o que importa. Pacotes mantêm os e-mails organizados.";locale["services[11]"]="ChatWork é uma aplicação de conversas em grupo para os negócios. Mensagens seguras, conversa de vídeo, gerência de tarefas e compartilhamento de arquivos. Comunicação em tempo real e aumento de produtividade para as equipas.";locale["services[12]"]="GroupMe traz mensagens de texto de grupo para cada telefone. Realize mensagens de grupo com as pessoas na sua vida que são importantes para você.";locale["services[13]"]="O serviço de conversas mais avançado do mundo encontra busca corporativa.";locale["services[14]"]="Gitter está construído em cima do GitHub e é totalmente integrado com as suas organizações, repositórios, entregas e actividade.";locale["services[15]"]="Steam é uma plataforma de distribuição digital desenvolvida pela Valve Corporation, oferecendo administração de direitos digitais (DRM), jogos multi-jogador e serviços de redes sociais.";locale["services[16]"]="Intensifique o seu jogo com uma aplicação de mensagens de voz e de texto moderna. Voz nítida, múltiplos servidores e suporte de canal, aplicações móveis e muito mais.";locale["services[17]"]="Assuma o controlo. Faça mais. Outlook é um serviço grátis de email e de calendário que o ajuda a estar em cima de tudo o que importa e ter as coisas feitas.";locale["services[18]"]="Outlook para Empresas";locale["services[19]"]="Serviço de email oferecido pela empresa americana Yahoo!. O serviço é gratuito para uso pessoal, e tem disponíveis planos de e-mail de negócios pagos.";locale["services[20]"]="Serviço de email grátis e baseado na web fundado em 2013 no centro de investigação do CERN. ProtonMail é projetado como um sistema de zero conhecimento, utilizando encriptação do lado do cliente para proteger emails e os dados do utilizador antes de serem enviados para os servidores do ProtonMail, ao contrário de outros serviços mais comuns de webmail como o Gmail e Hotmail.";locale["services[21]"]="Tutanota é um software de email open-source de encriptação end-to-end e um serviço de email seguro e freemium baseado neste software.";locale["services[22]"]=". Hushmail usa standards OpenPGP e a fonte está disponível para download.";locale["services[23]"]="Email colaborativo e chat de group em linha para equipas produtivas. Uma unica app para todas as comunicações internas e externas.";locale["services[24]"]="The mensagens de grupo e video-chamadas para um helpdesk com features matadoras, o nosso objectivo é tornarmo-nos na principal multi-plataforma open source de chat.";locale["services[25]"]="Chamadas alta-definição, chats de grupo e privados com fotos alinhadas, música e video. Também disponível no teu telefone ou tablet.";locale["services[26]"]="Sync é uma ferramenta de chat para negócios que irá aumentar a produtividade de sua equipa.";locale["services[27]"]="Sem descrição...";locale["services[28]"]="Permite mensagens instântaneas a qualquer pessoa no servidor Yahoo. Notifica-te quando recebes email, e dá as quotas da bolsa.";locale["services[29]"]="Voxer é uma aplicação para o teu smartphone com voz ao vivo (estilo PTT walkie talkie), texto, foto e partilha de localização.";locale["services[30]"]="Dashes premite-te dizer o que realmente queres fazer com fotos, gifs, links e muito mais. Faz um questionário para descobrires o que os teus amigos realmente pensam sobre o teu novo amor.";locale["services[31]"]="Flowdock é o chat da tua equipa com uma caixa de correio partilhada. As equipas que usam Flowdock estão sempre atualizadas, reagem em seguindos em vez de dias, e nunca esquecem nada.";locale["services[32]"]="Mattermost é uma aplicação open-source, com servidor, alternativa ao Slack. Como uma alternativa a propriedade de mensagens SaaS, a Mattermost traz a comunicação toda da equipa num sitio só, tornando tudo pesquisável e acessível em qualquer lado.";locale["services[33]"]="DingTalk é que uma plataforma multi-sided para pequenas e médias empresas com comunicação eficaz.";locale["services[34]"]="A família mysms de aplicativos ajuda você a texto em qualquer lugar e melhora a sua experiência de mensagens no seu smartphone, tablet e computador.";locale["services[35]"]="ICQ é um programa de computador de código aberto de mensagens instantâneas que foi desenvolvido e popularizado em primeiro lugar.";locale["services[36]"]="TweetDeck é uma aplicação de meios de comunicação social, de painel, para a gestão de contas do Twitter.";locale["services[37]"]="Serviço personalizado";locale["services[38]"]="Adicione um serviço personalizado se este não se encontrar listado acima.";locale["services[39]"]="Zinc é uma aplicação de comunicação segura para os trabalhadores móveis, com texto, voz, vídeo, compartilhamento de arquivos e muito mais.";locale["services[40]"]="Freenode, anteriormente conhecido como Open Projects Network, é uma rede IRC usada para discutir projectos em pares.";locale["services[41]"]="Mande mensagens do seu computador, sincronize com o número de telemóvel e do Android.";locale["services[42]"]="gratuito e aberto para as massas, escrito em PHP.";locale["services[43]"]="Horde é um groupware grátis e de código aberto.";locale["services[44]"]="SquirrelMail é um pacote de webmail baseado em padrões, escrito em PHP.";locale["services[45]"]="Hospedeiro de email de negócio, sem anúncios com uma interface limpa e minimalista. Com calendário, contactos, notas e aplicações para tarefas integrados.";locale["services[46]"]="Zoho Chat é uma plataforma de comunicação e colaboração em tempo real segura e escalável para melhorar a produtividade das equipas.";module.exports = locale; diff --git a/resources/languages/ro.js b/resources/languages/ro.js index c2063a4d..0053256f 100644 --- a/resources/languages/ro.js +++ b/resources/languages/ro.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/sk.js b/resources/languages/sk.js index c2063a4d..0053256f 100644 --- a/resources/languages/sk.js +++ b/resources/languages/sk.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/sr.js b/resources/languages/sr.js index c2063a4d..0053256f 100644 --- a/resources/languages/sr.js +++ b/resources/languages/sr.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/sv-SE.js b/resources/languages/sv-SE.js index c2063a4d..0053256f 100644 --- a/resources/languages/sv-SE.js +++ b/resources/languages/sv-SE.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/uk.js b/resources/languages/uk.js index c2063a4d..0053256f 100644 --- a/resources/languages/uk.js +++ b/resources/languages/uk.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/vi.js b/resources/languages/vi.js index c2063a4d..0053256f 100644 --- a/resources/languages/vi.js +++ b/resources/languages/vi.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/zh-CN.js b/resources/languages/zh-CN.js index c2063a4d..0053256f 100644 --- a/resources/languages/zh-CN.js +++ b/resources/languages/zh-CN.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; diff --git a/resources/languages/zh-TW.js b/resources/languages/zh-TW.js index c2063a4d..0053256f 100644 --- a/resources/languages/zh-TW.js +++ b/resources/languages/zh-TW.js @@ -1 +1 @@ -var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; \ No newline at end of file +var locale=[];locale["preferences[0]"]="Preferences";locale["preferences[1]"]="Auto-hide Menu bar";locale["preferences[2]"]="Show in Taskbar";locale["preferences[3]"]="Keep Rambox in the taskbar when close it";locale["preferences[4]"]="Start minimized";locale["preferences[5]"]="Start automatically on system startup";locale["preferences[6]"]="Don't need to see the menu bar all the time?";locale["preferences[7]"]="To temporarily show the menu bar, just press the Alt key.";locale["app.update[0]"]="New version is available!";locale["app.update[1]"]="Download";locale["app.update[2]"]="Changelog";locale["app.update[3]"]="You are up to date!";locale["app.update[4]"]="You have the latest version of Rambox.";locale["app.about[0]"]="About Rambox";locale["app.about[1]"]="Free and Open Source messaging and emailing app that combines common web applications into one.";locale["app.about[2]"]="Version";locale["app.about[3]"]="Platform";locale["app.about[4]"]="Developed by";locale["app.main[0]"]="Add a new Service";locale["app.main[1]"]="Messaging";locale["app.main[2]"]="Email";locale["app.main[3]"]="No services found... Try another search.";locale["app.main[4]"]="Enabled Services";locale["app.main[5]"]="ALIGN";locale["app.main[6]"]="Left";locale["app.main[7]"]="Right";locale["app.main[8]"]="Item";locale["app.main[9]"]="Items";locale["app.main[10]"]="Remove all Services";locale["app.main[11]"]="Prevent notifications";locale["app.main[12]"]="Muted";locale["app.main[13]"]="Configure";locale["app.main[14]"]="Remove";locale["app.main[15]"]="No services added...";locale["app.main[16]"]="Don't Disturb";locale["app.main[17]"]="Disable notifications and sounds in all services. Perfect to be concentrated and focused.";locale["app.main[18]"]="Shortcut key";locale["app.main[19]"]="Lock Rambox";locale["app.main[20]"]="Lock this app if you will be away for a period of time.";locale["app.main[21]"]="Logout";locale["app.main[22]"]="Login";locale["app.main[23]"]="Login to save your configuration (no credentials stored) to sync with all your computers.";locale["app.main[24]"]="Powered by";locale["app.main[25]"]="Donate";locale["app.main[26]"]="with";locale["app.main[27]"]="from Argentina as an Open Source project.";locale["app.window[0]"]="Add";locale["app.window[1]"]="Edit";locale["app.window[2]"]="Name";locale["app.window[3]"]="Options";locale["app.window[4]"]="Align to Right";locale["app.window[5]"]="Show notifications";locale["app.window[6]"]="Mute all sounds";locale["app.window[7]"]="Advanced";locale["app.window[8]"]="Custom Code";locale["app.window[9]"]="read more...";locale["app.window[10]"]="Add service";locale["app.window[11]"]="team";locale["app.window[12]"]="Please confirm...";locale["app.window[13]"]="Are you sure you want to remove";locale["app.window[14]"]="Are you sure you want to remove all services?";locale["app.window[15]"]="Add Custom Service";locale["app.window[16]"]="Edit Custom Service";locale["app.window[17]"]="URL";locale["app.window[18]"]="Logo";locale["app.window[19]"]="Trust invalid authority certificates";locale["app.window[20]"]="ON";locale["app.window[21]"]="OFF";locale["app.window[22]"]="Enter a temporal password to unlock it later";locale["app.window[23]"]="Repeat the temporal password";locale["app.window[24]"]="Warning";locale["app.window[25]"]="Passwords are not the same. Please try again...";locale["app.window[26]"]="Rambox is locked";locale["app.window[27]"]="UNLOCK";locale["app.window[28]"]="Connecting...";locale["app.window[29]"]="Please wait until we get your configuration.";locale["app.window[30]"]="Import";locale["app.window[31]"]="You don't have any service saved. Do you want to import your current services?";locale["app.window[32]"]="Clear services";locale["app.window[33]"]="Do you want to remove all your current services to start over?";locale["app.window[34]"]="If no, you will be logged out.";locale["app.window[35]"]="Confirm";locale["app.window[36]"]="To import your configuration, Rambox needs to remove all your current services. Do you want to continue?";locale["app.window[37]"]="Closing your session...";locale["app.window[38]"]="Are you sure you want to logout?";locale["app.webview[0]"]="Reload";locale["app.webview[1]"]="Go Online";locale["app.webview[2]"]="Go Offline";locale["app.webview[3]"]="Toggle Developer Tools";locale["app.webview[4]"]="Loading...";locale["preferences[8]"]="Enable HiDPI support (needs to relaunch)";locale["preferences[9]"]="Flash Taskbar on new message";locale["preferences[10]"]="Bounce Dock on new message";locale["preferences[11]"]="Service bar location";locale["preferences[12]"]="Default service to display when Rambox starts";locale["preferences[13]"]="Display behaviour";locale["preferences[14]"]="Show in Taskbar";locale["preferences[15]"]="Show Tray Icon";locale["preferences[16]"]="Show in Taskbar and Tray Icon";locale["preferences[17]"]="When closing the main window";locale["preferences[18]"]="Keep in tray";locale["preferences[19]"]="Keep in tray and/or taskbar";locale["preferences[20]"]="Quit";locale["preferences[21]"]="Always on top";locale["preferences[22]"]="Show System Tray indicator on unread messages";locale["preferences[23]"]="Disable Hardware Acceleration (needs to relaunch)";locale["preferences[24]"]="Master Password - Ask for password on startup";locale["preferences[25]"]="Password";locale["preferences[26]"]="Repeat Password";locale["preferences[27]"]="Send anonymous usage statistics to help us improve Rambox (needs to relaunch)";locale["preferences[28]"] = "Hide service bar labels (requires restart)";locale["button[0]"]="Ok";locale["button[1]"]="Cancel";locale["button[2]"]="Yes";locale["button[3]"]="No";locale["button[4]"]="Save";locale["main.dialog[0]"]="Certification Error";locale["main.dialog[1]"]="The service with the following URL has an invalid authority certification.";locale["main.dialog[2]"]="You have to remove the service and add it again";locale["menu.help[0]"]="Visit Rambox Website";locale["menu.help[1]"]="Report an Issue...";locale["menu.help[2]"]="Ask for Help";locale["menu.help[3]"]="Donate";locale["menu.help[4]"]="Help";locale["menu.edit[0]"]="Edit";locale["menu.edit[1]"]="Undo";locale["menu.edit[2]"]="Redo";locale["menu.edit[3]"]="Cut";locale["menu.edit[4]"]="Copy";locale["menu.edit[5]"]="Paste";locale["menu.edit[6]"]="Select All";locale["menu.view[0]"]="View";locale["menu.view[1]"]="Reload";locale["menu.view[2]"]="Toggle Full Screen";locale["menu.view[3]"]="Toggle Developer Tools";locale["menu.window[0]"]="Window";locale["menu.window[1]"]="Minimize";locale["menu.window[2]"]="Close";locale["menu.window[3]"]="Always on top";locale["menu.help[5]"]="Check for updates...";locale["menu.help[6]"]="About Rambox";locale["menu.osx[0]"]="Services";locale["menu.osx[1]"]="Hide Rambox";locale["menu.osx[2]"]="Hide Others";locale["menu.osx[3]"]="Show All";locale["menu.file[0]"]="File";locale["menu.file[1]"]="Quit Rambox";locale["tray[0]"]="Show/Hide Window";locale["tray[1]"]="Quit";locale["services[0]"]="WhatsApp is a cross-platform mobile messaging app for iPhone, BlackBerry, Android, Windows Phone and Nokia. Send text, video, images, audio for free.";locale["services[1]"]="Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.";locale["services[2]"]="Noysi is a communication tool for teams where privacy is guaranteed. With Noysi you can access all your conversations and files in seconds from anywhere and unlimited.";locale["services[3]"]="Instantly reach the people in your life for free. Messenger is just like texting, but you don't have to pay for every message.";locale["services[4]"]="Stay in touch with family and friends for free. Get international calling, free online calls and Skype for Business on desktop and mobile.";locale["services[5]"]="Hangouts bring conversations to life with photos, emoji, and even group video calls for free. Connect with friends across computers, Android, and Apple devices.";locale["services[6]"]="HipChat is hosted group chat and video chat built for teams. Supercharge real-time collaboration with persistent chat rooms, file sharing, and screen sharing.";locale["services[7]"]="Telegram is a messaging app with a focus on speed and security. It’s super-fast, simple, secure and free.";locale["services[8]"]="WeChat is a free messaging calling app that allows you to easily connect with family; friends across countries. It’s the all-in-one communications app for free text (SMS/MMS), voice; video calls, moments, photo sharing, and games.";locale["services[9]"]="Gmail, Google's free email service, is one of the world's most popular email programs.";locale["services[10]"]="Inbox by Gmail is a new app from the Gmail team. Inbox is an organized place to get things done and get back to what matters. Bundles keep emails organized.";locale["services[11]"]="ChatWork is a group chat app for business. Secure messaging, video chat, task management and file sharing. Real-time communication and increase productivity for teams.";locale["services[12]"]="GroupMe brings group text messaging to every phone. Group message with the people in your life that are important to you.";locale["services[13]"]="The world's most advanced team chat meets enterprise search.";locale["services[14]"]="Gitter is built on top of GitHub and is tightly integrated with your organisations, repositories, issues and activity.";locale["services[15]"]="Steam is a digital distribution platform developed by Valve Corporation offering digital rights management (DRM), multiplayer gaming and social networking services.";locale["services[16]"]="Step up your game with a modern voice & text chat app. Crystal clear voice, multiple server and channel support, mobile apps, and more.";locale["services[17]"]="Take control. Do more. Outlook is the free email and calendar service that helps you stay on top of what matters and get things done.";locale["services[18]"]="Outlook for Business";locale["services[19]"]="Web-based email service offered by the American company Yahoo!. The service is free for personal use, and paid-for business email plans are available.";locale["services[20]"]="Free and web-based encrypted email service founded in 2013 at the CERN research facility. ProtonMail is designed as a zero-knowledge system, using client-side encryption to protect emails and user data before they are sent to ProtonMail servers, in contrast to other common webmail services such as Gmail and Hotmail.";locale["services[21]"]="Tutanota is an open-source end-to-end encrypted email software and freemium hosted secure email service based on this software.";locale["services[22]"]="versions of service. Hushmail uses OpenPGP standards and the source is available for download.";locale["services[23]"]="Collaborative email and threaded group chat for productive teams. A single app for all your internal and external communication.";locale["services[24]"]="From group messages and video calls all the way to helpdesk killer features our goal is to become the number one cross-platform open source chat solution.";locale["services[25]"]="HD quality calls, private and group chats with inline photos, music and video. Also available for your phone or tablet.";locale["services[26]"]="Sync is a business chat tool that will boost productivity for your team.";locale["services[27]"]="No description...";locale["services[28]"]="Allows you to instant message with anyone on the Yahoo server. Tells you when you get mail, and gives stock quotes.";locale["services[29]"]="Voxer is a messaging app for your smartphone with live voice (like a PTT walkie talkie), text, photo and location sharing.";locale["services[30]"]="Dasher lets you say what you really want with pics, GIFs, links and more. Take a poll to find out what your friends really think of your new boo.";locale["services[31]"]="Flowdock is your team's chat with a shared inbox. Teams using Flowdock stay up-to-date, react in seconds instead of days, and never forget anything.";locale["services[32]"]="Mattermost is an open source, self-hosted Slack-alternative. As an alternative to proprietary SaaS messaging, Mattermost brings all your team communication into one place, making it searchable and accessible anywhere.";locale["services[33]"]="DingTalk is a multi-sided platform empowers small and medium-sized business to communicate effectively.";locale["services[34]"]="The mysms family of applications helps you text anywhere and enhances your messaging experience on your smartphone, tablet and computer.";locale["services[35]"]="ICQ is an open source instant messaging computer program that was first developed and popularized.";locale["services[36]"]="TweetDeck is a social media dashboard application for management of Twitter accounts.";locale["services[37]"]="Custom Service";locale["services[38]"]="Add a custom service if is not listed above.";locale["services[39]"]="Zinc is a secure communication app for mobile workers, with text, voice, video, file sharing and more.";locale["services[40]"]="Freenode, formerly known as Open Projects Network, is an IRC network used to discuss peer-directed projects.";locale["services[41]"]="Text from your computer, sync'd with your Android phone & number.";locale["services[42]"]="Free and open source webmail software for the masses, written in PHP.";locale["services[43]"]="Horde is a free and open source web-based groupware.";locale["services[44]"]="SquirrelMail is a standards-based webmail package written in PHP.";locale["services[45]"]="Ad-free business Email Hosting with a clean, minimalist interface. Integrated Calendar, Contacts, Notes, Tasks apps.";locale["services[46]"]="Zoho chat is a secure and scalable real-time communication and collaboration platform for teams to improve their productivity.";module.exports = locale; From 8114c44276b374030dcc3658515b64d0e83ae45a Mon Sep 17 00:00:00 2001 From: Bert Verhelst Date: Sat, 16 Mar 2019 22:31:50 +0100 Subject: [PATCH 2/3] Set hide_tabbar_labels default to false --- electron/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/main.js b/electron/main.js index 65f56ba6..cd0827ee 100644 --- a/electron/main.js +++ b/electron/main.js @@ -23,7 +23,7 @@ const config = new Config({ always_on_top: false ,hide_menu_bar: false ,tabbar_location: 'top' - ,hide_tabbar_labels: true + ,hide_tabbar_labels: false ,window_display_behavior: 'taskbar_tray' ,auto_launch: !isDev ,flash_frame: true From 13763830509a2a7d0c64540dcf4132564df60510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Czy=C5=BC?= Date: Tue, 19 Mar 2019 08:36:00 +0100 Subject: [PATCH 3/3] Allow mainWindow to be undefined --- electron/main.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/electron/main.js b/electron/main.js index dfbb78e9..797229a8 100644 --- a/electron/main.js +++ b/electron/main.js @@ -454,7 +454,9 @@ app.on('activate', function () { config.get('master_password') ? createMasterPasswordWindow() : createWindow(); } - if ( mainWindow !== null ) mainWindow.show(); + if (mainWindow) { + mainWindow.show(); + } }); app.on('before-quit', function () {