remove internationalization, identiconGeneration and bitmsghash
This commit is contained in:
parent
410924aa00
commit
81eb365e97
34
kivy-requirements.txt
Normal file
34
kivy-requirements.txt
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
certifi==2020.12.5
|
||||||
|
chardet==4.0.0
|
||||||
|
cheroot==8.5.2
|
||||||
|
CherryPy==18.6.0
|
||||||
|
docutils==0.16
|
||||||
|
idna==2.10
|
||||||
|
jaraco.classes==3.2.1
|
||||||
|
jaraco.collections==3.2.0
|
||||||
|
jaraco.functools==3.2.1
|
||||||
|
jaraco.text==3.5.0
|
||||||
|
json-rpc==1.13.0
|
||||||
|
Kivy==2.0.0
|
||||||
|
Kivy-Garden==0.1.4
|
||||||
|
kivy-garden.qrcode==2021.314
|
||||||
|
-e git+https://github.com/kivymd/KivyMD#egg=kivymd
|
||||||
|
Mako==1.1.4
|
||||||
|
MarkupSafe==1.1.1
|
||||||
|
more-itertools==8.7.0
|
||||||
|
numpy==1.20.1
|
||||||
|
opencv-python==4.5.1.48
|
||||||
|
Pillow==8.1.2
|
||||||
|
portend==2.7.1
|
||||||
|
Pygments==2.8.1
|
||||||
|
pytz==2021.1
|
||||||
|
pyzbar==0.1.8
|
||||||
|
qrcode==6.1
|
||||||
|
requests==2.25.1
|
||||||
|
six==1.15.0
|
||||||
|
telenium==0.5.0
|
||||||
|
tempora==4.0.1
|
||||||
|
urllib3==1.26.4
|
||||||
|
Werkzeug==1.0.1
|
||||||
|
ws4py==0.5.1
|
||||||
|
zc.lockfile==2.0
|
|
@ -1,14 +0,0 @@
|
||||||
certifi==2020.12.5
|
|
||||||
chardet==4.0.0
|
|
||||||
docutils==0.16
|
|
||||||
idna==2.10
|
|
||||||
Kivy==2.0.0
|
|
||||||
Kivy-Garden==0.1.4
|
|
||||||
-e git+https://github.com/navjotcis/KivyMD#egg=kivymd
|
|
||||||
numpy==1.20.1
|
|
||||||
opencv-python==4.5.1.48
|
|
||||||
Pillow==8.1.2
|
|
||||||
Pygments==2.8.1
|
|
||||||
pyzbar==0.1.8
|
|
||||||
requests==2.25.1
|
|
||||||
urllib3==1.26.4
|
|
|
@ -1,12 +0,0 @@
|
||||||
.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
|
|
|
@ -1,50 +0,0 @@
|
||||||
from pythonforandroid.toolchain import Recipe, shprint, shutil, current_directory
|
|
||||||
from os.path import exists, join
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
from multiprocessing import cpu_count
|
|
||||||
import sh
|
|
||||||
|
|
||||||
|
|
||||||
class BitmsghashRecipe(Recipe):
|
|
||||||
# This could also inherit from PythonRecipe etc. if you want to
|
|
||||||
# use their pre-written build processes
|
|
||||||
|
|
||||||
url = 'https://github.com/surbhicis/bitmsghash/archive/master.zip'
|
|
||||||
# {version} will be replaced with self.version when downloading
|
|
||||||
|
|
||||||
depends = ['openssl']
|
|
||||||
|
|
||||||
conflicts = []
|
|
||||||
|
|
||||||
def get_recipe_env(self, arch=None):
|
|
||||||
env = super(BitmsghashRecipe, self).get_recipe_env(arch)
|
|
||||||
r = Recipe.get_recipe('openssl', self.ctx)
|
|
||||||
b = r.get_build_dir(arch.arch)
|
|
||||||
env['CCFLAGS'] = env['CFLAGS'] = \
|
|
||||||
env['CFLAGS'] + ' -I{openssl_build_path}/include ' \
|
|
||||||
'-I{openssl_build_path}/include/openssl'.format(
|
|
||||||
openssl_build_path=b)
|
|
||||||
env['LDFLAGS'] = \
|
|
||||||
env['LDFLAGS'] + ' -L{openssl_build_path} ' \
|
|
||||||
'-lcrypto{openssl_version} ' \
|
|
||||||
'-lssl{openssl_version}'.format(
|
|
||||||
openssl_build_path=b,
|
|
||||||
openssl_version=r.version)
|
|
||||||
return env
|
|
||||||
|
|
||||||
def should_build(self, arch=None):
|
|
||||||
super(BitmsghashRecipe, self).should_build(arch)
|
|
||||||
return not exists(
|
|
||||||
join(self.ctx.get_libs_dir(arch.arch), 'libbitmsghash.so'))
|
|
||||||
|
|
||||||
def build_arch(self, arch=None):
|
|
||||||
super(BitmsghashRecipe, self).build_arch(arch)
|
|
||||||
env = self.get_recipe_env(arch)
|
|
||||||
with current_directory(join(self.get_build_dir(arch.arch))):
|
|
||||||
dst_dir = join(self.get_build_dir(arch.arch))
|
|
||||||
shprint(sh.make, '-j', str(cpu_count()), _env=env)
|
|
||||||
self.install_libs(arch, '{}/libbitmsghash.so'.format(dst_dir),
|
|
||||||
'libbitmsghash.so')
|
|
||||||
|
|
||||||
recipe = BitmsghashRecipe()
|
|
|
@ -1,81 +0,0 @@
|
||||||
"""
|
|
||||||
Core classes for loading images and converting them to a Texture.
|
|
||||||
The raw image data can be keep in memory for further access
|
|
||||||
"""
|
|
||||||
import hashlib
|
|
||||||
from io import BytesIO
|
|
||||||
|
|
||||||
from PIL import Image
|
|
||||||
from kivy.core.image import Image as CoreImage
|
|
||||||
from kivy.uix.image import Image as kiImage
|
|
||||||
# pylint: disable=import-error
|
|
||||||
|
|
||||||
|
|
||||||
# constants
|
|
||||||
RESOLUTION = 300, 300
|
|
||||||
V_RESOLUTION = 7, 7
|
|
||||||
BACKGROUND_COLOR = 255, 255, 255, 255
|
|
||||||
MODE = "RGB"
|
|
||||||
|
|
||||||
|
|
||||||
def generate(Generate_string=None):
|
|
||||||
"""Generating string"""
|
|
||||||
hash_string = generate_hash(Generate_string)
|
|
||||||
color = random_color(hash_string)
|
|
||||||
image = Image.new(MODE, V_RESOLUTION, BACKGROUND_COLOR)
|
|
||||||
image = generate_image(image, color, hash_string)
|
|
||||||
image = image.resize(RESOLUTION, 0)
|
|
||||||
data = BytesIO()
|
|
||||||
image.save(data, format='png')
|
|
||||||
data.seek(0)
|
|
||||||
# yes you actually need this
|
|
||||||
im = CoreImage(BytesIO(data.read()), ext='png')
|
|
||||||
beeld = kiImage()
|
|
||||||
# only use this line in first code instance
|
|
||||||
beeld.texture = im.texture
|
|
||||||
return beeld
|
|
||||||
# image.show()
|
|
||||||
|
|
||||||
|
|
||||||
def generate_hash(string):
|
|
||||||
"""Generating hash"""
|
|
||||||
try:
|
|
||||||
# make input case insensitive
|
|
||||||
string = str.lower(string)
|
|
||||||
hash_object = hashlib.md5(str.encode(string))
|
|
||||||
print(hash_object.hexdigest())
|
|
||||||
# returned object is a hex string
|
|
||||||
return hash_object.hexdigest()
|
|
||||||
except IndexError:
|
|
||||||
print("Error: Please enter a string as an argument.")
|
|
||||||
|
|
||||||
|
|
||||||
def random_color(hash_string):
|
|
||||||
"""Getting random color"""
|
|
||||||
# remove first three digits from hex string
|
|
||||||
split = 6
|
|
||||||
rgb = hash_string[:split]
|
|
||||||
split = 2
|
|
||||||
r = rgb[:split]
|
|
||||||
g = rgb[split:2 * split]
|
|
||||||
b = rgb[2 * split:3 * split]
|
|
||||||
color = (int(r, 16), int(g, 16), int(b, 16), 0xFF)
|
|
||||||
return color
|
|
||||||
|
|
||||||
|
|
||||||
def generate_image(image, color, hash_string):
|
|
||||||
"""Generating images"""
|
|
||||||
hash_string = hash_string[6:]
|
|
||||||
lower_x = 1
|
|
||||||
lower_y = 1
|
|
||||||
upper_x = int(V_RESOLUTION[0] / 2) + 1
|
|
||||||
upper_y = V_RESOLUTION[1] - 1
|
|
||||||
limit_x = V_RESOLUTION[0] - 1
|
|
||||||
index = 0
|
|
||||||
for x in range(lower_x, upper_x):
|
|
||||||
for y in range(lower_y, upper_y):
|
|
||||||
if int(hash_string[index], 16) % 2 == 0:
|
|
||||||
image.putpixel((x, y), color)
|
|
||||||
image.putpixel((limit_x - x, y), color)
|
|
||||||
index = index + 1
|
|
||||||
return image
|
|
|
@ -208,20 +208,17 @@
|
||||||
text: "System Setting"
|
text: "System Setting"
|
||||||
# pos_hint: {"center_x": .5, "center_y": .6}
|
# pos_hint: {"center_x": .5, "center_y": .6}
|
||||||
# current_item: "Item 0"
|
# current_item: "Item 0"
|
||||||
on_release: root.menu.open()
|
# on_release: root.menu.open()
|
||||||
BoxLayout:
|
BoxLayout:
|
||||||
spacing:5
|
spacing:5
|
||||||
orientation: 'horizontal'
|
orientation: 'horizontal'
|
||||||
# pos_hint: {'x':.76}
|
# pos_hint: {'x':.76}
|
||||||
BoxLayout:
|
BoxLayout:
|
||||||
orientation: 'horizontal'
|
orientation: 'horizontal'
|
||||||
# padding: [0, 10, 0, 0]
|
|
||||||
spacing: 10
|
spacing: 10
|
||||||
# MDRaisedButton:
|
|
||||||
# text: app.tr._('Cancel')
|
|
||||||
MDRaisedButton:
|
MDRaisedButton:
|
||||||
text: app.tr._('Apply')
|
text: app.tr._('Apply')
|
||||||
on_press: root.change_language()
|
# on_press: root.change_language()
|
||||||
Tab:
|
Tab:
|
||||||
text: 'Network Settings'
|
text: 'Network Settings'
|
||||||
ScrollView:
|
ScrollView:
|
||||||
|
|
|
@ -1,94 +0,0 @@
|
||||||
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
|
|
||||||
)
|
|
|
@ -89,8 +89,8 @@
|
||||||
# md_bg_color: app.theme_cls.primary_color
|
# md_bg_color: app.theme_cls.primary_color
|
||||||
theme_text_color: "Custom"
|
theme_text_color: "Custom"
|
||||||
text_color: app.theme_cls.primary_color
|
text_color: app.theme_cls.primary_color
|
||||||
opacity: 1 if app.current_address_label() else 0
|
opacity: 0
|
||||||
disabled: False if app.current_address_label() else True
|
disabled: True
|
||||||
|
|
||||||
BoxLayout:
|
BoxLayout:
|
||||||
id: top_box
|
id: top_box
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
x: root.parent.x
|
x: root.parent.x
|
||||||
pos_hint: {"top": 1}
|
pos_hint: {"top": 1}
|
||||||
Image:
|
Image:
|
||||||
# source: './images/drawer_logo1.png'
|
source: './images/drawer_logo1.png'
|
||||||
# source: app.get_default_logo()
|
# source: app.get_default_logo()
|
||||||
|
|
||||||
ScrollView:
|
ScrollView:
|
||||||
|
|
|
@ -1,368 +0,0 @@
|
||||||
# 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 ""
|
|
|
@ -13,7 +13,7 @@ Bitmessage android(mobile) interface
|
||||||
from bitmessagekivy.get_platform import platform
|
from bitmessagekivy.get_platform import platform
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
from bitmessagekivy import identiconGeneration
|
# from bitmessagekivy import identiconGeneration
|
||||||
from bitmessagekivy import kivy_helper_search
|
from bitmessagekivy import kivy_helper_search
|
||||||
from bitmessagekivy.uikivysignaler import UIkivySignaler
|
from bitmessagekivy.uikivysignaler import UIkivySignaler
|
||||||
from bmconfigparser import BMConfigParser
|
from bmconfigparser import BMConfigParser
|
||||||
|
@ -201,7 +201,8 @@ class Lang(Observable):
|
||||||
self.switch_lang(self.lang)
|
self.switch_lang(self.lang)
|
||||||
|
|
||||||
def _(self, text):
|
def _(self, text):
|
||||||
return self.ugettext(text)
|
# return self.ugettext(text)
|
||||||
|
return text
|
||||||
|
|
||||||
def fbind(self, name, func, args, **kwargs):
|
def fbind(self, name, func, args, **kwargs):
|
||||||
if name == "_":
|
if name == "_":
|
||||||
|
@ -219,9 +220,9 @@ 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__), 'translations', 'mo', '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
|
||||||
|
|
||||||
# update all the kv rules attached to this text
|
# update all the kv rules attached to this text
|
||||||
for func, largs, kwargs in self.observers:
|
for func, largs, kwargs in self.observers:
|
||||||
|
@ -1809,87 +1810,87 @@ 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 = {
|
# languages = {
|
||||||
'ar': 'Arabic',
|
# 'ar': 'Arabic',
|
||||||
'cs': 'Czech',
|
# 'cs': 'Czech',
|
||||||
'da': 'Danish',
|
# 'da': 'Danish',
|
||||||
'de': 'German',
|
# 'de': 'German',
|
||||||
'en': 'English',
|
# 'en': 'English',
|
||||||
'eo': 'Esperanto',
|
# 'eo': 'Esperanto',
|
||||||
'fr': 'French',
|
# 'fr': 'French',
|
||||||
'it': 'Italian',
|
# 'it': 'Italian',
|
||||||
'ja': 'Japanese',
|
# 'ja': 'Japanese',
|
||||||
'nl': 'Dutch',
|
# 'nl': 'Dutch',
|
||||||
'no': 'Norwegian',
|
# 'no': 'Norwegian',
|
||||||
'pl': 'Polish',
|
# 'pl': 'Polish',
|
||||||
'pt': 'Portuguese',
|
# 'pt': 'Portuguese',
|
||||||
'ru': 'Russian',
|
# 'ru': 'Russian',
|
||||||
'sk': 'Slovak',
|
# 'sk': 'Slovak',
|
||||||
'zh': 'Chinese',
|
# 'zh': 'Chinese',
|
||||||
}
|
# }
|
||||||
newlocale = None
|
# 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:
|
# if self.newlocale is None:
|
||||||
self.newlocale = l10n.getTranslationLanguage()
|
# self.newlocale = l10n.getTranslationLanguage()
|
||||||
lang = locale.normalize(l10n.getTranslationLanguage())
|
# lang = locale.normalize(l10n.getTranslationLanguage())
|
||||||
langs = [
|
# langs = [
|
||||||
lang.split(".")[0] + "." + l10n.encoding,
|
# lang.split(".")[0] + "." + l10n.encoding,
|
||||||
lang.split(".")[0] + "." + 'UTF-8',
|
# lang.split(".")[0] + "." + 'UTF-8',
|
||||||
lang
|
# lang
|
||||||
]
|
# ]
|
||||||
if 'win32' in platform or 'win64' in platform:
|
# if 'win32' in platform or 'win64' in platform:
|
||||||
langs = [l10n.getWindowsLocale(lang)]
|
# langs = [l10n.getWindowsLocale(lang)]
|
||||||
for lang in langs:
|
# for lang in langs:
|
||||||
try:
|
# try:
|
||||||
l10n.setlocale(locale.LC_ALL, lang)
|
# l10n.setlocale(locale.LC_ALL, lang)
|
||||||
if 'win32' not in platform and 'win64' not in platform:
|
# if 'win32' not in platform and 'win64' not in platform:
|
||||||
l10n.encoding = locale.nl_langinfo(locale.CODESET)
|
# l10n.encoding = locale.nl_langinfo(locale.CODESET)
|
||||||
else:
|
# else:
|
||||||
l10n.encoding = locale.getlocale()[1]
|
# l10n.encoding = locale.getlocale()[1]
|
||||||
logger.info("Successfully set locale to %s", lang)
|
# logger.info("Successfully set locale to %s", lang)
|
||||||
break
|
# break
|
||||||
except:
|
# except:
|
||||||
logger.error("Failed to set locale to %s", lang, exc_info=True)
|
# 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):
|
||||||
"""Initialization for Ui"""
|
# """Initialization for Ui"""
|
||||||
if self.newlocale is None:
|
# if self.newlocale is None:
|
||||||
self.newlocale = l10n.getTranslationLanguage()
|
# self.newlocale = l10n.getTranslationLanguage()
|
||||||
# state.kivyapp.tr = Lang(self.newlocale)
|
# # state.kivyapp.tr = Lang(self.newlocale)
|
||||||
state.kivyapp.tr = Lang(self.newlocale)
|
# state.kivyapp.tr = Lang(self.newlocale)
|
||||||
menu_items = [{"text": f"{i}"} for i in self.languages.values()]
|
# menu_items = [{"text": f"{i}"} for i in self.languages.values()]
|
||||||
self.menu = MDDropdownMenu(
|
# self.menu = MDDropdownMenu(
|
||||||
caller=self.ids.dropdown_item,
|
# caller=self.ids.dropdown_item,
|
||||||
items=menu_items,
|
# items=menu_items,
|
||||||
position="auto",
|
# position="auto",
|
||||||
width_mult=3.5,
|
# width_mult=3.5,
|
||||||
)
|
# )
|
||||||
self.menu.bind(on_release=self.set_item)
|
# self.menu.bind(on_release=self.set_item)
|
||||||
|
|
||||||
def set_item(self, instance_menu, instance_menu_item):
|
# def set_item(self, instance_menu, instance_menu_item):
|
||||||
# import pdb;pdb.set_trace()
|
# # import pdb;pdb.set_trace()
|
||||||
self.ids.dropdown_item.set_item(instance_menu_item.text)
|
# self.ids.dropdown_item.set_item(instance_menu_item.text)
|
||||||
instance_menu.dismiss()
|
# instance_menu.dismiss()
|
||||||
|
|
||||||
def change_language(self):
|
# def change_language(self):
|
||||||
lang = self.ids.dropdown_item.current_item
|
# lang = self.ids.dropdown_item.current_item
|
||||||
for k, v in self.languages.items():
|
# for k, v in self.languages.items():
|
||||||
if v == lang:
|
# if v == lang:
|
||||||
BMConfigParser().set('bitmessagesettings', 'userlocale', k)
|
# BMConfigParser().set('bitmessagesettings', 'userlocale', k)
|
||||||
BMConfigParser().save()
|
# BMConfigParser().save()
|
||||||
state.kivyapp.tr = Lang(k)
|
# state.kivyapp.tr = Lang(k)
|
||||||
self.children[0].active = True
|
# self.children[0].active = True
|
||||||
Clock.schedule_once(partial(self.language_callback, k), 1)
|
# Clock.schedule_once(partial(self.language_callback, k), 1)
|
||||||
|
|
||||||
def language_callback(self, lang, dt=0):
|
# def language_callback(self, lang, dt=0):
|
||||||
self.children[0].active = False
|
# self.children[0].active = False
|
||||||
state.kivyapp.tr = Lang(lang)
|
# state.kivyapp.tr = Lang(lang)
|
||||||
toast('Language changed')
|
# toast('Language changed')
|
||||||
|
|
||||||
|
|
||||||
class NavigateApp(MDApp):
|
class NavigateApp(MDApp):
|
||||||
|
@ -1954,7 +1955,7 @@ class NavigateApp(MDApp):
|
||||||
if os.path.exists(state.imageDir + '/default_identicon/{}.png'.format(text)):
|
if os.path.exists(state.imageDir + '/default_identicon/{}.png'.format(text)):
|
||||||
self.load_selected_Image(text)
|
self.load_selected_Image(text)
|
||||||
else:
|
else:
|
||||||
self.set_identicon(text)
|
# self.set_identicon(text)
|
||||||
self.root.ids.content_drawer.ids.reset_image.opacity = 0
|
self.root.ids.content_drawer.ids.reset_image.opacity = 0
|
||||||
self.root.ids.content_drawer.ids.reset_image.disabled = True
|
self.root.ids.content_drawer.ids.reset_image.disabled = True
|
||||||
address_label = self.current_address_label(
|
address_label = self.current_address_label(
|
||||||
|
@ -1975,8 +1976,8 @@ class NavigateApp(MDApp):
|
||||||
"""This method is for file manager setting"""
|
"""This method is for file manager setting"""
|
||||||
if not self.root.ids.content_drawer.ids.file_manager.opacity and \
|
if not self.root.ids.content_drawer.ids.file_manager.opacity and \
|
||||||
self.root.ids.content_drawer.ids.file_manager.disabled:
|
self.root.ids.content_drawer.ids.file_manager.disabled:
|
||||||
self.root.ids.content_drawer.ids.file_manager.opacity = 1
|
self.root.ids.content_drawer.ids.file_manager.opacity = 0
|
||||||
self.root.ids.content_drawer.ids.file_manager.disabled = False
|
self.root.ids.content_drawer.ids.file_manager.disabled = True
|
||||||
|
|
||||||
def setCurrentAccountData(self, dt=0):
|
def setCurrentAccountData(self, dt=0):
|
||||||
"""This method set the current accout data on all the screens"""
|
"""This method set the current accout data on all the screens"""
|
||||||
|
@ -2101,7 +2102,7 @@ class NavigateApp(MDApp):
|
||||||
if BMConfigParser().addresses():
|
if BMConfigParser().addresses():
|
||||||
first_addr = BMConfigParser().addresses()[0]
|
first_addr = BMConfigParser().addresses()[0]
|
||||||
if BMConfigParser().get(str(first_addr), 'enabled') == 'true':
|
if BMConfigParser().get(str(first_addr), 'enabled') == 'true':
|
||||||
img = identiconGeneration.generate(first_addr)
|
# img = identiconGeneration.generate(first_addr)
|
||||||
# self.createFolder(state.imageDir + '/default_identicon/')
|
# self.createFolder(state.imageDir + '/default_identicon/')
|
||||||
# if platform == 'android':
|
# if platform == 'android':
|
||||||
# # android_path = os.path.expanduser
|
# # android_path = os.path.expanduser
|
||||||
|
@ -2117,11 +2118,11 @@ class NavigateApp(MDApp):
|
||||||
# BMConfigParser().addresses()[0])):
|
# BMConfigParser().addresses()[0])):
|
||||||
# img.texture.save(state.imageDir + '/default_identicon/{}.png'.format(
|
# img.texture.save(state.imageDir + '/default_identicon/{}.png'.format(
|
||||||
# BMConfigParser().addresses()[0]))
|
# BMConfigParser().addresses()[0]))
|
||||||
instance.parent.parent.parent.parent.parent.ids.top_box.children[0].texture = (
|
# instance.parent.parent.parent.parent.parent.ids.top_box.children[0].texture = (
|
||||||
img.texture)
|
# img.texture)
|
||||||
return first_addr
|
return first_addr
|
||||||
instance.parent.parent.parent.parent.parent.ids.top_box.children[0].source = (
|
# instance.parent.parent.parent.parent.parent.ids.top_box.children[0].source = (
|
||||||
state.imageDir + '/drawer_logo1.png')
|
# state.imageDir + '/drawer_logo1.png')
|
||||||
return 'Select Address'
|
return 'Select Address'
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
@ -2449,10 +2450,10 @@ class NavigateApp(MDApp):
|
||||||
|
|
||||||
def set_identicon(self, text):
|
def set_identicon(self, text):
|
||||||
"""Show identicon in address spinner"""
|
"""Show identicon in address spinner"""
|
||||||
img = identiconGeneration.generate(text)
|
# img = identiconGeneration.generate(text)
|
||||||
# self.root.children[0].children[0].ids.btn.children[1].texture = (img.texture)
|
# self.root.children[0].children[0].ids.btn.children[1].texture = (img.texture)
|
||||||
# below line is for displaing logo
|
# below line is for displaing logo
|
||||||
self.root.ids.content_drawer.ids.top_box.children[0].texture = (img.texture)
|
# self.root.ids.content_drawer.ids.top_box.children[0].texture = (img.texture)
|
||||||
|
|
||||||
def set_mail_detail_header(self):
|
def set_mail_detail_header(self):
|
||||||
"""Setting the details of the page"""
|
"""Setting the details of the page"""
|
||||||
|
@ -2581,7 +2582,7 @@ class NavigateApp(MDApp):
|
||||||
|
|
||||||
def rest_default_avatar_img(self):
|
def rest_default_avatar_img(self):
|
||||||
"""set default avatar generated image"""
|
"""set default avatar generated image"""
|
||||||
self.set_identicon(state.association)
|
# self.set_identicon(state.association)
|
||||||
img_path = state.imageDir + '/default_identicon/{}.png'.format(state.association)
|
img_path = state.imageDir + '/default_identicon/{}.png'.format(state.association)
|
||||||
try:
|
try:
|
||||||
if os.path.exists(img_path):
|
if os.path.exists(img_path):
|
||||||
|
|
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.
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
|
@ -1,367 +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: 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 ""
|
|
Loading…
Reference in New Issue
Block a user