remove internationalization, identiconGeneration and bitmsghash
parent
410924aa00
commit
81eb365e97
@ -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
|
@ -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
|
||||
)
|
@ -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 ""
|
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:"< |