mirror of https://gitlab.com/bashrc2/epicyon
Fix translations
parent
3fada70f42
commit
c236317a49
|
@ -531,28 +531,28 @@ def _desktop_reply_to_post(session, post_id: str,
|
|||
say_str = 'Replying to ' + to_nickname + '@' + to_domain
|
||||
_say_command(say_str, say_str,
|
||||
screenreader, system_language, espeak)
|
||||
say_str = 'Type your reply message, then press Enter.'
|
||||
say_str = translate['Type your reply message, then press Enter'] + '.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
reply_message = input()
|
||||
if not reply_message:
|
||||
say_str = 'No reply was entered.'
|
||||
say_str = translate['No reply was entered'] + '.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
reply_message = reply_message.strip()
|
||||
if not reply_message:
|
||||
say_str = 'No reply was entered.'
|
||||
say_str = translate['No reply was entered'] + '.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
print('')
|
||||
say_str = 'You entered this reply:'
|
||||
say_str = translate['You entered this reply'] + ':'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
_say_command(reply_message, reply_message, screenreader,
|
||||
system_language, espeak)
|
||||
say_str = 'Send this reply, yes or no?'
|
||||
say_str = translate['Send this reply, yes or no?']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
yesno = input()
|
||||
if 'y' not in yesno.lower():
|
||||
say_str = 'Abandoning reply'
|
||||
say_str = translate['Abandoning reply']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
cc_url = None
|
||||
|
@ -589,9 +589,9 @@ def _desktop_reply_to_post(session, post_id: str,
|
|||
translate, buy_url, chat_url, auto_cw_cache,
|
||||
debug, post_id, post_id,
|
||||
conversation_id, subject) == 0:
|
||||
say_str = 'Reply sent'
|
||||
say_str = translate['Sent']
|
||||
else:
|
||||
say_str = 'Reply failed'
|
||||
say_str = translate['Post failed']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
|
||||
|
||||
|
@ -610,30 +610,30 @@ def _desktop_new_post(session,
|
|||
"""Use the desktop client to create a new post
|
||||
"""
|
||||
conversation_id = None
|
||||
say_str = 'Create new post'
|
||||
say_str = translate['Create a new post']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
say_str = 'Type your post, then press Enter.'
|
||||
say_str = translate['Type your post, then press Enter'] + '.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
new_message = input()
|
||||
if not new_message:
|
||||
say_str = 'No post was entered.'
|
||||
say_str = translate['No post was entered'] + '.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
new_message = new_message.strip()
|
||||
if not new_message:
|
||||
say_str = 'No post was entered.'
|
||||
say_str = translate['No post was entered'] + '.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
print('')
|
||||
say_str = 'You entered this public post:'
|
||||
say_str = translate['You entered this public post'] + ':'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
_say_command(new_message, new_message,
|
||||
screenreader, system_language, espeak)
|
||||
say_str = 'Send this post, yes or no?'
|
||||
say_str = translate['Send this post, yes or no?']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
yesno = input()
|
||||
if 'y' not in yesno.lower():
|
||||
say_str = 'Abandoning new post'
|
||||
say_str = translate['Abandoning new post']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
cc_url = None
|
||||
|
@ -670,9 +670,9 @@ def _desktop_new_post(session,
|
|||
translate, buy_url, chat_url, auto_cw_cache,
|
||||
debug, None, None,
|
||||
conversation_id, subject) == 0:
|
||||
say_str = 'Post sent'
|
||||
say_str = translate['Sent']
|
||||
else:
|
||||
say_str = 'Post failed'
|
||||
say_str = translate['Post failed']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
|
||||
|
||||
|
@ -917,11 +917,11 @@ def _read_local_box_post(session, nickname: str, domain: str,
|
|||
content += ' ' + im_desc
|
||||
|
||||
if is_pgp_encrypted(content):
|
||||
say_str = 'Encrypted message. Please enter your passphrase.'
|
||||
say_str = translate['Encrypted message. Please enter your passphrase.']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
content = pgp_decrypt(domain, content, actor, signing_priv_key_pem)
|
||||
if is_pgp_encrypted(content):
|
||||
say_str = 'Message could not be decrypted'
|
||||
say_str = translate['Message could not be decrypted']
|
||||
_say_command(say_str, say_str,
|
||||
screenreader, system_language, espeak)
|
||||
return {}
|
||||
|
@ -941,7 +941,7 @@ def _read_local_box_post(session, nickname: str, domain: str,
|
|||
|
||||
reply_id = get_reply_to(post_json_object['object'])
|
||||
if reply_id:
|
||||
print('Replying to ' + reply_id + '\n')
|
||||
print(translate['replying to'].title() + ' ' + reply_id + '\n')
|
||||
|
||||
if screenreader:
|
||||
time.sleep(2)
|
||||
|
@ -978,7 +978,7 @@ def _desktop_show_actor(http_prefix: str,
|
|||
actor_domain_full = get_full_domain(actor_domain, actor_port)
|
||||
handle = '@' + actor_nickname + '@' + actor_domain_full
|
||||
|
||||
say_str = 'Profile for ' + html.unescape(handle)
|
||||
say_str = translate['Profile for'] + ' ' + html.unescape(handle)
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
print(actor)
|
||||
if actor_json.get('movedTo'):
|
||||
|
@ -993,7 +993,8 @@ def _desktop_show_actor(http_prefix: str,
|
|||
ctr += 1
|
||||
also_known_as_str += alt_actor
|
||||
|
||||
say_str = 'Also known as ' + html.unescape(also_known_as_str)
|
||||
say_str = translate['Other accounts'] + ' ' + \
|
||||
html.unescape(also_known_as_str)
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
if actor_json.get('summary'):
|
||||
say_str = html.unescape(remove_html(actor_json['summary']))
|
||||
|
@ -1388,21 +1389,22 @@ def _desktop_new_dm_base(session, to_handle: str,
|
|||
if not to_domain:
|
||||
return
|
||||
|
||||
say_str = 'Create new direct message to ' + to_handle
|
||||
say_str = translate['Create new direct message to'] + ' ' + to_handle
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
say_str = 'Type your direct message, then press Enter.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
new_message = input()
|
||||
if not new_message:
|
||||
say_str = 'No direct message was entered.'
|
||||
say_str = translate['No direct message was entered'] + '.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
new_message = new_message.strip()
|
||||
if not new_message:
|
||||
say_str = 'No direct message was entered.'
|
||||
say_str = translate['No direct message was entered'] + '.'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
say_str = 'You entered this direct message to ' + to_handle + ':'
|
||||
say_str = translate['You entered this direct message to'] + \
|
||||
' ' + to_handle + ':'
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
_say_command(new_message, new_message,
|
||||
screenreader, system_language, espeak)
|
||||
|
@ -1442,15 +1444,15 @@ def _desktop_new_dm_base(session, to_handle: str,
|
|||
screenreader, system_language, espeak)
|
||||
else:
|
||||
new_message = cipher_text
|
||||
say_str = 'Message encrypted'
|
||||
say_str = translate['Message encrypted']
|
||||
_say_command(say_str, say_str,
|
||||
screenreader, system_language, espeak)
|
||||
|
||||
say_str = 'Send this direct message, yes or no?'
|
||||
say_str = translate['Send this direct message, yes or no?']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
yesno = input()
|
||||
if 'y' not in yesno.lower():
|
||||
say_str = 'Abandoning new direct message'
|
||||
say_str = translate['Abandoning new direct message']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
return
|
||||
|
||||
|
@ -1480,9 +1482,9 @@ def _desktop_new_dm_base(session, to_handle: str,
|
|||
translate, buy_url, chat_url, auto_cw_cache,
|
||||
debug, None, None,
|
||||
conversation_id, subject) == 0:
|
||||
say_str = 'Direct message sent'
|
||||
say_str = translate['Sent']
|
||||
else:
|
||||
say_str = 'Direct message failed'
|
||||
say_str = translate['Post failed']
|
||||
_say_command(say_str, say_str, screenreader, system_language, espeak)
|
||||
|
||||
|
||||
|
@ -1498,7 +1500,7 @@ def _desktop_show_follow_requests(follow_requests_json: {},
|
|||
return
|
||||
indent = ' '
|
||||
print('')
|
||||
print(indent + 'Follow requests:')
|
||||
print(indent + translate['Approve follow requests'] + ':')
|
||||
print('')
|
||||
for item in follow_requests_json['orderedItems']:
|
||||
handle_nickname = get_nickname_from_actor(item)
|
||||
|
@ -1867,7 +1869,7 @@ def run_desktop_client(base_dir: str, proxy_type: str, http_prefix: str,
|
|||
blocked_cache, block_federated,
|
||||
bold_reading)
|
||||
print('')
|
||||
say_str = 'Press Enter to continue...'
|
||||
say_str = translate['Press Enter to continue'] + '...'
|
||||
say_str2 = _highlight_text(say_str)
|
||||
_say_command(say_str2, say_str,
|
||||
screenreader, system_language, espeak)
|
||||
|
@ -1909,7 +1911,7 @@ def run_desktop_client(base_dir: str, proxy_type: str, http_prefix: str,
|
|||
espeak, translate,
|
||||
signing_priv_key_pem,
|
||||
http_prefix)
|
||||
say_str = 'Press Enter to continue...'
|
||||
say_str = translate['Press Enter to continue'] + '...'
|
||||
say_str2 = _highlight_text(say_str)
|
||||
_say_command(say_str2, say_str,
|
||||
screenreader, system_language, espeak)
|
||||
|
@ -1931,7 +1933,7 @@ def run_desktop_client(base_dir: str, proxy_type: str, http_prefix: str,
|
|||
espeak, translate,
|
||||
None, signing_priv_key_pem,
|
||||
http_prefix)
|
||||
say_str = 'Press Enter to continue...'
|
||||
say_str = translate['Press Enter to continue'] + '...'
|
||||
say_str2 = _highlight_text(say_str)
|
||||
_say_command(say_str2, say_str,
|
||||
screenreader, system_language, espeak)
|
||||
|
@ -2792,7 +2794,7 @@ def run_desktop_client(base_dir: str, proxy_type: str, http_prefix: str,
|
|||
print('')
|
||||
elif command_str.startswith('h'):
|
||||
_desktop_help()
|
||||
say_str = 'Press Enter to continue...'
|
||||
say_str = translate['Press Enter to continue'] + '...'
|
||||
say_str2 = _highlight_text(say_str)
|
||||
_say_command(say_str2, say_str,
|
||||
screenreader, system_language, espeak)
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "إظهار المشاركات المقتبسة",
|
||||
"Link Trackers": "تعقب الارتباط",
|
||||
"Hide Announces": "إخفاء الإعلانات",
|
||||
"Show Announces": "عرض يعلن"
|
||||
"Show Announces": "عرض يعلن",
|
||||
"Type your post, then press Enter": "اكتب مشاركتك، ثم اضغط على Enter",
|
||||
"No post was entered": "لم يتم إدخال أي مشاركة",
|
||||
"You entered this public post": "لقد أدخلت هذه المشاركة العامة",
|
||||
"Send this post, yes or no?": "أرسل هذا المنشور، نعم أم لا؟",
|
||||
"Abandoning new post": "التخلي عن وظيفة جديدة",
|
||||
"Type your reply message, then press Enter": "اكتب رسالة الرد الخاصة بك، ثم اضغط على Enter",
|
||||
"No reply was entered": "لم يتم إدخال أي رد",
|
||||
"You entered this reply": "لقد أدخلت هذا الرد",
|
||||
"Send this reply, yes or no?": "أرسل هذا الرد نعم أم لا؟",
|
||||
"Abandoning reply": "ترك الرد",
|
||||
"Post failed": "فشل النشر",
|
||||
"Encrypted message. Please enter your passphrase.": "رسالة مشفرة. الرجاء إدخال عبارة المرور الخاصة بك.",
|
||||
"Message could not be decrypted": "لا يمكن فك تشفير الرسالة",
|
||||
"Create new direct message to": "إنشاء رسالة مباشرة جديدة إلى",
|
||||
"No direct message was entered": "لم يتم إدخال أي رسالة مباشرة",
|
||||
"You entered this direct message to": "لقد أدخلت هذه الرسالة المباشرة إلى",
|
||||
"Message encrypted": "رسالة مشفرة",
|
||||
"Send this direct message, yes or no?": "أرسل هذه الرسالة المباشرة، نعم أم لا؟",
|
||||
"Abandoning new direct message": "التخلي عن الرسالة المباشرة الجديدة",
|
||||
"Press Enter to continue": "إضغط مفتاح الدخول للاستمرار"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "উদ্ধৃত পোস্ট দেখান",
|
||||
"Link Trackers": "লিঙ্ক ট্র্যাকার",
|
||||
"Hide Announces": "ঘোষণা লুকান",
|
||||
"Show Announces": "ঘোষণা দেখান"
|
||||
"Show Announces": "ঘোষণা দেখান",
|
||||
"Type your post, then press Enter": "আপনার পোস্ট টাইপ করুন, তারপর এন্টার টিপুন",
|
||||
"No post was entered": "কোন পোস্ট প্রবেশ করানো হয়নি",
|
||||
"You entered this public post": "আপনি এই সর্বজনীন পোস্টে প্রবেশ করেছেন৷",
|
||||
"Send this post, yes or no?": "এই পোস্ট পাঠান, হ্যাঁ না না?",
|
||||
"Abandoning new post": "নতুন পোস্ট পরিত্যাগ করছি",
|
||||
"Type your reply message, then press Enter": "আপনার উত্তর বার্তা টাইপ করুন, তারপর এন্টার টিপুন",
|
||||
"No reply was entered": "কোন উত্তর প্রবেশ করা হয়নি",
|
||||
"You entered this reply": "আপনি এই উত্তর লিখুন",
|
||||
"Send this reply, yes or no?": "এই উত্তর পাঠান, হ্যাঁ বা না?",
|
||||
"Abandoning reply": "উত্তর ত্যাগ করা",
|
||||
"Post failed": "পোস্ট ব্যর্থ হয়েছে",
|
||||
"Encrypted message. Please enter your passphrase.": "এনক্রিপ্ট করা বার্তা। আপনার পাসফ্রেজ লিখুন.",
|
||||
"Message could not be decrypted": "বার্তা ডিক্রিপ্ট করা যায়নি",
|
||||
"Create new direct message to": "নতুন সরাসরি বার্তা তৈরি করুন",
|
||||
"No direct message was entered": "কোন সরাসরি বার্তা প্রবেশ করা হয়নি",
|
||||
"You entered this direct message to": "আপনি এই সরাসরি বার্তা প্রবেশ করান",
|
||||
"Message encrypted": "বার্তা এনক্রিপ্ট করা হয়েছে",
|
||||
"Send this direct message, yes or no?": "এই সরাসরি বার্তা পাঠান, হ্যাঁ বা না?",
|
||||
"Abandoning new direct message": "নতুন সরাসরি বার্তা পরিত্যাগ",
|
||||
"Press Enter to continue": "চালিয়ে যেতে এন্টার টিপুন"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Mostra les publicacions citades",
|
||||
"Link Trackers": "Seguidors d'enllaços",
|
||||
"Hide Announces": "Amaga els anuncis",
|
||||
"Show Announces": "Mostra Anuncia"
|
||||
"Show Announces": "Mostra Anuncia",
|
||||
"Type your post, then press Enter": "Escriviu la vostra publicació i, a continuació, premeu Intro",
|
||||
"No post was entered": "No s'ha introduït cap publicació",
|
||||
"You entered this public post": "Has introduït aquesta publicació pública",
|
||||
"Send this post, yes or no?": "Enviar aquesta publicació, sí o no?",
|
||||
"Abandoning new post": "S'està abandonant la nova publicació",
|
||||
"Type your reply message, then press Enter": "Escriviu el vostre missatge de resposta i, a continuació, premeu Intro",
|
||||
"No reply was entered": "No s'ha introduït cap resposta",
|
||||
"You entered this reply": "Heu introduït aquesta resposta",
|
||||
"Send this reply, yes or no?": "Enviar aquesta resposta, sí o no?",
|
||||
"Abandoning reply": "S'abandona la resposta",
|
||||
"Post failed": "La publicació ha fallat",
|
||||
"Encrypted message. Please enter your passphrase.": "Missatge xifrat. Introduïu la vostra frase de contrasenya.",
|
||||
"Message could not be decrypted": "No s'ha pogut desxifrar el missatge",
|
||||
"Create new direct message to": "Crea un missatge directe nou a",
|
||||
"No direct message was entered": "No s'ha introduït cap missatge directe",
|
||||
"You entered this direct message to": "Heu introduït aquest missatge directe a",
|
||||
"Message encrypted": "Missatge xifrat",
|
||||
"Send this direct message, yes or no?": "Enviar aquest missatge directe, sí o no?",
|
||||
"Abandoning new direct message": "S'abandona el nou missatge directe",
|
||||
"Press Enter to continue": "Premeu Intro per continuar"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Dangos postiadau a ddyfynnwyd",
|
||||
"Link Trackers": "Tracwyr Cyswllt",
|
||||
"Hide Announces": "Cuddio Cyhoeddiadau",
|
||||
"Show Announces": "Sioe yn Cyhoeddi"
|
||||
"Show Announces": "Sioe yn Cyhoeddi",
|
||||
"Type your post, then press Enter": "Teipiwch eich post, yna pwyswch Enter",
|
||||
"No post was entered": "Ni roddwyd unrhyw bost",
|
||||
"You entered this public post": "Rydych chi wedi rhoi'r postiad cyhoeddus hwn",
|
||||
"Send this post, yes or no?": "Anfon y post hwn, ie neu na?",
|
||||
"Abandoning new post": "Rhoi'r gorau i swydd newydd",
|
||||
"Type your reply message, then press Enter": "Teipiwch eich neges ateb, yna pwyswch Enter",
|
||||
"No reply was entered": "Ni roddwyd ateb",
|
||||
"You entered this reply": "Rydych chi wedi rhoi'r ateb hwn",
|
||||
"Send this reply, yes or no?": "Anfonwch yr ateb hwn, ie neu na?",
|
||||
"Abandoning reply": "Rhoi'r gorau i ateb",
|
||||
"Post failed": "Methodd y postiad",
|
||||
"Encrypted message. Please enter your passphrase.": "Neges wedi'i hamgryptio. Rhowch eich cyfrinair.",
|
||||
"Message could not be decrypted": "Nid oedd modd dadgryptio'r neges",
|
||||
"Create new direct message to": "Creu neges uniongyrchol newydd i",
|
||||
"No direct message was entered": "Ni roddwyd neges uniongyrchol",
|
||||
"You entered this direct message to": "Rydych chi wedi rhoi'r neges uniongyrchol hon i",
|
||||
"Message encrypted": "Neges wedi'i hamgryptio",
|
||||
"Send this direct message, yes or no?": "Anfonwch y neges uniongyrchol hon, ie neu na?",
|
||||
"Abandoning new direct message": "Rhoi'r gorau i neges uniongyrchol newydd",
|
||||
"Press Enter to continue": "Pwyswch Enter i barhau"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Zitierte Beiträge anzeigen",
|
||||
"Link Trackers": "Link-Tracker",
|
||||
"Hide Announces": "Ankündigungen ausblenden",
|
||||
"Show Announces": "Ankündigungen anzeigen"
|
||||
"Show Announces": "Ankündigungen anzeigen",
|
||||
"Type your post, then press Enter": "Geben Sie Ihren Beitrag ein und drücken Sie dann die Eingabetaste",
|
||||
"No post was entered": "Es wurde kein Beitrag eingegeben",
|
||||
"You entered this public post": "Sie haben diesen öffentlichen Beitrag eingegeben",
|
||||
"Send this post, yes or no?": "Diesen Beitrag senden, ja oder nein?",
|
||||
"Abandoning new post": "Verlassen des neuen Beitrags",
|
||||
"Type your reply message, then press Enter": "Geben Sie Ihre Antwortnachricht ein und drücken Sie dann die Eingabetaste",
|
||||
"No reply was entered": "Es wurde keine Antwort eingegeben",
|
||||
"You entered this reply": "Sie haben diese Antwort eingegeben",
|
||||
"Send this reply, yes or no?": "Diese Antwort senden, ja oder nein?",
|
||||
"Abandoning reply": "Antwort abbrechen",
|
||||
"Post failed": "Der Beitrag ist fehlgeschlagen",
|
||||
"Encrypted message. Please enter your passphrase.": "Verschlüsselte Nachricht. Bitte geben Sie Ihr Passwort ein.",
|
||||
"Message could not be decrypted": "Die Nachricht konnte nicht entschlüsselt werden",
|
||||
"Create new direct message to": "Erstellen Sie eine neue Direktnachricht an",
|
||||
"No direct message was entered": "Es wurde keine Direktnachricht eingegeben",
|
||||
"You entered this direct message to": "Sie haben diese Direktnachricht eingegeben an",
|
||||
"Message encrypted": "Nachricht verschlüsselt",
|
||||
"Send this direct message, yes or no?": "Diese Direktnachricht senden, ja oder nein?",
|
||||
"Abandoning new direct message": "Neue Direktnachricht abbrechen",
|
||||
"Press Enter to continue": "Drücken Sie die Eingabetaste, um fortzufahren"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Εμφάνιση αναφερόμενων αναρτήσεων",
|
||||
"Link Trackers": "Link Trackers",
|
||||
"Hide Announces": "Απόκρυψη Ανακοινώνει",
|
||||
"Show Announces": "Εμφάνιση Ανακοινώνει"
|
||||
"Show Announces": "Εμφάνιση Ανακοινώνει",
|
||||
"Type your post, then press Enter": "Πληκτρολογήστε την ανάρτησή σας και μετά πατήστε Enter",
|
||||
"No post was entered": "Δεν καταχωρήθηκε καμία ανάρτηση",
|
||||
"You entered this public post": "Εισαγάγατε αυτήν τη δημόσια ανάρτηση",
|
||||
"Send this post, yes or no?": "Αποστολή αυτής της ανάρτησης, ναι ή όχι;",
|
||||
"Abandoning new post": "Εγκατάλειψη νέας ανάρτησης",
|
||||
"Type your reply message, then press Enter": "Πληκτρολογήστε το απαντητικό μήνυμα και, στη συνέχεια, πατήστε Enter",
|
||||
"No reply was entered": "Δεν καταχωρήθηκε απάντηση",
|
||||
"You entered this reply": "Εισαγάγατε αυτήν την απάντηση",
|
||||
"Send this reply, yes or no?": "Στείλτε αυτήν την απάντηση, ναι ή όχι;",
|
||||
"Abandoning reply": "Εγκατάλειψη απάντησης",
|
||||
"Post failed": "Η ανάρτηση απέτυχε",
|
||||
"Encrypted message. Please enter your passphrase.": "Κρυπτογραφημένο μήνυμα. Εισαγάγετε τη φράση πρόσβασής σας.",
|
||||
"Message could not be decrypted": "Δεν ήταν δυνατή η αποκρυπτογράφηση του μηνύματος",
|
||||
"Create new direct message to": "Δημιουργία νέου άμεσου μηνύματος προς",
|
||||
"No direct message was entered": "Δεν εισήχθη άμεσο μήνυμα",
|
||||
"You entered this direct message to": "Εισαγάγατε αυτό το άμεσο μήνυμα στο",
|
||||
"Message encrypted": "Το μήνυμα είναι κρυπτογραφημένο",
|
||||
"Send this direct message, yes or no?": "Στείλτε αυτό το άμεσο μήνυμα, ναι ή όχι;",
|
||||
"Abandoning new direct message": "Εγκατάλειψη νέου άμεσου μηνύματος",
|
||||
"Press Enter to continue": "Πατήστε Enter για να συνεχίσετε"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Show quote posts",
|
||||
"Link Trackers": "Link Trackers",
|
||||
"Hide Announces": "Hide Announces",
|
||||
"Show Announces": "Show Announces"
|
||||
"Show Announces": "Show Announces",
|
||||
"Type your post, then press Enter": "Type your post, then press Enter",
|
||||
"No post was entered": "No post was entered",
|
||||
"You entered this public post": "You entered this public post",
|
||||
"Send this post, yes or no?": "Send this post, yes or no?",
|
||||
"Abandoning new post": "Abandoning new post",
|
||||
"Type your reply message, then press Enter": "Type your reply message, then press Enter",
|
||||
"No reply was entered": "No reply was entered",
|
||||
"You entered this reply": "You entered this reply",
|
||||
"Send this reply, yes or no?": "Send this reply, yes or no?",
|
||||
"Abandoning reply": "Abandoning reply",
|
||||
"Post failed": "Post failed",
|
||||
"Encrypted message. Please enter your passphrase.": "Encrypted message. Please enter your passphrase.",
|
||||
"Message could not be decrypted": "Message could not be decrypted",
|
||||
"Create new direct message to": "Create new direct message to",
|
||||
"No direct message was entered": "No direct message was entered",
|
||||
"You entered this direct message to": "You entered this direct message to",
|
||||
"Message encrypted": "Message encrypted",
|
||||
"Send this direct message, yes or no?": "Send this direct message, yes or no?",
|
||||
"Abandoning new direct message": "Abandoning new direct message",
|
||||
"Press Enter to continue": "Press Enter to continue"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Mostrar publicaciones citadas",
|
||||
"Link Trackers": "Rastreadores de enlaces",
|
||||
"Hide Announces": "Ocultar anuncios",
|
||||
"Show Announces": "Mostrar anuncios"
|
||||
"Show Announces": "Mostrar anuncios",
|
||||
"Type your post, then press Enter": "Escribe tu publicación y luego presiona Enter.",
|
||||
"No post was entered": "No se ingresó ninguna publicación",
|
||||
"You entered this public post": "Entraste a esta publicación pública",
|
||||
"Send this post, yes or no?": "Envía este post, ¿sí o no?",
|
||||
"Abandoning new post": "Abandonar nueva publicación",
|
||||
"Type your reply message, then press Enter": "Escriba su mensaje de respuesta y luego presione Entrar",
|
||||
"No reply was entered": "No se ingresó ninguna respuesta",
|
||||
"You entered this reply": "Ingresaste esta respuesta",
|
||||
"Send this reply, yes or no?": "Envía esta respuesta, ¿sí o no?",
|
||||
"Abandoning reply": "Abandonar respuesta",
|
||||
"Post failed": "Publicación fallida",
|
||||
"Encrypted message. Please enter your passphrase.": "Mensaje cifrado. Por favor ingrese su contraseña.",
|
||||
"Message could not be decrypted": "El mensaje no se pudo descifrar",
|
||||
"Create new direct message to": "Crear nuevo mensaje directo a",
|
||||
"No direct message was entered": "No se ingresó ningún mensaje directo",
|
||||
"You entered this direct message to": "Ingresaste este mensaje directo a",
|
||||
"Message encrypted": "Mensaje encriptado",
|
||||
"Send this direct message, yes or no?": "Envía este mensaje directo, ¿sí o no?",
|
||||
"Abandoning new direct message": "Abandonar nuevo mensaje directo",
|
||||
"Press Enter to continue": "Presione Entrar para continuar"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "نمایش پست های نقل شده",
|
||||
"Link Trackers": "ردیاب های لینک",
|
||||
"Hide Announces": "پنهان کردن اعلام می کند",
|
||||
"Show Announces": "نمایش اعلام می کند"
|
||||
"Show Announces": "نمایش اعلام می کند",
|
||||
"Type your post, then press Enter": "پست خود را تایپ کنید، سپس Enter را فشار دهید",
|
||||
"No post was entered": "هیچ پستی وارد نشد",
|
||||
"You entered this public post": "شما وارد این پست عمومی شدید",
|
||||
"Send this post, yes or no?": "ارسال این پست، بله یا خیر؟",
|
||||
"Abandoning new post": "رها کردن پست جدید",
|
||||
"Type your reply message, then press Enter": "پیام پاسخ خود را تایپ کنید، سپس Enter را فشار دهید",
|
||||
"No reply was entered": "هیچ پاسخی وارد نشد",
|
||||
"You entered this reply": "شما این پاسخ را وارد کردید",
|
||||
"Send this reply, yes or no?": "این پاسخ را ارسال کنید، بله یا خیر؟",
|
||||
"Abandoning reply": "انصراف از پاسخ",
|
||||
"Post failed": "پست ناموفق بود",
|
||||
"Encrypted message. Please enter your passphrase.": "پیام رمزگذاری شده لطفا رمز عبور خود را وارد کنید.",
|
||||
"Message could not be decrypted": "پیام رمزگشایی نشد",
|
||||
"Create new direct message to": "ایجاد پیام مستقیم جدید به",
|
||||
"No direct message was entered": "هیچ پیام مستقیمی وارد نشد",
|
||||
"You entered this direct message to": "شما این پیام مستقیم را به",
|
||||
"Message encrypted": "پیام رمزگذاری شده است",
|
||||
"Send this direct message, yes or no?": "این پیام مستقیم را ارسال کنید، بله یا خیر؟",
|
||||
"Abandoning new direct message": "رها کردن پیام مستقیم جدید",
|
||||
"Press Enter to continue": "برای ادامه Enter را فشار دهید"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Afficher les articles cités",
|
||||
"Link Trackers": "Traqueurs de liens",
|
||||
"Hide Announces": "Masquer les annonces",
|
||||
"Show Announces": "Afficher les annonces"
|
||||
"Show Announces": "Afficher les annonces",
|
||||
"Type your post, then press Enter": "Tapez votre message, puis appuyez sur Entrée",
|
||||
"No post was entered": "Aucun message n'a été saisi",
|
||||
"You entered this public post": "Vous avez entré ce message public",
|
||||
"Send this post, yes or no?": "Envoyer ce post, oui ou non ?",
|
||||
"Abandoning new post": "Abandon d'un nouveau message",
|
||||
"Type your reply message, then press Enter": "Tapez votre message de réponse, puis appuyez sur Entrée",
|
||||
"No reply was entered": "Aucune réponse n'a été saisie",
|
||||
"You entered this reply": "Vous avez entré cette réponse",
|
||||
"Send this reply, yes or no?": "Envoyer cette réponse, oui ou non ?",
|
||||
"Abandoning reply": "Abandonner la réponse",
|
||||
"Post failed": "La publication a échoué",
|
||||
"Encrypted message. Please enter your passphrase.": "Message crypté. Veuillez saisir votre phrase secrète.",
|
||||
"Message could not be decrypted": "Le message n'a pas pu être déchiffré",
|
||||
"Create new direct message to": "Créez un nouveau message direct pour",
|
||||
"No direct message was entered": "Aucun message direct n'a été saisi",
|
||||
"You entered this direct message to": "Vous avez entré ce message direct pour",
|
||||
"Message encrypted": "Message crypté",
|
||||
"Send this direct message, yes or no?": "Envoyer ce message direct, oui ou non ?",
|
||||
"Abandoning new direct message": "Abandonner un nouveau message direct",
|
||||
"Press Enter to continue": "Appuyez sur Entrée pour continuer"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Taispeáin postálacha luaite",
|
||||
"Link Trackers": "Lorgairí Nasc",
|
||||
"Hide Announces": "Folaigh Fógraí",
|
||||
"Show Announces": "Taispeáin Fógraí"
|
||||
"Show Announces": "Taispeáin Fógraí",
|
||||
"Type your post, then press Enter": "Clóscríobh do phostáil, ansin brúigh Iontráil",
|
||||
"No post was entered": "Níor cuireadh aon phostáil isteach",
|
||||
"You entered this public post": "Chuir tú isteach sa phostáil phoiblí seo",
|
||||
"Send this post, yes or no?": "Seol an post seo, tá nó níl?",
|
||||
"Abandoning new post": "Post nua a thréigean",
|
||||
"Type your reply message, then press Enter": "Clóscríobh do theachtaireacht freagartha, ansin brúigh Iontráil",
|
||||
"No reply was entered": "Níor cuireadh freagra ar bith isteach",
|
||||
"You entered this reply": "Chuir tú an freagra seo isteach",
|
||||
"Send this reply, yes or no?": "Seol an freagra seo, tá nó níl?",
|
||||
"Abandoning reply": "Freagra á thréigean",
|
||||
"Post failed": "Theip ar an bpostáil",
|
||||
"Encrypted message. Please enter your passphrase.": "Teachtaireacht criptithe. Cuir isteach do phasfhocal.",
|
||||
"Message could not be decrypted": "Níorbh fhéidir an teachtaireacht a dhíchriptiú",
|
||||
"Create new direct message to": "Cruthaigh teachtaireacht dhíreach nua chuig",
|
||||
"No direct message was entered": "Níor cuireadh aon teachtaireacht dhíreach isteach",
|
||||
"You entered this direct message to": "Chuir tú isteach an teachtaireacht dhíreach seo chuig",
|
||||
"Message encrypted": "Teachtaireacht criptithe",
|
||||
"Send this direct message, yes or no?": "Seol an teachtaireacht dhíreach seo, tá nó níl?",
|
||||
"Abandoning new direct message": "Teachtaireacht dhíreach nua a thréigean",
|
||||
"Press Enter to continue": "Brúigh Enter chun leanúint ar aghaidh"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "הצג פוסטים מצוטטים",
|
||||
"Link Trackers": "מעקבי קישורים",
|
||||
"Hide Announces": "הסתר מכריז",
|
||||
"Show Announces": "הצג מכריז"
|
||||
"Show Announces": "הצג מכריז",
|
||||
"Type your post, then press Enter": "הקלד את ההודעה שלך ולאחר מכן הקש על Enter",
|
||||
"No post was entered": "לא הוכנס פוסט",
|
||||
"You entered this public post": "נכנסת לפוסט הציבורי הזה",
|
||||
"Send this post, yes or no?": "לשלוח את הפוסט הזה, כן או לא?",
|
||||
"Abandoning new post": "נוטש פוסט חדש",
|
||||
"Type your reply message, then press Enter": "הקלד את הודעת התשובה שלך ולאחר מכן הקש Enter",
|
||||
"No reply was entered": "לא הוזנה תשובה",
|
||||
"You entered this reply": "הזנת את התשובה הזו",
|
||||
"Send this reply, yes or no?": "לשלוח תשובה זו, כן או לא?",
|
||||
"Abandoning reply": "נוטש את התשובה",
|
||||
"Post failed": "הפוסט נכשל",
|
||||
"Encrypted message. Please enter your passphrase.": "הודעה מוצפנת. אנא הזן את ביטוי הסיסמה שלך.",
|
||||
"Message could not be decrypted": "לא ניתן לפענח את ההודעה",
|
||||
"Create new direct message to": "צור הודעה ישירה חדשה אל",
|
||||
"No direct message was entered": "לא הוזנה הודעה ישירה",
|
||||
"You entered this direct message to": "הזנת הודעה ישירה זו אל",
|
||||
"Message encrypted": "הודעה מוצפנת",
|
||||
"Send this direct message, yes or no?": "לשלוח הודעה ישירה זו, כן או לא?",
|
||||
"Abandoning new direct message": "נטישת הודעה ישירה חדשה",
|
||||
"Press Enter to continue": "לחץ על Enter כדי להמשיך"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "उद्धृत पोस्ट दिखाएँ",
|
||||
"Link Trackers": "लिंक ट्रैकर्स",
|
||||
"Hide Announces": "घोषणाएँ छुपाएँ",
|
||||
"Show Announces": "शो की घोषणा"
|
||||
"Show Announces": "शो की घोषणा",
|
||||
"Type your post, then press Enter": "अपनी पोस्ट टाइप करें, फिर Enter दबाएँ",
|
||||
"No post was entered": "कोई पोस्ट दर्ज नहीं की गई",
|
||||
"You entered this public post": "आपने यह सार्वजनिक पोस्ट दर्ज की है",
|
||||
"Send this post, yes or no?": "यह पोस्ट भेजें, हाँ या नहीं?",
|
||||
"Abandoning new post": "नये पद का त्याग",
|
||||
"Type your reply message, then press Enter": "अपना उत्तर संदेश टाइप करें, फिर Enter दबाएँ",
|
||||
"No reply was entered": "कोई उत्तर दर्ज नहीं किया गया",
|
||||
"You entered this reply": "आपने यह उत्तर दर्ज किया",
|
||||
"Send this reply, yes or no?": "यह उत्तर भेजें, हाँ या नहीं?",
|
||||
"Abandoning reply": "उत्तर छोड़ना",
|
||||
"Post failed": "पोस्ट विफल",
|
||||
"Encrypted message. Please enter your passphrase.": "एन्क्रिप्टेड संदेश. कृपया अपना पासफ़्रेज़ दर्ज करें.",
|
||||
"Message could not be decrypted": "संदेश डिक्रिप्ट नहीं किया जा सका",
|
||||
"Create new direct message to": "के लिए नया सीधा संदेश बनाएं",
|
||||
"No direct message was entered": "कोई सीधा संदेश दर्ज नहीं किया गया",
|
||||
"You entered this direct message to": "आपने यह सीधा संदेश यहां दर्ज किया है",
|
||||
"Message encrypted": "संदेश एन्क्रिप्ट किया गया",
|
||||
"Send this direct message, yes or no?": "यह सीधा संदेश भेजें, हाँ या नहीं?",
|
||||
"Abandoning new direct message": "नए प्रत्यक्ष संदेश का परित्याग",
|
||||
"Press Enter to continue": "जारी रखने के लिए Enter दबाएँ"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Mostra post citati",
|
||||
"Link Trackers": "Tracker dei collegamenti",
|
||||
"Hide Announces": "Nascondi annunci",
|
||||
"Show Announces": "Mostra annunci"
|
||||
"Show Announces": "Mostra annunci",
|
||||
"Type your post, then press Enter": "Digita il tuo post, quindi premi Invio",
|
||||
"No post was entered": "Nessun post è stato inserito",
|
||||
"You entered this public post": "Hai inserito questo post pubblico",
|
||||
"Send this post, yes or no?": "Inviare questo post, sì o no?",
|
||||
"Abandoning new post": "Abbandono il nuovo post",
|
||||
"Type your reply message, then press Enter": "Digita il messaggio di risposta, quindi premi Invio",
|
||||
"No reply was entered": "Non è stata inserita alcuna risposta",
|
||||
"You entered this reply": "Hai inserito questa risposta",
|
||||
"Send this reply, yes or no?": "Invia questa risposta, sì o no?",
|
||||
"Abandoning reply": "Abbandonare la risposta",
|
||||
"Post failed": "Pubblicazione non riuscita",
|
||||
"Encrypted message. Please enter your passphrase.": "Messaggio crittografato. Inserisci la tua passphrase.",
|
||||
"Message could not be decrypted": "Impossibile decifrare il messaggio",
|
||||
"Create new direct message to": "Crea un nuovo messaggio diretto a",
|
||||
"No direct message was entered": "Non è stato inserito alcun messaggio diretto",
|
||||
"You entered this direct message to": "Hai inviato questo messaggio diretto a",
|
||||
"Message encrypted": "Messaggio crittografato",
|
||||
"Send this direct message, yes or no?": "Invia questo messaggio diretto, sì o no?",
|
||||
"Abandoning new direct message": "Abbandonare il nuovo messaggio diretto",
|
||||
"Press Enter to continue": "Premere Invio per continuare"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "引用された投稿を表示",
|
||||
"Link Trackers": "リンクトラッカー",
|
||||
"Hide Announces": "発表を隠す",
|
||||
"Show Announces": "ショーアナウンス"
|
||||
"Show Announces": "ショーアナウンス",
|
||||
"Type your post, then press Enter": "投稿を入力して Enter キーを押します",
|
||||
"No post was entered": "投稿が入力されていませんでした",
|
||||
"You entered this public post": "この公開投稿に入力しました",
|
||||
"Send this post, yes or no?": "この投稿を送信します。はい、いいえ?",
|
||||
"Abandoning new post": "新しい投稿を放棄する",
|
||||
"Type your reply message, then press Enter": "返信メッセージを入力し、Enter キーを押します",
|
||||
"No reply was entered": "返信が入力されていませんでした",
|
||||
"You entered this reply": "この返信を入力しました",
|
||||
"Send this reply, yes or no?": "はい、いいえでこの返信を送信してください。",
|
||||
"Abandoning reply": "返信を放棄する",
|
||||
"Post failed": "投稿に失敗しました",
|
||||
"Encrypted message. Please enter your passphrase.": "暗号化されたメッセージ。 パスフレーズを入力してください。",
|
||||
"Message could not be decrypted": "メッセージを復号化できませんでした",
|
||||
"Create new direct message to": "新しいダイレクトメッセージを作成して、",
|
||||
"No direct message was entered": "ダイレクトメッセージが入力されていません",
|
||||
"You entered this direct message to": "このダイレクトメッセージを入力したのは、",
|
||||
"Message encrypted": "メッセージは暗号化されています",
|
||||
"Send this direct message, yes or no?": "このダイレクト メッセージを送信します。はい、いいえ?",
|
||||
"Abandoning new direct message": "新しいダイレクトメッセージの放棄",
|
||||
"Press Enter to continue": "続行するには Enter キーを押してください"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "인용된 게시물 표시",
|
||||
"Link Trackers": "링크 추적기",
|
||||
"Hide Announces": "발표 숨기기",
|
||||
"Show Announces": "쇼 발표"
|
||||
"Show Announces": "쇼 발표",
|
||||
"Type your post, then press Enter": "게시물을 입력한 다음 Enter를 누르세요.",
|
||||
"No post was entered": "입력된 게시물이 없습니다.",
|
||||
"You entered this public post": "이 공개 게시물을 입력했습니다.",
|
||||
"Send this post, yes or no?": "이 게시물을 보내세요, 예, 아니요?",
|
||||
"Abandoning new post": "새 게시물을 포기하는 중",
|
||||
"Type your reply message, then press Enter": "답장 메시지를 입력한 다음 Enter를 누르세요.",
|
||||
"No reply was entered": "답글이 입력되지 않았습니다.",
|
||||
"You entered this reply": "이 답글을 입력했습니다.",
|
||||
"Send this reply, yes or no?": "이 답장을 보내세요. 예, 아니요?",
|
||||
"Abandoning reply": "답글을 포기하는 중",
|
||||
"Post failed": "게시 실패",
|
||||
"Encrypted message. Please enter your passphrase.": "암호화된 메시지. 암호를 입력하세요.",
|
||||
"Message could not be decrypted": "메시지를 해독할 수 없습니다.",
|
||||
"Create new direct message to": "다음 사람에게 새로운 다이렉트 메시지를 작성하세요",
|
||||
"No direct message was entered": "다이렉트 메시지가 입력되지 않았습니다",
|
||||
"You entered this direct message to": "다음 사람에게 이 쪽지를 입력했습니다.",
|
||||
"Message encrypted": "암호화된 메시지",
|
||||
"Send this direct message, yes or no?": "이 다이렉트 메시지를 보내세요, 예 아니면 아니오?",
|
||||
"Abandoning new direct message": "새 다이렉트 메시지 포기하기",
|
||||
"Press Enter to continue": "계속하려면 Enter를 누르세요."
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Mesajên binavkirî nîşan bide",
|
||||
"Link Trackers": "Link Trackers",
|
||||
"Hide Announces": "Veşêre Daxuyan dike",
|
||||
"Show Announces": "Nîşan dide Ragihandin"
|
||||
"Show Announces": "Nîşan dide Ragihandin",
|
||||
"Type your post, then press Enter": "Posta xwe binivîsin, paşê Enter bikirtînin",
|
||||
"No post was entered": "Ti post nehat nivîsandin",
|
||||
"You entered this public post": "Tu ket vê posta giştî",
|
||||
"Send this post, yes or no?": "Vê postê bişîne, erê an na?",
|
||||
"Abandoning new post": "Dev ji posta nû berdan",
|
||||
"Type your reply message, then press Enter": "Peyama bersiva xwe binivîsin, paşê Enter bikirtînin",
|
||||
"No reply was entered": "Ti bersiv nehat dayîn",
|
||||
"You entered this reply": "Te vê bersivê nivîsand",
|
||||
"Send this reply, yes or no?": "Vê bersivê bişînin, erê an na?",
|
||||
"Abandoning reply": "Bersiv berdan",
|
||||
"Post failed": "Post têk çû",
|
||||
"Encrypted message. Please enter your passphrase.": "Peyama şîfrekirî. Ji kerema xwe şîfreya xwe binivîse.",
|
||||
"Message could not be decrypted": "Mesaj nehat deşîfrekirin",
|
||||
"Create new direct message to": "Peyama rasterast a nû biafirîne",
|
||||
"No direct message was entered": "Tu peyamek rasterast nehat nivîsandin",
|
||||
"You entered this direct message to": "Te ev peyama rasterast ji bo",
|
||||
"Message encrypted": "Peyam şîfre kirin",
|
||||
"Send this direct message, yes or no?": "Vê peyama rasterast bişînin, erê an na?",
|
||||
"Abandoning new direct message": "Rakirina peyama rasterast a nû",
|
||||
"Press Enter to continue": "Ji bo berdewamkirinê Enter bikirtînin"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Toon geciteerde berichten",
|
||||
"Link Trackers": "Link-trackers",
|
||||
"Hide Announces": "Aankondigingen verbergen",
|
||||
"Show Announces": "Toon aankondigingen"
|
||||
"Show Announces": "Toon aankondigingen",
|
||||
"Type your post, then press Enter": "Typ uw bericht en druk vervolgens op Enter",
|
||||
"No post was entered": "Er is geen bericht ingevoerd",
|
||||
"You entered this public post": "Je hebt dit openbare bericht ingevoerd",
|
||||
"Send this post, yes or no?": "Dit bericht versturen, ja of nee?",
|
||||
"Abandoning new post": "Nieuwe post verlaten",
|
||||
"Type your reply message, then press Enter": "Typ uw antwoordbericht en druk vervolgens op Enter",
|
||||
"No reply was entered": "Er is geen antwoord ingevoerd",
|
||||
"You entered this reply": "Je hebt dit antwoord ingevoerd",
|
||||
"Send this reply, yes or no?": "Dit antwoord verzenden, ja of nee?",
|
||||
"Abandoning reply": "Antwoord verlaten",
|
||||
"Post failed": "Posten is mislukt",
|
||||
"Encrypted message. Please enter your passphrase.": "Gecodeerd bericht. Voer uw wachtwoordzin in.",
|
||||
"Message could not be decrypted": "Het bericht kon niet worden gedecodeerd",
|
||||
"Create new direct message to": "Maak een nieuw direct bericht aan",
|
||||
"No direct message was entered": "Er is geen direct bericht ingevoerd",
|
||||
"You entered this direct message to": "Je hebt dit directe bericht ingevoerd aan",
|
||||
"Message encrypted": "Bericht versleuteld",
|
||||
"Send this direct message, yes or no?": "Dit directe bericht versturen, ja of nee?",
|
||||
"Abandoning new direct message": "Nieuw privéchat verlaten",
|
||||
"Press Enter to continue": "Druk op Enter om door te gaan"
|
||||
}
|
||||
|
|
|
@ -667,5 +667,25 @@
|
|||
"Show quote posts": "Show quote posts",
|
||||
"Link Trackers": "Link Trackers",
|
||||
"Hide Announces": "Hide Announces",
|
||||
"Show Announces": "Show Announces"
|
||||
"Show Announces": "Show Announces",
|
||||
"Type your post, then press Enter": "Type your post, then press Enter",
|
||||
"No post was entered": "No post was entered",
|
||||
"You entered this public post": "You entered this public post",
|
||||
"Send this post, yes or no?": "Send this post, yes or no?",
|
||||
"Abandoning new post": "Abandoning new post",
|
||||
"Type your reply message, then press Enter": "Type your reply message, then press Enter",
|
||||
"No reply was entered": "No reply was entered",
|
||||
"You entered this reply": "You entered this reply",
|
||||
"Send this reply, yes or no?": "Send this reply, yes or no?",
|
||||
"Abandoning reply": "Abandoning reply",
|
||||
"Post failed": "Post failed",
|
||||
"Encrypted message. Please enter your passphrase.": "Encrypted message. Please enter your passphrase.",
|
||||
"Message could not be decrypted": "Message could not be decrypted",
|
||||
"Create new direct message to": "Create new direct message to",
|
||||
"No direct message was entered": "No direct message was entered",
|
||||
"You entered this direct message to": "You entered this direct message to",
|
||||
"Message encrypted": "Message encrypted",
|
||||
"Send this direct message, yes or no?": "Send this direct message, yes or no?",
|
||||
"Abandoning new direct message": "Abandoning new direct message",
|
||||
"Press Enter to continue": "Press Enter to continue"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Pokaż cytowane posty",
|
||||
"Link Trackers": "Śledzenie linków",
|
||||
"Hide Announces": "Ukryj ogłoszenia",
|
||||
"Show Announces": "Pokaż ogłoszenia"
|
||||
"Show Announces": "Pokaż ogłoszenia",
|
||||
"Type your post, then press Enter": "Wpisz swój post i naciśnij Enter",
|
||||
"No post was entered": "Nie wprowadzono żadnego wpisu",
|
||||
"You entered this public post": "Wpisałeś ten publiczny post",
|
||||
"Send this post, yes or no?": "Wyślij ten post, tak czy nie?",
|
||||
"Abandoning new post": "Porzucam nowy post",
|
||||
"Type your reply message, then press Enter": "Wpisz treść odpowiedzi i naciśnij klawisz Enter",
|
||||
"No reply was entered": "Nie wpisano żadnej odpowiedzi",
|
||||
"You entered this reply": "Wpisałeś tę odpowiedź",
|
||||
"Send this reply, yes or no?": "Wyślij tę odpowiedź, tak czy nie?",
|
||||
"Abandoning reply": "Porzucenie odpowiedzi",
|
||||
"Post failed": "Wysyłanie nie powiodło się",
|
||||
"Encrypted message. Please enter your passphrase.": "Zaszyfrowana wiadomość. Proszę wpisać hasło.",
|
||||
"Message could not be decrypted": "Nie udało się odszyfrować wiadomości",
|
||||
"Create new direct message to": "Utwórz nową wiadomość bezpośrednią do",
|
||||
"No direct message was entered": "Nie wprowadzono żadnej bezpośredniej wiadomości",
|
||||
"You entered this direct message to": "Wpisałeś tę wiadomość bezpośrednią do",
|
||||
"Message encrypted": "Wiadomość zaszyfrowana",
|
||||
"Send this direct message, yes or no?": "Wysłać tę bezpośrednią wiadomość, tak czy nie?",
|
||||
"Abandoning new direct message": "Porzucenie nowej wiadomości bezpośredniej",
|
||||
"Press Enter to continue": "Naciśnij Enter, aby kontynuować"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Mostrar postagens citadas",
|
||||
"Link Trackers": "Rastreadores de links",
|
||||
"Hide Announces": "Ocultar anúncios",
|
||||
"Show Announces": "Mostrar anúncios"
|
||||
"Show Announces": "Mostrar anúncios",
|
||||
"Type your post, then press Enter": "Digite sua postagem e pressione Enter",
|
||||
"No post was entered": "Nenhuma postagem foi inserida",
|
||||
"You entered this public post": "Você entrou nesta postagem pública",
|
||||
"Send this post, yes or no?": "Envie esta postagem, sim ou não?",
|
||||
"Abandoning new post": "Abandonando nova postagem",
|
||||
"Type your reply message, then press Enter": "Digite sua mensagem de resposta e pressione Enter",
|
||||
"No reply was entered": "Nenhuma resposta foi inserida",
|
||||
"You entered this reply": "Você digitou esta resposta",
|
||||
"Send this reply, yes or no?": "Envie esta resposta, sim ou não?",
|
||||
"Abandoning reply": "Abandonando a resposta",
|
||||
"Post failed": "Falha na postagem",
|
||||
"Encrypted message. Please enter your passphrase.": "Mensagem criptografada. Por favor, digite sua senha.",
|
||||
"Message could not be decrypted": "A mensagem não pôde ser descriptografada",
|
||||
"Create new direct message to": "Crie uma nova mensagem direta para",
|
||||
"No direct message was entered": "Nenhuma mensagem direta foi inserida",
|
||||
"You entered this direct message to": "Você digitou esta mensagem direta para",
|
||||
"Message encrypted": "Mensagem criptografada",
|
||||
"Send this direct message, yes or no?": "Envie esta mensagem direta, sim ou não?",
|
||||
"Abandoning new direct message": "Abandonando nova mensagem direta",
|
||||
"Press Enter to continue": "Pressione Enter para continuar"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Показать цитируемые сообщения",
|
||||
"Link Trackers": "Трекеры ссылок",
|
||||
"Hide Announces": "Скрыть объявления",
|
||||
"Show Announces": "Показать анонсы"
|
||||
"Show Announces": "Показать анонсы",
|
||||
"Type your post, then press Enter": "Введите сообщение и нажмите Enter.",
|
||||
"No post was entered": "Ни одно сообщение не было введено",
|
||||
"You entered this public post": "Вы вошли в этот общедоступный пост",
|
||||
"Send this post, yes or no?": "Отправить этот пост, да или нет?",
|
||||
"Abandoning new post": "Отказ от нового поста",
|
||||
"Type your reply message, then press Enter": "Введите ответное сообщение и нажмите Enter.",
|
||||
"No reply was entered": "Ответ не был введен",
|
||||
"You entered this reply": "Вы ввели этот ответ",
|
||||
"Send this reply, yes or no?": "Отправить этот ответ, да или нет?",
|
||||
"Abandoning reply": "Отказ от ответа",
|
||||
"Post failed": "Сообщение не выполнено",
|
||||
"Encrypted message. Please enter your passphrase.": "Зашифрованное сообщение. Пожалуйста, введите парольную фразу.",
|
||||
"Message could not be decrypted": "Сообщение не удалось расшифровать",
|
||||
"Create new direct message to": "Создайте новое прямое сообщение для",
|
||||
"No direct message was entered": "Не было введено прямое сообщение",
|
||||
"You entered this direct message to": "Вы ввели это прямое сообщение, чтобы",
|
||||
"Message encrypted": "Сообщение зашифровано",
|
||||
"Send this direct message, yes or no?": "Отправить это прямое сообщение, да или нет?",
|
||||
"Abandoning new direct message": "Отказ от нового прямого сообщения",
|
||||
"Press Enter to continue": "Нажмите Enter, чтобы продолжить"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Onyesha machapisho yaliyonukuliwa",
|
||||
"Link Trackers": "Viunga vya Kufuatilia",
|
||||
"Hide Announces": "Ficha Matangazo",
|
||||
"Show Announces": "Onyesha Matangazo"
|
||||
"Show Announces": "Onyesha Matangazo",
|
||||
"Type your post, then press Enter": "Andika chapisho lako, kisha ubonyeze Enter",
|
||||
"No post was entered": "Hakuna chapisho lililowekwa",
|
||||
"You entered this public post": "Umeingiza chapisho hili la umma",
|
||||
"Send this post, yes or no?": "Tuma chapisho hili, ndio au hapana?",
|
||||
"Abandoning new post": "Kuacha chapisho jipya",
|
||||
"Type your reply message, then press Enter": "Andika ujumbe wako wa kujibu, kisha ubonyeze Enter",
|
||||
"No reply was entered": "Hakuna jibu lililowekwa",
|
||||
"You entered this reply": "Umeingiza jibu hili",
|
||||
"Send this reply, yes or no?": "Ungependa kutuma jibu hili, ndiyo au hapana?",
|
||||
"Abandoning reply": "Kuacha jibu",
|
||||
"Post failed": "Chapisho limeshindwa",
|
||||
"Encrypted message. Please enter your passphrase.": "Ujumbe uliosimbwa kwa njia fiche. Tafadhali weka neno lako la siri.",
|
||||
"Message could not be decrypted": "Ujumbe haukuweza kusimbwa",
|
||||
"Create new direct message to": "Unda ujumbe mpya wa moja kwa moja kwa",
|
||||
"No direct message was entered": "Hakuna ujumbe wa moja kwa moja ulioingizwa",
|
||||
"You entered this direct message to": "Umeingiza ujumbe huu wa moja kwa moja kwa",
|
||||
"Message encrypted": "Ujumbe umesimbwa kwa njia fiche",
|
||||
"Send this direct message, yes or no?": "Tuma ujumbe huu wa moja kwa moja, ndiyo au hapana?",
|
||||
"Abandoning new direct message": "Kuacha ujumbe mpya wa moja kwa moja",
|
||||
"Press Enter to continue": "Bonyeza Enter ili kuendelea"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Alıntılanan gönderileri göster",
|
||||
"Link Trackers": "Bağlantı İzleyiciler",
|
||||
"Hide Announces": "Duyuruları Gizle",
|
||||
"Show Announces": "Duyuruları Göster"
|
||||
"Show Announces": "Duyuruları Göster",
|
||||
"Type your post, then press Enter": "Gönderinizi yazın ve Enter'a basın",
|
||||
"No post was entered": "Hiçbir gönderi girilmedi",
|
||||
"You entered this public post": "Bu herkese açık gönderiye girdiniz",
|
||||
"Send this post, yes or no?": "Bu gönderiyi gönder, evet mi hayır mı?",
|
||||
"Abandoning new post": "Yeni gönderiden vazgeçiliyor",
|
||||
"Type your reply message, then press Enter": "Yanıt mesajınızı yazın ve Enter'a basın",
|
||||
"No reply was entered": "Cevap girilmedi",
|
||||
"You entered this reply": "Bu yanıtı girdiniz",
|
||||
"Send this reply, yes or no?": "Bu yanıtı gönder, evet mi hayır mı?",
|
||||
"Abandoning reply": "Yanıttan vazgeçiliyor",
|
||||
"Post failed": "Gönderim başarısız oldu",
|
||||
"Encrypted message. Please enter your passphrase.": "Şifreli mesaj. Lütfen parolanızı girin.",
|
||||
"Message could not be decrypted": "Mesajın şifresi çözülemedi",
|
||||
"Create new direct message to": "Şu kişiye yeni doğrudan mesaj oluştur:",
|
||||
"No direct message was entered": "Doğrudan mesaj girilmedi",
|
||||
"You entered this direct message to": "Bu doğrudan mesajı şu adrese girdiniz:",
|
||||
"Message encrypted": "Mesaj şifrelendi",
|
||||
"Send this direct message, yes or no?": "Bu doğrudan mesajı gönder, evet mi hayır mı?",
|
||||
"Abandoning new direct message": "Yeni doğrudan mesajdan vazgeçiliyor",
|
||||
"Press Enter to continue": "Devam etmek için Enter'a basın"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "Показувати цитовані пости",
|
||||
"Link Trackers": "Відстеження посилань",
|
||||
"Hide Announces": "Приховати оголошення",
|
||||
"Show Announces": "Показати оголошення"
|
||||
"Show Announces": "Показати оголошення",
|
||||
"Type your post, then press Enter": "Введіть свою публікацію та натисніть Enter",
|
||||
"No post was entered": "Жодної публікації не введено",
|
||||
"You entered this public post": "Ви ввійшли в цю публічну публікацію",
|
||||
"Send this post, yes or no?": "Надіслати цей пост, так чи ні?",
|
||||
"Abandoning new post": "Залишення нової посади",
|
||||
"Type your reply message, then press Enter": "Введіть відповідь і натисніть Enter",
|
||||
"No reply was entered": "Відповідь не введено",
|
||||
"You entered this reply": "Ви ввели цю відповідь",
|
||||
"Send this reply, yes or no?": "Надіслати цю відповідь, так чи ні?",
|
||||
"Abandoning reply": "Відмова від відповіді",
|
||||
"Post failed": "Опублікувати не вдалося",
|
||||
"Encrypted message. Please enter your passphrase.": "Зашифроване повідомлення. Будь ласка, введіть свою парольну фразу.",
|
||||
"Message could not be decrypted": "Не вдалося розшифрувати повідомлення",
|
||||
"Create new direct message to": "Створити пряме повідомлення для",
|
||||
"No direct message was entered": "Пряме повідомлення не введено",
|
||||
"You entered this direct message to": "Ви ввели це пряме повідомлення до",
|
||||
"Message encrypted": "Повідомлення зашифровано",
|
||||
"Send this direct message, yes or no?": "Надіслати це пряме повідомлення, так чи ні?",
|
||||
"Abandoning new direct message": "Відмова від нового прямого повідомлення",
|
||||
"Press Enter to continue": "Натисніть Enter, щоб продовжити"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "ווייַזן ציטירטע אַרטיקלען",
|
||||
"Link Trackers": "לינק טראַקערז",
|
||||
"Hide Announces": "באַהאַלטן אַנאַונסיז",
|
||||
"Show Announces": "ווייַזן אַנאַונסיז"
|
||||
"Show Announces": "ווייַזן אַנאַונסיז",
|
||||
"Type your post, then press Enter": "טיפּ דיין פּאָסטן, און דריקן אַרייַן",
|
||||
"No post was entered": "קיין פּאָסטן איז געווען אריין",
|
||||
"You entered this public post": "איר זענט אריין אין דעם ציבור פּאָסטן",
|
||||
"Send this post, yes or no?": "שיקן דעם פּאָסטן, יאָ אָדער ניט?",
|
||||
"Abandoning new post": "פארלאזן נייַ פּאָסטן",
|
||||
"Type your reply message, then press Enter": "טיפּ דיין ענטפער אָנזאָג, און דריקן אַרייַן",
|
||||
"No reply was entered": "קיין ענטפער איז נישט אריין",
|
||||
"You entered this reply": "איר האט אריין דעם ענטפער",
|
||||
"Send this reply, yes or no?": "שיקן דעם ענטפער, יאָ אָדער ניט?",
|
||||
"Abandoning reply": "פארלאזן ענטפער",
|
||||
"Post failed": "פּאָסטן ניט אַנדערש",
|
||||
"Encrypted message. Please enter your passphrase.": "ענקריפּטיד אָנזאָג. ביטע אַרייַן דיין פּאַסספראַסע.",
|
||||
"Message could not be decrypted": "אָנזאָג קען ניט זיין דעקריפּטיד",
|
||||
"Create new direct message to": "שאַפֿן נייַע דירעקט אָנזאָג צו",
|
||||
"No direct message was entered": "קיין דירעקט אָנזאָג איז געווען אריין",
|
||||
"You entered this direct message to": "איר אַרייַן דעם דירעקט אָנזאָג צו",
|
||||
"Message encrypted": "אָנזאָג ענקריפּטיד",
|
||||
"Send this direct message, yes or no?": "שיקן דעם דירעקט אָנזאָג, יאָ אָדער ניט?",
|
||||
"Abandoning new direct message": "פארלאזן נייַ דירעקט אָנזאָג",
|
||||
"Press Enter to continue": "דרוק אַרייַן צו פאָרזעצן"
|
||||
}
|
||||
|
|
|
@ -671,5 +671,25 @@
|
|||
"Show quote posts": "显示引用的帖子",
|
||||
"Link Trackers": "链接跟踪器",
|
||||
"Hide Announces": "隐藏公告",
|
||||
"Show Announces": "展会公告"
|
||||
"Show Announces": "展会公告",
|
||||
"Type your post, then press Enter": "输入您的帖子,然后按 Enter",
|
||||
"No post was entered": "没有输入帖子",
|
||||
"You entered this public post": "您输入了此公开帖子",
|
||||
"Send this post, yes or no?": "发这个帖子,是还是不是?",
|
||||
"Abandoning new post": "放弃新职位",
|
||||
"Type your reply message, then press Enter": "输入您的回复消息,然后按 Enter",
|
||||
"No reply was entered": "没有输入回复",
|
||||
"You entered this reply": "您输入了此回复",
|
||||
"Send this reply, yes or no?": "发送此回复,是还是否?",
|
||||
"Abandoning reply": "放弃回复",
|
||||
"Post failed": "发帖失败",
|
||||
"Encrypted message. Please enter your passphrase.": "加密消息。 请输入您的密码。",
|
||||
"Message could not be decrypted": "消息无法解密",
|
||||
"Create new direct message to": "创建新的直接消息",
|
||||
"No direct message was entered": "未输入直接消息",
|
||||
"You entered this direct message to": "您输入此私信是为了",
|
||||
"Message encrypted": "消息已加密",
|
||||
"Send this direct message, yes or no?": "发送此直接消息,是还是否?",
|
||||
"Abandoning new direct message": "放弃新的私信",
|
||||
"Press Enter to continue": "按 Enter 继续"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue