Merge pull request #81 from jaicis/Chatroom
implemented script for creating .mo and .po files.
This commit is contained in:
commit
05c7704807
12
src/bitmessagekivy/Makefile
Normal file
12
src/bitmessagekivy/Makefile
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
.PHONY: po mo
|
||||||
|
|
||||||
|
po:
|
||||||
|
xgettext -Lpython --output=messages.pot main.py lang.kv
|
||||||
|
msgmerge --update --no-fuzzy-matching --backup=off po/en.po messages.pot
|
||||||
|
msgmerge --update --no-fuzzy-matching --backup=off po/fr.po messages.pot
|
||||||
|
|
||||||
|
mo:
|
||||||
|
mkdir -p data/locales/en/LC_MESSAGES
|
||||||
|
mkdir -p data/locales/fr/LC_MESSAGES
|
||||||
|
msgfmt -c -o data/locales/en/LC_MESSAGES/langapp.mo po/en.po
|
||||||
|
msgfmt -c -o data/locales/fr/LC_MESSAGES/langapp.mo po/fr.po
|
Binary file not shown.
|
@ -206,7 +206,7 @@
|
||||||
MDDropDownItem:
|
MDDropDownItem:
|
||||||
id: drop_item
|
id: drop_item
|
||||||
# pos_hint: {'center_x': .5, 'center_y': .5}
|
# pos_hint: {'center_x': .5, 'center_y': .5}
|
||||||
text: 'italiano'
|
text: 'System Setting'
|
||||||
on_release: root.menu.open()
|
on_release: root.menu.open()
|
||||||
on_press: root.set_caller()
|
on_press: root.set_caller()
|
||||||
# MDDropDownItem:
|
# MDDropDownItem:
|
||||||
|
@ -224,10 +224,11 @@
|
||||||
orientation: 'horizontal'
|
orientation: 'horizontal'
|
||||||
# padding: [0, 10, 0, 0]
|
# padding: [0, 10, 0, 0]
|
||||||
spacing: 10
|
spacing: 10
|
||||||
|
# MDRaisedButton:
|
||||||
|
# text: app.tr._('Cancel')
|
||||||
MDRaisedButton:
|
MDRaisedButton:
|
||||||
text: app.tr._('Reset')
|
text: app.tr._('Apply')
|
||||||
MDRaisedButton:
|
on_press: root.change_language()
|
||||||
text: app.tr._('Ok')
|
|
||||||
Tab:
|
Tab:
|
||||||
text: 'Network Settings'
|
text: 'Network Settings'
|
||||||
ScrollView:
|
ScrollView:
|
||||||
|
@ -469,10 +470,10 @@
|
||||||
spacing:5
|
spacing:5
|
||||||
orientation: 'horizontal'
|
orientation: 'horizontal'
|
||||||
# pos_hint: {'x':.76}
|
# pos_hint: {'x':.76}
|
||||||
|
# MDRaisedButton:
|
||||||
|
# text: app.tr._('Cancel')
|
||||||
MDRaisedButton:
|
MDRaisedButton:
|
||||||
text: app.tr._('Reset')
|
text: app.tr._('Apply')
|
||||||
MDRaisedButton:
|
|
||||||
text: app.tr._('Ok')
|
|
||||||
Tab:
|
Tab:
|
||||||
text: 'Resends Expire'
|
text: 'Resends Expire'
|
||||||
ScrollView:
|
ScrollView:
|
||||||
|
@ -544,7 +545,9 @@
|
||||||
# pos_hint: {'left': 0}
|
# pos_hint: {'left': 0}
|
||||||
# pos_hint: {'x':.75}
|
# pos_hint: {'x':.75}
|
||||||
height: dp(50) + self.minimum_height
|
height: dp(50) + self.minimum_height
|
||||||
|
# MDRaisedButton:
|
||||||
|
# text: app.tr._('Cancel')
|
||||||
MDRaisedButton:
|
MDRaisedButton:
|
||||||
text: app.tr._('Reset')
|
text: app.tr._('Apply')
|
||||||
MDRaisedButton:
|
|
||||||
text: app.tr._('Ok')
|
Loader:
|
94
src/bitmessagekivy/language_script.py
Normal file
94
src/bitmessagekivy/language_script.py
Normal file
|
@ -0,0 +1,94 @@
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
KVFILES = [
|
||||||
|
"settings",
|
||||||
|
"popup",
|
||||||
|
"allmails",
|
||||||
|
"draft",
|
||||||
|
"maildetail",
|
||||||
|
"common_widgets",
|
||||||
|
"addressbook",
|
||||||
|
"myaddress",
|
||||||
|
"composer",
|
||||||
|
"payment",
|
||||||
|
"sent",
|
||||||
|
"network",
|
||||||
|
"login",
|
||||||
|
"credits",
|
||||||
|
"trash",
|
||||||
|
"inbox",
|
||||||
|
"chat_room",
|
||||||
|
"chat_list"
|
||||||
|
]
|
||||||
|
|
||||||
|
windowsLanguageMap = {
|
||||||
|
'ar': 'Arabic',
|
||||||
|
'cs': 'Czech',
|
||||||
|
'da': 'Danish',
|
||||||
|
'de': 'German',
|
||||||
|
'en': 'English',
|
||||||
|
'eo': 'Esperanto',
|
||||||
|
'fr': 'French',
|
||||||
|
'it': 'Italian',
|
||||||
|
'ja': 'Japanese',
|
||||||
|
'nl': 'Dutch',
|
||||||
|
'no': 'Norwegian',
|
||||||
|
'pl': 'Polish',
|
||||||
|
'pt': 'Portuguese',
|
||||||
|
'ru': 'Russian',
|
||||||
|
'sk': 'Slovak',
|
||||||
|
'zh': 'Chinese',
|
||||||
|
}
|
||||||
|
|
||||||
|
current_dir_path = os.path.abspath(os.path.join(__file__, '../'))
|
||||||
|
main_file = os.path.join(current_dir_path, 'mpybit.py')
|
||||||
|
kv_file = os.path.join(current_dir_path, 'main.kv')
|
||||||
|
|
||||||
|
print("Create .po files for Project")
|
||||||
|
|
||||||
|
translation_command = [
|
||||||
|
'xgettext',
|
||||||
|
'-Lpython',
|
||||||
|
'--output=messages.pot',
|
||||||
|
'--from-code=UTF-8',
|
||||||
|
main_file,
|
||||||
|
kv_file
|
||||||
|
]
|
||||||
|
|
||||||
|
for kv_file in KVFILES:
|
||||||
|
translation_command.append(f'{current_dir_path}/kv/{kv_file}.kv')
|
||||||
|
|
||||||
|
# print('translation_command..............', translation_command)
|
||||||
|
subprocess.run(translation_command, stdout=subprocess.DEVNULL)
|
||||||
|
# print("The exit code1 was: %d" % list_files.returncode)
|
||||||
|
|
||||||
|
# this command is used to create seperate dir for mo and po file
|
||||||
|
subprocess.run(
|
||||||
|
['mkdir', '-p', 'translations/po'], stdout=subprocess.DEVNULL)
|
||||||
|
|
||||||
|
|
||||||
|
for key in windowsLanguageMap.keys():
|
||||||
|
subprocess.run(
|
||||||
|
['touch', f'{current_dir_path}/translations/po/bitmessage_{key}.po'], stdout=subprocess.DEVNULL)
|
||||||
|
subprocess.run(
|
||||||
|
['msgmerge', '--update', '--no-fuzzy-matching', '--backup=off',
|
||||||
|
f'{current_dir_path}/translations/po/bitmessage_{key}.po', f'{current_dir_path}/messages.pot'],
|
||||||
|
stdout=subprocess.DEVNULL
|
||||||
|
)
|
||||||
|
|
||||||
|
print("Create .mo file from .po file")
|
||||||
|
|
||||||
|
for key in windowsLanguageMap.keys():
|
||||||
|
subprocess.run(
|
||||||
|
['mkdir', '-p', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES'],
|
||||||
|
stdout=subprocess.DEVNULL
|
||||||
|
)
|
||||||
|
subprocess.run(
|
||||||
|
['touch', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES/langapp.mo'],
|
||||||
|
stdout=subprocess.DEVNULL
|
||||||
|
)
|
||||||
|
subprocess.run(
|
||||||
|
['msgfmt', '-c', '-o', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES/langapp.mo',
|
||||||
|
f'{current_dir_path}/translations/po/bitmessage_{key}.po'], stdout=subprocess.DEVNULL
|
||||||
|
)
|
|
@ -164,13 +164,13 @@
|
||||||
on_release: app.root.ids.scr_mngr.current = 'allmails'
|
on_release: app.root.ids.scr_mngr.current = 'allmails'
|
||||||
on_release: root.parent.set_state()
|
on_release: root.parent.set_state()
|
||||||
on_press: app.load_screen(self)
|
on_press: app.load_screen(self)
|
||||||
NavigationItem:
|
# NavigationItem:
|
||||||
id: chat_rm
|
# id: chat_rm
|
||||||
text: app.tr._('Chat Room')
|
# text: app.tr._('Chat Room')
|
||||||
icon: 'wechat'
|
# icon: 'wechat'
|
||||||
divider: None
|
# divider: None
|
||||||
on_release: app.root.ids.scr_mngr.current = 'chlist'
|
# on_release: app.root.ids.scr_mngr.current = 'chlist'
|
||||||
on_release: root.parent.set_state()
|
# on_release: root.parent.set_state()
|
||||||
NavigationDrawerDivider:
|
NavigationDrawerDivider:
|
||||||
NavigationDrawerSubheader:
|
NavigationDrawerSubheader:
|
||||||
text: app.tr._("All labels")
|
text: app.tr._("All labels")
|
||||||
|
@ -192,12 +192,12 @@
|
||||||
divider: None
|
divider: None
|
||||||
on_release: app.root.ids.scr_mngr.current = 'payment'
|
on_release: app.root.ids.scr_mngr.current = 'payment'
|
||||||
on_release: root.parent.set_state()
|
on_release: root.parent.set_state()
|
||||||
NavigationItem:
|
# NavigationItem:
|
||||||
text: app.tr._('Credits')
|
# text: app.tr._('Credits')
|
||||||
icon: 'wallet'
|
# icon: 'wallet'
|
||||||
divider: None
|
# divider: None
|
||||||
on_release: app.root.ids.scr_mngr.current = 'credits'
|
# on_release: app.root.ids.scr_mngr.current = 'credits'
|
||||||
on_release: root.parent.set_state()
|
# on_release: root.parent.set_state()
|
||||||
NavigationItem:
|
NavigationItem:
|
||||||
text: app.tr._('New address')
|
text: app.tr._('New address')
|
||||||
icon: 'account-plus'
|
icon: 'account-plus'
|
||||||
|
|
368
src/bitmessagekivy/messages.pot
Normal file
368
src/bitmessagekivy/messages.pot
Normal file
|
@ -0,0 +1,368 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-10-20 02:27+0530\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
|
@ -81,6 +81,9 @@ from kivymd.uix.menu import MDDropdownMenu
|
||||||
|
|
||||||
from kivy.lang import Observable
|
from kivy.lang import Observable
|
||||||
import gettext
|
import gettext
|
||||||
|
import l10n
|
||||||
|
import locale
|
||||||
|
from debug import logger
|
||||||
|
|
||||||
if platform != "android":
|
if platform != "android":
|
||||||
from kivy.config import Config
|
from kivy.config import Config
|
||||||
|
@ -214,7 +217,7 @@ class Lang(Observable):
|
||||||
|
|
||||||
def switch_lang(self, lang):
|
def switch_lang(self, lang):
|
||||||
# get the right locales directory, and instanciate a gettext
|
# get the right locales directory, and instanciate a gettext
|
||||||
locale_dir = os.path.join(os.path.dirname(__file__), 'data', 'locales')
|
locale_dir = os.path.join(os.path.dirname(__file__), 'translations', 'mo', 'locales')
|
||||||
locales = gettext.translation('langapp', locale_dir, languages=[lang])
|
locales = gettext.translation('langapp', locale_dir, languages=[lang])
|
||||||
self.ugettext = locales.gettext
|
self.ugettext = locales.gettext
|
||||||
|
|
||||||
|
@ -309,7 +312,6 @@ class Inbox(Screen):
|
||||||
int(state.sent_count) + int(state.inbox_count))
|
int(state.sent_count) + int(state.inbox_count))
|
||||||
src_mng_obj.allmail_cnt.ids.badge_txt.text = showLimitedCnt(int(state.all_count))
|
src_mng_obj.allmail_cnt.ids.badge_txt.text = showLimitedCnt(int(state.all_count))
|
||||||
|
|
||||||
|
|
||||||
def inboxDataQuery(self, xAddress, where, what, start_indx=0, end_indx=20):
|
def inboxDataQuery(self, xAddress, where, what, start_indx=0, end_indx=20):
|
||||||
"""This method is used for retrieving inbox data"""
|
"""This method is used for retrieving inbox data"""
|
||||||
self.queryreturn = kivy_helper_search.search_sql(
|
self.queryreturn = kivy_helper_search.search_sql(
|
||||||
|
@ -541,7 +543,7 @@ class MyAddress(Screen):
|
||||||
if state.association == item['secondary_text']:
|
if state.association == item['secondary_text']:
|
||||||
badge_obj = BadgeText(
|
badge_obj = BadgeText(
|
||||||
size_hint=(None, None),
|
size_hint=(None, None),
|
||||||
size=[85 if platform == 'android' else 50, 60],
|
size=[90 if platform == 'android' else 50, 60],
|
||||||
text='Active', halign='center',
|
text='Active', halign='center',
|
||||||
font_style='Body1', theme_text_color='Custom',
|
font_style='Body1', theme_text_color='Custom',
|
||||||
text_color=ThemeClsColor
|
text_color=ThemeClsColor
|
||||||
|
@ -595,7 +597,8 @@ class MyAddress(Screen):
|
||||||
MDFlatButton(
|
MDFlatButton(
|
||||||
text="Ok", on_release=lambda x: callback_for_menu_items("Ok")
|
text="Ok", on_release=lambda x: callback_for_menu_items("Ok")
|
||||||
),
|
),
|
||||||
],)
|
],
|
||||||
|
)
|
||||||
dialog_box.open()
|
dialog_box.open()
|
||||||
|
|
||||||
def callback_for_menu_items(text_item, *arg):
|
def callback_for_menu_items(text_item, *arg):
|
||||||
|
@ -1026,7 +1029,6 @@ class DropDownWidget(BoxLayout):
|
||||||
dialog_box.dismiss()
|
dialog_box.dismiss()
|
||||||
toast(text_item)
|
toast(text_item)
|
||||||
|
|
||||||
|
|
||||||
# @staticmethod
|
# @staticmethod
|
||||||
# def callback_for_menu_items(text_item, *arg):
|
# def callback_for_menu_items(text_item, *arg):
|
||||||
# """Callback of alert box"""
|
# """Callback of alert box"""
|
||||||
|
@ -1065,7 +1067,8 @@ class DropDownWidget(BoxLayout):
|
||||||
MDFlatButton(
|
MDFlatButton(
|
||||||
text="Ok", on_release=lambda x: callback_for_menu_items("Ok")
|
text="Ok", on_release=lambda x: callback_for_menu_items("Ok")
|
||||||
),
|
),
|
||||||
],)
|
],
|
||||||
|
)
|
||||||
dialog_box.open()
|
dialog_box.open()
|
||||||
|
|
||||||
def callback_for_menu_items(text_item, *arg):
|
def callback_for_menu_items(text_item, *arg):
|
||||||
|
@ -1827,22 +1830,66 @@ class Setting(Screen):
|
||||||
Here you may change that behavior by having Bitmessage give up after a certain number of days \
|
Here you may change that behavior by having Bitmessage give up after a certain number of days \
|
||||||
or months."
|
or months."
|
||||||
|
|
||||||
|
languages = {
|
||||||
|
'ar': 'Arabic',
|
||||||
|
'cs': 'Czech',
|
||||||
|
'da': 'Danish',
|
||||||
|
'de': 'German',
|
||||||
|
'en': 'English',
|
||||||
|
'eo': 'Esperanto',
|
||||||
|
'fr': 'French',
|
||||||
|
'it': 'Italian',
|
||||||
|
'ja': 'Japanese',
|
||||||
|
'nl': 'Dutch',
|
||||||
|
'no': 'Norwegian',
|
||||||
|
'pl': 'Polish',
|
||||||
|
'pt': 'Portuguese',
|
||||||
|
'ru': 'Russian',
|
||||||
|
'sk': 'Slovak',
|
||||||
|
'zh': 'Chinese',
|
||||||
|
}
|
||||||
|
newlocale = None
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
"""Trash method, delete sent message and add in Trash"""
|
"""Trash method, delete sent message and add in Trash"""
|
||||||
super(Setting, self).__init__(*args, **kwargs)
|
super(Setting, self).__init__(*args, **kwargs)
|
||||||
|
if self.newlocale is None:
|
||||||
|
self.newlocale = l10n.getTranslationLanguage()
|
||||||
|
lang = locale.normalize(l10n.getTranslationLanguage())
|
||||||
|
langs = [
|
||||||
|
lang.split(".")[0] + "." + l10n.encoding,
|
||||||
|
lang.split(".")[0] + "." + 'UTF-8',
|
||||||
|
lang
|
||||||
|
]
|
||||||
|
if 'win32' in platform or 'win64' in platform:
|
||||||
|
langs = [l10n.getWindowsLocale(lang)]
|
||||||
|
for lang in langs:
|
||||||
|
try:
|
||||||
|
l10n.setlocale(locale.LC_ALL, lang)
|
||||||
|
if 'win32' not in platform and 'win64' not in platform:
|
||||||
|
l10n.encoding = locale.nl_langinfo(locale.CODESET)
|
||||||
|
else:
|
||||||
|
l10n.encoding = locale.getlocale()[1]
|
||||||
|
logger.info("Successfully set locale to %s", lang)
|
||||||
|
break
|
||||||
|
except:
|
||||||
|
logger.error("Failed to set locale to %s", lang, exc_info=True)
|
||||||
|
|
||||||
Clock.schedule_once(self.init_ui, 0)
|
Clock.schedule_once(self.init_ui, 0)
|
||||||
|
|
||||||
def init_ui(self, dt=0):
|
def init_ui(self, dt=0):
|
||||||
menu_items = [{"text": f"{i}"} for i in ['System Setting','U.S. English','italiano',
|
if self.newlocale is None:
|
||||||
'Esperanto','dansk','Deutsch','Pirate English','francais',
|
self.newlocale = l10n.getTranslationLanguage()
|
||||||
'Nederlands','norsk bokmal','polski','portugues europeu']]
|
# state.kivyapp.tr = Lang(self.newlocale)
|
||||||
|
state.kivyapp.tr = Lang(self.newlocale)
|
||||||
|
menu_items = [{"text": f"{i}"} for i in self.languages.values()]
|
||||||
self.menu = MDDropdownMenu(
|
self.menu = MDDropdownMenu(
|
||||||
caller=self,
|
caller=self,
|
||||||
items=menu_items,
|
items=menu_items,
|
||||||
position="auto",
|
position="auto",
|
||||||
callback=self.set_item,
|
callback=self.set_item,
|
||||||
width_mult=3,
|
width_mult=3.5,
|
||||||
use_icon_item=False,
|
# use_icon_item=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
def set_caller(self):
|
def set_caller(self):
|
||||||
|
@ -1854,6 +1901,21 @@ class Setting(Screen):
|
||||||
self.ids.drop_item.set_item(instance.text)
|
self.ids.drop_item.set_item(instance.text)
|
||||||
self.menu.dismiss()
|
self.menu.dismiss()
|
||||||
|
|
||||||
|
def change_language(self):
|
||||||
|
lang = self.ids.drop_item.current_item
|
||||||
|
for k, v in self.languages.items():
|
||||||
|
if v == lang:
|
||||||
|
BMConfigParser().set('bitmessagesettings', 'userlocale', k)
|
||||||
|
BMConfigParser().save()
|
||||||
|
state.kivyapp.tr = Lang(k)
|
||||||
|
self.children[0].active = True
|
||||||
|
Clock.schedule_once(partial(self.language_callback, k), 1)
|
||||||
|
|
||||||
|
def language_callback(self, lang, dt=0):
|
||||||
|
self.children[0].active = False
|
||||||
|
state.kivyapp.tr = Lang(lang)
|
||||||
|
toast('Language changed')
|
||||||
|
|
||||||
|
|
||||||
class NavigateApp(MDApp):
|
class NavigateApp(MDApp):
|
||||||
"""Navigation Layout of class"""
|
"""Navigation Layout of class"""
|
||||||
|
@ -2582,6 +2644,7 @@ class NavigateApp(MDApp):
|
||||||
"""This method is used for opening popup"""
|
"""This method is used for opening popup"""
|
||||||
instance.open()
|
instance.open()
|
||||||
|
|
||||||
|
|
||||||
class GrashofPopup(BoxLayout):
|
class GrashofPopup(BoxLayout):
|
||||||
"""Moule for save contacts and error messages"""
|
"""Moule for save contacts and error messages"""
|
||||||
|
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
# Example for an internationalized Kivy app
|
|
||||||
# Copyright (C) 2013 Mathieu Virbel
|
|
||||||
# This file is distributed under the same license as the Kivy package.
|
|
||||||
# Mathieu Virbel <mat@kivy.org>, 2013
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: 1.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2013-08-01 15:36+0200\n"
|
|
||||||
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
|
||||||
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
|
||||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
|
||||||
"Language: English\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#: lang.kv:8
|
|
||||||
msgid "Hello World"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lang.kv:17
|
|
||||||
msgid "French"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lang.kv:21
|
|
||||||
msgid "English"
|
|
||||||
msgstr ""
|
|
|
@ -1,29 +0,0 @@
|
||||||
# Example for an internationalized Kivy app
|
|
||||||
# Copyright (C) 2013 Mathieu Virbel
|
|
||||||
# This file is distributed under the same license as the Kivy package.
|
|
||||||
# Mathieu Virbel <mat@kivy.org>, 2013
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: 1.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2013-08-01 15:36+0200\n"
|
|
||||||
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
|
||||||
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
|
||||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
|
||||||
"Language: Francais\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#: lang.kv:8
|
|
||||||
msgid "Hello World"
|
|
||||||
msgstr "Bonjour tout le monde"
|
|
||||||
|
|
||||||
#: lang.kv:17
|
|
||||||
msgid "French"
|
|
||||||
msgstr "Francais"
|
|
||||||
|
|
||||||
#: lang.kv:21
|
|
||||||
msgid "English"
|
|
||||||
msgstr "Anglais"
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
367
src/bitmessagekivy/translations/po/bitmessage_ar.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_ar.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_cs.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_cs.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_da.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_da.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_de.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_de.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_en.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_en.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_eo.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_eo.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_fr.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_fr.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_it.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_it.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_ja.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_ja.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_nl.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_nl.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_no.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_no.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_pl.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_pl.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_pt.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_pt.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_ru.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_ru.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_sk.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_sk.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: English\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
367
src/bitmessagekivy/translations/po/bitmessage_zh.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_zh.po
Normal file
|
@ -0,0 +1,367 @@
|
||||||
|
# Example for an internationalized Kivy app
|
||||||
|
# Copyright (C) 2013 Mathieu Virbel
|
||||||
|
# This file is distributed under the same license as the Kivy package.
|
||||||
|
# Mathieu Virbel <mat@kivy.org>, 2013
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2020-08-29 21:29+0530\n"
|
||||||
|
"PO-Revision-Date: 2013-08-01 15:36+0200\n"
|
||||||
|
"Last-Translator: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language-Team: Mathieu Virbel <mat@kivy.org>\n"
|
||||||
|
"Language: Chinese\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103
|
||||||
|
msgid "Accounts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131
|
||||||
|
msgid "Inbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140
|
||||||
|
msgid "Sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154
|
||||||
|
msgid "Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161
|
||||||
|
msgid "All Mails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176
|
||||||
|
msgid "All labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178
|
||||||
|
msgid "Address Book"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190
|
||||||
|
msgid "Purchase"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202
|
||||||
|
msgid "New address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209
|
||||||
|
msgid "Network status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215
|
||||||
|
msgid "My addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8
|
||||||
|
msgid "User Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30
|
||||||
|
msgid "Start-on-login not yet supported on your OS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47
|
||||||
|
msgid "Tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61
|
||||||
|
msgid "Start Bitmessage in the tray(don't show main window)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75
|
||||||
|
msgid "Minimize to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89
|
||||||
|
msgid "Close to tray"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107
|
||||||
|
msgid "Hide connection notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121
|
||||||
|
msgid "Show notification when message received"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135
|
||||||
|
msgid "Run in Portable Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143
|
||||||
|
msgid ""
|
||||||
|
"In portable Mode, messages and config files are stored in the same directory "
|
||||||
|
"as the program rather then the normal application-data folder. This makes it "
|
||||||
|
"convenient to run Bitmessage from a USB thumb drive."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160
|
||||||
|
msgid ""
|
||||||
|
"Willingly include unencrypted destination address when sending to a mobile "
|
||||||
|
"device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174
|
||||||
|
msgid "Use identicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187
|
||||||
|
msgid "Reply below Quote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203
|
||||||
|
msgid "Interface Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247
|
||||||
|
msgid "Listening port"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258
|
||||||
|
msgid "Listen for connections on port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265
|
||||||
|
msgid "8444"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280
|
||||||
|
msgid "UPnP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288
|
||||||
|
msgid "Proxy server / Tor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318
|
||||||
|
msgid "Server hostname:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323
|
||||||
|
msgid "localhost"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330
|
||||||
|
msgid "Port:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343
|
||||||
|
msgid "9050"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351
|
||||||
|
msgid "Username:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362
|
||||||
|
msgid "Pass:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395
|
||||||
|
msgid "Listen for incoming connections when using proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410
|
||||||
|
msgid "Only connect to onion services(*.onion)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418
|
||||||
|
msgid "Bandwidth limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429
|
||||||
|
msgid "Maximum download rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445
|
||||||
|
msgid "Maximum upload rate (kB/s):[0:unlimited]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461
|
||||||
|
msgid "Maximum outbound connections:[0:none]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505
|
||||||
|
msgid "Leave these input fields blank for the default behavior."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517
|
||||||
|
msgid "Give up after"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528
|
||||||
|
msgid "days and"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145
|
||||||
|
msgid "Send message from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156
|
||||||
|
msgid "Show QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192
|
||||||
|
msgid ""
|
||||||
|
"Bitmessage isn't connected to the network.\n"
|
||||||
|
" If you quit now, it may cause delivery delays.\n"
|
||||||
|
" Wait until connected and the synchronisation finishes?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251
|
||||||
|
msgid "From :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265
|
||||||
|
msgid "[b]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291
|
||||||
|
msgid "Date : "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31
|
||||||
|
msgid "to "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17
|
||||||
|
msgid "My Addresses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54
|
||||||
|
msgid "type, select or scan QR code for recipients address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8
|
||||||
|
msgid "Total connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16
|
||||||
|
msgid "Total Connections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35
|
||||||
|
msgid "Processes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43
|
||||||
|
msgid "person-to-person"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62
|
||||||
|
msgid "Brodcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81
|
||||||
|
msgid "publickeys"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100
|
||||||
|
msgid "objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31
|
||||||
|
msgid "Select method to make an address:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57
|
||||||
|
msgid "Random Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77
|
||||||
|
msgid "Pseudo Number Generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188
|
||||||
|
msgid "Proceed Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163
|
||||||
|
msgid "Enter a label to generate address for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10
|
||||||
|
msgid "Available Credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27
|
||||||
|
msgid "+Add more credits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40
|
||||||
|
msgid "Send"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14
|
||||||
|
msgid "Chats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26
|
||||||
|
msgid "No Chat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50
|
||||||
|
msgid "Contacts"
|
||||||
|
msgstr ""
|
|
@ -53,7 +53,6 @@ sys.path.insert(0, app_dir)
|
||||||
depends.check_dependencies()
|
depends.check_dependencies()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def _fixSocket():
|
def _fixSocket():
|
||||||
if sys.platform.startswith('linux'):
|
if sys.platform.startswith('linux'):
|
||||||
socket.SO_BINDTODEVICE = 25
|
socket.SO_BINDTODEVICE = 25
|
||||||
|
|
|
@ -126,11 +126,13 @@ class BMConfigParser(configparser.ConfigParser):
|
||||||
def addresses(self, hidden=False):
|
def addresses(self, hidden=False):
|
||||||
|
|
||||||
"""Return a list of local bitmessage addresses (from section labels)"""
|
"""Return a list of local bitmessage addresses (from section labels)"""
|
||||||
return [x for x in BMConfigParser().sections() if x.startswith('BM-') and (hidden or not BMConfigParser().safeGetBoolean(x, 'hidden'))]
|
return [x for x in BMConfigParser().sections() if x.startswith('BM-') and (
|
||||||
|
hidden or not BMConfigParser().safeGetBoolean(x, 'hidden'))]
|
||||||
|
|
||||||
def paymentaddress(self):
|
def paymentaddress(self):
|
||||||
"""Return a list of local payment addresses (from section labels)"""
|
"""Return a list of local payment addresses (from section labels)"""
|
||||||
return ''.join([x for x in BMConfigParser().sections() if x.startswith('BM-') and BMConfigParser().safeGetBoolean(x, 'payment')])
|
return ''.join([x for x in BMConfigParser().sections() if x.startswith(
|
||||||
|
'BM-') and BMConfigParser().safeGetBoolean(x, 'payment')])
|
||||||
|
|
||||||
def read(self, filenames):
|
def read(self, filenames):
|
||||||
configparser.ConfigParser.read(self, filenames)
|
configparser.ConfigParser.read(self, filenames)
|
||||||
|
|
|
@ -42,7 +42,7 @@ requirements =
|
||||||
openssl,
|
openssl,
|
||||||
sqlite3,
|
sqlite3,
|
||||||
kivy,
|
kivy,
|
||||||
pyjnius,
|
pyjnius==1.2.1,
|
||||||
libiconv,
|
libiconv,
|
||||||
libzbar,
|
libzbar,
|
||||||
pillow,
|
pillow,
|
||||||
|
|
|
@ -79,7 +79,6 @@ def search_sql(
|
||||||
return sqlQuery(sqlStatementBase, sqlArguments)
|
return sqlQuery(sqlStatementBase, sqlArguments)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def check_match(
|
def check_match(
|
||||||
toAddress, fromAddress, subject, message, where=None, what=None):
|
toAddress, fromAddress, subject, message, where=None, what=None):
|
||||||
"""
|
"""
|
||||||
|
|
Reference in New Issue
Block a user