diff --git a/.tx/config b/.tx/config index 33305b01d6df433cae9a40557e673f0e172f6562..a0279fdcc6d772c7d03fe8f838b93b691bbac1dc 100644 --- a/.tx/config +++ b/.tx/config @@ -1,6 +1,6 @@ [main] host = https://www.transifex.com -lang_map = zh-Hans: zh_CN, zh-Hant: zh_TW +lang_map = zh-Hans: zh_CN, zh-Hant: zh_TW, nb_NO: nb [briar.briar-desktop] file_filter = briar-desktop/src/main/resources/strings/BriarDesktop_<lang>.properties diff --git a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/SettingDetails.kt b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/SettingDetails.kt index f1f48635f8f1b6d450e918276d98e0796611086b..95321ecf0a76ee4e7abf8fa968ca4fb4831824d6 100644 --- a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/SettingDetails.kt +++ b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/SettingDetails.kt @@ -45,7 +45,6 @@ import androidx.compose.ui.semantics.contentDescription import androidx.compose.ui.semantics.semantics import androidx.compose.ui.unit.dp import org.briarproject.briar.desktop.settings.SettingsViewModel.NotificationProviderState -import org.briarproject.briar.desktop.settings.UnencryptedSettings.Language import org.briarproject.briar.desktop.theme.warningBackground import org.briarproject.briar.desktop.theme.warningForeground import org.briarproject.briar.desktop.ui.Constants.HEADER_SIZE @@ -80,19 +79,11 @@ fun SettingDetails(viewModel: SettingsViewModel) { DetailItem( label = i18n("settings.display.language.title"), description = "${i18n("access.settings.current_value")}: " + - viewModel.selectedLanguage.value.let { - if (it == Language.DEFAULT) - i18n("settings.display.language.auto") - else it.locale.getDisplayLanguage(it.locale) - } + + viewModel.selectedLanguage.value.displayName + ", " + i18n("access.settings.click_to_change_value") ) { OutlinedExposedDropDownMenu( - values = viewModel.languageList.map { - if (it == Language.DEFAULT) - i18n("settings.display.language.auto") - else it.locale.getDisplayLanguage(it.locale) - }, + values = viewModel.languageList.map { it.displayName }, selectedIndex = viewModel.selectedLanguage.value.ordinal, onChange = { viewModel.selectLanguage(viewModel.languageList[it]) }, modifier = Modifier.widthIn(min = 200.dp) diff --git a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/UnencryptedSettings.kt b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/UnencryptedSettings.kt index 14fe0360c34dd840e907f1df8184608ac4ed1363..30065f167e41ea7dcb17aa97e79f52719f7b30b4 100644 --- a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/UnencryptedSettings.kt +++ b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/UnencryptedSettings.kt @@ -18,6 +18,7 @@ package org.briarproject.briar.desktop.settings +import org.briarproject.briar.desktop.utils.InternationalizationUtils.i18n import org.briarproject.briar.desktop.viewmodel.SingleStateEvent import java.util.Locale @@ -37,13 +38,21 @@ interface UnencryptedSettings : UnencryptedSettingsReadOnly { DEFAULT, EN, // languages as present in resources - AR, BG, CA, DE, ES, FA, FR, GL, HE, HU, IS, IT, JA, KA, KO, LT, MY, NB_NO, - NL, PL, PT_BR, RO, RU, SK, SQ, SV, TR, UK, ZH_CN; + AR, BG, CA, DE, ES, FA, FR, GL, HE, HU, IS, IT, JA, KA, KO, LT, MY, NB, + NL, PL, PT_BR, RO, RU, SK, SQ, SV, TR, UK, ZH_CN, ZH_TW; - val locale: Locale - get() = if (this == DEFAULT) + val locale: Locale by lazy { + if (this == DEFAULT) Locale.getDefault() else Locale.forLanguageTag(name.replace('_', '-')) + } + + private val _displayName: String by lazy { locale.getDisplayName(locale) } + + val displayName: String + get() = if (this == DEFAULT) + i18n("settings.display.language.auto") + else _displayName } override var theme: Theme diff --git a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/UnencryptedSettingsImpl.kt b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/UnencryptedSettingsImpl.kt index d4ccbfbd7971f54e08df473f38dcfb9f586aff93..9467e89b78fa41807d6164360acd46e5130de56d 100644 --- a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/UnencryptedSettingsImpl.kt +++ b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/settings/UnencryptedSettingsImpl.kt @@ -18,12 +18,14 @@ package org.briarproject.briar.desktop.settings +import mu.KotlinLogging import org.briarproject.bramble.api.lifecycle.IoExecutor import org.briarproject.briar.desktop.settings.UnencryptedSettings.Language import org.briarproject.briar.desktop.settings.UnencryptedSettings.Language.DEFAULT import org.briarproject.briar.desktop.settings.UnencryptedSettings.Theme import org.briarproject.briar.desktop.settings.UnencryptedSettings.Theme.AUTO import org.briarproject.briar.desktop.utils.InternationalizationUtils +import org.briarproject.briar.desktop.utils.KLoggerUtils.e import org.briarproject.briar.desktop.viewmodel.SingleStateEvent import java.util.prefs.Preferences import javax.inject.Inject @@ -34,6 +36,10 @@ const val PREF_LANG = "language" // NON-NLS class UnencryptedSettingsImpl @Inject internal constructor() : UnencryptedSettings { + companion object { + private val LOG = KotlinLogging.logger {} + } + // used for unencrypted settings, namely theme and language private val prefs = Preferences.userNodeForPackage(this::class.java) @@ -61,8 +67,12 @@ class UnencryptedSettingsImpl @Inject internal constructor() : UnencryptedSettin operator fun getValue(thisRef: UnencryptedSettingsImpl, property: KProperty<*>): T { if (!::current.isInitialized) { - current = enumClass.enumConstants.find { it.name == thisRef.prefs.get(key, default.name) } - ?: throw IllegalArgumentException() + val value = thisRef.prefs.get(key, default.name) + current = enumClass.enumConstants.find { it.name == value } + ?: run { + LOG.e { "Unexpected enum value for ${enumClass.simpleName}: $value" } + default + } } return current } diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_ar.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_ar.properties index bfd2dab26aa2abb50d79f35553b4bd732e736954..95d944c506303ba53e8d5d21466c3143651cbf26 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_ar.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_ar.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Briar logo access.swap=Icon showing errors between two contacts +access.ourselves=Ourselves access.mode.contacts=Ø¯ÙØªØ± الاتصالات access.mode.groups=Private Groups access.mode.forums=المنتديات @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, zero {{0} unread posts} one {one unread posts} two {{0} unread posts} few {{0} unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=لايوجد جهات اتصال Ù…ÙØªÙˆØØ© @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=هل أنت متأكد من أنك ت conversation.change.alias.dialog.title=تعديل إسم جهة الاتصال conversation.change.alias.dialog.description=Please enter a new name for this contact (only visible to you): +# Forums +forum.search.title=المنتديات +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=انشاء منتدى +forum.add.hint=اختيار إسم لمنتداك +forum.add.button=Create forum +forum.leave.title=مغادرة المنتدى +forum.delete.dialog.title=تأكيد مغادرة المنتدى +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=مغادرة +forum.message.hint=منشور جديد +forum.message.reply.hint=رد جديد +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=لا منشورات +group.card.posts={0, plural, zero {{0} posts} one {{0} post} two {{0} posts} few {{0} posts} many {{0} posts} other {{0} posts}} +forum.sharing.status.title=ØØ§Ù„Ø© المشاركة +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=لا Ø£ØØ¯ +forum.sharing.action.title=مشاركة المنتدى +forum.sharing.action.add_message=Ø§Ø¶Ø§ÙØ© رسالة (إختياري) +forum.sharing.action.choose_contacts=إختر جهات الاتصال +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=ÙÙŠ طور المشاركة +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=تم إنشاؤها بواسطة {0} groups.card.messages={0, plural, zero {{0} رسائل} one {{0} رسائل} two {{0} رسائل} few {{0} رسائل} many {{0} رسائل} other {{0} رسائل}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=The blog invitation from {0} was automati blog.invitation.response.accepted.received=قبل/ت {0} دعوة المدونة. blog.invitation.response.declined.received=Ø±ÙØ¶/ت {0} دعوة المدونة. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=أنا +peer.trust.stranger=Stranger + # Main main.help.title=Briar Desktop Client @@ -212,6 +261,7 @@ warning=ØªØØ°ÙŠØ± unsupported_feature=Unfortunately, this feature is not yet supported by Briar Desktop. remove=ØØ°Ù hide=Ø¥Ø®ÙØ§Ø¡ +search=Ø¨ØØ« # Compose text edit actions copy=نسخ @@ -256,6 +306,8 @@ expiration.banner.part2=Please update to a newer version in time. # Notification notifications.message.private.one_chat={0, plural, zero {{0} new private messages.} one {New private message.} two {{0} new private messages.} few {{0} new private messages.} many {{0} new private messages.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, zero {{0} new forum posts.} one {New forum post.} two {{0} new forum posts.} few {{0} new forum posts.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=الإعدادات @@ -281,6 +333,7 @@ settings.security.password.change=تغيير كلمة السر settings.security.password.current=كلمة السر Ø§Ù„ØØ§Ù„ية settings.security.password.choose=كلمة السر الجديدة settings.security.password.confirm=تأكيد كلمة السر الجديدة +settings.security.password.changing=Changing password… settings.security.password.changed=تم تغيير كلمة السر # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_bg.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_bg.properties index c4601a70a8f16b699e66f2e13ad57247d3c1632b..190f492d3912e5fae9e4852dfd3798145afeac32 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_bg.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_bg.properties @@ -40,6 +40,7 @@ access.list.selected.yes=текущо избрани access.list.selected.no=текущо не избрани, щракнете за избиране access.logo=Логотип на Briar access.swap=Пиктограма, изобразÑваща грешка между два контакта +access.ourselves=Самите ние access.mode.contacts=Контакти access.mode.groups=ЧаÑтни групи access.mode.forums=Форуми @@ -58,6 +59,16 @@ access.settings.currently_disabled=Ð’ момента изключени access.settings.click_to_toggle_notifications=За да превключите извеÑтиÑта щракнете. access.return_to_previous_screen=Връщане към Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ ÐµÐºÑ€Ð°Ð½ +access.menu=Показва менюто +access.forums.add=Ð”Ð¾Ð±Ð°Ð²Ñ Ñ„Ð¾Ñ€ÑƒÐ¼ +access.forums.list=ÑпиÑък Ñ Ñ„Ð¾Ñ€ÑƒÐ¼Ð¸ +access.forums.reply.close=ЗатварÑне на отговора +access.forums.unread_count={0, plural, one {една непрочетена публикациÑ} other {{0} непрочетени публикации}} +access.forums.last_post_timestamp=поÑледна публикациÑ: {0} +access.forums.jump_to_prev_unread=Към предишната непрочетена Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ñ +access.forums.jump_to_next_unread=Към Ñледващата непрочетена Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ñ +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=ÐÑма избран контакт @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Сигурни ли Ñте, че же conversation.change.alias.dialog.title=Преименуване conversation.change.alias.dialog.description=Въведете ново име за контакта (видимо Ñамо за ваÑ): +# Forums +forum.search.title=Форуми +forum.empty_state.text=Ð’Ñе още нÑмате форуми. За да добавите, докоÑнете бутона +: +forum.none_selected.title=ÐÑма избрани форуми +forum.none_selected.hint=За да започнете разговор изберете форум +forum.add.title=Създаване на форум +forum.add.hint=Име на форума +forum.add.button=Създаване на форум +forum.leave.title=ÐапуÑкане на форума +forum.delete.dialog.title=Потвърждение на напуÑкане на форум +forum.delete.dialog.message=Сигурни ли Ñте, че иÑкате да напуÑнете този форум?\n\nКонтактите, Ñ ÐºÐ¾Ð¸Ñ‚Ð¾ Ñте го Ñподелили може да Ñпрат да получават публикации. +forum.delete.dialog.button=ÐапуÑкане +forum.message.hint=ÐŸÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ñ +forum.message.reply.hint=Отговор +forum.message.reply.intro=Отговор до: +forum.message.new=Ðепрочетена Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ñ +group.card.no_posts=ÐÑма публикации +group.card.posts={0, plural, one {{0} публикациÑ} other {{0} публикации}} +forum.sharing.status.title=СъÑтоÑние на ÑподелÑне +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Ðикого +forum.sharing.action.title=СподелÑне форума +forum.sharing.action.add_message=Добавете Ñъобщение (незадължително) +forum.sharing.action.choose_contacts=Избиране на контакти +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Вече е Ñподелен +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=ОÑновател {0} groups.card.messages={0, plural, one {{0} Ñъобщение} other {{0} ÑъобщениÑ}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Поканата на {0} за абона blog.invitation.response.accepted.received={0} прие поканата за абонамент за блог. blog.invitation.response.declined.received={0} отказа поканата за абонамент за блог. +# Peer trust level +peer.trust.unverified=Ðепроверен контакт +peer.trust.verified=Проверен контакт +peer.trust.ourselves=Ðз +peer.trust.stranger=Ðепознат + # Main main.help.title=Клиент на Briar за наÑтолно уÑтройÑтво @@ -212,6 +261,7 @@ warning=Внимание unsupported_feature=Unfortunately, this feature is not yet supported by Briar Desktop. remove=Премахване hide=Скриване +search=ТърÑене # Compose text edit actions copy=Копиране @@ -256,6 +306,8 @@ expiration.banner.part2=Обновете навреме. # Notification notifications.message.private.one_chat={0, plural, one {Ðово лично Ñъобщение.} other {{0} нови лични ÑъобщениÑ.}} notifications.message.private.several_chats={0} нови ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð² {1} лични разговора. +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=ÐаÑтройки @@ -281,6 +333,7 @@ settings.security.password.change=ПромÑна на парола settings.security.password.current=Текуща парола settings.security.password.choose=Ðова парола settings.security.password.confirm=Потвърдете новата парола +settings.security.password.changing=Changing password… settings.security.password.changed=Паролата е променена. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Визуални извеÑÑ‚Ð¸Ñ settings.notifications.visual.error.unsupported=Визуалните извеÑÑ‚Ð¸Ñ Ð¿Ð¾Ð½Ð°ÑтоÑщем не Ñе поддържат от ÑиÑтемата. Въпреки това можете да използвате звукови извеÑтиÑ. settings.notifications.visual.error.libnotify.load=Визуални извеÑÑ‚Ð¸Ñ Ð¼Ð¾Ð³Ð°Ñ‚ да бъдат показвани Ñамо ако е налична библиотеката libnotify. ПомиÑлете дали да не Ñ Ð¸Ð½Ñталирате, като Ñледвате обичайната процедура за инÑталиране за операционната ÑиÑтема. settings.notifications.visual.error.libnotify.init=Briar Desktop не може да Ñе Ñвърже ÑÑŠÑ Ñървър за извеÑтиÑ. Уверете Ñе, че има инÑталиран и наÑтроен Ñървър за извеÑтиÑ, ÑъвмеÑтим Ñ freedesktop.org. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Звукови извеÑÑ‚Ð¸Ñ # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_ca.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_ca.properties index 62f078bbc01b470e8b20eb62cf8a17cedf96d8f9..97c06a8794d36221b044cb78d32500d4f393189f 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_ca.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_ca.properties @@ -2,73 +2,84 @@ access.attachment_add=Afegeix un fitxer adjunt access.attachment_remove=Esborra el fitxer adjunt access.contacts.add=Afegeix un contacte -access.contact.list=contact list -access.contact.with_name=Contact "{0}" -access.contact.connected.yes=connected -access.contact.connected.no=not connected -access.contact.unread_count={0, plural, one {one unread message} other {{0} unread messages}} -access.contact.last_message_timestamp=last message: {0} -access.contact.pending.with_name=Pending contact "{0}" -access.contact.pending.added_timestamp=added: {0} +access.contact.list=llista de contactes +access.contact.with_name=Contacte «{0}» +access.contact.connected.yes=connectat +access.contact.connected.no=no connectat +access.contact.unread_count={0, plural, one {un missatge no llegit} other {{0} missatges no llegits}} +access.contact.last_message_timestamp=últim missatge: {0} +access.contact.pending.with_name=Contacte pendent «{0}» +access.contact.pending.added_timestamp=afegit: {0} access.contact.menu=Mostra el menú de contactes -access.contact.add.remote.your_link=Own link. Click to copy. -access.contact.add.remote.contact_link=Contact\'s link. Navigate inside to paste from clipboard. -access.contacts.dropdown.connections.expand=Expand connection menu -access.contacts.dropdown.contacts.expand=Expand contact menu -access.contacts.filter=Filter existing contacts by name or alias and add new contacts -access.contacts.pending.remove=Remove pending contact -access.conversation.list=Chat history -access.conversation.status.seen=message received by your contact -access.conversation.status.sent=message sent, but not received by your contact yet -access.conversation.status.scheduled=message not sent yet -access.conversation.message.unread=All messages below are still unread -access.conversation.message.blank.you=you wrote -access.conversation.message.blank.your_contact=your contact wrote -access.conversation.message.image.blank.you={0, plural, one {you sent an image} other {you sent {0} images}} -access.conversation.message.image.blank.your_contact={0, plural, one {your contact sent an image} other {your contact sent {0} images}} -access.conversation.message.image.caption.you={0, plural, one {you sent an image and wrote} other {you sent {0} images and wrote}} -access.conversation.message.image.caption.your_contact={0, plural, one {your contact sent an image and wrote} other {your contact sent {0} images and wrote}} -access.conversation.notice.additional_message=additional message -access.conversation.request.navigate_inside_to_react=navigate inside the item to react -access.conversation.request.click_to_open=click to open -access.introduction.back.contact=Go back to contact screen of introduction process -access.introduction.close=Close introduction screen -access.message.jump_to_unread=Jump to next unread message +access.contact.add.remote.your_link=Enllaç propi. Feu clic per copiar. +access.contact.add.remote.contact_link=Enllaç del contacte. Navegueu per dins per enganxar-lo des del porta-retalls. +access.contacts.dropdown.connections.expand=Desplega el menú de connexió +access.contacts.dropdown.contacts.expand=Desplega el menú de contactes +access.contacts.filter=Filtra els contactes existents per nom o à lies i afegeix contactes nous +access.contacts.pending.remove=Elimina el contacte pendent +access.conversation.list=Historial de xat +access.conversation.status.seen=missatge rebut pel vostre contacte +access.conversation.status.sent=missatge enviat, però encara no rebut pel vostre contacte +access.conversation.status.scheduled=missatge encara no enviat +access.conversation.message.unread=Tots els missatges següents encara no s'han llegit +access.conversation.message.blank.you=vau escriure +access.conversation.message.blank.your_contact=el vostre contacte va escriure +access.conversation.message.image.blank.you={0, plural, one {heu enviat una imatge} other {heu enviat {0} imatges}} +access.conversation.message.image.blank.your_contact={0, plural, one {el vostre contacte ha enviat una imatge} other {el vostre contacte ha enviat {0} imatges}} +access.conversation.message.image.caption.you={0, plural, one {heu enviat una imatge i heu escrit} other {heu enviat {0} imatges i heu escrit}} +access.conversation.message.image.caption.your_contact={0, plural, one {el vostre contacte va enviar una imatge i va escriure} other {el vostre contacte va enviar {0} imatges i va escriure}} +access.conversation.notice.additional_message=missatge addicional +access.conversation.request.navigate_inside_to_react=navegueu per l'element per reaccionar +access.conversation.request.click_to_open=feu clic per obrir +access.introduction.back.contact=Torneu a la pantalla de contacte del procés de presentació +access.introduction.close=Tanca la pantalla de presentació +access.message.jump_to_unread=Ves al següent missatge no llegit access.message.send=Envia el missatge access.message.sent=Missatge enviat -access.list.selected.yes=currently selected -access.list.selected.no=currently not selected, click to select +access.list.selected.yes=seleccionat actualment +access.list.selected.no=no seleccionat actualment, feu clic per seleccionar-lo access.logo=Logotip de Briar -access.swap=Icon showing errors between two contacts +access.swap=Icona que mostra errors entre dos contactes +access.ourselves=Nosaltres mateixos access.mode.contacts=Contactes access.mode.groups=Grups privats access.mode.forums=Fòrums access.mode.blogs=Blogs -access.mode.transports=Transport Settings +access.mode.transports=Configuració de transport access.mode.settings=Configuració access.mode.about=Sobre Briar Desktop -access.about.list=Information about your version of Briar Desktop, the Briar Project in general and how to get in touch +access.about.list=Informació sobre la versió del Briar Desktop, el projecte Briar en general i com posar-vos en contacte access.password.show=Mostra la contrasenya access.password.hide=Oculta la contrasenya -access.settings.current_value=Current value -access.settings.click_to_change_value=Click to change value -access.settings.click_to_change_password=Click to change password -access.settings.currently_enabled=Currently enabled -access.settings.currently_disabled=Currently disabled -access.settings.click_to_toggle_notifications=Click to toggle notifications +access.settings.current_value=Valor actual +access.settings.click_to_change_value=Feu clic per canviar el valor +access.settings.click_to_change_password=Feu clic per canviar la contrasenya +access.settings.currently_enabled=Actualment activat +access.settings.currently_disabled=Actualment desactivat +access.settings.click_to_toggle_notifications=Feu clic per canviar les notificacions -access.return_to_previous_screen=Return to previous screen +access.return_to_previous_screen=Torna a la pantalla anterior +access.menu=Mostra menú +access.forums.add=Afegeix un fòrum +access.forums.list=llista de fòrums +access.forums.reply.close=Tanca la resposta +access.forums.unread_count={0, plural, one {una publicació no llegida} other {{0} publicacions no llegides}} +access.forums.last_post_timestamp=últim missatge: {0} +access.forums.jump_to_prev_unread=Ves a la publicació anterior sense llegir +access.forums.jump_to_next_unread=Ves a la següent publicació no llegida +access.forum.sharing.action.close=Tanca el formulari de compartició +access.forum.sharing.status.close=Tanca l'estat de compartició # Contacts contacts.none_selected.title=Cap contacte seleccionat contacts.none_selected.hint=Tria un contacte per conversar -contacts.pending_selected.title=Pending contact selected -contacts.pending_selected.hint=You need to wait until the process of adding each other as contacts has finished before you can start chatting. +contacts.pending_selected.title=Contacte pendent seleccionat +contacts.pending_selected.hint=Heu d'esperar fins que s'hagi acabat el procés d'afegir-se com a contactes abans de començar a xatejar. contacts.card.nothing=Sense missatges contacts.dropdown.connections=Connexions contacts.dropdown.connections.title=Connexions contacts.dropdown.connections.bluetooth=Connecta via Bluetooth -contacts.dropdown.connections.removable=Connect via Removable Drive +contacts.dropdown.connections.removable=Connecta mitjançant una unitat extraïble contacts.dropdown.contact=Contacte contacts.dropdown.contact.title=Contacte contacts.dropdown.contact.change=Canvia el nom del contacte @@ -84,7 +95,7 @@ contacts.pending.remove.dialog.message=Aquest contacte encara està essent afegi conversation.message.unread=Missatges no llegits conversation.message.new=Missatge nou conversation.delete.all.dialog.title=Confirmeu l'esborrat dels missatges -conversation.delete.all.dialog.message=Are you sure that you want to delete all messages in this chat from your device? +conversation.delete.all.dialog.message=Esteu segur que voleu suprimir tots els missatges d'aquest xat del vostre dispositiu? conversation.delete.single=Elimina el missatge per a mi conversation.delete.failed.dialog.title=No s'han pogut esborrar tots els missatges conversation.delete.failed.dialog.message.ongoing_both=Els missatges relacionats amb presentacions i invitacions pendents no es poden suprimir fins que finalitzen. @@ -100,98 +111,136 @@ conversation.delete.contact.dialog.message=Segur que voleu suprimir aquest conta conversation.change.alias.dialog.title=Canvia el nom del contacte conversation.change.alias.dialog.description=Si us plau, introdueix un nom nou per a aquest contacte (només serà visible per a tu): +# Forums +forum.search.title=Fòrums +forum.empty_state.text=Encara no tens cap fòrum. Toqueu la icona + per afegir un fòrum: +forum.none_selected.title=No s'ha seleccionat cap fòrum +forum.none_selected.hint=Seleccioneu un fòrum per començar a xatejar +forum.add.title=Creeu un fòrum +forum.add.hint=Trieu un nom per al fòrum +forum.add.button=Crea un fòrum +forum.leave.title=Abandona el fòrum +forum.delete.dialog.title=Confirmeu l'abandonament del Fòrum +forum.delete.dialog.message=Esteu segur que voleu sortir d'aquest fòrum?\n\nÉs possible que els contactes amb els quals hageu compartit aquest fòrum deixin de rebre actualitzacions. +forum.delete.dialog.button=Abandona +forum.message.hint=Apunt nou +forum.message.reply.hint=Resposta nova +forum.message.reply.intro=Respon a: +forum.message.new=Publicació sense llegir +group.card.no_posts=No hi ha cap apunt +group.card.posts={0, plural, one {{0} publicació} other {{0} publicacions}} +forum.sharing.status.title=Estat de la compartició +forum.sharing.status.info=Qualsevol membre d'un fòrum pot compartir-lo amb els seus contactes. Esteu compartint aquest fòrum amb els contactes següents. També pot haver-hi altres membres que no podeu veure en aquesta llista, encara que podeu veure les seves publicacions al fòrum. +forum.sharing.status.with=Compartit amb {0} ({1} en lÃnia) +forum.sharing.status.nobody=Ningú +forum.sharing.action.title=Comparteix el fòrum +forum.sharing.action.add_message=Afegiu una nota (opcional) +forum.sharing.action.choose_contacts=Trieu els contactes +forum.sharing.action.no_contacts=Encara no hi ha contactes. Només podeu compartir fòrums amb els vostres contactes. +forum.sharing.action.status.already_shared=Ja l'esteu compartint +forum.sharing.action.status.already_invited=La invitació ja s'ha enviat +forum.sharing.action.status.invite_received=Invitació ja rebuda +forum.sharing.action.status.not_supported=Aquest contacte no és compatible +forum.sharing.action.status.error=Això és un error i no és culpa vostre + # Private Groups -groups.card.created=Created by {0} +groups.card.created=Creat per {0} groups.card.messages={0, plural, one {{0} missatge} other {{0} missatges}} # Introduction introduction.introduce=Presenta-li un altre contacte introduction.message=Afegiu una nota (opcional) -introduction.title_first=Introduce {0} to +introduction.title_first=Presenta a {0} a introduction.title_second=Presentació de contactes -introduction.request.sent=You have asked to introduce {0} to {1}. -introduction.request.received={0} has asked to introduce you to {1}. Do you want to add {1} to your contact list? -introduction.request.exists.received={0} has asked to introduce you to {1}, but {1} is already in your contact list. Since {0} might not know that, you can still respond: -introduction.request.answered.received={0} has asked to introduce you to {1}. -introduction.response.accepted.sent=You accepted the introduction to {0}. -introduction.response.accepted.sent.info=Before {0} gets added to your contacts, they need to accept the introduction as well. This might take some time. -introduction.response.declined.sent=You declined the introduction to {0}. -introduction.response.declined.auto=The introduction to {0} was automatically declined. -introduction.response.accepted.received={0} accepted the introduction to {1}. -introduction.response.declined.received={0} declined the introduction to {1}. -introduction.response.declined.received_by_introducee={0} says that {1} declined the introduction. +introduction.request.sent=Has demanat que presentar a {0} a {1}. +introduction.request.received={0} ha demanat presentar-vos {1}. Voleu afegir {1} a la vostra llista de contactes? +introduction.request.exists.received={0} ha demanat presentar-vos {1}, però {1} ja és en la vostra llista de contactes. Com que {0} podria no saber-ho, encara podeu respondre: +introduction.request.answered.received={0} ha demanat presentar-vos {1}. +introduction.response.accepted.sent=Heu acceptat la presentació de {0}. +introduction.response.accepted.sent.info=Abans que {0} sigui afegit als vostres contactes, cal que accepti la presentació també. Això podria trigar una mica. +introduction.response.declined.sent=Heu declinat la presentació de {0}. +introduction.response.declined.auto=La presentació de {0} ha estat automà ticament declinada. +introduction.response.accepted.received={0} ha acceptat la presentació de {1}. +introduction.response.declined.received={0} ha declinat la presentació de {1}. +introduction.response.declined.received_by_introducee={0} diu que {1} ha declinat la presentació. # Add Contact Remotely contact.add.title_dialog=Afegeix contacte contact.add.remote.title=Afegeix un contacte llunyà contact.add.remote.your_link=Lliureu aquest enllaç al contacte que voleu afegir -contact.add.remote.your_link_hint=Own link +contact.add.remote.your_link_hint=Enllaç propi contact.add.remote.copy_tooltip=Copia contact.add.remote.contact_link=Escriviu l'enllaç del vostre contacte -contact.add.remote.contact_link_hint=Contact\'s link +contact.add.remote.contact_link_hint=Enllaç del contacte contact.add.remote.paste_tooltip=Enganxa contact.add.remote.nickname_intro=Doneu un sobrenom al contacte. Només vós podreu veure'l. contact.add.remote.choose_nickname=Escriviu un sobrenom -contact.add.remote.link_copied_snackbar=Briar link copied to clipboard. -contact.add.remote.link_pasted_snackbar=Pasted from clipboard. -contact.add.remote.paste_error_snackbar=Your clipboard is empty. -contact.add.remote.outgoing_arrow=Outgoing Arrow -contact.add.remote.incoming_arrow=Incoming Arrow -contact.add.error.own_link=Please enter contact's link, not your own -contact.add.error.remote_invalid=Remote handshake link is invalid -contact.add.error.alias_invalid=Alias is invalid -contact.add.error.link_invalid=Link is invalid: {0} -contact.add.error.public_key_invalid=Public key is invalid: {0} -contact.add.error.adding_failed=Adding contact failed -contact.add.error.contact_already_exists=You already have a contact with this link: {0} -contact.add.error.pending_contact_already_exists=You already have a pending contact with this link: {0} -contact.add.error.duplicate_contact_explainer=Be careful if {0} is not the same person as {1}.\n\nOne of them may be trying to discover who your contacts are.\n\nDon't tell them you received the same link from someone else. +contact.add.remote.link_copied_snackbar=S'ha copiat l'enllaç del Briar al porta-retalls. +contact.add.remote.link_pasted_snackbar=Enganxat del porta-retalls. +contact.add.remote.paste_error_snackbar=El porta-retalls està buit. +contact.add.remote.outgoing_arrow=Fletxa de sortida +contact.add.remote.incoming_arrow=Fletxa d'entrada +contact.add.error.own_link=Introduïu l'enllaç del contacte, no el vostre +contact.add.error.remote_invalid=L'enllaç de conformitat no és và lid +contact.add.error.alias_invalid=L'à lies no és và lid +contact.add.error.link_invalid=L'enllaç és invà lid: {0} +contact.add.error.public_key_invalid=La clau pública és invà lida: {0} +contact.add.error.adding_failed=No s'ha pogut afegir el contacte +contact.add.error.contact_already_exists=Ja teniu un contacte amb aquest enllaç: {0} +contact.add.error.pending_contact_already_exists=Encara teniu un contacte pendent amb aquest enllaç: {0} +contact.add.error.duplicate_contact_explainer=Aneu amb compte si {0} no és la mateixa persona que {1}.\n\nUn d'ells podria estar intentant descobrir qui són els vostres contactes.\n\nNo els digueu que heu rebut el mateix enllaç d'algú altre. # Private Group Sharing -group.invitation.received={0} has invited you to join the group "{1}". -group.invitation.sent=You have invited {0} to join the group "{1}". -group.invitation.response.accepted.sent=You accepted the group invitation from {0}. -group.invitation.response.declined.sent=You declined the group invitation from {0}. -group.invitation.response.declined.auto=The group invitation from {0} was automatically declined. -group.invitation.response.accepted.received={0} accepted the group invitation. -group.invitation.response.declined.received={0} declined the group invitation. +group.invitation.received={0} us ha convidat a unir-vos al grup "{1}". +group.invitation.sent=Heu convidat {0} a unir-se al grup "{1}". +group.invitation.response.accepted.sent=Heu acceptat la invitació al grup de {0}. +group.invitation.response.declined.sent=Heu declinat la invitació al grup de {0}. +group.invitation.response.declined.auto=La invitació al grup de {0} ha estat automà ticament declinada. +group.invitation.response.accepted.received={0} ha acceptat la invitació al grup. +group.invitation.response.declined.received={0} ha declinat la invitació al grup. # Forum Sharing -forum.invitation.received={0} has shared the forum "{1}" with you. -forum.invitation.sent=You have shared the forum "{0}" with {1}. -forum.invitation.response.accepted.sent=You accepted the forum invitation from {0}. -forum.invitation.response.declined.sent=You declined the forum invitation from {0}. -forum.invitation.response.declined.auto=The forum invitation from {0} was automatically declined. -forum.invitation.response.accepted.received={0} accepted the forum invitation. -forum.invitation.response.declined.received={0} declined the forum invitation. +forum.invitation.received={0} ha compartit el fòrum "{1}" amb vós. +forum.invitation.sent=Heu compartit el fòrum "{0}" amb {1}. +forum.invitation.response.accepted.sent=Heu acceptat la invitació al fòrum de {0}. +forum.invitation.response.declined.sent=Heu declinat la invitació al fòrum de {0}. +forum.invitation.response.declined.auto=La invitació de {0} ha estat declinada automà ticament. +forum.invitation.response.accepted.received={0} ha acceptat la invitació al fòrum. +forum.invitation.response.declined.received={0} ha declinat la invitació al fòrum. # Blog Sharing -blog.invitation.received={0} has shared the blog "{1}" with you. -blog.invitation.sent=You have shared the blog "{0}" with {1}. -blog.invitation.response.accepted.sent=You accepted the blog invitation from {0}. -blog.invitation.response.declined.sent=You declined the blog invitation from {0}. -blog.invitation.response.declined.auto=The blog invitation from {0} was automatically declined. -blog.invitation.response.accepted.received={0} accepted the blog invitation. -blog.invitation.response.declined.received={0} declined the blog invitation. +blog.invitation.received={0} ha compartit el blog "{1}" amb vós. +blog.invitation.sent=Heu compartit el blog "{0}" amb {1}. +blog.invitation.response.accepted.sent=Heu acceptat la invitació al blog de {0}. +blog.invitation.response.declined.sent=Heu declinat la invitació al blog de {0}. +blog.invitation.response.declined.auto=La invitació al blog de {0} ha estat automà ticament declinada. +blog.invitation.response.accepted.received={0} ha acceptat la invitació al blog. +blog.invitation.response.declined.received={0} ha declinat la invitació al blog. + +# Peer trust level +peer.trust.unverified=Contacte no verificat +peer.trust.verified=Contacte verificat +peer.trust.ourselves=Jo +peer.trust.stranger=Estrany # Main -main.help.title=Briar Desktop Client -main.help.debug=Enable printing of debug messages -main.help.verbose=Print verbose log messages -main.help.data=The directory where Briar will store its files. Default: {0} -main.help.tor.port.socks=Tor Socks Port -main.help.tor.port.control=Tor Control Port +main.help.title=Client Briar Desktop +main.help.debug=Activa la impressió de missatges de depuració +main.help.verbose=Imprimeix missatges de registre detallats +main.help.data=El directori on Briar emmagatzemarà els fitxers. Per defecte: {0} +main.help.tor.port.socks=Port del sòcol de Tor +main.help.tor.port.control=Port de control de Tor # Welcome welcome.title=Benvingut a Briar -welcome.text=You don't have any contacts yet. Tap the + icon to add a contact: +welcome.text=Encara no tens cap contacte. Toqueu la icona + per afegir un contacte: # About -about.copyright=Copyright +about.copyright=Drets d'autor about.license=Llicència about.version=Versió -about.version.core=Briar Core Version +about.version.core=Versió del Briar Core about.contact=Contacte about.website=Lloc web @@ -209,23 +258,24 @@ open=Obre sorry=Ens sap greu error=Error warning=AvÃs -unsupported_feature=Unfortunately, this feature is not yet supported by Briar Desktop. +unsupported_feature=Malauradament, el Briar Desktop encara no admet aquesta funció. remove=Suprimeix la subscripció hide=Oculta +search=Cerca # Compose text edit actions copy=Copia -cut=Cut +cut=Retalla paste=Enganxa select_all=Selecciona-ho tot # Startup screen startup.title.registration=Benvingut a Briar -startup.title.login=Welcome back +startup.title.login=Benvingut de nou startup.field.nickname=Sobrenom startup.field.nickname.explanation=El vostre sobrenom etiquetarà tot el que publiqueu. Després de crear el compte ja no podreu canviar el sobrenom. startup.field.password=Contrasenya -startup.field.password.explanation=Your Briar account is stored encrypted on your device, not in the cloud. If you forget your password or uninstall Briar, there's no way to recover your account.\n\nChoose a long password that's hard to guess, such as four random words, or ten random letters, numbers and symbols. +startup.field.password.explanation=El compte de Briar s'emmagatzema xifrat en el vostre dispositiu, no en el núvol.Si oblideu la contrasenya o desinstal·leu Briar no podreu recuperar el vostre compte ni les dades associades.\n\nTrieu una contrasenya llarga que sigui difÃcil d'endevinar, com ara quatre paraules aleatòries o deu lletres, números i sÃmbols aleatoris. startup.field.password_confirmation=Confirmeu la contrasenya startup.button.register=Crea el compte startup.button.login=Entra @@ -238,11 +288,11 @@ startup.error.decryption.text=Briar no pot verificar la contrasenya. Proveu de r startup.password_forgotten.button=No recordo la contrasenya startup.password_forgotten.title=Contrasenya perduda startup.password_forgotten.text=El teu compte de Briar està emmagatzemat de forma encriptada al teu dispositiu, no al núvol, aixà que no podem restaurar la teva contrasenya. Vols eliminar el teu compte i tornar a començar?\n\nAdvertència: Les teves identitats, contactes i missatges es perdran permanentment. -startup.failed.expired=This software has expired. Thank you for testing!\n\nTo continue using Briar, please download the latest release. You will be able to continue using your account. +startup.failed.expired=El programa ha caducat. Grà cies per haver-lo provat.\n\nPer a continuar fent servir Briar, si us plau, descarregueu la versió més recent. Podreu continuar usant el vostre compte. startup.failed.registration=Briar no ha pogut crear el teu compte.\n\nSi us plau, actualitza a la darrera versió i torna a intentar-ho. startup.failed.clock_error=Briar no ha pogut arrencar perquè el rellotge del teu dispositiu no està posat a l'hora.\n\nSi us plau, ajusta el rellotge del teu dispositiu correctament i torna a intentar-ho. -startup.failed.db_error=Briar was unable to open the database containing your account, your contacts and your messages.\n\nPlease check if Briar is already running on this device. Otherwise, upgrade to the latest version of the app and try again, or set up a new account by choosing 'I have forgotten my password' at the password prompt. -startup.failed.data_too_old_error=Your account was created with an old version of this app and cannot be opened with this version.\n\nYou must either reinstall the old version or set up a new account by choosing 'I have forgotten my password' at the password prompt. +startup.failed.db_error=El Briar no ha pogut obrir la base de dades que conté el vostre compte, els vostres contactes i els vostres missatges.\n\nActualitzeu a la darrera versió de l'aplicació i torneu-ho a provar, o configureu un compte nou seleccionant «He oblidat la meva contrasenya» a la sol·licitud de contrasenya. +startup.failed.data_too_old_error=El vostre compte va ser creat amb una versió antiga d'aquesta aplicació i no es pot obrir amb aquesta versió.\n\nHeu de tornar a instal·lar la versió antiga o configurar un compte nou escollint «He oblidat la meva contrasenya» a la sol·licitud de contrasenya. startup.failed.data_too_new_error=El teu compte va ser creat mitjançant una versió més recent d'aquesta aplicació i no es pot obrir amb aquesta versió.\n\nSi us plau, actualitza a la darrera versió i torna a intentar-ho. startup.failed.service_error=Briar no ha pogut inicialitzar un component essencial.\n\nSi us plau, actualitza a la darrera versió de l'applicació i torna a intentar-ho. startup.database.creating=Creant el compte... @@ -254,8 +304,10 @@ expiration.banner.part1.nozero={0, plural, one {Aquesta és una versió de prova expiration.banner.part2=Si us plau, actualitza a una nova versió a temps. # Notification -notifications.message.private.one_chat={0, plural, one {New private message.} other {{0} new private messages.}} -notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.private.one_chat={0, plural, one {Missatge privat nou.} other {{0} missatges privats nous.}} +notifications.message.private.several_chats={0} nous missatges en {1} xats privats. +notifications.message.forum.one_forum={0, plural, one {Nova publicació al fòrum.} other {{0} publicacions noves al fòrum.}} +notifications.message.forum.several_forum={0} publicacions noves en {1} fòrums. # Settings settings.title=Configuració @@ -281,15 +333,17 @@ settings.security.password.change=Canvia la contrasenya settings.security.password.current=Contrasenya actual settings.security.password.choose=Contrasenya nova settings.security.password.confirm=Confirmació de la contrasenya nova +settings.security.password.changing=S'està canviant la contrasenya... settings.security.password.changed=Heu canviat la contrasenya. # Settings Notifications settings.notifications.title=Notificacions -settings.notifications.visual.title=Visual notifications -settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. -settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. -settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. -settings.notifications.sound.title=Sound notifications +settings.notifications.visual.title=Notificacions visuals +settings.notifications.visual.error.unsupported=Actualment, el vostre sistema no admet les notificacions visuals. Encara podeu activar les notificacions de so. +settings.notifications.visual.error.libnotify.load=Les notificacions només es poden mostrar visualment si libnotify està disponible. Penseu en instal·lar-lo seguint el procediment d'instal·lació habitual del vostre sistema. +settings.notifications.visual.error.libnotify.init=El Briar Desktop no s'ha pogut connectar a cap servidor de notificacions. Assegureu-vos de tenir un servidor de notificacions compatible amb freedesktop.org instal·lat i configurat correctament. +settings.notifications.visual.error.toast4j.init=El Briar Desktop no ha pogut inicialitzar el sistema de notificacions. +settings.notifications.sound.title=Notificacions sonores # Settings Actions settings.actions.title=Accions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_de.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_de.properties index ad26296f90f3dccb5c5fbc31ad6984d64f908abb..0bfdf78e87c7a2b3459749ccb3f987b7cd3d72f8 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_de.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_de.properties @@ -40,6 +40,7 @@ access.list.selected.yes=aktuell ausgewählt access.list.selected.no=aktuell nicht ausgewählt, zum Auswählen anklicken access.logo=Briar-Logo access.swap=Symbol für die Fehleranzeige zwischen zwei Kontakten +access.ourselves=Selbst access.mode.contacts=Kontakte access.mode.groups=Private Gruppen access.mode.forums=Foren @@ -58,6 +59,16 @@ access.settings.currently_disabled=Aktuell deaktiviert access.settings.click_to_toggle_notifications=Anklicken, um Benachrichtigungen umzuschalten access.return_to_previous_screen=Zum vorherigen Bildschirm zurückkehren +access.menu=Menü anzeigen +access.forums.add=Forum hinzufügen +access.forums.list=Forenliste +access.forums.reply.close=Antworten schließen +access.forums.unread_count={0, plural, one {ein ungelesener Beitrag} other {{0} ungelesenen Beiträge}} +access.forums.last_post_timestamp=letzter Beitrag: {0} +access.forums.jump_to_prev_unread=Zum vorherigen ungelesenen Beitrag springen +access.forums.jump_to_next_unread=Zum nächsten ungelesenen Beitrag springen +access.forum.sharing.action.close=Teilen schließen +access.forum.sharing.status.close=Freigabestatus schließen # Contacts contacts.none_selected.title=Kein Kontakt ausgewählt @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Bist du sicher, dass du diesen Kontak conversation.change.alias.dialog.title=Kontaktnamen ändern conversation.change.alias.dialog.description=Bitte gib einen neuen Namen für diesen Kontakt ein (er ist nur für dich sichtbar): +# Forums +forum.search.title=Foren +forum.empty_state.text=Du hast noch keine Foren. Tippe auf das + Symbol, um ein Forum hinzuzufügen: +forum.none_selected.title=Kein Forum ausgewählt +forum.none_selected.hint=Wähle ein Forum aus, um mit dem Chatten zu beginnen +forum.add.title=Forum erstellen +forum.add.hint=Wähle einen Namen für dein Forum +forum.add.button=Forum erstellen +forum.leave.title=Forum verlassen +forum.delete.dialog.title=Verlassen des Forums bestätigen +forum.delete.dialog.message=Bist du sicher, dass du dieses Forum verlassen willst?\n\nKontakte, mit denen du dieses Forum geteilt hast, werden keine Updates mehr von diesem Forum bekommen. +forum.delete.dialog.button=Verlassen +forum.message.hint=Neuer Beitrag +forum.message.reply.hint=Neue Antwort +forum.message.reply.intro=Antwort an: +forum.message.new=Ungelesener Beitrag +group.card.no_posts=Keine Beiträge +group.card.posts={0, plural, one {{0} Beitrag} other {{0} Beiträge}} +forum.sharing.status.title=Freigabestatus +forum.sharing.status.info=Jedes Mitglied eines Forums kann es mit seinen Kontakten teilen. Du teilst dieses Forum mit den folgenden Kontakten. Es kann auch andere Mitglieder geben, die du in dieser Liste nicht sehen kannst, obwohl du ihre Beiträge im Forum sehen kannst. +forum.sharing.status.with=Geteilt mit {0} ({1} online) +forum.sharing.status.nobody=Niemand +forum.sharing.action.title=Forum teilen +forum.sharing.action.add_message=Nachricht hinzufügen (optional) +forum.sharing.action.choose_contacts=Kontakte auswählen +forum.sharing.action.no_contacts=Du hast noch keine Kontakte. Du kannst Foren nur mit deinen Kontakten teilen. +forum.sharing.action.status.already_shared=Bereits geteilt. +forum.sharing.action.status.already_invited=Die Einladung wurde bereits versendet. +forum.sharing.action.status.invite_received=Die Einladung wurde bereits empfangen. +forum.sharing.action.status.not_supported=Dies wird von diesem Kontakt nicht unterstützt. +forum.sharing.action.status.error=Fehler. Dies ist ein Bug und ist nicht dein Fehler. + # Private Groups groups.card.created=Erstellt von {0} groups.card.messages={0, plural, one {{0} Nachricht} other {{0} Nachrichten}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Die Blogeinladung von {0} wurde automatis blog.invitation.response.accepted.received={0} hat die Blogeinladung angenommen. blog.invitation.response.declined.received={0} hat die Blogeinladung abgelehnt. +# Peer trust level +peer.trust.unverified=Nicht überprüfter Kontakt +peer.trust.verified=Überprüfter Kontakt +peer.trust.ourselves=Ich +peer.trust.stranger=Fremder + # Main main.help.title=Briar Desktop Client @@ -212,6 +261,7 @@ warning=Warnung unsupported_feature=Leider wird diese Funktion noch nicht von Briar Desktop unterstützt. remove=Entfernen hide=Verstecken +search=Suche # Compose text edit actions copy=Kopieren @@ -256,6 +306,8 @@ expiration.banner.part2=Bitte aktualisiere sie rechtzeitig auf eine neuere Versi # Notification notifications.message.private.one_chat={0, plural, one {Neue private Nachricht.} other {{0} neue private Nachrichten.}} notifications.message.private.several_chats={0} neue Nachrichten in {1} privaten Chats. +notifications.message.forum.one_forum={0, plural, one {Neuer Forumbeitrag.} other {{0}neue Forumbeiträge.}} +notifications.message.forum.several_forum={0}neue Beiträge in {1} Foren. # Settings settings.title=Einstellungen @@ -281,6 +333,7 @@ settings.security.password.change=Passwort ändern settings.security.password.current=Aktuelles Passwort settings.security.password.choose=Neues Passwort settings.security.password.confirm=Neues Passwort bestätigen +settings.security.password.changing=Ändere Passwort… settings.security.password.changed=Passwort wurde geändert. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visuelle Benachrichtigungen settings.notifications.visual.error.unsupported=Visuelle Benachrichtigungen werden derzeit von deinem System nicht unterstützt. Du kannst jedoch Tonbenachrichtigungen aktivieren. settings.notifications.visual.error.libnotify.load=Benachrichtigungen können nur dann visuell angezeigt werden, wenn libnotify verfügbar ist. Bitte überlege Dir, es zu installieren, und folge dabei den üblichen Installationsverfahren für dein System. settings.notifications.visual.error.libnotify.init=Briar Desktop konnte keine Verbindung zu einem Benachrichtigungsserver herstellen. Bitte stelle sicher, dass ein freedesktop.org-kompatibler Benachrichtigungsserver installiert und richtig konfiguriert ist. +settings.notifications.visual.error.toast4j.init=Briar Desktop kann das Benachrichtigungssystem nicht initialisieren. settings.notifications.sound.title=Tonbenachrichtigungen # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_es.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_es.properties index 86b434a442bc6e9552a4ae2039facb6ff0bf571b..2458f63fa71044d666b796a4b9809c261dc6dbcd 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_es.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_es.properties @@ -40,6 +40,7 @@ access.list.selected.yes=actualmente seleccionado access.list.selected.no=actualmente no está seleccionada, haga clic para seleccionarla access.logo=Logo de Briar access.swap=Ãcono mostrando errores entre dos contactos +access.ourselves=Nosotras mismas access.mode.contacts=Contactos access.mode.groups=Grupos privados access.mode.forums=Foros @@ -53,11 +54,21 @@ access.password.hide=Ocultar contraseña access.settings.current_value=Valor actual access.settings.click_to_change_value=Haga clic para cambiar el valor access.settings.click_to_change_password=Haga clic para cambiar la contraseña -access.settings.currently_enabled=Currently enabled -access.settings.currently_disabled=Currently disabled +access.settings.currently_enabled=Actualmente habilitado +access.settings.currently_disabled=Actualmente desactivado access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Volver a la pantalla anterior +access.menu=Mostrar menú +access.forums.add=Añadir foro +access.forums.list=lista de foros +access.forums.reply.close=Cerrar respuesta +access.forums.unread_count={0, plural, one {one unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Ningún contacto seleccionado @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=¿Seguro que quieres eliminar este co conversation.change.alias.dialog.title=Cambiar nombre del contacto conversation.change.alias.dialog.description=Por favor ingresa un nombre nuevo para este contacto (solo visible para tÃ): +# Forums +forum.search.title=Foros +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Crear foro +forum.add.hint=Elige un nombre para el foro +forum.add.button=Crear foro +forum.leave.title=Abandonar foro +forum.delete.dialog.title=Confirmación abandono del foro +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Abandonar +forum.message.hint=Nueva publicación +forum.message.reply.hint=Nueva respuesta +forum.message.reply.intro=Responder a: +forum.message.new=Publicación no leÃda +group.card.no_posts=Sin publicaciones +group.card.posts={0, plural, one {{0} post} many {{0} posts} other {{0} posts}} +forum.sharing.status.title=Estado de la compartición +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Nadie +forum.sharing.action.title=Compartir foro +forum.sharing.action.add_message=Añade un mensaje (opcional) +forum.sharing.action.choose_contacts=Elige contactos +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Ya se está compartiendo +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Creado por {0} groups.card.messages={0, plural, one {un mensaje} many {{0} mensajes} other {{0} mensajes}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=La invitación al blog de {0} fue automá blog.invitation.response.accepted.received={0} aceptó la invitación al blog. blog.invitation.response.declined.received={0} rechazó la invitación al blog. +# Peer trust level +peer.trust.unverified=Contacto no verificado +peer.trust.verified=Contacto verificado +peer.trust.ourselves=Yo +peer.trust.stranger=Extraño + # Main main.help.title=Cliente de Escritorio Briar @@ -212,6 +261,7 @@ warning=Advertencia unsupported_feature=Desafortunadamente, esta caracterÃstica todavÃa no está soportada por Briar Desktop. remove=Eliminar hide=Ocultar +search=Buscar # Compose text edit actions copy=Copiar @@ -256,6 +306,8 @@ expiration.banner.part2=Por favor actualiza a una versión más nueva a tiempo. # Notification notifications.message.private.one_chat={0, plural, one {New private message.} many {{0} new private messages.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Configuración @@ -281,14 +333,16 @@ settings.security.password.change=Cambiar contraseña settings.security.password.current=Contraseña actual settings.security.password.choose=Nueva contraseña settings.security.password.confirm=Confirmar la nueva contraseña +settings.security.password.changing=Changing password… settings.security.password.changed=La contraseña ha sido cambiada. # Settings Notifications settings.notifications.title=Notificaciones -settings.notifications.visual.title=Visual notifications +settings.notifications.visual.title=Notificaciones visuales settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_fa.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_fa.properties index 1fa851782f1b1e5284d4323c553ec4cad3944a42..a0db6f3cb4a395749edbbb367c66b710fba8a4da 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_fa.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_fa.properties @@ -40,6 +40,7 @@ access.list.selected.yes=در ØØ§Ù„ ØØ§Ø¶Ø± انتخاب شده است access.list.selected.no=در ØØ§Ù„ ØØ§Ø¶Ø± انتخاب نشده است، برای انتخاب کلیک کنید access.logo=لوگو Briar access.swap=آیکون نمایش خطاهای بین دو مخاطب +access.ourselves=خودمان access.mode.contacts=مخاطبان access.mode.groups=گروه های خصوصی access.mode.forums=انجمن ها @@ -58,6 +59,16 @@ access.settings.currently_disabled=در ØØ§Ù„ ØØ§Ø¶Ø± ØºÛŒØ±ÙØ¹Ø§Ù„ است access.settings.click_to_toggle_notifications=برای تغییر وضعیت آگاه‌سازی‌ها کلیک کنید access.return_to_previous_screen=بازگشت به ØµÙØÙ‡ قبلی +access.menu=نمایش منو +access.forums.add=تالار Ú¯ÙØªÚ¯Ùˆ اضاÙÙ‡ کنید +access.forums.list=لیست تالار Ú¯ÙØªÚ¯Ùˆ +access.forums.reply.close=بستن پاسخ +access.forums.unread_count={0, plural, one {یک پست خوانده نشده} other {{0} پست خوانده نشده}} +access.forums.last_post_timestamp=آخرین پست: {0} +access.forums.jump_to_prev_unread=به پست خوانده نشده قبلی بروید +access.forums.jump_to_next_unread=به پست خوانده نشده بعدی بروید +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=اشتراک‌گذاری وضعیت را ببندید # Contacts contacts.none_selected.title=هیچ مخاطبی انتخاب نشده است @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=آیا مطمئن هستید Ú©Ù‡ Ù… conversation.change.alias.dialog.title=تغییر نام مخاطب conversation.change.alias.dialog.description=Ù„Ø·ÙØ§ یک نام جدید برای این مخاطب وارد کنید (Ùقط برای شما قابل مشاهده است): +# Forums +forum.search.title=انجمن ها +forum.empty_state.text=شما هنوز هیچ تالار Ú¯ÙØªÚ¯ÙˆÛŒÛŒ ندارید. برای Ø§ÙØ²ÙˆØ¯Ù† یک تالار Ú¯ÙØªÚ¯Ùˆ روی نماد + بزنید: +forum.none_selected.title=هیچ تالار Ú¯ÙØªÚ¯ÙˆÛŒÛŒ انتخاب نشده +forum.none_selected.hint=برای شروع Ú¯ÙØªÚ¯ÙˆØŒ یک تالار Ú¯ÙØªÚ¯Ùˆ انتخاب کنید +forum.add.title=ایجاد ÙØ±ÙˆÙ… +forum.add.hint=انتخاب یک نام برای ÙØ±ÙˆÙ… +forum.add.button=ایجاد تالار Ú¯ÙØªÚ¯Ùˆ +forum.leave.title=ترک ÙØ±ÙˆÙ… +forum.delete.dialog.title=تأیید ترک ÙØ±ÙˆÙ… +forum.delete.dialog.message=آیا مطمئن هستید Ú©Ù‡ می‌خواهید از این تالار Ú¯ÙØªÚ¯Ùˆ خارج شوید؟\n\nهر مخاطبی Ú©Ù‡ این تالار Ú¯ÙØªÚ¯Ùˆ را با آن‌ها به اشتراک گذاشته‌اید ممکن است دیگر به‌روزرسانی Ø¯Ø±ÛŒØ§ÙØª نکنند. +forum.delete.dialog.button=ترک +forum.message.hint=پست جدید +forum.message.reply.hint=پاسخ جدید +forum.message.reply.intro=پاسخ به: +forum.message.new=پست خوانده نشده +group.card.no_posts=هیچ پستی وجود ندارد +group.card.posts={0, plural, one {{0} پست} other {{0} پست}} +forum.sharing.status.title=به اشتراک گذاری وضعیت +forum.sharing.status.info=هر عضوی از تالار Ú¯ÙØªÚ¯Ùˆ می‌تواند آن را با مخاطبین خود به اشتراک بگذارد. شما این تالار Ú¯ÙØªÚ¯Ùˆ را با مخاطبین زیر به اشتراک می‌گذارید. همچنین ممکن است اعضای دیگری وجود داشته باشند Ú©Ù‡ نتوانید آن‌ها را در این لیست ببینید، اگرچه می‌توانید پست‌های آن‌ها را در تالار Ú¯ÙØªÚ¯Ùˆ مشاهده کنید. +forum.sharing.status.with=به اشتراک گذاشته شده با {0} ({1} آنلاین) +forum.sharing.status.nobody=هیچکس +forum.sharing.action.title=اشتراک گذاری ÙØ±ÙˆÙ… +forum.sharing.action.add_message=Ø§ÙØ²ÙˆØ¯Ù† یک پیام (اختیاری) +forum.sharing.action.choose_contacts=انتخاب مخاطبان +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=در ØØ§Ù„ به اشتراک گذاری +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=ایجاد شده توسط {0} groups.card.messages={0, plural, one {{0} پیام} other {{0} پیام}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=دعوت به وبلاگ از {0} به ص blog.invitation.response.accepted.received={0} دعوت به وبلاگ را Ù¾Ø°ÛŒØ±ÙØª. blog.invitation.response.declined.received={0} دعوت به وبلاگ را رد کرد. +# Peer trust level +peer.trust.unverified=مخاطب تایید نشده +peer.trust.verified=مخاطب تایید شده +peer.trust.ourselves=من +peer.trust.stranger=غریبه + # Main main.help.title=نسخه دسکتاپ Briar @@ -212,6 +261,7 @@ warning=هشدار unsupported_feature=Ù…ØªØ§Ø³ÙØ§Ù†Ù‡ این ویژگی هنوز در Briar دسکتاپ پشتیبانی نمی‌شود. remove=پاک کردن hide=پنهان کردن +search=جستجو # Compose text edit actions copy=Ú©Ù¾ÛŒ @@ -256,6 +306,8 @@ expiration.banner.part2=Ù„Ø·ÙØ§ به موقع به نسخه جدیدتر به # Notification notifications.message.private.one_chat={0, plural, one {یک پیام خصوصی جدید.} other {{0} پیام خصوصی جدید.}} notifications.message.private.several_chats={0} پیام جدید در {1} Ú¯ÙØªÚ¯ÙˆÛŒ خصوصی. +notifications.message.forum.one_forum={0, plural, one {یک پست جدید تالار Ú¯ÙØªÚ¯Ùˆ.} other {{0} پست جدید تالار Ú¯ÙØªÚ¯Ùˆ.}} +notifications.message.forum.several_forum={0} پست جدید در {1} تالار Ú¯ÙØªÚ¯Ùˆ. # Settings settings.title=تنظیمات @@ -281,6 +333,7 @@ settings.security.password.change=تغییر گذرواژه settings.security.password.current=گذرواژهٔ ÙØ¹Ù„ÛŒ settings.security.password.choose=گذرواژهٔ جدید settings.security.password.confirm=تائید گذرواژه جدید +settings.security.password.changing=Changing password… settings.security.password.changed=گذرواژه تغییر کرده است # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=آگاه‌سازی‌های بصری settings.notifications.visual.error.unsupported=آگاه‌سازی‌های بصری در سیستم شما پشتیبانی نمی‌شوند. همچنان می‌توانید آگاه‌سازی‌های صوتی را ÙØ¹Ø§Ù„ کنید. settings.notifications.visual.error.libnotify.load=آگاه‌سازی‌ها Ùقط در صورتی می‌توانند به صورت بصری نشان داده شوند Ú©Ù‡ libnotify در دسترس باشد. Ù„Ø·ÙØ§ آن را طبق روش معمول در سیستم خود نصب کنید. settings.notifications.visual.error.libnotify.init=Briar Desktop نمی‌تواند به هیچ سرور آگاه‌سازی‌ها متصل شود. Ù„Ø·ÙØ§ مطمئن شوید Ú©Ù‡ یک سرور آگاه‌سازی سازگار با freedesktop.org نصب Ùˆ به درستی پیکربندی شده است. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=آگاه‌سازی‌های صوتی # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_fr.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_fr.properties index 4c5edcfdfd539ce7a25052424a35359c1664596d..3bc5fa124ed4f8eecdb8b60652af26b17799b89f 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_fr.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_fr.properties @@ -40,6 +40,7 @@ access.list.selected.yes=Actuellement sélectionné access.list.selected.no=Actuellement non sélectionné, cliquer pour sélectionner access.logo=Logo de Briar access.swap=Icône qui affiche des erreurs entre deux contacts +access.ourselves=Ourselves access.mode.contacts=Contacts access.mode.groups=Groupes privés access.mode.forums=Forums @@ -58,6 +59,16 @@ access.settings.currently_disabled=Actuellement désactivé access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Retourner à l'écran précédent +access.menu=Afficher le menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Aucun contact n’est sélectionné @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Voulez-vous vraiment supprimer ce con conversation.change.alias.dialog.title=Changer le nom du contact conversation.change.alias.dialog.description=Veuillez saisir un nouveau nom pour ce contact (seulement visible par vous) : +# Forums +forum.search.title=Forums +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Créer un forum +forum.add.hint=Choisissez un nom pour votre forum +forum.add.button=Créer forum +forum.leave.title=Quitter le forum +forum.delete.dialog.title=Confirmer la sortie du forum +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Fermer +forum.message.hint=Nouvelle article +forum.message.reply.hint=Nouvelle réponse +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Aucun article +group.card.posts={0, plural, one {{0} post} many {{0} posts} other {{0} posts}} +forum.sharing.status.title=État de partage +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Personne +forum.sharing.action.title=Partager le forum +forum.sharing.action.add_message=Ajouter un message (facultatif) +forum.sharing.action.choose_contacts=Choisir des contacts +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Le forum est déjà partagé +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Créé par {0} groups.card.messages={0, plural, one {{0} message} many {{0} messages} other {{0} messages}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=L’invitation au blogue provenant de {0} blog.invitation.response.accepted.received={0} a accepté l’invitation au blogue. blog.invitation.response.declined.received={0} a refusé l’invitation au blogue. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=Me +peer.trust.stranger=Stranger + # Main main.help.title=Client Briar pour ordinateur @@ -212,6 +261,7 @@ warning=Avertissement unsupported_feature=Malheureusement, cette fonction n’est pas encore prise en charge par Briar pour ordinateur remove=Supprimer hide=Cacher +search=Recherche # Compose text edit actions copy=Copier @@ -256,6 +306,8 @@ expiration.banner.part2=Veuillez mettre l’appli à niveau vers une version plu # Notification notifications.message.private.one_chat={0, plural, one {New private message.} many {{0} new private messages.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Paramètres @@ -281,6 +333,7 @@ settings.security.password.change=Changer le mot de passe settings.security.password.current=Mot de passe actuel settings.security.password.choose=Nouveau mot de passe settings.security.password.confirm=Confirmer le nouveau mot de passe +settings.security.password.changing=Changing password… settings.security.password.changed=Le mot de passe a été changé. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_gl.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_gl.properties index c5ac017b05ca93e2cd174c64eaa658be55495b7f..661981e9b876c5dac65d595fdc99a6f8502b316a 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_gl.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_gl.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Logo Briar access.swap=Icona que mostra erros entre dous contactos +access.ourselves=Ourselves access.mode.contacts=Contactos access.mode.groups=Grupos Privados access.mode.forums=Foros @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Sen contacto seleccionado @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Segura de querer eliminar este contac conversation.change.alias.dialog.title=Cambiar o nome do contacto conversation.change.alias.dialog.description=Escribe un novo nome para este contacto (só será visible por ti): +# Forums +forum.search.title=Foros +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Crear Foro +forum.add.hint=Escolle un nome para o teu foro +forum.add.button=Create forum +forum.leave.title=Deixar foro +forum.delete.dialog.title=Confirma a saÃda do foro +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=SaÃr +forum.message.hint=Nova publicación +forum.message.reply.hint=Nova Resposta +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Non hai mensaxes +group.card.posts={0, plural, one {{0} post} other {{0} posts}} +forum.sharing.status.title=Estado do compartido +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Ninguén +forum.sharing.action.title=Compartir Foro +forum.sharing.action.add_message=Engadir unha mensaxe (opcional) +forum.sharing.action.choose_contacts=Elixe Contactos +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Xa compartindo +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Creado por {0} groups.card.messages={0, plural, one {{0} mensaxes} other {{0} mensaxe}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=O convite de {0} ao blog foi rexeitado au blog.invitation.response.accepted.received={0} aceptou o convite ao blog. blog.invitation.response.declined.received={0} rexeitou o convite ao blog. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=Me +peer.trust.stranger=Stranger + # Main main.help.title=Cliente Briar para o escritorio @@ -212,6 +261,7 @@ warning=Aviso unsupported_feature=Desafortunadamente esta caracterÃstica aÃnda non ten soporte en Briar Desktop. remove=Quitar hide=Agochar +search=Busca # Compose text edit actions copy=Copiar @@ -256,6 +306,8 @@ expiration.banner.part2=Por favor actualiza á nova versión. # Notification notifications.message.private.one_chat={0, plural, one {New private message.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Axustes @@ -281,6 +333,7 @@ settings.security.password.change=Trocar o contrasinal settings.security.password.current=Contrasinal actual settings.security.password.choose=Novo contrasinal settings.security.password.confirm=Confirma o novo contrasinal +settings.security.password.changing=Changing password… settings.security.password.changed=Cambiaches o contrasinal # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_he.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_he.properties index 196701b0240f5b5cdf0707161cafb3addc26f22f..a3d319db6c0bba260cd6352404e98258a918bbd1 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_he.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_he.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Briar logo access.swap=Icon showing errors between two contacts +access.ourselves=Ourselves access.mode.contacts=×× ×©×™ קשר access.mode.groups=קבוצות פרטיות access.mode.forums=×¤×•×¨×•×ž×™× @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=הר××” תפריט +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} two {{0} unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=×יש קשר ×œ× × ×‘×—×¨ @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=×”×× ×כן ×‘×¨×¦×•× ×š למחוק conversation.change.alias.dialog.title=×©×™× ×•×™ ×©× ×יש הקשר conversation.change.alias.dialog.description=Please enter a new name for this contact (only visible to you): +# Forums +forum.search.title=×¤×•×¨×•×ž×™× +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=צור ×¤×•×¨×•× +forum.add.hint=בחר ×©× ×¢×‘×•×¨ ×”×¤×•×¨×•× ×©×œ×š +forum.add.button=Create forum +forum.leave.title=עזוב ×¤×•×¨×•× +forum.delete.dialog.title=×שר עזיבת ×¤×•×¨×•× +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=עזיבה +forum.message.hint=רשומה חדשה +forum.message.reply.hint=תשובה חדשה +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=×ין רשומות +group.card.posts={0, plural, one {{0} post} two {{0} posts} many {{0} posts} other {{0} posts}} +forum.sharing.status.title=מעמד שיתוף +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=××£ ×חד +forum.sharing.action.title=שתף ×¤×•×¨×•× +forum.sharing.action.add_message=הוסף הודעה (רשותי) +forum.sharing.action.choose_contacts=בחר ×× ×©×™ קשר +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=משתף כבר +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Created by {0} groups.card.messages={0, plural, one {{0} message} two {{0} messages} many {{0} messages} other {{0} messages}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=The blog invitation from {0} was automati blog.invitation.response.accepted.received={0} accepted the blog invitation. blog.invitation.response.declined.received={0} declined the blog invitation. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=Me +peer.trust.stranger=Stranger + # Main main.help.title=Briar Desktop Client @@ -212,6 +261,7 @@ warning=×זהרה unsupported_feature=Unfortunately, this feature is not yet supported by Briar Desktop. remove=הסר hide=הסתר +search=חפש # Compose text edit actions copy=העתק @@ -256,6 +306,8 @@ expiration.banner.part2=Please update to a newer version in time. # Notification notifications.message.private.one_chat={0, plural, one {New private message.} two {{0} new private messages.} many {{0} new private messages.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} two {{0} new forum posts.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=הגדרות @@ -281,6 +333,7 @@ settings.security.password.change=×©×™× ×•×™ הסיסמה settings.security.password.current=סיסמה × ×•×›×—×™×ª settings.security.password.choose=×¡×™×¡×ž× ×—×“×©×” settings.security.password.confirm=×שר סיסמה חדשה +settings.security.password.changing=Changing password… settings.security.password.changed=סיסמה ×©×•× ×ª×”. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_hu.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_hu.properties index 51e54cdf3429fb1b0e0cb7bbb9e8645fe4fc9a06..58d2d83bc4e18c20561b7bfaf6c4ebfda9ac1841 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_hu.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_hu.properties @@ -4,10 +4,10 @@ access.attachment_remove=Csatolmány eltávolÃtása access.contacts.add=Kapcsolat hozzáadása access.contact.list=contact list access.contact.with_name=Contact "{0}" -access.contact.connected.yes=connected -access.contact.connected.no=not connected -access.contact.unread_count={0, plural, one {one unread message} other {{0} unread messages}} -access.contact.last_message_timestamp=last message: {0} +access.contact.connected.yes=csatlakozva +access.contact.connected.no=nem csatlakozva +access.contact.unread_count={0, plural, one {egy olvasatlan üzenet} other {{0} olvasatlan üzenet}} +access.contact.last_message_timestamp=utolsó üzenet: {0} access.contact.pending.with_name=Pending contact "{0}" access.contact.pending.added_timestamp=added: {0} access.contact.menu=Kapcsolat menü megjelenÃtése @@ -17,29 +17,30 @@ access.contacts.dropdown.connections.expand=Hálózati kapcsolatok menü kinyit access.contacts.dropdown.contacts.expand=Kapcsolatok menü kinyitása access.contacts.filter=Filter existing contacts by name or alias and add new contacts access.contacts.pending.remove=Várakozó kapcsolat eltávolÃtása -access.conversation.list=Chat history +access.conversation.list=Chat elÅ‘zmények access.conversation.status.seen=message received by your contact access.conversation.status.sent=message sent, but not received by your contact yet access.conversation.status.scheduled=message not sent yet access.conversation.message.unread=All messages below are still unread access.conversation.message.blank.you=you wrote access.conversation.message.blank.your_contact=your contact wrote -access.conversation.message.image.blank.you={0, plural, one {you sent an image} other {you sent {0} images}} -access.conversation.message.image.blank.your_contact={0, plural, one {your contact sent an image} other {your contact sent {0} images}} -access.conversation.message.image.caption.you={0, plural, one {you sent an image and wrote} other {you sent {0} images and wrote}} -access.conversation.message.image.caption.your_contact={0, plural, one {your contact sent an image and wrote} other {your contact sent {0} images and wrote}} -access.conversation.notice.additional_message=additional message -access.conversation.request.navigate_inside_to_react=navigate inside the item to react -access.conversation.request.click_to_open=click to open +access.conversation.message.image.blank.you={0, plural, one {egy képet küldtél} other {{0}képet küldtél}} +access.conversation.message.image.blank.your_contact={0, plural, one {a kapcsolatod küldött egy képet} other {a kapcsolatod küldött {0} képet}} +access.conversation.message.image.caption.you={0, plural, one {egy képet küldtél és Ãrtál} other {{0}képet küldtél és Ãrtál}} +access.conversation.message.image.caption.your_contact={0, plural, one {a kapcsolatod küldött egy képet és Ãrt} other {a kapcsolatod küldött {0} képet és Ãrt}} +access.conversation.notice.additional_message=további üzenet +access.conversation.request.navigate_inside_to_react=navigálj az elem belsejébe a reagáláshoz +access.conversation.request.click_to_open=kattints a megnyitáshoz access.introduction.back.contact=Menjen vissza kapcsolatok képernyÅ‘re a bemutatkozási folyamathoz access.introduction.close=Bemutató képernyÅ‘ bezárása access.message.jump_to_unread=Ugrás a következÅ‘ olvasatlan üzenetre access.message.send=Üzenet küldése access.message.sent=Üzenet elküldve -access.list.selected.yes=currently selected -access.list.selected.no=currently not selected, click to select +access.list.selected.yes=jelenleg kiválasztva +access.list.selected.no=jelenleg nincs kiválasztva, kattints a kiválasztáshoz access.logo=Briar logo access.swap=Ikon, ami hibákat jelez két kapcsolat között +access.ourselves=Rólunk access.mode.contacts=Kontaktok access.mode.groups=Privát csoportok access.mode.forums=Fórumok @@ -50,7 +51,7 @@ access.mode.about=A Briar Desktop névjegye access.about.list=Information about your version of Briar Desktop, the Briar Project in general and how to get in touch access.password.show=Jelszó megjelenÃtése access.password.hide=Jelszó elrejtése -access.settings.current_value=Current value +access.settings.current_value=Aktuális érték access.settings.click_to_change_value=Click to change value access.settings.click_to_change_password=Click to change password access.settings.currently_enabled=Currently enabled @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Válasz bezárása +access.forums.unread_count={0, plural, one {egy olvasatlan poszt} other {{0} olvasatlan poszt}} +access.forums.last_post_timestamp=utolsó poszt: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Nincs kapcsolat kiválasztva @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Biztosan eltávolÃtja ezt a kapcsola conversation.change.alias.dialog.title=Kapcsolat nevének megváltoztatása conversation.change.alias.dialog.description=Adjon meg egy új nevet ehhez a kapcsolatához (csak Önnek látszik) +# Forums +forum.search.title=Fórumok +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=Nincs fórum kiválasztva +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Fórum létrehozása +forum.add.hint=Válasszon nevet a fórumának +forum.add.button=Fórum létrehozása +forum.leave.title=Fórum elhagyása +forum.delete.dialog.title=Fórum elhagyás megerÅ‘sÃtése +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Elhagyás +forum.message.hint=Új bejegyzés +forum.message.reply.hint=Új válasz +forum.message.reply.intro=Válasz neki: +forum.message.new=Olvasatlan Poszt +group.card.no_posts=Nincs bejegyzés +group.card.posts={0, plural, one {{0} poszt} other {{0} poszt}} +forum.sharing.status.title=Ãllapot megosztása +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Senki +forum.sharing.action.title=Fórum megosztása +forum.sharing.action.add_message=Üzenet hozzáadása (opcionális) +forum.sharing.action.choose_contacts=Kapcsolatok kiválasztása +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Megosztás alatt +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Létrehozta {0} groups.card.messages={0, plural, one {{0} üzenet} other {{0} üzenet}} @@ -125,7 +168,7 @@ introduction.response.declined.received_by_introducee={0} szerint {1} elutasÃto contact.add.title_dialog=Kapcsolat hozzáadása contact.add.remote.title=Távoli kapcsolat hozzá adása contact.add.remote.your_link=Adja oda ezt a linket annak a kapcsolatának, akit hozzá szeretne adni -contact.add.remote.your_link_hint=Own link +contact.add.remote.your_link_hint=Saját link contact.add.remote.copy_tooltip=Másol contact.add.remote.contact_link=Ãrj a be a linket a kapcsolatától ide contact.add.remote.contact_link_hint=Kapcsolat linkje @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto= {0} blog meghÃvása automatikusan eluta blog.invitation.response.accepted.received={0} elfogadta a blog meghÃvást. blog.invitation.response.declined.received={0} elutasÃtotta a blog meghÃvást. +# Peer trust level +peer.trust.unverified=EllenÅ‘rizetlen kapcsolat +peer.trust.verified=EllenÅ‘rzött kapcsolat +peer.trust.ourselves=Én +peer.trust.stranger=Idegen + # Main main.help.title=Briar Desktop kliens @@ -212,6 +261,7 @@ warning=Figyelem unsupported_feature=Sajnos ez a funkció még nem érhetÅ‘ el a Briar Desktop-ból. remove=EltávolÃt hide=Elrejt +search=Keresés # Compose text edit actions copy=Másol @@ -254,8 +304,10 @@ expiration.banner.part1.nozero={0, plural, one {Ez a Briar teszt verziója, ami expiration.banner.part2=Kérjük idÅ‘ben frissÃtsen egy új verzióra. # Notification -notifications.message.private.one_chat={0, plural, one {New private message.} other {{0} new private messages.}} -notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.private.one_chat={0, plural, one {Egy új privát üzenet.} other {{0} új privát üzenet.}} +notifications.message.private.several_chats={0} új üzenet {1} privát chatben. +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=BeállÃtások @@ -281,15 +333,17 @@ settings.security.password.change=Jelszó megváltoztatása settings.security.password.current=Aktuális jelszó settings.security.password.choose=Új jelszó settings.security.password.confirm=Új jelszó megerÅ‘sÃtése +settings.security.password.changing=Changing password… settings.security.password.changed=A jelszó megváltozott # Settings Notifications settings.notifications.title=ÉrtesÃtések -settings.notifications.visual.title=Visual notifications +settings.notifications.visual.title=Vizuális értesÃtések settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. -settings.notifications.sound.title=Sound notifications +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. +settings.notifications.sound.title=Hang értesÃtések # Settings Actions settings.actions.title=Események diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_is.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_is.properties index c9399ce1233b562a6f52235292e1435825d1bd97..7480db3e79da76fbcb0b22dff10e7d41c8ca57c2 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_is.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_is.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Briar-táknmynd access.swap=Táknmynd sem sýnir villur milli tveggja tengiliða +access.ourselves=Ourselves access.mode.contacts=Tengiliðir access.mode.groups=Einkahópar access.mode.forums=Spjallsvæði @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Enginn tengiliður valinn @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Ertu viss að þú viljir fjarlægja conversation.change.alias.dialog.title=Breyta nafni tengiliðar conversation.change.alias.dialog.description=Settu inn nýtt nafn fyrir þennan tengilið (aðeins sýnilegt þér) +# Forums +forum.search.title=Spjallsvæði +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Búa til spjallsvæði +forum.add.hint=Veldu nafn á spjallsvæðið þitt +forum.add.button=Create forum +forum.leave.title=Hætta á spjallsvæði +forum.delete.dialog.title=Staðfesta að hætt sé á spjallsvæði +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Hætta +forum.message.hint=Ný færsla +forum.message.reply.hint=Nýtt svar +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Engar færslur +group.card.posts={0, plural, one {{0} post} other {{0} posts}} +forum.sharing.status.title=Staða deilingar +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Enginn +forum.sharing.action.title=Deila spjallsvæði +forum.sharing.action.add_message=Bæta við skilaboðum (valfrjálst) +forum.sharing.action.choose_contacts=Veldu tengiliði +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Þegar deilt +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Búið til af {0} groups.card.messages={0, plural, one {Skilaboð} other {{0} skilaboð}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Boði á blogg frá {0} var sjálfvirkt h blog.invitation.response.accepted.received={0} samþykkti boð á blogg. blog.invitation.response.declined.received={0} hafnaði boði á blogg. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=Me +peer.trust.stranger=Stranger + # Main main.help.title=Briar Desktop forritið @@ -212,6 +261,7 @@ warning=Aðvörun unsupported_feature=Þvà miður er þessi eiginleiki ekki studdur à Briar Desktop forritinu. remove=Fjarlægja hide=Fela +search=Leita # Compose text edit actions copy=Afrita @@ -256,6 +306,8 @@ expiration.banner.part2=Uppfærðu tÃmanlega à nýrri útgáfu. # Notification notifications.message.private.one_chat={0, plural, one {New private message.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Stillingar @@ -281,6 +333,7 @@ settings.security.password.change=Breyta lykilorði settings.security.password.current=Núverandi lykilorð settings.security.password.choose=Nýtt lykilorð settings.security.password.confirm=Staðfestu nýtt lykilorð +settings.security.password.changing=Changing password… settings.security.password.changed=Lykilorðinu hefur verið breytt # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_it.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_it.properties index 334a28598e7685efcb93fb2c1b9591802a6dae90..5cecf9a4767da344422b3f9ddce9d8bbf155feeb 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_it.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_it.properties @@ -40,6 +40,7 @@ access.list.selected.yes=selezionato attualmente access.list.selected.no=non selezionato attualmente, clicca per selezionare access.logo=Logo di Briar access.swap=Icona per mostrare errori tra due contatti +access.ourselves=Te stesso/a access.mode.contacts=Contatti access.mode.groups=Gruppi privati access.mode.forums=Forum @@ -58,6 +59,16 @@ access.settings.currently_disabled=Attualmente disattivato access.settings.click_to_toggle_notifications=Clicca per attivare/disattivare le notifiche access.return_to_previous_screen=Torna alla schermata precedente +access.menu=Mostra il menu +access.forums.add=Aggiungi forum +access.forums.list=lista forum +access.forums.reply.close=Chiudi risposta +access.forums.unread_count={0, plural, one {Un post non letto} many {{0} post non letti} other {{0} post non letti}} +access.forums.last_post_timestamp=ultimo post: {0} +access.forums.jump_to_prev_unread=Vai al post non letto precedente +access.forums.jump_to_next_unread=Vai al post non letto successivo +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Chiudi condivisione stato # Contacts contacts.none_selected.title=Nessun contatto selezionato @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Vuoi veramente rimuovere questo conta conversation.change.alias.dialog.title=Cambia il nome del contatto conversation.change.alias.dialog.description=Inserisci un nuovo nome per questo contatto (visibile solo a te) +# Forums +forum.search.title=Forum +forum.empty_state.text=Non hai ancora alcun forum. Tocca l'icona + per aggiungerne uno: +forum.none_selected.title=Nessun forum selezionato +forum.none_selected.hint=Seleziona un forum per iniziare a chattare +forum.add.title=Crea Forum +forum.add.hint=Scegli un nome per il tuo forum +forum.add.button=Crea forum +forum.leave.title=Lascia Forum +forum.delete.dialog.title=Conferma l'abbandono del forum +forum.delete.dialog.message=Vuoi davvero lasciare questo forum?\n\nTutti i contatti con cui hai condiviso questo forum potrebbero smettere di ricevere aggiornamenti. +forum.delete.dialog.button=Lascia +forum.message.hint=Nuovo post +forum.message.reply.hint=Nuova Risposta +forum.message.reply.intro=Rispondi a: +forum.message.new=Post non letto +group.card.no_posts=Nessun post. +group.card.posts={0, plural, one {{0} post} many {{0} post} other {{0} post}} +forum.sharing.status.title=Stato Condivisione +forum.sharing.status.info=Ogni membro di un forum può condividerlo con i suoi contatti. Stai condividendo questo forum con i seguenti contatti. Ci potrebbero inoltre essere altri membri che non puoi vedere in questa lista, sebbene tu possa vedere i loro post nel forum. +forum.sharing.status.with=Condiviso con {0} ({1} online) +forum.sharing.status.nobody=Nessuno +forum.sharing.action.title=Condividi Forum +forum.sharing.action.add_message=Aggiungi un messaggio (facoltativo) +forum.sharing.action.choose_contacts=Scegli Contatti +forum.sharing.action.no_contacts=Ancora nessun contatto. Puoi condividere i forum solo con i tuoi contatti. +forum.sharing.action.status.already_shared=Già in condivisione +forum.sharing.action.status.already_invited=Invito già spedito +forum.sharing.action.status.invite_received=Invito già ricevuto +forum.sharing.action.status.not_supported=Non supportato da questo contatto +forum.sharing.action.status.error=Errore. Si tratta di un bug, non è colpa tua + # Private Groups groups.card.created=Creato da {0} groups.card.messages={0, plural, one {{0} messaggio} many {{0} messaggi} other {{0} messaggi}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=L'invito al blog da {0} è stato rifiutat blog.invitation.response.accepted.received={0} ha accettato l'invito al blog. blog.invitation.response.declined.received={0} ha rifiutato l'invito al blog. +# Peer trust level +peer.trust.unverified=Contatto non verificato +peer.trust.verified=Contatto verificato +peer.trust.ourselves=Io +peer.trust.stranger=Sconosciuto + # Main main.help.title=Client Briar Desktop @@ -212,6 +261,7 @@ warning=Attenzione unsupported_feature=Purtroppo questa funzione non è ancora supportata da Briar Desktop. remove=Rimuovi hide=Nascosto +search=Cerca # Compose text edit actions copy=Copia @@ -256,6 +306,8 @@ expiration.banner.part2=Aggiorna ad una versione più recente in tempo. # Notification notifications.message.private.one_chat={0, plural, one {Nuovo messaggio privato.} many {{0} nuovi messaggi privati.} other {{0} nuovi messaggi privati.}} notifications.message.private.several_chats={0} nuovi messaggi in {1} chat private. +notifications.message.forum.one_forum={0, plural, one {Nuovo post sul forum.} many {{0} nuovi post sul forum.} other {{0} nuovi post sul forum.}} +notifications.message.forum.several_forum={0} nuovi post in {1} forum. # Settings settings.title=Impostazioni @@ -281,6 +333,7 @@ settings.security.password.change=Cambia password settings.security.password.current=Password attuale settings.security.password.choose=Nuova password settings.security.password.confirm=Conferma la nuova password +settings.security.password.changing=Cambio della password… settings.security.password.changed=La password è stata cambiata. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Notifiche visive settings.notifications.visual.error.unsupported=Le notifiche visive non sono attualmente supportate sul tuo dispositivo. Puoi comunque attivare le notifiche audio. settings.notifications.visual.error.libnotify.load=Le notifiche possono essere mostrate visivamente solo se libnotify è disponibile. Considerane l'installazione seguendo la normale procedura di installazione del tuo sistema. settings.notifications.visual.error.libnotify.init=Briar Desktop non ha potuto connettersi ad alcun server di notifica. Assicurati di avere un server di notifica compatibile con freedesktop.org installato e configurato correttamente. +settings.notifications.visual.error.toast4j.init=Briar Desktop non ha potuto inizializzare il sistema di notifica. settings.notifications.sound.title=Notifiche audio # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_ja.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_ja.properties index d7de1c5e94c9f37d3f932173012445e2150504da..bc0e7e11dd8ca3f774420d9dd82fda8a542bf624 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_ja.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_ja.properties @@ -4,8 +4,8 @@ access.attachment_remove=添付を削除 access.contacts.add=é€£çµ¡ç›¸æ‰‹ã‚’è¿½åŠ access.contact.list=連絡先リスト access.contact.with_name=Contact "{0}" -access.contact.connected.yes=connected -access.contact.connected.no=not connected +access.contact.connected.yes=接続済㿠+access.contact.connected.no=接続ãªã— access.contact.unread_count={0, plural, other {{0}ä»¶ã®æœªèªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸}} access.contact.last_message_timestamp=最終メッセージ: {0} access.contact.pending.with_name=Pending contact "{0}" @@ -28,7 +28,7 @@ access.conversation.message.image.blank.you={0, plural, other {you sent {0} imag access.conversation.message.image.blank.your_contact={0, plural, other {your contact sent {0} images}} access.conversation.message.image.caption.you={0, plural, other {you sent {0} images and wrote}} access.conversation.message.image.caption.your_contact={0, plural, other {your contact sent {0} images and wrote}} -access.conversation.notice.additional_message=additional message +access.conversation.notice.additional_message=è¿½åŠ ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ access.conversation.request.navigate_inside_to_react=navigate inside the item to react access.conversation.request.click_to_open=クリックã—ã¦é–‹ã access.introduction.back.contact=å°Žå…¥éŽç¨‹ã®é€£çµ¡å…ˆç”»é¢ã«æˆ»ã‚‹ @@ -40,6 +40,7 @@ access.list.selected.yes=ç¾åœ¨é¸æŠžã—ãŸã‚‚ã® access.list.selected.no=ç¾åœ¨é¸æŠžã•れã¦ã„ã¾ã›ã‚“。クリックã—ã¦é¸æŠžã™ã‚‹ access.logo=Briar ãƒã‚´ access.swap=アイコンã¯2人ã®é€£çµ¡å…ˆé–“ã§ã®ã‚¨ãƒ©ãƒ¼ã‚’表示ã—ã¾ã™ +access.ourselves=Ourselves access.mode.contacts=連絡先 access.mode.groups=プライベートグループ access.mode.forums=フォーラム@@ -58,6 +59,16 @@ access.settings.currently_disabled=ç¾åœ¨ç„¡åй access.settings.click_to_toggle_notifications=クリックã—ã¦é€šçŸ¥ã‚’切り替ãˆã‚‹ access.return_to_previous_screen=å‰ã®ç”»é¢ã«æˆ»ã‚‹ +access.menu=メニューを表示 +access.forums.add=ãƒ•ã‚©ãƒ¼ãƒ©ãƒ ã‚’è¿½åŠ +access.forums.list=フォーラム一覧 +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=é€£çµ¡å…ˆæœªé¸æŠž @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=ã“ã®é€£çµ¡å…ˆã¨ã€ã“ã®é€£çµ¡å…ˆ conversation.change.alias.dialog.title=連絡先を変更 conversation.change.alias.dialog.description=ã“ã®é€£çµ¡å…ˆç”¨ã®æ–°ã—ã„åå‰ã‚’入力ã—ã¦ãã ã•ã„(ã‚ãªãŸã ã‘ã«è¦‹ãˆã¾ã™ï¼‰: +# Forums +forum.search.title=フォーラム+forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=ãƒ•ã‚©ãƒ¼ãƒ©ãƒ ã‚’ä½œæˆ +forum.add.hint=フォーラムã®åå‰ã‚’é¸æŠžã—ã¦ãã ã•ã„ +forum.add.button=Create forum +forum.leave.title=Leave Forum +forum.delete.dialog.title=フォーラムをやã‚ã‚‹ç¢ºèª +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=脱退ã™ã‚‹ +forum.message.hint=æ–°ã—ã„æŠ•ç¨¿ +forum.message.reply.hint=æ–°ã—ã„返信 +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=投稿ãªã— +group.card.posts={0, plural, other {{0} posts}} +forum.sharing.status.title=共有ステータス +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=誰もã„ã¾ã›ã‚“ +forum.sharing.action.title=フォーラムを共有 +forum.sharing.action.add_message=ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’è¿½åŠ ã™ã‚‹ï¼ˆä»»æ„) +forum.sharing.action.choose_contacts=é€£çµ¡å…ˆã‚’é¸æŠž +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=æ—¢ã«å…±æœ‰ã—ã¦ã„ã¾ã™ +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created={0}ã«ã‚ˆã£ã¦ä½œæˆã•れã¾ã—ãŸã€‚ groups.card.messages={0, plural, other {{0}ä»¶ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto={0}ã‹ã‚‰ã®ãƒ–ãƒã‚°ã¸ã®æ‹›å¾…ã¯è‡ª blog.invitation.response.accepted.received={0}ã¯ãƒ–ãƒã‚°ã¸ã®æ‹›å¾…ã‚’å—ã‘入れã¾ã—ãŸã€‚ blog.invitation.response.declined.received={0}ã¯ãƒ–ãƒã‚°ã¸ã®æ‹›å¾…を辞退ã—ã¾ã—ãŸã€‚ +# Peer trust level +peer.trust.unverified=検証ã•れã¦ãªã„連絡先 +peer.trust.verified=検証ã•れãŸé€£çµ¡å…ˆ +peer.trust.ourselves=ç§ +peer.trust.stranger=見知らã¬äºº + # Main main.help.title=Briar デスクトップクライアント @@ -212,6 +261,7 @@ warning=è¦å‘Š unsupported_feature=残念ãªãŒã‚‰ã€ã“ã®æ©Ÿèƒ½ã¯Briarデスクトップã§ã¯ã¾ã サãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“ remove=削除 hide=éš ã™ +search=検索 # Compose text edit actions copy=コピー @@ -256,6 +306,8 @@ expiration.banner.part2=ãã®ã†ã¡ã€æ–°ã—ã„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã«ã‚¢ãƒƒãƒ—デ # Notification notifications.message.private.one_chat={0, plural, other {{0}ä»¶ã®æ–°è¦ãƒ—ライベートメッセージ}} notifications.message.private.several_chats={1} プライベートãƒãƒ£ãƒƒãƒˆå†…ã«{0}ä»¶ã®æ–°è¦ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ +notifications.message.forum.one_forum={0, plural, other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=è¨å®š @@ -281,6 +333,7 @@ settings.security.password.change=パスワードã®å¤‰æ›´ settings.security.password.current=ç¾åœ¨ã®ãƒ‘スワード settings.security.password.choose=æ–°ã—ã„パスワード settings.security.password.confirm=æ–°ã—ã„パスワードã®ç¢ºèª +settings.security.password.changing=Changing password… settings.security.password.changed=パスワードãŒå¤‰æ›´ã•れã¾ã—ãŸã€‚ # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=視覚通知 settings.notifications.visual.error.unsupported=視覚通知ã¯ç¾åœ¨ã€ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ 上ã§ã‚µãƒãƒ¼ãƒˆã•れã¦ã„ã¾ã›ã‚“。音通知を有効ã®ã¾ã¾ã«ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ settings.notifications.visual.error.libnotify.load=通知ã¯libnotifyãŒæœ‰åйãªå ´åˆã®ã¿ã«ã€è¦–覚的ã«è¡¨ç¤ºã§ãã¾ã™ã€‚ãŠä½¿ã„ã®ã‚·ã‚¹ãƒ†ãƒ ã«åˆã‚ã›ãŸé€šå¸¸ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«æ‰‹é †ã«å¾“ã£ã¦ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã‚’ã”æ¤œè¨Žãã ã•ã„。 settings.notifications.visual.error.libnotify.init=Briarデスクトップã¯ã©ã®é€šçŸ¥ã‚µãƒ¼ãƒãƒ¼ã«ã‚‚接続ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚freedesktop.orgã«æº–æ‹ ã—ãŸé€šçŸ¥ã‚µãƒ¼ãƒãƒ¼ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã€é©åˆ‡ã«è¨å®šã•れã¦ã„ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。 +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=音通知 # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_ka.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_ka.properties index f2f9d5a49f84dd363bfcb27e047e0d270421208e..2789b35eb76859ee6535693d3b623886ec4b1622 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_ka.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_ka.properties @@ -40,6 +40,7 @@ access.list.selected.yes=áƒáƒ›áƒŸáƒáƒ›áƒáƒ“ áƒáƒ ჩეულირaccess.list.selected.no=áƒáƒ›áƒŸáƒáƒ›áƒáƒ“ áƒáƒ áƒáƒ ის áƒáƒ ჩეული, დáƒáƒ¬áƒ™áƒáƒžáƒ£áƒœáƒ”თ áƒáƒ¡áƒáƒ ჩევáƒáƒ“ access.logo=Briar-ის ლáƒáƒ’რaccess.swap=ხáƒáƒ¢áƒ£áƒšáƒ áƒáƒ©áƒ•ენებს შეცდáƒáƒ›áƒ”ბს áƒáƒ კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ¡ შáƒáƒ ის. +access.ourselves=Ourselves access.mode.contacts=კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ”ბი access.mode.groups=დáƒáƒ®áƒ£áƒ ული ჯგუფები access.mode.forums=ფáƒáƒ უმები @@ -58,6 +59,16 @@ access.settings.currently_disabled=áƒáƒ›áƒŸáƒáƒ›áƒáƒ“ გáƒáƒ›áƒáƒ თუ access.settings.click_to_toggle_notifications=დáƒáƒ¬áƒ™áƒáƒžáƒ£áƒœáƒ”თ შეტყáƒáƒ‘ინებების გáƒáƒ“áƒáƒ¡áƒáƒ თáƒáƒ•áƒáƒ“ access.return_to_previous_screen=წინრეკრáƒáƒœáƒ–ე დáƒáƒ‘რუნებრ+access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ˜ áƒáƒ áƒáƒ ის áƒáƒ ჩეული @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=ნáƒáƒ›áƒ“ვილáƒáƒ“ გსუ conversation.change.alias.dialog.title=კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ˜áƒ¡ სáƒáƒ®áƒ”ლის შეცვლრconversation.change.alias.dialog.description=გთხáƒáƒ•თ, შეიყვáƒáƒœáƒáƒ— áƒáƒ®áƒáƒšáƒ˜ სáƒáƒ®áƒ”ლი áƒáƒ› კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ˜áƒ¡áƒ—ვის (მხáƒáƒšáƒáƒ“ თქვენთვის იქნებრხილვáƒáƒ“ი) +# Forums +forum.search.title=ფáƒáƒ უმები +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=ფáƒáƒ უმის შექმნრ+forum.add.hint=áƒáƒ˜áƒ ჩიეთ თქვენი ფáƒáƒ უმის სáƒáƒ®áƒ”ლი +forum.add.button=Create forum +forum.leave.title=ფáƒáƒ უმის დáƒáƒ¢áƒáƒ•ებრ+forum.delete.dialog.title=ფáƒáƒ უმის დáƒáƒ¢áƒáƒ•ების დáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ ებრ+forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=დáƒáƒ¢áƒáƒ•ებრ+forum.message.hint=áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ¡áƒ¢áƒ˜ +forum.message.reply.hint=áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ¡áƒ£áƒ®áƒ˜ +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=პáƒáƒ¡áƒ¢áƒ”ბი áƒáƒ áƒáƒ ის +group.card.posts={0, plural, one {{0} post} other {{0} posts}} +forum.sharing.status.title=გáƒáƒ–იáƒáƒ ების სტáƒáƒ¢áƒ£áƒ¡áƒ˜ +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=áƒáƒ áƒáƒ•ინ +forum.sharing.action.title=ფáƒáƒ უმის გáƒáƒ–იáƒáƒ ებრ+forum.sharing.action.add_message=შეტყáƒáƒ‘ინების დáƒáƒ›áƒáƒ¢áƒ”ბრ(áƒáƒ áƒáƒ¡áƒáƒ•áƒáƒšáƒ“ებულáƒ) +forum.sharing.action.choose_contacts=კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ”ბის áƒáƒ ჩევრ+forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=უკვე გáƒáƒ–იáƒáƒ ებულირ+forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=შემქმნელი {0} groups.card.messages={0, plural, one {{0} წერილი} other {{0} შეტყáƒáƒ‘ინებáƒ}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto={0}-ს ბლáƒáƒ’ში მáƒáƒ¬áƒ• blog.invitation.response.accepted.received={0} დáƒáƒ—áƒáƒœáƒ®áƒ›áƒ“რბლáƒáƒ’ში მáƒáƒ¬áƒ•ევáƒáƒ¡. blog.invitation.response.declined.received={0}-მ უáƒáƒ ყრბლáƒáƒ’ში მáƒáƒ¬áƒ•ევáƒ. +# Peer trust level +peer.trust.unverified=დáƒáƒ£áƒ“áƒáƒ¡áƒ¢áƒ£áƒ ებელი კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ˜ +peer.trust.verified=დáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ ებული კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ˜ +peer.trust.ourselves=მე +peer.trust.stranger=უცნáƒáƒ‘ი + # Main main.help.title=Briar Desktop კლიენტი @@ -212,6 +261,7 @@ warning=გáƒáƒ¤áƒ თხილებრunsupported_feature=სáƒáƒ›áƒ¬áƒ£áƒ®áƒáƒ áƒáƒ“, ეს ფუნქცირჯერáƒáƒ áƒáƒ ის მხáƒáƒ დáƒáƒáƒ”რილი Briar Desktop-ის მიერ. remove=áƒáƒ›áƒáƒ¨áƒšáƒ hide=დáƒáƒ›áƒáƒšáƒ•რ+search=ძებნრ# Compose text edit actions copy=კáƒáƒžáƒ˜áƒ ებრ@@ -256,6 +306,8 @@ expiration.banner.part2=გთხáƒáƒ•თ, დრáƒáƒ£áƒšáƒáƒ“ გáƒáƒœáƒ # Notification notifications.message.private.one_chat={0, plural, one {áƒáƒ®áƒáƒšáƒ˜ პირáƒáƒ“ი წერილი.} other {{0} áƒáƒ®áƒáƒšáƒ˜ პირáƒáƒ“ი შეტყáƒáƒ‘ინებები.}} notifications.message.private.several_chats={0} áƒáƒ®áƒáƒšáƒ˜ შეტყáƒáƒ‘ინებები {1} პირáƒáƒ“ ჩáƒáƒ¢áƒ”ბში. +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=პáƒáƒ áƒáƒ›áƒ”ტრები @@ -281,6 +333,7 @@ settings.security.password.change=პáƒáƒ áƒáƒšáƒ˜áƒ¡ შეცვლრsettings.security.password.current=მიმდინáƒáƒ ე პáƒáƒ áƒáƒšáƒ˜ settings.security.password.choose=áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜ settings.security.password.confirm=áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜áƒ¡ დáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ ებრ+settings.security.password.changing=Changing password… settings.security.password.changed=პáƒáƒ áƒáƒšáƒ˜ შეიცვáƒáƒšáƒ. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=ვიზუáƒáƒšáƒ£áƒ ი შეტყრsettings.notifications.visual.error.unsupported=ვიზუáƒáƒšáƒ£áƒ ი შეტყáƒáƒ‘ინებები áƒáƒ›áƒŸáƒáƒ›áƒáƒ“ áƒáƒ áƒáƒ ის მხáƒáƒ დáƒáƒáƒ”რილი თქვენს სისტემáƒáƒ–ე. თქვენ კვლáƒáƒ• შეგიძლიáƒáƒ— ჩáƒáƒ თáƒáƒ— ხმáƒáƒ•áƒáƒœáƒ˜ შეტყáƒáƒ‘ინებები. settings.notifications.visual.error.libnotify.load=თუ ხელმისáƒáƒ¬áƒ•დáƒáƒ›áƒ˜áƒ libnotify, იხილáƒáƒ•თ მხáƒáƒšáƒáƒ“ ვიზუáƒáƒšáƒ£áƒ შეტყáƒáƒ‘ინებებს. გთხáƒáƒ•თ, გáƒáƒœáƒ˜áƒ®áƒ˜áƒšáƒáƒ— მისი ინსტáƒáƒšáƒáƒªáƒ˜áƒ თქვენი სისტემის ჩვეულებრივი დáƒáƒ˜áƒœáƒ¡áƒ¢áƒáƒšáƒ˜áƒ ების პრáƒáƒªáƒ”დურის შესáƒáƒ‘áƒáƒ›áƒ˜áƒ¡áƒáƒ“. settings.notifications.visual.error.libnotify.init=Briar Desktop ვერუკáƒáƒ•შირდებრვერცერთ შეტყáƒáƒ‘ინების სერვერს. გთხáƒáƒ•თ დáƒáƒ წმუნდეთ, რáƒáƒ› დáƒáƒ˜áƒœáƒ¡áƒ¢áƒáƒšáƒ˜áƒ ებული დრკáƒáƒœáƒ¤áƒ˜áƒ’ურირებული გáƒáƒ¥áƒ•თ freedesktop.org-ის თáƒáƒ•სებáƒáƒ“ი შეტყáƒáƒ‘ინების სერვერი. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=ხმáƒáƒ•áƒáƒœáƒ˜ შეტყáƒáƒ‘ინებები # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_ko.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_ko.properties index 69741195699a323c8c4533b5b5cb57730792266f..42131b795096ac6d043a22946ad588c5214c667d 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_ko.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_ko.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Briar logo access.swap=Icon showing errors between two contacts +access.ourselves=Ourselves access.mode.contacts=ë¬¸ì˜ access.mode.groups=프ë¼ì´ë¹— 모임 access.mode.forums=í¬ëŸ¼ @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=ì„ íƒëœ ì—°ë½ì²˜ ì—†ìŒ @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=ì •ë§ë¡œ ì´ ì—°ë½ì²˜, ê·¸ë¦¬ê³ conversation.change.alias.dialog.title=ì—°ë½ì²˜ ì´ë¦„ 바꾸기 conversation.change.alias.dialog.description=Please enter a new name for this contact (only visible to you): +# Forums +forum.search.title=í¬ëŸ¼ +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=í¬ëŸ¼ 만들기 +forum.add.hint=만드실 í¬ëŸ¼ ì´ë¦„ì„ ì •í•´ì£¼ì„¸ìš” +forum.add.button=Create forum +forum.leave.title=í¬ëŸ¼ ë– ë‚˜ê¸° +forum.delete.dialog.title=í¬ëŸ¼ ë– ë‚˜ê¸° í™•ì¸ +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=ë– ë‚˜ê¸° +forum.message.hint=새로운 게시글 +forum.message.reply.hint=새로운 답글 +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=ê²Œì‹œê¸€ì´ ì—†ìŠµë‹ˆë‹¤ +group.card.posts={0, plural, other {{0} posts}} +forum.sharing.status.title=ê³µìœ ìƒíƒœ +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=ì•„ë¬´ë„ ì—†ìŒ +forum.sharing.action.title=í¬ëŸ¼ ê³µìœ í•˜ê¸° +forum.sharing.action.add_message=메시지 추가하기(ì„ íƒ ì‚¬í•) +forum.sharing.action.choose_contacts=ì—°ë½ì²˜ ì„ íƒí•˜ê¸° +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=ì´ë¯¸ ê³µìœ í•˜ê³ ìžˆìŠµë‹ˆë‹¤ +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Created by {0} groups.card.messages={0, plural, other {{0} messages}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=The blog invitation from {0} was automati blog.invitation.response.accepted.received={0} accepted the blog invitation. blog.invitation.response.declined.received={0} declined the blog invitation. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=Me +peer.trust.stranger=Stranger + # Main main.help.title=Briar Desktop Client @@ -212,6 +261,7 @@ warning=ê²½ê³ unsupported_feature=Unfortunately, this feature is not yet supported by Briar Desktop. remove=ì œê±°í•˜ê¸° hide=숨기기 +search=찾기 # Compose text edit actions copy=복사하기 @@ -256,6 +306,8 @@ expiration.banner.part2=Please update to a newer version in time. # Notification notifications.message.private.one_chat={0, plural, other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=ì„¤ì • @@ -281,6 +333,7 @@ settings.security.password.change=비밀번호 바꾸기 settings.security.password.current=현재 비밀번호 settings.security.password.choose=새 비밀번호 settings.security.password.confirm=새 비밀번호 확ì¸: +settings.security.password.changing=Changing password… settings.security.password.changed=비밀번호가 바꼈습니다. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_lt.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_lt.properties index c246ccd8149cbfa8491a1c7b915a32541fce896a..49c147b7ff1fbf8dc9c385d5ab6738d2c9918a67 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_lt.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_lt.properties @@ -18,9 +18,9 @@ access.contacts.dropdown.contacts.expand=Expand contact menu access.contacts.filter=Filter existing contacts by name or alias and add new contacts access.contacts.pending.remove=Remove pending contact access.conversation.list=Chat history -access.conversation.status.seen=message received by your contact -access.conversation.status.sent=message sent, but not received by your contact yet -access.conversation.status.scheduled=message not sent yet +access.conversation.status.seen=adresatas gavo jÅ«sų žinutÄ™ +access.conversation.status.sent=žinutÄ— iÅ¡siųsta, bet adresatas kol kas jos negavo +access.conversation.status.scheduled=žinutÄ— kol kas neiÅ¡siųsta access.conversation.message.unread=All messages below are still unread access.conversation.message.blank.you=you wrote access.conversation.message.blank.your_contact=your contact wrote @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Briar logotipas access.swap=Piktograma, rodanti klaidas tarp dviejų adresatų +access.ourselves=Ourselves access.mode.contacts=Adresatai access.mode.groups=PrivaÄios grupÄ—s access.mode.forums=Forumai @@ -58,6 +59,16 @@ access.settings.currently_disabled=Å iuo metu iÅ¡jungta access.settings.click_to_toggle_notifications=SpustelÄ—kite norÄ—dami perjungti praneÅ¡imus access.return_to_previous_screen=Return to previous screen +access.menu=Rodyti meniu +access.forums.add=PridÄ—ti forumÄ… +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} few {{0} unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Nepasirinktas kontaktas @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Ar tikrai norite paÅ¡alinti šį adre conversation.change.alias.dialog.title=Pakeisti adresato vardÄ… conversation.change.alias.dialog.description=Please enter a new name for this contact (only visible to you): +# Forums +forum.search.title=Forumai +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Sukurti forumÄ… +forum.add.hint=Pasirinkite savo forumo pavadinimÄ… +forum.add.button=Create forum +forum.leave.title=IÅ¡eiti iÅ¡ forumo +forum.delete.dialog.title=Patvirtinkite išėjimÄ… iÅ¡ forumo +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=IÅ¡eiti +forum.message.hint=Naujas įraÅ¡as +forum.message.reply.hint=Naujas atsakymas +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Ä®rašų nÄ—ra +group.card.posts={0, plural, one {{0} įraÅ¡as} few {{0} įraÅ¡ai} many {{0} įrašų} other {{0} įraÅ¡as}} +forum.sharing.status.title=Bendrinimo bÅ«sena +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Niekas +forum.sharing.action.title=Bendrinti forumÄ… +forum.sharing.action.add_message=PridÄ—kite žinutÄ™ (nebÅ«tina) +forum.sharing.action.choose_contacts=Pasirinkite adresatus +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Jau bendrinama +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=SukÅ«rÄ— {0} groups.card.messages={0, plural, one {{0} žinutÄ—} few {{0} žinutÄ—s} many {{0} žinuÄių} other {{0} žinutÄ—}} @@ -113,12 +156,12 @@ introduction.request.sent=You have asked to introduce {0} to {1}. introduction.request.received={0} has asked to introduce you to {1}. Do you want to add {1} to your contact list? introduction.request.exists.received={0} has asked to introduce you to {1}, but {1} is already in your contact list. Since {0} might not know that, you can still respond: introduction.request.answered.received={0} has asked to introduce you to {1}. -introduction.response.accepted.sent=You accepted the introduction to {0}. +introduction.response.accepted.sent=JÅ«s priÄ—mÄ—te supažindinimÄ… su {0}. introduction.response.accepted.sent.info=Before {0} gets added to your contacts, they need to accept the introduction as well. This might take some time. -introduction.response.declined.sent=You declined the introduction to {0}. -introduction.response.declined.auto=The introduction to {0} was automatically declined. -introduction.response.accepted.received={0} accepted the introduction to {1}. -introduction.response.declined.received={0} declined the introduction to {1}. +introduction.response.declined.sent=JÅ«s atmetÄ—te supažindinimÄ… su {0}. +introduction.response.declined.auto=Supažindinimas su {0} buvo automatiÅ¡kai atmestas. +introduction.response.accepted.received={0} priÄ—mÄ— supažindinimÄ… su {1}. +introduction.response.declined.received={0} atmetÄ— supažindinimÄ… su {1}. introduction.response.declined.received_by_introducee={0} sako, kad {1} atmetÄ— supažindinimÄ…. # Add Contact Remotely @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=The blog invitation from {0} was automati blog.invitation.response.accepted.received={0} priÄ—mÄ— pakvietimÄ… į tinklaraÅ¡tį. blog.invitation.response.declined.received={0} atmetÄ— pakvietimÄ… į tinklaraÅ¡tį. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=Me +peer.trust.stranger=Nepažįstamasis + # Main main.help.title=Briar Desktop kliento programa @@ -212,6 +261,7 @@ warning=Ä®spÄ—jimas unsupported_feature=Deja, Briar Desktop kol kas nepalaiko Å¡ios ypatybÄ—s. remove=IÅ¡trinti hide=SlÄ—pti +search=IeÅ¡koti # Compose text edit actions copy=Kopijuoti @@ -254,8 +304,10 @@ expiration.banner.part1.nozero={0, plural, one {Tai yra bandomoji Briar versija, expiration.banner.part2=Per tÄ… laikÄ… atsinaujinkite į naujesnÄ™ versijÄ…. # Notification -notifications.message.private.one_chat={0, plural, one {New private message.} few {{0} new private messages.} many {{0} new private messages.} other {{0} new private messages.}} +notifications.message.private.one_chat={0, plural, one {Nauja privati žinutÄ—.} few {{0} naujos privaÄios žinutÄ—s.} many {{0} naujų privaÄių žinuÄių.} other {{0} nauja privati žinutÄ—.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} few {{0} new forum posts.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Nustatymai @@ -281,6 +333,7 @@ settings.security.password.change=Pakeisti slaptažodį settings.security.password.current=Dabartinis slaptažodis settings.security.password.choose=Naujas slaptažodis settings.security.password.confirm=Pakartokite naujÄ… slaptažodį +settings.security.password.changing=Changing password… settings.security.password.changed=Slaptažodis pakeistas. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Vaizdiniai praneÅ¡imai settings.notifications.visual.error.unsupported=Å iuo metu vaizdiniai praneÅ¡imai nÄ—ra palaikomi jÅ«sų sistemoje, bet galite įjungti garso praneÅ¡imus. settings.notifications.visual.error.libnotify.load=PraneÅ¡imai gali bÅ«ti rodomi vaizdiniu bÅ«du tik tuo atveju, jeigu yra prieinamas „libnotify“ paketas. Apsvarstykite galimybÄ™ jį įsidiegti, naudojant įprastinÄ™ diegimo procedÅ«rÄ… savo sistemoje. settings.notifications.visual.error.libnotify.init=Briar Desktop nepavyko prisijungti prie jokio praneÅ¡imų serverio. Ä®sitikinkite, kad turite įdiegtÄ… ir tinkamai sukonfigÅ«ruotÄ… su „freedesktop.org“ suderinamÄ… praneÅ¡imų serverį. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Garso praneÅ¡imai # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_my.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_my.properties index be3db7dd0e804b3b63513fc86d2ab4fa52bb91f8..e0163a55d53518b89bdf8b2d6c8aba5a1b56a7b8 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_my.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_my.properties @@ -40,6 +40,7 @@ access.list.selected.yes=လက်ရှဠရွေးá€á€»á€šá€ºá€‘ားသ access.list.selected.no=လက်ရှá€á€á€½á€„် ရွေးá€á€»á€šá€ºá€™á€‘ားပါአရွေးá€á€»á€šá€ºá€›á€”် နှá€á€•်ပါ access.logo=Briar လá€á€¯á€‚á€á€¯ access.swap=အဆက်အသွယ်နှစ်ဦးကြားရှဠမှားယွင်းမှုများကá€á€¯ ပြသော အá€á€¯á€„်ကွန် +access.ourselves=ကျွန်ုပ်á€á€á€¯á€·á€€á€á€¯á€šá€ºá€á€á€¯á€„်\n\n\n access.mode.contacts=အဆက်အသွယ်များ access.mode.groups=လျှá€á€¯á€·á€á€¾á€€á€º အဖွဲ့များ access.mode.forums=အစည်းအá€á€±á€¸á€™á€»á€¬á€¸ @@ -58,6 +59,16 @@ access.settings.currently_disabled=လက်ရှဠပá€á€á€ºá€‘ားသ access.settings.click_to_toggle_notifications=အသá€á€•ေးá€á€»á€€á€ºá€™á€»á€¬á€¸á€€á€á€¯ ဖွင့်/ပá€á€á€ºá€›á€”် နှá€á€•်ပါ access.return_to_previous_screen=ယá€á€„် စá€á€›á€„်သá€á€¯á€· ပြန်သွားရန် +access.menu=မီနူးကá€á€¯á€•ြပါ +access.forums.add=အစည်းအá€á€±á€¸á€á€…်á€á€¯ ထည့်ပါ +access.forums.list=အစည်းအá€á€±á€¸á€…ာရင်း +access.forums.reply.close=အကြောင်းပြန်မှုကá€á€¯ ပá€á€á€ºá€•ါ +access.forums.unread_count={0, plural, other {{0}မဖá€á€ºá€›á€žá€±á€¸á€žá€±á€¬ ပá€á€¯á€·á€…်များ}} +access.forums.last_post_timestamp=နောက်ဆုံးပá€á€¯á€·á€…် - +access.forums.jump_to_prev_unread=မဖá€á€ºá€›á€žá€±á€¸á€žá€±á€¬ ယá€á€„်ပá€á€¯á€·á€…်á€á€…်á€á€¯á€žá€á€¯á€· နောက်ပြန်သွားရန် +access.forums.jump_to_next_unread=မဖá€á€ºá€›á€žá€±á€¸á€žá€±á€¬ နောက်ပá€á€¯á€·á€…်á€á€…်á€á€¯á€žá€á€¯á€· သွားရန် +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=အဆက်အသွယ် ရွေးမထားပါ @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=ဤအဆက်အသွယ်အပ conversation.change.alias.dialog.title=အဆက်အသွယ် အမည် ပြောင်းရန် conversation.change.alias.dialog.description=ကျေးဇူးပြုá ဤအဆက်အသွယ်အá€á€½á€€á€º အမည်အသစ်ကá€á€¯ ထည့်ပါ (သင်á€á€…်ဦးá€á€Šá€ºá€¸á€žá€¬ မြင်နá€á€¯á€„်သည်) - +# Forums +forum.search.title=အစည်းအá€á€±á€¸á€™á€»á€¬á€¸ +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=ဖá€á€¯á€›á€™á€º ဖန်á€á€®á€¸á€™á€Šá€º +forum.add.hint=သင့် ဆွေးနွေးမှုဖá€á€¯á€›á€™á€ºá€¡á€á€½á€€á€º အမည်ရွေးပါ +forum.add.button=Create forum +forum.leave.title=ဆွေးနွေးမှုဖá€á€¯á€›á€™á€ºá€™á€¾ ထွက်မည် +forum.delete.dialog.title=ဆွေးနွေးမှုဖá€á€¯á€›á€™á€ºá€™á€¾ ထွက်á€á€¼á€„်း အá€á€Šá€ºá€•ြုမည် +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=ထွက်မည် +forum.message.hint=ပá€á€¯á€·á€…်အသစ် +forum.message.reply.hint=ပြန်ကြားá€á€»á€€á€ºá€¡á€žá€…် +forum.message.reply.intro=Reply to: +forum.message.new=မဖá€á€ºá€›á€žá€±á€¸á€žá€±á€¬ ပá€á€¯á€·á€…်á€á€…်á€á€¯ +group.card.no_posts=ပá€á€¯á€·á€…်များမရှဠ+group.card.posts={0, plural, other {{0}ပá€á€¯á€·á€…်များ}} +forum.sharing.status.title=မျှá€á€±á€á€¼á€„်း အá€á€¼á€±á€¡á€”ေ +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=({1}အွန်လá€á€¯á€„်း) {0}ဖြင့် မျှá€á€±á€žá€Šá€º +forum.sharing.status.nobody=မည်သူမျှ +forum.sharing.action.title=ဆွေးနွေးမှုဖá€á€¯á€›á€™á€ºá€€á€á€¯ á€á€±á€™á€»á€¾á€™á€Šá€º +forum.sharing.action.add_message=မက်ဆေ့á€á€»á€º ထည့်ပါ (မဖြစ်မနေ မဟုá€á€ºá€•ါ) +forum.sharing.action.choose_contacts=အဆက်အသွယ်များ ရွေးမည် +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=မျှá€á€±á€‘ားá€á€¼á€„်းဖြစ်သည် +forum.sharing.action.status.already_invited=ဖá€á€á€ºá€€á€¼á€¬á€¸á€…ာ ပá€á€¯á€·á€•ြီးပြီ +forum.sharing.action.status.invite_received=ဖá€á€á€ºá€€á€¼á€¬á€¸á€…ာ လက်á€á€¶á€›á€›á€¾á€á€žá€Šá€º +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created={0} မှ ဖန်á€á€®á€¸á€žá€Šá€º groups.card.messages={0, plural, other {မက်ဆေ့á€á€»á€º {0} စောင်}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto={0} ထံမှ ဘလော့ဂ်သ blog.invitation.response.accepted.received={0} သည် ဘလော့ဂ်သá€á€¯á€· ဖá€á€á€ºá€€á€¼á€¬á€¸á€™á€¾á€¯á€€á€á€¯ လက်á€á€¶á€á€²á€·á€žá€Šá€ºá‹ blog.invitation.response.declined.received={0} သည် ဘလော့ဂ်သá€á€¯á€· ဖá€á€á€ºá€€á€¼á€¬á€¸á€™á€¾á€¯á€€á€á€¯ ငြင်းဆá€á€¯á€á€²á€·á€žá€Šá€ºá‹ +# Peer trust level +peer.trust.unverified=မစá€á€…စ်ရသေးသော အဆက်အသွယ် +peer.trust.verified=စá€á€…စ်ထားပြီးသော အဆက်အသွယ် +peer.trust.ourselves=ကျွနု်ပ်ကá€á€¯ +peer.trust.stranger=လူစá€á€™á€ºá€¸ + # Main main.help.title=Briar ဒက်စá€á€±á€¬á€·á€•် ကွန်ပျုá€á€¬ @@ -212,6 +261,7 @@ warning=သá€á€á€•ေးá€á€»á€€á€º unsupported_feature=ကံမကောင်းစွာဖြင့်አဤအင်္ဂါရပ်ကá€á€¯ Briar Desktop မှ ပံ့ပá€á€¯á€¸á€™á€¾á€¯ မပေးသေးပါዠremove=ဖယ်ရှားရန် hide=á€á€¾á€€á€ºá€‘ားရန် +search=ရှာဖွေရန် # Compose text edit actions copy=ကူးရန် @@ -256,6 +306,8 @@ expiration.banner.part2=ကျေးဇူးပြုá အá€á€»á€á€”်မ # Notification notifications.message.private.one_chat={0, plural, other {ကá€á€¯á€šá€ºá€›á€±á€¸á€€á€á€¯á€šá€ºá€á€¬ မက်ဆေ့á€á€»á€º အသစ်များ}} notifications.message.private.several_chats=လျှá€á€¯á€·á€á€¾á€€á€º စကားစမြည် {1} á€á€¯á€á€½á€„် မက်ဆေ့á€á€»á€º အသစ် {0}စောင်ዠ+notifications.message.forum.one_forum={0, plural, other {{0}အစည်အá€á€±á€¸á€•á€á€¯á€·á€…်အသစ်များá‹}} +notifications.message.forum.several_forum=ဖá€á€¯á€›á€™á€ºá€™á€»á€¬á€¸á€™á€¾ ပá€á€¯á€·á€…်အသစ်များዠ# Settings settings.title=ဆက်á€á€„်များ @@ -281,6 +333,7 @@ settings.security.password.change=စကားá€á€¾á€€á€º ပြောင်း settings.security.password.current=လက်ရှဠစကားá€á€¾á€€á€º settings.security.password.choose=စကားá€á€¾á€€á€º အသစ် settings.security.password.confirm=စကားá€á€¾á€€á€º အသစ်ကá€á€¯ အá€á€Šá€ºá€•ြုရန် +settings.security.password.changing=စကားá€á€¾á€€á€ºá€€á€á€¯ ပြောင်းနေသည်… settings.security.password.changed=စကားá€á€¾á€€á€ºá€€á€á€¯ ပြောင်းလဲပြီးပါပြီዠ# Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=အမြင်နှင့်ဆá€á€¯á€„ settings.notifications.visual.error.unsupported=အမြင်နှင့်ဆá€á€¯á€„်သော အသá€á€•ေးá€á€»á€€á€ºá€™á€»á€¬á€¸á€€á€á€¯ လက်ရှá€á€á€½á€„် သင့်စနစ်ጠမပံ့ပá€á€¯á€¸á€‘ားပါዠသင်သည် အသံ အသá€á€•ေးá€á€»á€€á€ºá€™á€»á€¬á€¸á€€á€á€¯á€™á€° ဖွင့်နá€á€¯á€„်သည်ዠsettings.notifications.visual.error.libnotify.load=အသá€á€•ေးá€á€»á€€á€ºá€™á€»á€¬á€¸á€€á€á€¯ libnotify ရရှá€á€”á€á€¯á€„်မှသာ ပြသပါမည်ዠကျေးဇူးပြုá áŽá€„်းကá€á€¯ ထည့်သွင်းရာá€á€½á€„် သင့်စနစ်အá€á€½á€€á€º အသုံးပြုလေ့ရှá€á€žá€±á€¬ ထည့်သွင်းမှုလုပ်ငန်းစဉ်ကá€á€¯ လá€á€¯á€€á€ºá€”ာပါዠsettings.notifications.visual.error.libnotify.init=Briar ဒက်စá€á€±á€¬á€·á€•်သည် မည်သည့်အသá€á€•ေးá€á€»á€€á€º ဆာဗာကá€á€¯á€™á€»á€¾ မဆက်သွယ်နá€á€¯á€„်ပါዠကျေးဇူးပြုá freedesktop.org နှင့် ကá€á€¯á€€á€ºá€Šá€á€žá€±á€¬ အသá€á€•ေးá€á€»á€€á€º ဆာဗာကá€á€¯ ထည့်သွင်းá မှန်ကန်စွာ စနစ်ဖွဲ့စည်းထားကြောင်း သေá€á€»á€¬á€¡á€±á€¬á€„်လုပ်ပါዠ+settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=အသံဖြင့် အသá€á€•ေးá€á€»á€€á€ºá€™á€»á€¬á€¸ # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_nb_NO.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_nb.properties similarity index 86% rename from briar-desktop/src/main/resources/strings/BriarDesktop_nb_NO.properties rename to briar-desktop/src/main/resources/strings/BriarDesktop_nb.properties index 95643c5cc90dfe59f76bdb5fa1972312f8855edc..189c2f09963a8a00280af904851d6c23691ad9e3 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_nb_NO.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_nb.properties @@ -40,6 +40,7 @@ access.list.selected.yes=For tiden pÃ¥skrudd access.list.selected.no=foreløpig ikke valgt, klikk for Ã¥ velge access.logo=Briar's logo access.swap=Ikonet viser feilmeldinger imellom to kontakter +access.ourselves=Ourselves access.mode.contacts=Kontakter access.mode.groups=Private grupper access.mode.forums=Forumer @@ -58,6 +59,16 @@ access.settings.currently_disabled=For tiden avskrudd access.settings.click_to_toggle_notifications=Klikk for Ã¥ skru varslinger av eller pÃ¥ access.return_to_previous_screen=GÃ¥ tilbake til forrige skjermvindu +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Ingen kontakter valgt @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Er du sikker pÃ¥ at du vil fjerne den conversation.change.alias.dialog.title=Endre kontaktnavn conversation.change.alias.dialog.description=Vennligst skriv inn et nytt navn for denne kontakten (kun synlig for deg): +# Forums +forum.search.title=Forumer +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Opprett forum +forum.add.hint=Velg et navn for ditt forum +forum.add.button=Create forum +forum.leave.title=Forlat forum +forum.delete.dialog.title=Bekreft forlating av forum +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Forlat +forum.message.hint=Nytt innlegg +forum.message.reply.hint=Nytt svar +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Ingen poster +group.card.posts={0, plural, one {{0} post} other {{0} posts}} +forum.sharing.status.title=Delingsstatus +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Ingen +forum.sharing.action.title=Del forum +forum.sharing.action.add_message=Legg til melding (valgfritt) +forum.sharing.action.choose_contacts=Velg kontakter +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Deler allerede +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Opprettet av {0} groups.card.messages={0, plural, one {{0} melding} other {{0} meldinger}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Blogginvitasjonen fra {0} ble automatisk blog.invitation.response.accepted.received={0} aksepterte blogginvitasjonen. blog.invitation.response.declined.received={0} avlso blogginvitasjonen. +# Peer trust level +peer.trust.unverified=Uverifisert kontakt +peer.trust.verified=Verifisert kontakt +peer.trust.ourselves=Meg +peer.trust.stranger=Fremmed + # Main main.help.title=Briar skrivebordsklient @@ -212,6 +261,7 @@ warning=Advarsel unsupported_feature=Uheldigvis, sÃ¥ er denne funksjonaliteten ikke enda støttet av Briar Skrivebord. remove=Fjerne hide=Skjule +search=Søk # Compose text edit actions copy=Kopier @@ -256,6 +306,8 @@ expiration.banner.part2=Vennligst oppgrader til en ny versjon i tide. # Notification notifications.message.private.one_chat={0, plural, one {Nye private meldinger.} other {{0} nye private meldinger.}} notifications.message.private.several_chats={0} nye meldinger i {1} private samtaler. +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Innstillinger @@ -281,6 +333,7 @@ settings.security.password.change=Endre passord settings.security.password.current=Gjeldende passord settings.security.password.choose=Nytt passord settings.security.password.confirm=Bekreft nytt passord +settings.security.password.changing=Changing password… settings.security.password.changed=Passordet har blitt endret. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visuelle varslinger settings.notifications.visual.error.unsupported=Visuelle varslinger er foreløpig ikke støttet av ditt system. Du kan fremdeles skru pÃ¥ lydvarslinger. settings.notifications.visual.error.libnotify.load=Varslinger kan kun vises visuelt dersom libnotify er tilgjengelig. Vennligst vurdere Ã¥ innstallere den ved Ã¥ følge den vanlige innstallasjonsprosedyren for ditt system. settings.notifications.visual.error.libnotify.init=Briar Skrivebord kunne ikke koble til noen varslingsservere. Vennligst sørg for at du har en freedesktop.org-kompitabel varslingsserver installert og at den er satt opp korrekt. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Lydvarslinger # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_nl.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_nl.properties index ce804d36e2235d3bed64a66292cfbdb3f263e05a..845aad98976ac8332d18b71caa1e470e03148d18 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_nl.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_nl.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Briar logo access.swap=Icon showing errors between two contacts +access.ourselves=Ourselves access.mode.contacts=Contacten access.mode.groups=Privégroepen access.mode.forums=Fora @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Geen contact geselecteerd @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Weet je zeker dat je dit contact en a conversation.change.alias.dialog.title=Verander naam van contact conversation.change.alias.dialog.description=Please enter a new name for this contact (only visible to you): +# Forums +forum.search.title=Fora +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Maak forum aan +forum.add.hint=Voer een naam in voor je forum +forum.add.button=Maak forum aan +forum.leave.title=Verlaat forum +forum.delete.dialog.title=Bevestig verlaten forum +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Verlaat +forum.message.hint=Nieuw bericht +forum.message.reply.hint=Nieuwe reactie +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Geen posts +group.card.posts={0, plural, one {{0} post} other {{0} posts}} +forum.sharing.status.title=Deelstatus +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Niemand +forum.sharing.action.title=Deel forum +forum.sharing.action.add_message=Voeg een bericht toe (optioneel) +forum.sharing.action.choose_contacts=Kies contacten +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Reeds gedeeld +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Created by {0} groups.card.messages={0, plural, one {{0} message} other {{0} messages}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=The blog invitation from {0} was automati blog.invitation.response.accepted.received={0} accepted the blog invitation. blog.invitation.response.declined.received={0} declined the blog invitation. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=Mij +peer.trust.stranger=Stranger + # Main main.help.title=Briar Desktop Client @@ -212,6 +261,7 @@ warning=Waarschuwing unsupported_feature=Unfortunately, this feature is not yet supported by Briar Desktop. remove=Verwijderen hide=Verberg +search=Zoeken # Compose text edit actions copy=Kopiëren @@ -256,6 +306,8 @@ expiration.banner.part2=Please update to a newer version in time. # Notification notifications.message.private.one_chat={0, plural, one {New private message.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Instellingen @@ -281,6 +333,7 @@ settings.security.password.change=Wachtwoord wijzigen settings.security.password.current=Huidig wachtwoord settings.security.password.choose=Nieuw wachtwoord settings.security.password.confirm=Nieuw wachtwoord bevestigen +settings.security.password.changing=Changing password… settings.security.password.changed=Wachtwoord is gewijzigd # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_pl.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_pl.properties index 8da92ac3a83dff20aa302a6dc01014c62c294b05..035ef16bad1342a0d015e9d6a373778a8ae9e96e 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_pl.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_pl.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=logo Briar access.swap=Ikona wskazujÄ…ca błędy pomiÄ™dzy dwoma kontaktami +access.ourselves=Ourselves access.mode.contacts=Kontakty access.mode.groups=Grupy Prywatne access.mode.forums=Fora @@ -58,6 +59,16 @@ access.settings.currently_disabled=Obecnie wyłączone access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Powrót do poprzedniego ekranu +access.menu=Pokaż menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} few {{0} unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Nie wybrano kontaktu @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Czy na pewno chcesz usunąć ten kont conversation.change.alias.dialog.title=ZmieÅ„ nazwÄ™ kontaktu conversation.change.alias.dialog.description=Wprowadź nowÄ… nazwÄ™ dla tego kontaktu (widocznÄ… tylko dla Ciebie) +# Forums +forum.search.title=Fora +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Stwórz Forum +forum.add.hint=Wybierz nazwÄ™ dla swojego forum +forum.add.button=Utwórz forum +forum.leave.title=Opuść Forum +forum.delete.dialog.title=Potwierdź Opuszczenie Forum +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Opuść +forum.message.hint=Nowy Post +forum.message.reply.hint=Nowa Odpowiedź +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Brak postów +group.card.posts={0, plural, one {{0} post} few {{0} posts} many {{0} posts} other {{0} posts}} +forum.sharing.status.title=Status UdostÄ™pniania +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Nikt +forum.sharing.action.title=UdostÄ™pnij Forum +forum.sharing.action.add_message=Dodaj wiadomość (opcjonalne) +forum.sharing.action.choose_contacts=Wybierz Kontakty +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Już udostÄ™pnione +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Stworzone przez {0} groups.card.messages={0, plural, one {{0} wiadomość} few {{0} wiadomoÅ›ci} many {{0} wiadomoÅ›ci} other {{0} wiadomoÅ›ci}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Zaproszenie do bloga od {0} zostaÅ‚o auto blog.invitation.response.accepted.received={0} zaakceptowaÅ‚ zaproszenie do bloga. blog.invitation.response.declined.received={0} odrzuciÅ‚ zaproszenie do bloga. +# Peer trust level +peer.trust.unverified=Niezweryfikowane kontakty +peer.trust.verified=Zweryfikowane kontakty +peer.trust.ourselves=Ja +peer.trust.stranger=Nieznani + # Main main.help.title=Klient Briar Desktop @@ -212,6 +261,7 @@ warning=Ostrzeżenie unsupported_feature=Niestety ta funkcja nie jest jeszcze wspierana przez Briar Desktop. remove=UsuÅ„ hide=Ukryj +search=Szukaj # Compose text edit actions copy=Kopiuj @@ -256,6 +306,8 @@ expiration.banner.part2=ProszÄ™ uaktualnić do nowszej wersji na czas. # Notification notifications.message.private.one_chat={0, plural, one {Nowa prywatna wiadomość} few {{0} nowe prywatne wiadomoÅ›ci} many {{0} nowych prywatnych wiadomoÅ›ci} other {{0} nowych prywatnych wiadomoÅ›ci}} notifications.message.private.several_chats={0} nowych wiadomoÅ›ci w {1} prywatnych czatach. +notifications.message.forum.one_forum={0, plural, one {New forum post.} few {{0} new forum posts.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Ustawienia @@ -281,6 +333,7 @@ settings.security.password.change=ZmieÅ„ hasÅ‚o settings.security.password.current=Obecne hasÅ‚o settings.security.password.choose=Nowe hasÅ‚o settings.security.password.confirm=Potwierdź nowe hasÅ‚o +settings.security.password.changing=Changing password… settings.security.password.changed=HasÅ‚o zostaÅ‚o zmienione. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=DźwiÄ™k powiadomieÅ„ # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_pt_BR.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_pt_BR.properties index fc33de267953adf25da5656a7ab118d21d480d5e..03d2845d536cbd3d67b988fa9e4ffcf890657232 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_pt_BR.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_pt_BR.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Logo do Briar access.swap=Ãcone mostrando erros entre dois contatos +access.ourselves=Ourselves access.mode.contacts=Contatos access.mode.groups=Grupos Privados access.mode.forums=Fóruns @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Mostrar o menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Nenhum contato foi selecionado @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Você tem certeza que quer remover es conversation.change.alias.dialog.title=Alterar nome do contato conversation.change.alias.dialog.description=Por favor, insira um novo nome para esse contato (visÃvel só para você): +# Forums +forum.search.title=Fóruns +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Criar Fórum +forum.add.hint=Escolha um nome para o seu fórum +forum.add.button=Create forum +forum.leave.title=Sair do fórum +forum.delete.dialog.title=Confirmar saÃda do fórum +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Sair +forum.message.hint=Novo Post +forum.message.reply.hint=Nova resposta +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Sem Posts +group.card.posts={0, plural, one {{0} post} many {{0} posts} other {{0} posts}} +forum.sharing.status.title=Status de compartilhamento +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Ninguém +forum.sharing.action.title=Compartilhar fórum +forum.sharing.action.add_message=Adicionar uma mensagem (opcional) +forum.sharing.action.choose_contacts=Escolher contatos +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Já compartilhado +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Criado por {0} groups.card.messages={0, plural, one {{0} mensagem} many {{0} mensagens} other {{0} mensagens}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=O convite ao blog de {0} foi automaticame blog.invitation.response.accepted.received={0} aceitou o convite ao blog. blog.invitation.response.declined.received={0} recusou o convite ao blog. +# Peer trust level +peer.trust.unverified=Contato não verificado +peer.trust.verified=Contato verificado +peer.trust.ourselves=Eu +peer.trust.stranger=Desconhecido + # Main main.help.title=Cliente Desktop do Briar @@ -212,6 +261,7 @@ warning=Aviso unsupported_feature=Infelizmente, esse recurso ainda não é suportado pelo Briar Desktop. remove=Remover hide=Esconder +search=Procurar # Compose text edit actions copy=Copiar @@ -256,6 +306,8 @@ expiration.banner.part2=Por favor, atualize para uma versão mais nova a tempo. # Notification notifications.message.private.one_chat={0, plural, one {New private message.} many {{0} new private messages.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Definições @@ -281,6 +333,7 @@ settings.security.password.change=Mudar Senha settings.security.password.current=Senha atual settings.security.password.choose=Nova senha settings.security.password.confirm=Confirmar nova senha +settings.security.password.changing=Changing password… settings.security.password.changed=Senha alterada com sucesso. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_ro.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_ro.properties index 7245ae4d20ab45cb9a2b0db2226774a8e30b7fe5..8817a0defb58b4fc36b8c474ca31e1958309b729 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_ro.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_ro.properties @@ -40,6 +40,7 @@ access.list.selected.yes=selectat în prezent access.list.selected.no=neselectat în prezent; daÈ›i clic pentru a selecta access.logo=Logo Briar access.swap=Pictogramă care arată erorile dintre două contacte +access.ourselves=Noi înÈ™ine access.mode.contacts=Contacte access.mode.groups=Grupuri private access.mode.forums=Forumuri @@ -58,6 +59,16 @@ access.settings.currently_disabled=Dezactivate în prezent access.settings.click_to_toggle_notifications=DaÈ›i clic pentru a comuta notificările access.return_to_previous_screen=ÃŽnapoi la ecranul anterior +access.menu=Arată meniu +access.forums.add=Adaugă forum +access.forums.list=listă forumuri +access.forums.reply.close=ÃŽnchide răspuns +access.forums.unread_count={0, plural, one {o postare necitită} few {{0} postări necitite} other {{0} de postări necitite}} +access.forums.last_post_timestamp=ultima postare: {0} +access.forums.jump_to_prev_unread=Salt la postul anterior necitit +access.forums.jump_to_next_unread=Salt la următorul mesaj necitit +access.forum.sharing.action.close=ÃŽnchide formular partajare +access.forum.sharing.status.close=ÃŽnchide starea partajării # Contacts contacts.none_selected.title=Niciun contact selectat @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Sigur doriÈ›i să È™tergeÈ›i acest co conversation.change.alias.dialog.title=ModificaÈ›i numele contactului conversation.change.alias.dialog.description=IntroduceÈ›i un nume nou pentru acest contact (vizibil doar pentru dvs.): +# Forums +forum.search.title=Forumuri +forum.empty_state.text=Nu aveÈ›i încă niciun forum. AtingeÈ›i pictograma + pentru a adăuga un forum: +forum.none_selected.title=Niciun forum selectat +forum.none_selected.hint=SelectaÈ›i un forum pentru a începe să discutaÈ›i +forum.add.title=CreaÈ›i un forum +forum.add.hint=AlegeÈ›i un nume pentru forumul dvs. +forum.add.button=Crează forum +forum.leave.title=PărăsiÈ›i forumul +forum.delete.dialog.title=ConfirmaÈ›i părăsirea forumului +forum.delete.dialog.message=EÈ™ti sigur că vrei să părăseÈ™ti acest forum?\n\nEste posibil ca orice persoană cu care aÈ›i partajat acest forum să nu mai primească actualizări. +forum.delete.dialog.button=PărăsiÈ›i +forum.message.hint=Postare nouă +forum.message.reply.hint=Răspuns nou +forum.message.reply.intro=RăspundeÈ›i la: +forum.message.new=Mesaj necitit +group.card.no_posts=Nu sunt postări +group.card.posts={0, plural, one {{0} postare} few {{0} postări} other {{0} de postări}} +forum.sharing.status.title=Starea partajării +forum.sharing.status.info=Orice membru al unui forum îl poate partaja cu contactele sale. PartajaÈ›i acest forum cu următoarele contacte. Pot exista È™i alÈ›i membri pe care să nu îi puteÈ›i vedea în această listă, cu toate că le puteÈ›i vedea postările de pe forum. +forum.sharing.status.with=Partajat cu {0} ({1} online) +forum.sharing.status.nobody=Nimeni +forum.sharing.action.title=PartajaÈ›i forumul +forum.sharing.action.add_message=AdăugaÈ›i un mesaj (opÈ›ional) +forum.sharing.action.choose_contacts=AlegeÈ›i contactele +forum.sharing.action.no_contacts=Nu aveÈ›i nici un contact încă. PuteÈ›i partaja forumuri doar cu contactele voastre. +forum.sharing.action.status.already_shared=Deja partajat +forum.sharing.action.status.already_invited=InvitaÈ›ie deja trimisă +forum.sharing.action.status.invite_received=InvitaÈ›ie deja primită +forum.sharing.action.status.not_supported=Nu este susÈ›inut de acest contact +forum.sharing.action.status.error=Eroare. Aceasta este o eroare È™i nu este vina dumneavoastră + # Private Groups groups.card.created=Creat de {0} groups.card.messages={0, plural, one {{0} mesaj} few {{0} mesaje} other {{0} mesaje}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=InvitaÈ›ia pe blog de la {0} a fost refuz blog.invitation.response.accepted.received={0} a acceptat invitaÈ›ia pe blog. blog.invitation.response.declined.received={0} a refuzat invitaÈ›ia pe blog. +# Peer trust level +peer.trust.unverified=Contact neverificat +peer.trust.verified=Contact verificat +peer.trust.ourselves=Eu +peer.trust.stranger=Necunoscut + # Main main.help.title=Client Briar pentru desktop @@ -212,6 +261,7 @@ warning=Avertisment unsupported_feature=Din păcate, această funcÈ›ie nu este acceptată încă de Briar Desktop. remove=EliminaÈ›i hide=AscundeÈ›i +search=Căutare # Compose text edit actions copy=CopiaÈ›i @@ -256,6 +306,8 @@ expiration.banner.part2=RealizaÈ›i un upgrade la o versiune mai nouă în timp u # Notification notifications.message.private.one_chat={0, plural, one {Un nou mesaj privat.} few {{0}de noi mesaje private.} other {{0} mesaje private noi.}} notifications.message.private.several_chats={0} mesaje noi în {1} conversaÈ›ii private. +notifications.message.forum.one_forum={0, plural, one {Postare nouă pe forum.} few {{0} postări noi pe forum.} other {{0} de postări noi pe forum.}} +notifications.message.forum.several_forum={0} postări noi pe {1} forumuri. # Settings settings.title=Setări @@ -281,6 +333,7 @@ settings.security.password.change=ModificaÈ›i parola settings.security.password.current=Parolă curentă settings.security.password.choose=Parolă nouă settings.security.password.confirm=ConfirmaÈ›i parola nouă +settings.security.password.changing=Se schimbă parola… settings.security.password.changed=Parola a fost modificată. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Notificări vizuale settings.notifications.visual.error.unsupported=Notificările vizuale nu sunt acceptate în prezent pe sistemul dvs. PuteÈ›i activa însă notificările sonore. settings.notifications.visual.error.libnotify.load=Notificările pot fi afiÈ™ate vizual numai dacă este disponibilă soluÈ›ia libnotify. Vă rugăm să aveÈ›i în vedere instalarea acesteia, urmând procedura de instalare obiÈ™nuită pentru sistemul dvs. settings.notifications.visual.error.libnotify.init=Briar Desktop nu s-a putut conecta la niciun server de notificări. AsiguraÈ›i-vă că aÈ›i instalat È™i configurat corespunzător un server de notificări compatibil cu freedesktop.org. +settings.notifications.visual.error.toast4j.init=Briar Desktop nu a putut iniÈ›ializa sistemul de notificări. settings.notifications.sound.title=Notificări sonore # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_ru.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_ru.properties index 303801a771c4143a5265e628a13c823425690386..3acdb6e250e3c82db37ff47974116c3b5748d8cc 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_ru.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_ru.properties @@ -40,6 +40,7 @@ access.list.selected.yes=ÑÐµÐ¹Ñ‡Ð°Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð¾ access.list.selected.no=ÑÐµÐ¹Ñ‡Ð°Ñ Ð½Ðµ выбрано, нажмите Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° access.logo=Логотип Briar access.swap=Значок, показывающий ошибки между Ð´Ð²ÑƒÐ¼Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð°Ð¼Ð¸ +access.ourselves=Я access.mode.contacts=Контакты access.mode.groups=Приватные группы access.mode.forums=Форумы @@ -58,6 +59,16 @@ access.settings.currently_disabled=Ð¡ÐµÐ¹Ñ‡Ð°Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¾ access.settings.click_to_toggle_notifications=Ðажмите Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ð¹ access.return_to_previous_screen=ВернутьÑÑ Ð½Ð° предыдущий Ñкран +access.menu=Показать меню +access.forums.add=Добавить форум +access.forums.list=ÑпиÑок форумов +access.forums.reply.close=Закрыть ответ +access.forums.unread_count={0, plural, one {один непрочитанный поÑÑ‚} few {{0} непрочитанных поÑта} many {{0} непрочитанных поÑтов} other {{0} непрочитанных поÑтов}} +access.forums.last_post_timestamp=поÑледний поÑÑ‚: {0} +access.forums.jump_to_prev_unread=Перейти к предыдущему непрочитанному поÑту +access.forums.jump_to_next_unread=Перейти к Ñледующему непрочитанному поÑту +access.forum.sharing.action.close=Закрыть форму общего доÑтупа +access.forum.sharing.status.close=Закрыть ÑÑ‚Ð°Ñ‚ÑƒÑ Ð¾Ð±Ñ‰ÐµÐ³Ð¾ доÑтупа # Contacts contacts.none_selected.title=Контакт не выбран @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Ð’Ñ‹ дейÑтвительно хо conversation.change.alias.dialog.title=Изменить Ð¸Ð¼Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð° conversation.change.alias.dialog.description=Введите новое Ð¸Ð¼Ñ Ð´Ð»Ñ Ñтого контакта (видимое только вам): +# Forums +forum.search.title=Форумы +forum.empty_state.text=У Ð²Ð°Ñ Ð¿Ð¾ÐºÐ° нет форумов. Ðажмите значок +, чтобы добавить: +forum.none_selected.title=Форум не выбран +forum.none_selected.hint=Выберите форум, чтобы начать общение +forum.add.title=Создать форум +forum.add.hint=Придумайте название вашего форума +forum.add.button=Создать форум +forum.leave.title=Покинуть форум +forum.delete.dialog.title=Подтвердить выход из форума +forum.delete.dialog.message=Ð’Ñ‹ уверены, что хотите покинуть Ñтот форум?\n\nÐ’Ñе контакты, Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ð¼Ð¸ вы поделилиÑÑŒ Ñтим форумом, могут переÑтать получать обновлениÑ. +forum.delete.dialog.button=Покинуть +forum.message.hint=Ðовый поÑÑ‚ +forum.message.reply.hint=Ðовый ответ +forum.message.reply.intro=Ответ: +forum.message.new=Ðепрочитанный поÑÑ‚ +group.card.no_posts=Ðет поÑтов +group.card.posts={0, plural, one {{0} поÑÑ‚} few {{0} поÑта} many {{0} поÑтов} other {{0} поÑтов}} +forum.sharing.status.title=Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð¾Ð±Ñ‰ÐµÐ³Ð¾ доÑтупа +forum.sharing.status.info=Любой учаÑтник форума может поделитьÑÑ Ñтим форумом Ñо Ñвоими контактами. Ð’Ñ‹ поделилиÑÑŒ Ñтим форумом Ñо Ñледующими контактами. Могут быть и другие пользователи, которых вы не видите в Ñтом ÑпиÑке, Ñ…Ð¾Ñ‚Ñ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ видеть их ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð½Ð° форуме. +forum.sharing.status.with=ПоделитьÑÑ Ñ {0} ({1} онлайн) +forum.sharing.status.nobody=Ðикого +forum.sharing.action.title=ПоделитьÑÑ Ñ„Ð¾Ñ€ÑƒÐ¼Ð¾Ð¼ +forum.sharing.action.add_message=Добавить Ñообщение (необÑзательно) +forum.sharing.action.choose_contacts=Выберите контакты +forum.sharing.action.no_contacts=Контактов пока нет. Ð’Ñ‹ можете делитьÑÑ Ñ„Ð¾Ñ€ÑƒÐ¼Ð°Ð¼Ð¸ только Ñо Ñвоими контактами. +forum.sharing.action.status.already_shared=Уже поделилиÑÑŒ +forum.sharing.action.status.already_invited=Приглашение уже отправлено +forum.sharing.action.status.invite_received=Приглашение уже получено +forum.sharing.action.status.not_supported=Ðе поддерживаетÑÑ Ñтим контактом +forum.sharing.action.status.error=Ðто ошибка программы. Ð’Ñ‹ тут ни причем. + # Private Groups groups.card.created=Создано {0} groups.card.messages={0, plural, one {{0} Ñообщение} few {{0} ÑообщениÑ} many {{0} Ñообщений} other {{0} Ñообщений}} @@ -130,7 +173,7 @@ contact.add.remote.copy_tooltip=Скопировать contact.add.remote.contact_link=Введите ÑÑылку от вашего контакта здеÑÑŒ contact.add.remote.contact_link_hint=СÑылка контакта contact.add.remote.paste_tooltip=Ð’Ñтавить -contact.add.remote.nickname_intro=Задайте Ñтому контакту пÑевдоним. Его можете видеть только вы. +contact.add.remote.nickname_intro=Задайте Ñтому контакту пÑевдоним. Его Ñможете видеть только вы. contact.add.remote.choose_nickname=Введите пÑевдоним contact.add.remote.link_copied_snackbar=СÑылка Briar Ñкопирована в буфер обмена. contact.add.remote.link_pasted_snackbar=Ð’Ñтавлено из буфера обмена. @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Приглашение в блог от { blog.invitation.response.accepted.received={0} принÑл(-а) приглашение в блог. blog.invitation.response.declined.received={0} отклонил(-а) приглашение в блог. +# Peer trust level +peer.trust.unverified=Ðеверифицированный контакт +peer.trust.verified=Верифицированный контакт +peer.trust.ourselves=Я +peer.trust.stranger=Ðезнакомец + # Main main.help.title=Клиент Briar Desktop @@ -212,6 +261,7 @@ warning=Предупреждение unsupported_feature=К Ñожалению, Ñта Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ð¿Ð¾ÐºÐ° не поддерживаетÑÑ Briar Desktop. remove=Удалить hide=Скрыть +search=ПоиÑк # Compose text edit actions copy=Скопировать @@ -225,9 +275,9 @@ startup.title.login=С возвращением startup.field.nickname=ПÑевдоним startup.field.nickname.explanation=Ваш пÑевдоним будет отображатьÑÑ Ñ€Ñдом Ñ Ð»ÑŽÐ±Ñ‹Ð¼ размещаемым вами контентом. Его Ð½ÐµÐ»ÑŒÐ·Ñ Ð¸Ð·Ð¼ÐµÐ½Ð¸Ñ‚ÑŒ поÑле ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð°ÐºÐºÐ°ÑƒÐ½Ñ‚Ð°. startup.field.password=Пароль -startup.field.password.explanation=Ваш аккаунт Briar хранитÑÑ Ð² зашифрованном виде только на уÑтройÑтве. ЕÑли вы забудете Ñвой пароль или удалите Briar, то не Ñможете воÑÑтановить Ñвою учетную запиÑÑŒ.\n\nПридумайте длинный пароль, который трудно угадать, например четыре Ñлучайных Ñлова или деÑÑть Ñлучайных букв, цифр и Ñимволов. +startup.field.password.explanation=Ðккаунт Briar хранитÑÑ Ð² зашифрованном виде только на уÑтройÑтве. ЕÑли вы забудете Ñвой пароль или удалите Briar, воÑÑтановить аккаунт будет невозможно.\n\nПридумайте длинный пароль, который трудно угадать, например четыре Ñлучайных Ñлова или деÑÑть Ñлучайных букв, цифр и Ñимволов. startup.field.password_confirmation=Подтвердите пароль -startup.button.register=Создать учетную запиÑÑŒ +startup.button.register=Создать аккаунт startup.button.login=Вход startup.error.name_too_long=Слишком длинное Ð¸Ð¼Ñ startup.error.password_too_weak=Пароль Ñлишком Ñлабый. @@ -237,12 +287,12 @@ startup.error.decryption.title=Ðе удаетÑÑ Ð¿Ñ€Ð¾Ð²ÐµÑ€Ð¸Ñ‚ÑŒ парол startup.error.decryption.text=Briar не может проверить ваш пароль. ПожалуйÑта, попробуйте перезагрузить уÑтройÑтво, чтобы решить Ñту проблему. startup.password_forgotten.button=Я забыл Ñвой пароль startup.password_forgotten.title=Пароль утерÑн -startup.password_forgotten.text=Ваш аккаунт Briar хранитÑÑ Ð² зашифрованном виде только на уÑтройÑтве, поÑтому мы не можем ÑброÑить пароль. Удалить учетную запиÑÑŒ и начать заново?\n\nВнимание: ваши идентификаторы, контакты и ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð±ÑƒÐ´ÑƒÑ‚ потерÑны навÑегда. -startup.failed.expired=Срок дейÑÑ‚Ð²Ð¸Ñ Ñтого программного обеÑÐ¿ÐµÑ‡ÐµÐ½Ð¸Ñ Ð¸Ñтек. СпаÑибо за теÑтирование!\n\nЧтобы продолжить иÑпользование Briar, загрузите поÑледнюю верÑию. Ð’Ñ‹ Ñможете продолжить пользоватьÑÑ Ñвоей учетной запиÑью. -startup.failed.registration=Briar не удалоÑÑŒ Ñоздать вашу учетную запиÑÑŒ.\n\nПожалуйÑта, обновите приложение до поÑледней верÑии и повторите попытку. +startup.password_forgotten.text=Ваш аккаунт Briar хранитÑÑ Ð² зашифрованном виде только на уÑтройÑтве, поÑтому мы не можем ÑброÑить пароль. Удалить аккаунт и начать заново?\n\nВнимание: ваши идентификаторы, контакты и ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð±ÑƒÐ´ÑƒÑ‚ потерÑны навÑегда. +startup.failed.expired=Срок дейÑÑ‚Ð²Ð¸Ñ Ñтого программного обеÑÐ¿ÐµÑ‡ÐµÐ½Ð¸Ñ Ð¸Ñтек. СпаÑибо за теÑтирование!\n\nЧтобы продолжить иÑпользование Briar, загрузите поÑледнюю верÑию. Ð’Ñ‹ Ñможете продолжить пользоватьÑÑ Ñвоим аккаунтом. +startup.failed.registration=Briar не удалоÑÑŒ Ñоздать аккаунт.\n\nПожалуйÑта, обновите приложение до поÑледней верÑии и повторите попытку. startup.failed.clock_error=Briar не удалоÑÑŒ запуÑтить, поÑкольку Ð²Ñ€ÐµÐ¼Ñ Ð½Ð° уÑтройÑтве выÑтавлено некорректно.\n\nПожалуйÑта, уÑтановите правильное Ð²Ñ€ÐµÐ¼Ñ Ð½Ð° чаÑах вашего уÑтройÑтва и повторите попытку. -startup.failed.db_error=Briar не Ñмог открыть базу данных, Ñодержащую вашу учетную запиÑÑŒ, контакты и ÑообщениÑ.\n\nПожалуйÑта, убедитеÑÑŒ, что Briar уже иÑпользовалÑÑ Ð½Ð° Ñтом уÑтройÑтве. Ð’ противном Ñлучае обновите приложение до поÑледней верÑии и повторите попытку, или Ñоздайте новую учетную запиÑÑŒ, выбрав 'Я забыл Ñвой пароль' в подÑказке паролÑ. -startup.failed.data_too_old_error=Ваша ÑƒÑ‡ÐµÑ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ была Ñоздана в Ñтарой верÑии Briar, поÑтому открыть ее в Ñтой верÑии Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð½Ðµ удаÑÑ‚ÑÑ.\n\nВам необходимо либо уÑтановить Ñтарую верÑию, либо Ñоздать новый аккаунт, выбрав 'Ñ Ð·Ð°Ð±Ñ‹Ð» Ñвой пароль' на Ñтапе авторизации в приложении. +startup.failed.db_error=Briar не Ñмог открыть базу данных, Ñодержащую ваш аккаунт, контакты и ÑообщениÑ.\n\nПожалуйÑта, убедитеÑÑŒ, что Briar уже иÑпользовалÑÑ Ð½Ð° Ñтом уÑтройÑтве. Ð’ противном Ñлучае обновите приложение до поÑледней верÑии и повторите попытку, или Ñоздайте новый аккаунт, выбрав 'Я забыл Ñвой пароль' в подÑказке паролÑ. +startup.failed.data_too_old_error=Ваш аккаунт был Ñоздан в Ñтарой верÑии Briar, поÑтому открыть его в Ñтой верÑии Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð½Ðµ удаÑÑ‚ÑÑ.\n\nВам необходимо либо уÑтановить Ñтарую верÑию, либо Ñоздать новый аккаунт, выбрав 'Ñ Ð·Ð°Ð±Ñ‹Ð» Ñвой пароль' на Ñтапе авторизации в приложении. startup.failed.data_too_new_error=Ваш аккаунт был Ñоздан в более новой верÑии Ñтого Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¸ не может быть открыт в текущей верÑии.\n\nПожалуйÑта, обновите приложение до поÑледней верÑии и повторите попытку. startup.failed.service_error=Briar не Ñмог запуÑтить необходимый компонент.\n\nПожалуйÑта, обновите приложение до поÑледней верÑии и повторите попытку. startup.database.creating=Создание аккаунта... @@ -256,6 +306,8 @@ expiration.banner.part2=ПожалуйÑта, Ñвоевременно обно # Notification notifications.message.private.one_chat={0, plural, one {Ðовое личное Ñообщение.} few {{0} новых личных ÑообщениÑ.} many {{0} новых личных Ñообщений.} other {{0} новых личных Ñообщений.}} notifications.message.private.several_chats={0} новых ÑообщениÑ(й) в {1} приватных чатах. +notifications.message.forum.one_forum={0, plural, one {Ðовый поÑÑ‚ на форуме} few {{0} новых поÑта на форуме.} many {{0} новых поÑтов на форуме} other {{0} новых поÑтов на форуме.}} +notifications.message.forum.several_forum={0} новых поÑтов на {1} форумах. # Settings settings.title=ÐаÑтройки @@ -281,6 +333,7 @@ settings.security.password.change=Изменить пароль settings.security.password.current=Текущий пароль settings.security.password.choose=Ðовый пароль settings.security.password.confirm=Подтвердите новый пароль +settings.security.password.changing=Изменение паролÑ… settings.security.password.changed=Пароль был изменен. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Визуальные ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ settings.notifications.visual.error.unsupported=Визуальные ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ Ð² наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð½Ðµ поддерживаютÑÑ Ð² вашей ÑиÑтеме. Ð’Ñ‹ можете включить звуковые уведомлениÑ. settings.notifications.visual.error.libnotify.load=Ð£Ð²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¼Ð¾Ð³ÑƒÑ‚ отображатьÑÑ Ð²Ð¸Ð·ÑƒÐ°Ð»ÑŒÐ½Ð¾ только при наличии библиотеки libnotify. ПожалуйÑта, уÑтановите ее, ÑÐ»ÐµÐ´ÑƒÑ Ñтандартной процедуре уÑтановки Ð´Ð»Ñ Ð²Ð°ÑˆÐµÐ¹ ÑиÑтемы. settings.notifications.visual.error.libnotify.init=Briar Desktop не Ñмог подключитьÑÑ Ð½Ð¸ к одному Ñерверу уведомлений. ПожалуйÑта, убедитеÑÑŒ, что Ñервер уведомлений, ÑоответÑтвующий Ñтандарту freedesktop.org, уÑтановлен и наÑтроен должным образом. +settings.notifications.visual.error.toast4j.init=Briar Desktop не удалоÑÑŒ инициализировать ÑиÑтему уведомлений. settings.notifications.sound.title=Звуковые ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_sk.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_sk.properties index 948f084a6c8e61029393f9b6a6381ed519f65314..672c17e98ea55f334538ae8e3bb8435f760743d8 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_sk.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_sk.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Logo Briar access.swap=Ikona zobrazujúca chyby medzi dvoma kontaktmi +access.ourselves=Ourselves access.mode.contacts=Kontakty access.mode.groups=Súkromné skupiny access.mode.forums=Fóra @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} few {{0} unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Žiadny kontakt nebol vybratý @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Ste si istÃ, že chcete odstrániÅ¥ conversation.change.alias.dialog.title=ZmeniÅ¥ meno kontaktu conversation.change.alias.dialog.description=Zadajte prosÃm nové meno tohto kontaktu (viditeľné len pre vás): +# Forums +forum.search.title=Fóra +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=VytvoriÅ¥ fórum +forum.add.hint=Choose a name for your forum +forum.add.button=Create forum +forum.leave.title=OpustiÅ¥ fórum +forum.delete.dialog.title=PotvrdiÅ¥ opustenie fóra +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=OdÃsÅ¥ +forum.message.hint=Nový prÃspevok +forum.message.reply.hint=Nová odpoveÄ +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=No posts +group.card.posts={0, plural, one {{0} post} few {{0} posts} many {{0} posts} other {{0} posts}} +forum.sharing.status.title=Sharing Status +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Nobody +forum.sharing.action.title=ZdieľaÅ¥ fórum +forum.sharing.action.add_message=PridaÅ¥ správu (nepovinné) +forum.sharing.action.choose_contacts=Vyberte kontakty +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Already sharing +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Vytvoril {0} groups.card.messages={0, plural, one {{0} správa} few {{0} správy} many {{0} správ} other {{0} správ}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Pozvánka na blog od {0} bola automaticky blog.invitation.response.accepted.received={0} prijal pozvánku na blog. blog.invitation.response.declined.received={0} odmietol pozvánku na blog. +# Peer trust level +peer.trust.unverified=Unverified contact +peer.trust.verified=Verified contact +peer.trust.ourselves=Me +peer.trust.stranger=Stranger + # Main main.help.title=Klient Briar Desktop @@ -212,6 +261,7 @@ warning=Varovanie unsupported_feature=Bohužiaľ, táto funkcia zatiaľ nie je podporovaná v aplikácii Briar Desktop. remove=OdstrániÅ¥ hide=SkryÅ¥ +search=HľadaÅ¥ # Compose text edit actions copy=KopÃrovaÅ¥ @@ -256,6 +306,8 @@ expiration.banner.part2=ProsÃm, aktualizujte vÄas na novÅ¡iu verziu. # Notification notifications.message.private.one_chat={0, plural, one {New private message.} few {{0} new private messages.} many {{0} new private messages.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} few {{0} new forum posts.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Nastavenia @@ -281,6 +333,7 @@ settings.security.password.change=ZmeniÅ¥ heslo settings.security.password.current=Aktuálne heslo settings.security.password.choose=Nové heslo settings.security.password.confirm=PotvrdiÅ¥ nové heslo +settings.security.password.changing=Changing password… settings.security.password.changed=Heslo bolo zmenené. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_sq.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_sq.properties index 6dd7853b39d9fa7597577fc9348f054552dfb364..07fc305c7ef6fcdedf9820d4502ea979a029ddf7 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_sq.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_sq.properties @@ -29,7 +29,7 @@ access.conversation.message.image.blank.your_contact={0, plural, one {kontakti j access.conversation.message.image.caption.you={0, plural, one {dërguat një figurë dhe shkruat} other {dërguat {0} figura dhe shkruat}} access.conversation.message.image.caption.your_contact={0, plural, one {kontakti juaj dërgoi një figurë dhe shkroi} other {kontakti juaj dërgoi {0} figura dhe shkroi}} access.conversation.notice.additional_message=mesazh shtesë -access.conversation.request.navigate_inside_to_react=navigate inside the item to react +access.conversation.request.navigate_inside_to_react=kaloni brenda objektit, që të reagoni access.conversation.request.click_to_open=klikoni për hapje access.introduction.back.contact=Kthehu te skena e kontaktit të procesit të prezantimit access.introduction.close=Mbylle skenën e prezantimit @@ -40,6 +40,7 @@ access.list.selected.yes=përzgjedhur aktualisht access.list.selected.no=aktualisht jo i përzgjedhur, klikoni të përzgjidhet access.logo=Stemë Briar-i access.swap=Ikonë që shfaq gabime mes dy kontaktesh +access.ourselves=Vetë ne access.mode.contacts=Kontakte access.mode.groups=Grupe Private access.mode.forums=Forume @@ -58,6 +59,16 @@ access.settings.currently_disabled=Aktualisht të çaktivizuara access.settings.click_to_toggle_notifications=Klikoni që të aktivizohen/çaktivizohen njoftime access.return_to_previous_screen=Kthehu te skena e mëparshme +access.menu=Shfaqe menunë +access.forums.add=Shtoni forum +access.forums.list=listë forumesh +access.forums.reply.close=Mbylle përgjigjen +access.forums.unread_count={0, plural, one {një postim i palexuar} other {{0} postime të palexuar}} +access.forums.last_post_timestamp=postimi i fundit më: {0} +access.forums.jump_to_prev_unread=Kalo te postimi i mëparshëm i palexuar +access.forums.jump_to_next_unread=Kalo te postimi pasues i palexuar +access.forum.sharing.action.close=Mbyll formular ndarjesh me të tjerë +access.forum.sharing.status.close=Mbylle gjendjen e ndarjes me të tjerë # Contacts contacts.none_selected.title=S’ka kontakt të përzgjedhur @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Jeni i sigurt se doni të hiqet ky ko conversation.change.alias.dialog.title=Ndryshoni emër kontakti conversation.change.alias.dialog.description=Ju lutemi, jepni një emër të ri për këtë kontakt (i dukshëm vetëm për ju): +# Forums +forum.search.title=Forume +forum.empty_state.text=S’keni ende forume. Prekni ikonën + që të shtoni një forum: +forum.none_selected.title=S’u përzgjodh forum +forum.none_selected.hint=Përzgjidhni një forum që të filloni të bisedoni +forum.add.title=Krijoje Forumin +forum.add.hint=Zgjidhni një emër për forumin tuaj +forum.add.button=Krijoje forumin +forum.leave.title=Braktiseni Forumin +forum.delete.dialog.title=Ripohoni Braktisjen e Forumit +forum.delete.dialog.message=Jeni i sigurt se doni të braktisni këtë forum?\n\nCilido kontakt me të cilin ndani këtë forum mund të reshtë së marri përditësime. +forum.delete.dialog.button=Braktise +forum.message.hint=Postim i Ri +forum.message.reply.hint=Përgjigje e Re +forum.message.reply.intro=Përgjigjuni te: +forum.message.new=Postim i Palexuar +group.card.no_posts=S\’ka postime +group.card.posts={0, plural, one {{0} postim} other {{0} postime}} +forum.sharing.status.title=Gjendje Ndarjeje Me të Tjerë +forum.sharing.status.info=Cilido anëtar i një forumi mund ta ndajë me kontaktet e veta. Po e ndani këtë forum me kontaktet vijuese. Mund të ketë edhe anëtarë të tjerë të cilët s’mund t’i shihni te kjo listë, por mund të shihni postimet e tyre te forumi. +forum.sharing.status.with=Ndarë me {0} ({1} në linjë) +forum.sharing.status.nobody=Askush +forum.sharing.action.title=Ndajeni Forumin Me të Tjerë +forum.sharing.action.add_message=Shtoni një mesazh (në daçi) +forum.sharing.action.choose_contacts=Zgjidhni Kontakte +forum.sharing.action.no_contacts=Ende pa kontakte. Forume mund t’u tregoni vetëm kontakteve tuaj. +forum.sharing.action.status.already_shared=Ndarë tashmë +forum.sharing.action.status.already_invited=Ftesë e dërguar tashmë +forum.sharing.action.status.invite_received=Ftesë e marrë tashmë +forum.sharing.action.status.not_supported=Nuk mbulohet prej këtij kontakti +forum.sharing.action.status.error=Gabim. Kjo është një e metë dhe jo për fajin tuaj + # Private Groups groups.card.created=Krijuar nga {0} groups.card.messages={0, plural, one {{0} mesazhe} other {{0} mesazhe}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Ftesa për blog nga {0} u hodh tej automa blog.invitation.response.accepted.received={0} pranoi ftesën për blog. blog.invitation.response.declined.received={0} hodhi poshtë ftesën për blog. +# Peer trust level +peer.trust.unverified=Kontakt i paverifikuar +peer.trust.verified=Kontakt i verifikuar +peer.trust.ourselves=Unë +peer.trust.stranger=I huaj + # Main main.help.title=Klient Desktop për Briar @@ -212,6 +261,7 @@ warning=Varovanie unsupported_feature=Mjerisht, kjo veçori nuk mbulohet ende nga Briar-i për Desktop. remove=Hiqe hide=Fshihe +search=Kërko # Compose text edit actions copy=Kopjojeni @@ -256,6 +306,8 @@ expiration.banner.part2=Ju lutemi, përditësojeni me një version të ri, brend # Notification notifications.message.private.one_chat={0, plural, one {Mesazh i ri privat.} other {{0} mesazhe të rinj privatë.}} notifications.message.private.several_chats={0} mesazhe të rinj në {1} fjalosje private. +notifications.message.forum.one_forum={0, plural, one {Postim i ri forumi.} other {{0} postime të rinj forumi.}} +notifications.message.forum.several_forum={0} postime të rinj në {1} forume. # Settings settings.title=Rregullime @@ -281,6 +333,7 @@ settings.security.password.change=Ndryshoni fjalëkalimin settings.security.password.current=Fjalëkalimi i tanishëm settings.security.password.choose=Fjalëkalim i ri settings.security.password.confirm=Riopohoni fjalëkalimin e ri +settings.security.password.changing=Po ndryshohet fjalëkalimi… settings.security.password.changed=Fjalëkalimi u ndryshua. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Njoftime pamore settings.notifications.visual.error.unsupported=Njoftimet pamore nuk mbulohen aktualisht në sistemin tuaj. Mundeni ende të aktivizoni njoftime zanore. settings.notifications.visual.error.libnotify.load=Njoftimet mund të shfaqen në mënyrë pamore vetëm nëse është e pranishme libnotify. Ju lutemi, shihni mundësinë e instalimit të saj duke ndjekur procedurën e zakonshme të instalimit për sistemin tuaj. settings.notifications.visual.error.libnotify.init=Briar Desktop-i s’u lidh dot të ndonjë shërbyes njoftimesh. Ju lutemi, sigurohuni se keni të instaluar dhe të formësuar si duhet një shërbyes njoftimesh të përputhshëm me freedesktop.org. +settings.notifications.visual.error.toast4j.init=Briar Desktop s’gatiti dot sistemin e njoftimeve. settings.notifications.sound.title=Njoftime zanore # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_sv.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_sv.properties index 0b159c1ce14a8d7e025258bdf162738833b20f93..f51d28670133d5c0d3c207eec6c49881ec853481 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_sv.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_sv.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Briar-logotyp access.swap=Ikon som visar fel mellan tvÃ¥ kontakter +access.ourselves=Ourselves access.mode.contacts=Kontakter access.mode.groups=Privatgrupper access.mode.forums=Forum @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Ingen kontakt vald @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Är du säker att du vill radera denn conversation.change.alias.dialog.title=Ändra namn pÃ¥ kontakt conversation.change.alias.dialog.description=Ange ett nytt namn för denna kontakt (syns endast för dig): +# Forums +forum.search.title=Forum +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Skapa forum +forum.add.hint=Sätt ett namn pÃ¥ ditt forum +forum.add.button=Create forum +forum.leave.title=Lämna forum +forum.delete.dialog.title=Bekräfta lämna forum +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Tillbaka +forum.message.hint=Nytt inlägg +forum.message.reply.hint=Nytt svar +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Inga inlägg +group.card.posts={0, plural, one {{0} post} other {{0} posts}} +forum.sharing.status.title=Delningsstatus +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Ingen +forum.sharing.action.title=Bjud in till forum +forum.sharing.action.add_message=Lägg till ett meddelande (valfritt) +forum.sharing.action.choose_contacts=Välj kontakter +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Delas redan +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created=Skapad av {0} groups.card.messages={0, plural, one {(0) meddelande} other {{0} meddelanden}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Bloginbjudan frÃ¥n {0} avböjdes automati blog.invitation.response.accepted.received={0} accepterade blogginbjudan. blog.invitation.response.declined.received={0} avböjde blogginbjudan. +# Peer trust level +peer.trust.unverified=Overifierad kontakt. +peer.trust.verified=Verifierad kontakt. +peer.trust.ourselves=Mig +peer.trust.stranger=Främling + # Main main.help.title=Brisar Skrivbordsklient @@ -212,6 +261,7 @@ warning=Varning unsupported_feature=Denna funktion stöds tyvärr inte av Briar Skrivbord än. remove=Ta bort hide=Göm +search=Sök # Compose text edit actions copy=Kopiera @@ -256,6 +306,8 @@ expiration.banner.part2=Uppdatera till enyare version i tid. # Notification notifications.message.private.one_chat={0, plural, one {New private message.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Inställningar @@ -281,6 +333,7 @@ settings.security.password.change=Ändra lösenord settings.security.password.current=Nuvarande lösenord settings.security.password.choose=Nytt lösenord settings.security.password.confirm=Bekräfta nytt lösenord +settings.security.password.changing=Changing password… settings.security.password.changed=Lösenordet har ändrats. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_tr.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_tr.properties index 5242dca10de67dfcdbc95cbd9b0c1a280a73fb9a..48b67fae822bebfdfb11e652e851b7077c5b332f 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_tr.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_tr.properties @@ -40,6 +40,7 @@ access.list.selected.yes=mevcut seçilmiÅŸ access.list.selected.no=seçilen yok, seçmek için tıklayın access.logo=Briar logosu access.swap=İki kiÅŸi arasındaki hataları gösteren simge +access.ourselves=Kendimiz access.mode.contacts=KiÅŸiler access.mode.groups=Özel Gruplar access.mode.forums=Forumlar @@ -58,6 +59,16 @@ access.settings.currently_disabled=Åžu an devre dışı access.settings.click_to_toggle_notifications=Bildirimleri deÄŸiÅŸtirmek için tıklayın access.return_to_previous_screen=Önceki ekrana dön +access.menu=Menü görüntülensin +access.forums.add=Forum ekle +access.forums.list=forum listesi +access.forums.reply.close=Yanıtı kapat +access.forums.unread_count={0, plural, one {1 okunmamış gönderi} other {{0} okunmamış gönderi}} +access.forums.last_post_timestamp=son gönderi: {0} +access.forums.jump_to_prev_unread=Önceki okunmamış gönderiye geç +access.forums.jump_to_next_unread=Sonraki okunmamış gönderiye geç +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=KiÅŸi seçilmedi @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Bu kiÅŸiyi ve bu kiÅŸiyle ilgili tüm conversation.change.alias.dialog.title=KiÅŸi adını deÄŸiÅŸtir conversation.change.alias.dialog.description=Lütfen bu kiÅŸi için yeni bir isim girin (sadece sizde görünecek): +# Forums +forum.search.title=Forumlar +forum.empty_state.text=Henüz forumunuz yok. Bir forum eklemek için + simgesine tıklayın: +forum.none_selected.title=Forum seçilmedi +forum.none_selected.hint=Sohbet etmeye baÅŸlamak için bir forum seçin +forum.add.title=Forum OluÅŸtur +forum.add.hint=Forumunuz için bir ad belirleyin +forum.add.button=Forum oluÅŸtur +forum.leave.title=Forumdan Ayrıl +forum.delete.dialog.title=Forumdan Ayrılmayı Onayla +forum.delete.dialog.message=Bu forumdan ayrılmak istediÄŸinize emin misiniz?\n\nBu forumu paylaÅŸtığınız kiÅŸilerin güncelleme alması durabilir. +forum.delete.dialog.button=Ayrıl +forum.message.hint=Yeni Gönderi +forum.message.reply.hint=Yeni Yanıt +forum.message.reply.intro=Yanıt: +forum.message.new=Okunmamış Gönderi +group.card.no_posts=Gönderi yok +group.card.posts={0, plural, one {{0} gönderi} other {{0} gönderi}} +forum.sharing.status.title=Paylaşım Durumu +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Hiç kimse +forum.sharing.action.title=Forumu PaylaÅŸ +forum.sharing.action.add_message=Bir ileti ekle (isteÄŸe baÄŸlı) +forum.sharing.action.choose_contacts=KiÅŸi Seç +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Zaten paylaşılıyor +forum.sharing.action.status.already_invited=Invitation already sent +forum.sharing.action.status.invite_received=Invitation already received +forum.sharing.action.status.not_supported=Not supported by this contact +forum.sharing.action.status.error=Error. This is a bug and not your fault + # Private Groups groups.card.created={0} tarafından oluÅŸturuldu groups.card.messages={0, plural, one {{0} ileti} other {{0} ileti}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto={0} kiÅŸisinin blog daveti otomatik olara blog.invitation.response.accepted.received={0} blog davetini kabul etti. blog.invitation.response.declined.received={0} declined the blog invitation. +# Peer trust level +peer.trust.unverified=DoÄŸrulanmamış kiÅŸi +peer.trust.verified=DoÄŸrulanmış kiÅŸi +peer.trust.ourselves=Benim +peer.trust.stranger=Yabancı + # Main main.help.title=Briar Masaüstü İstemcisi @@ -212,6 +261,7 @@ warning=Uyarı unsupported_feature=Maalesef bu özellik henüz Briar Desktop tarafından desteklenmiyor. remove=Sil hide=Gizle +search=Arama # Compose text edit actions copy=Kopyala @@ -256,6 +306,8 @@ expiration.banner.part2=Lütfen yeni sürüme zamanında yükseltin. # Notification notifications.message.private.one_chat={0, plural, one {Yeni özel ileti} other {{0} yeni özel ileti}} notifications.message.private.several_chats={1} özel sohbette {0} yeni ileti +notifications.message.forum.one_forum={0, plural, one {New forum post.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=Ayarlar @@ -281,6 +333,7 @@ settings.security.password.change=Parolayı deÄŸiÅŸtir settings.security.password.current=Åžimdiki parola settings.security.password.choose=Yeni parola settings.security.password.confirm=Yeni parolayı onaylayın +settings.security.password.changing=Changing password… settings.security.password.changed=Parolanız baÅŸarıyla deÄŸiÅŸti. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Görsel bildirimler settings.notifications.visual.error.unsupported=Åžu an sisteminiz görsel bildirimleri desteklemiyor. Sesli bildirimleri etkinleÅŸtirebilirsiniz. settings.notifications.visual.error.libnotify.load=Bildirimler ancak libnotify mevcut ise görsel olarak görüntülenebilir. Lütfen sisteminiz için varsayılan kurulum yönergeleriyle kurmayı düşünün. settings.notifications.visual.error.libnotify.init=Briar Desktop herhangi bir bildirim sunucusuna baÄŸlanamıyor. Lütfen freedekstop.org uyumlu bildirim sunucusunun kurulu olduÄŸundan ve doÄŸru yapılandırıldığından emin olun. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sesli bildirimler # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_uk.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_uk.properties index afadb5020d3a091246891243b10515ffae9bb540..a90d7a15872ce381c7d16bfd57caca1163a0cbf3 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_uk.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_uk.properties @@ -40,6 +40,7 @@ access.list.selected.yes=currently selected access.list.selected.no=currently not selected, click to select access.logo=Логотип Briar access.swap=Знак наÑвноÑті помилок між двома контактами +access.ourselves=Ourselves access.mode.contacts=Контакти access.mode.groups=Приватні групи access.mode.forums=Форуми @@ -58,6 +59,16 @@ access.settings.currently_disabled=Currently disabled access.settings.click_to_toggle_notifications=Click to toggle notifications access.return_to_previous_screen=Return to previous screen +access.menu=Show menu +access.forums.add=Add forum +access.forums.list=forum list +access.forums.reply.close=Close reply +access.forums.unread_count={0, plural, one {one unread posts} few {{0} unread posts} many {{0} unread posts} other {{0} unread posts}} +access.forums.last_post_timestamp=last post: {0} +access.forums.jump_to_prev_unread=Jump to previous unread post +access.forums.jump_to_next_unread=Jump to next unread post +access.forum.sharing.action.close=Close sharing form +access.forum.sharing.status.close=Close sharing status # Contacts contacts.none_selected.title=Контакту не обрано @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=Ви впевнені, що хоче conversation.change.alias.dialog.title=Змінити ім'Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ñƒ conversation.change.alias.dialog.description=Оберіть нове ім'Ñ Ñ†ÑŒÐ¾Ð¼Ñƒ контакту (бачите лише ви): +# Forums +forum.search.title=Форуми +forum.empty_state.text=You don't have any forums yet. Tap the + icon to add a forum: +forum.none_selected.title=No forum selected +forum.none_selected.hint=Select a forum to start chatting +forum.add.title=Створити форум +forum.add.hint=Оберіть назву Ð´Ð»Ñ Ñвого форуму +forum.add.button=Create forum +forum.leave.title=Залишити форум +forum.delete.dialog.title=Підтвердити, що ви залишаєте форум +forum.delete.dialog.message=Are you sure that you want to leave this forum?\n\nAny contacts you\'ve shared this forum with might stop receiving updates. +forum.delete.dialog.button=Залишити +forum.message.hint=Ðовий Ð´Ð¾Ð¿Ð¸Ñ +forum.message.reply.hint=Ðова відповідь +forum.message.reply.intro=Reply to: +forum.message.new=Unread Post +group.card.no_posts=Поки немає жодного допиÑу +group.card.posts={0, plural, one {{0} post} few {{0} posts} many {{0} posts} other {{0} posts}} +forum.sharing.status.title=ÐŸÐ¾ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ ÑтатуÑу +forum.sharing.status.info=Any member of a forum can share it with their contacts. You are sharing this forum with the following contacts. There may also be other members who you can't see in this list, although you can see their posts in the forum. +forum.sharing.status.with=Shared with {0} ({1} online) +forum.sharing.status.nobody=Ðікого +forum.sharing.action.title=ПоділитиÑÑ Ñ„Ð¾Ñ€ÑƒÐ¼Ð¾Ð¼ +forum.sharing.action.add_message=Додати Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ (необов'Ñзково) +forum.sharing.action.choose_contacts=Обрати контакти +forum.sharing.action.no_contacts=No contacts yet. You can only share forums with your contacts. +forum.sharing.action.status.already_shared=Вже поширюєтьÑÑ +forum.sharing.action.status.already_invited=Ð—Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½Ð½Ñ Ð²Ð¶Ðµ відправлене +forum.sharing.action.status.invite_received=Ð—Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½Ð½Ñ Ð²Ð¶Ðµ отримано +forum.sharing.action.status.not_supported=Ðе підтримуєтьÑÑ Ñ†Ð¸Ð¼ контактом +forum.sharing.action.status.error=Помилка. Це збій програми, а не ваша провина + # Private Groups groups.card.created=Створено {0} groups.card.messages={0, plural, one {{0} повідомленнÑ} few {{0} повідомленнÑ} many {{0} повідомленнÑ} other {{0} повідомленнÑ}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=Ð—Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½Ð½Ñ Ð´Ð¾ блогу ві blog.invitation.response.accepted.received={0} приймає Ð·Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½Ð½Ñ Ð´Ð¾ блогу. blog.invitation.response.declined.received={0} відхилÑÑ” Ð·Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½Ð½Ñ Ð´Ð¾ блогу. +# Peer trust level +peer.trust.unverified=Ðеперевірений контакт +peer.trust.verified=Перевірений контакт +peer.trust.ourselves=Я +peer.trust.stranger=Чужинець + # Main main.help.title=Клієнт Briar Desktop @@ -212,6 +261,7 @@ warning=Увага! unsupported_feature=Ðа жаль, цієї функції Briar Desktop іще не підтримує. remove=Прибрати hide=Приховати +search=Пошук # Compose text edit actions copy=Копіювати @@ -256,6 +306,8 @@ expiration.banner.part2=ПроÑимо вчаÑно замінити Ñ—Ñ— нов # Notification notifications.message.private.one_chat={0, plural, one {New private message.} few {{0} new private messages.} many {{0} new private messages.} other {{0} new private messages.}} notifications.message.private.several_chats={0} new messages in {1} private chats. +notifications.message.forum.one_forum={0, plural, one {New forum post.} few {{0} new forum posts.} many {{0} new forum posts.} other {{0} new forum posts.}} +notifications.message.forum.several_forum={0} new posts in {1} forums. # Settings settings.title=ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ @@ -281,6 +333,7 @@ settings.security.password.change=Змінити пароль settings.security.password.current=Поточний пароль settings.security.password.choose=Ðовий пароль settings.security.password.confirm=Підтвердьте новий пароль +settings.security.password.changing=Changing password… settings.security.password.changed=Пароль змінено. # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=Visual notifications settings.notifications.visual.error.unsupported=Visual notifications are currently not supported on your system. You can still enable sound notifications. settings.notifications.visual.error.libnotify.load=Notifications can only be shown visually if libnotify is available. Please consider installing it following the usual installation procedure for your system. settings.notifications.visual.error.libnotify.init=Briar Desktop could not connect to any notification server. Please make sure to have a freedesktop.org-compliant notification server installed and configured properly. +settings.notifications.visual.error.toast4j.init=Briar Desktop could not initialize the notification system. settings.notifications.sound.title=Sound notifications # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_zh_CN.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_zh_CN.properties index a0182f878f08c9c125782116fb10be7bf540aca6..708f6055670a99605d082069e67c0c51f2018ca9 100644 --- a/briar-desktop/src/main/resources/strings/BriarDesktop_zh_CN.properties +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_zh_CN.properties @@ -40,6 +40,7 @@ access.list.selected.yes=当å‰å·²é€‰ access.list.selected.no=当剿œªé€‰æ‹©ï¼Œå•击进行选择 access.logo=Briar å¾½æ ‡ access.swap=显示两个è”ç³»äººä¹‹é—´é”™è¯¯çš„å›¾æ ‡ +access.ourselves=我们自己 access.mode.contacts=è”系人 access.mode.groups=ç§å¯†ç¾¤èŠ access.mode.forums=è®ºå› @@ -58,6 +59,16 @@ access.settings.currently_disabled=当剿œªå¼€å¯ access.settings.click_to_toggle_notifications=å•击开/关通知 access.return_to_previous_screen=返回先å‰å±å¹• +access.menu=显示èœå• +access.forums.add=æ·»åŠ è®ºå› +access.forums.list=论å›åˆ—表 +access.forums.reply.close=å…³é—å›žå¤ +access.forums.unread_count={0, plural, other {{0} 个未读帖å}} +access.forums.last_post_timestamp=上一个帖å:{0} +access.forums.jump_to_prev_unread=è·³åˆ°ä¸Šä¸€æ¡æœªè¯»å¸–å +access.forums.jump_to_next_unread=è·³åˆ°ä¸‹ä¸€æ¡æœªè¯»å¸–å +access.forum.sharing.action.close=å…³é—åˆ†äº«çŠ¶æ€ +access.forum.sharing.status.close=å…³é—åˆ†äº«çŠ¶æ€ # Contacts contacts.none_selected.title=没有è”ç³»äººè¢«é€‰ä¸ @@ -100,6 +111,38 @@ conversation.delete.contact.dialog.message=确认è¦åˆ 除该è”系人和与之 conversation.change.alias.dialog.title=更改è”系人姓å conversation.change.alias.dialog.description=请输入æ¤è”系人的新åç§°ï¼ˆä»…å¯¹ä½ å¯è§ï¼‰ï¼š +# Forums +forum.search.title=è®ºå› +forum.empty_state.text=ä½ è¿˜æ²¡æœ‰ä»»ä½•è®ºå›ã€‚轻按 + æŒ‰é’®æ·»åŠ è®ºå› +forum.none_selected.title=未选ä¸è®ºå› +forum.none_selected.hint=选择论å›å¼€å§‹èŠå¤© +forum.add.title=åˆ›å»ºè®ºå› +forum.add.hint=为论å›å‘½å +forum.add.button=åˆ›å»ºè®ºå› +forum.leave.title=é€€å‡ºè®ºå› +forum.delete.dialog.title=ç¡®è®¤é€€å‡ºè®ºå› +forum.delete.dialog.message=ä½ ç¡®å®šä½ è¦ç¦»å¼€è¿™ä¸ªè®ºå›å—?\n\nä»»ä½•ä½ ä¸Žä¹‹åˆ†äº«è¿‡è¯¥è®ºå›çš„è”系人å¯èƒ½ä¸å†æ”¶åˆ°æ›´æ–°ã€‚ +forum.delete.dialog.button=退出 +forum.message.hint=新帖å +forum.message.reply.hint=æ–°å›žå¤ +forum.message.reply.intro=回å¤å¯¹è±¡ï¼š +forum.message.new=未读帖å +group.card.no_posts=没有帖å +group.card.posts={0, plural, other {{0} 个帖å}} +forum.sharing.status.title=åˆ†äº«çŠ¶æ€ +forum.sharing.status.info=论å›çš„任何æˆå‘˜å‡å¯åŒå…¶è”系人分享论å›ã€‚ä½ æ£åœ¨åˆ†äº«æ¤è®ºå›ç»™ä¸‹åˆ—è”系人。æ¤åˆ—表ä¸å¯èƒ½è¿˜å˜åœ¨ä½ 看ä¸åˆ°çš„å…¶ä»–æˆå‘˜ï¼Œè™½ç„¶ä½ å¯ä»¥åœ¨è¿™ä¸ªè®ºå›ä¸çœ‹åˆ°è¿™äº›æˆå‘˜å‘的帖å。 +forum.sharing.status.with=已和 {0} 人分享({1} 人在线) +forum.sharing.status.nobody=没有人 +forum.sharing.action.title=åˆ†äº«è®ºå› +forum.sharing.action.add_message=é™„åŠ æ¶ˆæ¯ï¼ˆé€‰å¡«ï¼‰ +forum.sharing.action.choose_contacts=选择è”系人 +forum.sharing.action.no_contacts=å°šæ— è”ç³»äººã€‚ä½ åªèƒ½åŒä½ çš„è”系人分享论å›ã€‚ +forum.sharing.action.status.already_shared=已在分享 +forum.sharing.action.status.already_invited=邀请已å‘é€ +forum.sharing.action.status.invite_received=已收到邀请 +forum.sharing.action.status.not_supported=ä¸è¢«æ¤è”ç³»äººæ‰€æ”¯æŒ +forum.sharing.action.status.error=é”™è¯¯ã€‚è¿™æ˜¯ä¸€ä¸ªæ•…éšœï¼Œä¸æ˜¯ä½ 的问题 + # Private Groups groups.card.created=ç”± {0} 创建 groups.card.messages={0, plural, other {{0} æ¡æ¶ˆæ¯}} @@ -174,6 +217,12 @@ blog.invitation.response.declined.auto=æ¥è‡ª {0} çš„åšå®¢é‚€è¯·è¢«è‡ªåŠ¨æ‹’ç» blog.invitation.response.accepted.received={0} 接å—了åšå®¢é‚€è¯·ã€‚ blog.invitation.response.declined.received={0} æ‹’ç»äº†åšå®¢é‚€è¯· +# Peer trust level +peer.trust.unverified=未验è¯çš„è”系人 +peer.trust.verified=已验è¯çš„è”系人 +peer.trust.ourselves=我 +peer.trust.stranger=陌生人 + # Main main.help.title=Briar 桌é¢å®¢æˆ·ç«¯ @@ -212,6 +261,7 @@ warning=è¦å‘Š unsupported_feature=很ä¸å¹¸ï¼ŒBriar 桌é¢ç‰ˆå°šä¸æ”¯æŒæ¤åŠŸèƒ½ remove=åˆ é™¤ hide=éšè— +search=æœç´¢ # Compose text edit actions copy=å¤åˆ¶ @@ -256,6 +306,8 @@ expiration.banner.part2=è¯·åŠæ—¶æ›´æ–°åˆ°æ–°ç‰ˆæœ¬ã€‚ # Notification notifications.message.private.one_chat={0, plural, other {{0} æ¡æ–°ç§ä¿¡}} notifications.message.private.several_chats={1} 个ç§å¯†èŠå¤©ä¸çš„ {0} æ¡æ–°æ¶ˆæ¯ +notifications.message.forum.one_forum={0, plural, other {{0} æ¡æ–°è®ºå›å¸–å。}} +notifications.message.forum.several_forum={1} 个论å›ä¸æœ‰ {0} æ¡æ–°å¸–å。 # Settings settings.title=设置 @@ -281,6 +333,7 @@ settings.security.password.change=更改密ç settings.security.password.current=当å‰å¯†ç settings.security.password.choose=新密ç settings.security.password.confirm=确认新密ç +settings.security.password.changing=å˜æ›´å¯†ç ä¸â€¦ settings.security.password.changed=密ç 已更改。 # Settings Notifications @@ -289,6 +342,7 @@ settings.notifications.visual.title=视觉通知 settings.notifications.visual.error.unsupported=å¯è§é€šçŸ¥å½“å‰åœ¨ä½ 的系统上ä¸å—支æŒã€‚ä½†ä½ ä»å¯ä»¥å¼€å¯å£°éŸ³é€šçŸ¥ã€‚ settings.notifications.visual.error.libnotify.load=libnotify å·²å®‰è£…æ˜¯æ˜¾ç¤ºè§†è§‰é€šçŸ¥çš„å‰ææ¡ä»¶ã€‚请考虑在进行通常的系统安装æ¥éª¤åŽå®‰è£…它。 settings.notifications.visual.error.libnotify.init=Briar Desktop æ— æ³•è¿žæŽ¥åˆ°ä»»ä½•é€šçŸ¥æœåŠ¡å™¨ã€‚è¯·ç¡®ä¿å®‰è£…了 freedesktop.org-compliant 通知æœåС噍并æ£ç¡®åœ°è¿›è¡Œäº†é…置。 +settings.notifications.visual.error.toast4j.init=Briar Desktop æ— æ³•åˆå§‹åŒ–通知系统 settings.notifications.sound.title=声音通知 # Settings Actions diff --git a/briar-desktop/src/main/resources/strings/BriarDesktop_zh_TW.properties b/briar-desktop/src/main/resources/strings/BriarDesktop_zh_TW.properties new file mode 100644 index 0000000000000000000000000000000000000000..e1a25b8182b58713fb874d652c7571a4fcc9414c --- /dev/null +++ b/briar-desktop/src/main/resources/strings/BriarDesktop_zh_TW.properties @@ -0,0 +1,349 @@ +# Accessibility +access.attachment_add=新增附件 +access.attachment_remove=移除附件 +access.contacts.add=æ·»åŠ è¯çµ¡äºº +access.contact.list=è¯çµ¡äººæ¸…å–® +access.contact.with_name=è¯çµ¡ "{0}" +access.contact.connected.yes=已連線 +access.contact.connected.no=未連線 +access.contact.unread_count={0, plural, other {{0} 未讀訊æ¯}} +access.contact.last_message_timestamp=最新訊æ¯: {0} +access.contact.pending.with_name=Pending contact "{0}" +access.contact.pending.added_timestamp=å·²åŠ å…¥: {0} +access.contact.menu=顯示è¯çµ¡äººé¸å–® +access.contact.add.remote.your_link=所用éˆçµï¼Œå¯é»žæ“Šä½œè¤‡åˆ¶ +access.contact.add.remote.contact_link=è¯çµ¡äººçš„éˆçµï¼Œå¯è‡ªå‰ªè²¼ç°¿æ‰¾åˆ°é»è²¼ +access.contacts.dropdown.connections.expand=開啟連線é¸å–® +access.contacts.dropdown.contacts.expand=開啟è¯çµ¡äººé¸å–® +access.contacts.filter=利用åå—æˆ–匿稱篩é¸å’Œæ–°å¢žè¯çµ¡äºº +access.contacts.pending.remove=移除請求ä¸çš„è¯çµ¡äºº +access.conversation.list=èŠå¤©è¨˜éŒ„ +access.conversation.status.seen=è¯çµ¡äººæ‰€æ”¶åˆ°çš„è¨Šæ¯ +access.conversation.status.sent=訊æ¯å·²ç™¼å‡ºä½†æ‚¨çš„è¯çµ¡äººå°šæœªæ”¶åˆ° +access.conversation.status.scheduled=訊æ¯å°šæœªé€å‡º +access.conversation.message.unread=ä»¥ä¸‹ç‚ºå…¨éƒ¨æœªè®€è¨Šæ¯ +access.conversation.message.blank.you=æ‚¨å¯«é“ +access.conversation.message.blank.your_contact=è¯çµ¡äººå¯«é“ +access.conversation.message.image.blank.you={0, plural, other {å·²é€å‡º {0} 圖片}} +access.conversation.message.image.blank.your_contact={0, plural, other {您的è¯çµ¡äººå‚³é€ {0} 圖片}} +access.conversation.message.image.caption.you={0, plural, other {您é€å‡º{0} 圖片並寫é“}} +access.conversation.message.image.caption.your_contact={0, plural, other {您的è¯çµ¡äººé€å‡º{0} 圖片並寫é“}} +access.conversation.notice.additional_message=é¡å¤–è¨Šæ¯ +access.conversation.request.navigate_inside_to_react=å·¡å¼‹å…§éƒ¨é …ç›®ä»¥ä½œåæ‡‰ +access.conversation.request.click_to_open=點擊開啟 +access.introduction.back.contact=回到介紹ä¸çš„è¯çµ¡äººç•«é¢ +access.introduction.close=é—œé–‰ä»‹ç´¹ç•«é¢ +access.message.jump_to_unread=è·³åˆ°ä¸‹ä¸€å‰‡æœªè®€è¨Šæ¯ +access.message.send=傳é€è¨Šæ¯ +access.message.sent=訊æ¯å·²é€å‡º +access.list.selected.yes=ç›®å‰å·²é¸å– +access.list.selected.no=ç›®å‰å°šæœªé¸å–,請點擊進行é¸å– +access.logo=Briar 圖標 +access.swap=圖標顯示è¯çµ¡äººä¹‹é–“發生錯誤 +access.ourselves=我們本身 +access.mode.contacts=è¯çµ¡äºº +access.mode.groups=ç§äººç¾¤çµ„ +access.mode.forums=論壇 +access.mode.blogs=åšå®¢ +access.mode.transports=通訊è¨å®š +access.mode.settings=è¨ç½® +access.mode.about=關於 Briar 桌é¢ç‰ˆæœ¬ +access.about.list=Briar 桌é¢çš„版本資訊,例如專案簡介與è¯çµ¡ç®¡é“ç‰ +access.password.show=顯示密碼 +access.password.hide=é®è”½å¯†ç¢¼ +access.settings.current_value=ç›®å‰å€¼ +access.settings.click_to_change_value=點擊更改 +access.settings.click_to_change_password=點擊更改密碼 +access.settings.currently_enabled=ç›®å‰å•Ÿç”¨ä¸ +access.settings.currently_disabled=ç›®å‰é—œé–‰ä¸ +access.settings.click_to_toggle_notifications=點擊修改通知 + +access.return_to_previous_screen=å›žåˆ°ä¸Šä¸€å€‹ç•«é¢ +access.menu=顯示é¸å–® +access.forums.add=添增論壇 +access.forums.list=論壇清單 +access.forums.reply.close=關閉回覆 +access.forums.unread_count={0, plural, other {{0}未讀貼文}} +access.forums.last_post_timestamp=最新貼文t: {0} +access.forums.jump_to_prev_unread=跳到å‰é¢æœªè®€è²¼æ–‡ +access.forums.jump_to_next_unread=è·³åˆ°ä¸‹ä¸€å‰‡æœªè®€è¨Šæ¯ +access.forum.sharing.action.close=é—œé–‰åˆ†äº«è¡¨æ ¼ +access.forum.sharing.status.close=關閉分享狀態 + +# Contacts +contacts.none_selected.title=未é¸å–è¯çµ¡å°è±¡ +contacts.none_selected.hint=鏿“‡è¯çµ¡äººé–‹å§‹èŠå¤© +contacts.pending_selected.title=é¸å–å¾…é€šéŽæ ¸æ·®çš„è¯çµ¡äºº +contacts.pending_selected.hint=您需è¦ç‰åˆ°é›™æ–¹äº’相添增為è¯çµ¡äººå¾Œï¼Œæ‰èƒ½é–‹å§‹èŠå¤©é€šè¨Š +contacts.card.nothing=ç„¡è¨Šæ¯ +contacts.dropdown.connections=連線 +contacts.dropdown.connections.title=連線 +contacts.dropdown.connections.bluetooth=通éŽè—牙連接 +contacts.dropdown.connections.removable=é€éŽç§»å‹•硬碟連接 +contacts.dropdown.contact=è¯ç¹« +contacts.dropdown.contact.title=è¯ç¹« +contacts.dropdown.contact.change=更改è¯çµ¡äººå§“å +contacts.dropdown.contact.delete=刪除è¯çµ¡äºº +contacts.dropdown.delete.all=åˆªé™¤å…¨éƒ¨è¨Šæ¯ +contacts.dropdown.disappearing=å·²æ¶ˆå¤±çš„è¨Šæ¯ +contacts.dropdown.introduction=åšä»‹ç´¹ +contacts.search.title=è¯çµ¡äºº +contacts.pending.remove.dialog.title=確èªç§»é™¤ +contacts.pending.remove.dialog.message=é‚„åœ¨æ·»åŠ é€™å€‹è¯çµ¡äººã€‚如果您ç¾åœ¨ç§»é™¤ä»–/å¥¹ï¼Œå‰‡ä¸æœƒæ·»åŠ æ¤è¯çµ¡äººã€‚ + +# Conversation +conversation.message.unread=æœªè®€è¨Šæ¯ +conversation.message.new=æ–°è¨Šæ¯ +conversation.delete.all.dialog.title=確èªåˆªé™¤è¨Šæ¯ +conversation.delete.all.dialog.message=確定è¦åœ¨æ‚¨çš„è¨å‚™ä¸ŠåˆªæŽ‰é€™æ¬¡èŠå¤©çš„全部訊æ¯å—Ž? +conversation.delete.single=ç‚ºæˆ‘åˆªé™¤è¨Šæ¯ +conversation.delete.failed.dialog.title=ç„¡æ³•åˆªæŽ‰å…¨éƒ¨è¨Šæ¯ +conversation.delete.failed.dialog.message.ongoing_both=進行ä¸çš„邀請與介紹訊æ¯å¿…é ˆå¾…å®ŒæˆåŒæ„後æ‰èƒ½åˆªé™¤ +conversation.delete.failed.dialog.message.ongoing_introductions=進行ä¸ä»‹ç´¹è¨Šæ¯å¿…é ˆå¾…å®ŒæˆåŒæ„後方å¯åˆªé™¤ +conversation.delete.failed.dialog.message.ongoing_invitations=進行ä¸çš„邀請訊æ¯å¿…é ˆå¾…å®ŒæˆåŒæ„後æ‰èƒ½åˆªé™¤ +conversation.delete.failed.dialog.message.not_all_selected_both=è¦åˆªé™¤é‚€è«‹æˆ–介紹訊æ¯ï¼Œé ˆå…ˆé¸å–請求與回應 +conversation.delete.failed.dialog.message.not_all_selected_introductions=è¦åˆªé™¤ä»‹ç´¹è¨Šæ¯ï¼Œé ˆå…ˆé¸å–請求與回應 +conversation.delete.failed.dialog.message.not_all_selected_invitations=è¦åˆªé™¤é‚€è«‹ï¼Œé ˆå…ˆé¸å–請求與回應 +conversation.add.contact.dialog.title=æ·»åŠ é 處的è¯çµ¡äºº +conversation.add.contact.dialog.contact_link=è¯çµ¡äººçš„éˆæŽ¥ +conversation.delete.contact.dialog.title=確èªåˆªé™¤è¯çµ¡äºº +conversation.delete.contact.dialog.message=確èªè¦åˆªé™¤è©²è¯çµ¡äººå’Œèˆ‡å…¶äº¤æµè¨Šæ¯å—Žï¼Ÿ +conversation.change.alias.dialog.title=更改è¯çµ¡äººå§“å +conversation.change.alias.dialog.description=請為該è¯çµ¡äººå‘½å(唯您å¯è¦‹) + +# Forums +forum.search.title=論壇 +forum.empty_state.text=您尚無任何論壇,å¯è¼•觸 + 圖標來新增論壇 +forum.none_selected.title=未é¸å–任何論壇 +forum.none_selected.hint=é¸å–一個論壇開始èŠå¤© +forum.add.title=創建論壇 +forum.add.hint=爲論壇命å +forum.add.button=建立論壇 +forum.leave.title=退出論壇 +forum.delete.dialog.title=確èªé€€å‡ºè«–壇 +forum.delete.dialog.message=您確定è¦é€€å‡ºæ¤è«–壇?\n\n論壇ä¸å…¶å®ƒç”±æ‚¨æ‰€åˆ†äº«çš„è¯çµ¡äººå¾ˆå¯èƒ½ä¹Ÿå°‡ä¸èƒ½å†æ”¶åˆ°è©²è«–å£‡çš„è¨Šæ¯æ›´æ–° +forum.delete.dialog.button=退出 +forum.message.hint=新帖å +forum.message.reply.hint=新回覆 +forum.message.reply.intro=回覆給: +forum.message.new=未讀貼文 +group.card.no_posts=沒有帖å +group.card.posts={0, plural, other {{0} 貼文}} +forum.sharing.status.title=分享狀態 +forum.sharing.status.info=æˆå“¡å¯ä»¥åŒè‡ªå·±çš„è¯çµ¡äººåˆ†äº«è«–壇訊æ¯ï¼Œæ‚¨å¯å°è¯çµ¡äººåˆ†äº«æ¤è«–壇。也一些未出ç¾åœ¨æ¸…單上的æˆå“¡ï¼Œä½†å¯ä»¥çœ‹åˆ°ä»–們在論壇發文。 +forum.sharing.status.with=與 {0} 分享 ({1} 在線上) +forum.sharing.status.nobody=沒有人 +forum.sharing.action.title=分享論壇 +forum.sharing.action.add_message=é™„åŠ æ¶ˆæ¯ï¼ˆé¸å¡«ï¼‰ +forum.sharing.action.choose_contacts=鏿“‡è¯çµ¡äºº +forum.sharing.action.no_contacts=å°šç„¡è¯çµ¡äººï¼Œæ‚¨å¯å‘è¯çµ¡äººåˆ†äº«è«–壇 +forum.sharing.action.status.already_shared=已在分享 +forum.sharing.action.status.already_invited=已發é€é‚€è«‹ +forum.sharing.action.status.invite_received=已收到邀請 +forum.sharing.action.status.not_supported=æ¤è¯çµ¡äººç„¡æ³•使用 +forum.sharing.action.status.error=出錯,出了點å•題與您無關 + +# Private Groups +groups.card.created=ç”± {0} 創建 +groups.card.messages={0, plural, other {{0} 訊æ¯}} + +# Introduction +introduction.introduce=åšä»‹ç´¹ +introduction.message=é™„åŠ æ¶ˆæ¯ï¼ˆé¸å¡«ï¼‰ +introduction.title_first=介紹 {0} 給 +introduction.title_second=介紹è¯çµ¡äºº +introduction.request.sent=您曾請求å‘{1}介紹 {0} +introduction.request.received={0} è«‹æ±‚å‘æ‚¨ä»‹ç´¹ {1},您願æ„å°‡ {1} è¨æˆè¯çµ¡äººå—Žï¼Ÿ +introduction.request.exists.received={0}請求將您介紹給 {1},ä¸éŽ{1}早已在您的è¯çµ¡ç°¿ã€‚既然{0}並ä¸çŸ¥é“這回事,您å¯ä»¥å›žæ‡‰: +introduction.request.answered.received={0} 請求把您介紹給 {1}. +introduction.response.accepted.sent=æ‚¨å·²æŽ¥å— {0}的介紹. +introduction.response.accepted.sent.info=在{0}è¢«æ‚¨åŒæ„增為è¯çµ¡äººä¹‹å‰ï¼Œé‚„éœ€è¦æŽ¥å—介紹。這å¯èƒ½éœ€è¦ä¸€äº›æ™‚間。 +introduction.response.declined.sent=您拒絕了å°{0}的引介 +introduction.response.declined.auto=å°{0}的介紹已自動拒絕 +introduction.response.accepted.received={0} 接å—了 {1}的引介 +introduction.response.declined.received={0}拒絕了 {1}的引介 +introduction.response.declined.received_by_introducee={0} 表示 {1} 拒絕æ¤ç•ªå¼•介 + +# Add Contact Remotely +contact.add.title_dialog=增添è¯çµ¡äºº +contact.add.remote.title=æ·»åŠ é 處的è¯çµ¡äºº +contact.add.remote.your_link=å°‡æ¤éˆæŽ¥ç™¼é€çµ¦æ‚¨å¸Œæœ›æ·»åŠ çš„è¯çµ¡äºº +contact.add.remote.your_link_hint=自有專屬éˆçµ +contact.add.remote.copy_tooltip=複製 +contact.add.remote.contact_link=在æ¤è¼¸å…¥æ‚¨çš„è¯çµ¡äººçš„éˆæŽ¥ +contact.add.remote.contact_link_hint=è¯çµ¡äººçš„éˆçµ +contact.add.remote.paste_tooltip=貼上 +contact.add.remote.nickname_intro=爲è¯çµ¡äººæ·»åŠ åƒ…æ‚¨å¯è¦‹çš„æš±ç¨±ã€‚ +contact.add.remote.choose_nickname=輸入暱稱 +contact.add.remote.link_copied_snackbar=å°‡ Briar éˆçµè¤‡è£½åˆ°å‰ªè²¼ç°¿ +contact.add.remote.link_pasted_snackbar=自剪貼簿貼上 +contact.add.remote.paste_error_snackbar=å‘外ç®é +contact.add.remote.outgoing_arrow=å‘外ç®é +contact.add.remote.incoming_arrow=å‘å…§ç®é +contact.add.error.own_link=請輸入è¯çµ¡äººçš„éˆçµï¼Œè€Œéžæ‚¨è‡ªå·±çš„éˆçµ +contact.add.error.remote_invalid=é ç«¯æ¡æ‰‹éˆçµç„¡æ•ˆ +contact.add.error.alias_invalid=別å無效 +contact.add.error.link_invalid=éˆçµç„¡æ•ˆ: {0} +contact.add.error.public_key_invalid=公鑰失效: {0} +contact.add.error.adding_failed=無法增添è¯çµ¡äºº +contact.add.error.contact_already_exists=您已有一åè¯çµ¡äººæ˜¯é€™å€‹éˆçµ: {0} +contact.add.error.pending_contact_already_exists=您已有這å待處ç†è¯çµ¡äººçš„éˆçµ: {0} +contact.add.error.duplicate_contact_explainer=請注æ„è‹¥ {0}å’Œ{1}䏦䏿˜¯åŒä¸€å€‹äººã€‚\n\n則其ä¸ä¸€ä½å¯èƒ½æ£è©¦åœ–挖掘您的è¯çµ¡äººè³‡æ–™\n\nè«‹ä¸è¦å‘Šè¨´ä»–們您從別處接ç²äº†ç›¸åŒçš„éˆæŽ¥ + +# Private Group Sharing +group.invitation.received={0} å·²é‚€è«‹æ‚¨åŠ å…¥æ¤å°çµ„ "{1}". +group.invitation.sent=您邀請{0}åŠ å…¥{1}å°çµ„ +group.invitation.response.accepted.sent=您接å—了{0}çš„å°çµ„邀請 +group.invitation.response.declined.sent=您拒絕了{0}çš„å°çµ„邀請 +group.invitation.response.declined.auto=來自{0}çš„å°çµ„邀請已自動回絕 +group.invitation.response.accepted.received={0} 接å—å°çµ„邀請 +group.invitation.response.declined.received={0} 回絕å°çµ„邀請 + +# Forum Sharing +forum.invitation.received={0} 與您分享了 "{1}" 壇論 +forum.invitation.sent=您å‘{1}分享了 {0} 論壇 +forum.invitation.response.accepted.sent=您接å—了{0}的論壇邀請 +forum.invitation.response.declined.sent=您拒絕了 {0}論壇之邀請 +forum.invitation.response.declined.auto=來自 {0} 論壇的邀請已自動拒絕 +forum.invitation.response.accepted.received={0} 接å—了論壇邀請 +forum.invitation.response.declined.received={0} 拒絕了論壇邀請 + +# Blog Sharing +blog.invitation.received={0} å°æ‚¨åˆ†äº«äº† "{1}" éƒ¨è½æ ¼ +blog.invitation.sent=您å°{1}分享了 {0} éƒ¨è½æ ¼ +blog.invitation.response.accepted.sent=您接å—{0}çš„éƒ¨è½æ ¼é‚€è«‹ +blog.invitation.response.declined.sent=您拒絕{0}çš„éƒ¨è½æ ¼é‚€è«‹ +blog.invitation.response.declined.auto=來自 {0}çš„éƒ¨è½æ ¼é‚€è«‹å·²è‡ªå‹•回絕 +blog.invitation.response.accepted.received={0} 接å—éƒ¨è½æ ¼é‚€è«‹ +blog.invitation.response.declined.received={0} æ‹’çµ•éƒ¨è½æ ¼é‚€è«‹ + +# Peer trust level +peer.trust.unverified=未驗è‰çš„è¯çµ¡äºº +peer.trust.verified=已驗è‰çš„è¯çµ¡äºº +peer.trust.ourselves=我 +peer.trust.stranger=陌生人 + + +# Main +main.help.title=Briar 桌é¢ç”¨æˆ¶ç«¯ +main.help.debug=啟用除錯訊æ¯è¼¸å‡º +main.help.verbose=列å°è©³ç´°çš„訊æ¯è¨˜éŒ„ +main.help.data=æ¤ç‚º Briar å„²å˜æª”案之目錄,默èªç‚º: {0} +main.help.tor.port.socks=Tor Socks ç«¯å£ +main.help.tor.port.control=Tor æŽ§åˆ¶ç«¯å£ + +# Welcome +welcome.title=æ¡è¿Žä¾†åˆ° Briar +welcome.text=您還未建立è¯çµ¡äººï¼Œè«‹è¼•觸 + 圖標來增添è¯çµ¡äºº + +# About +about.copyright=版權 +about.license=授權 +about.version=版本 +about.version.core=Briar æ ¸å¿ƒç‰ˆæœ¬ +about.contact=è¯ç¹« +about.website=網站 + +# Miscellaneous +cancel=å–æ¶ˆ +delete=刪除 +ok=確定 +accept=æŽ¥å— +add=添增 +change=變動 +decline=è¬çµ• +back=返回 +next=ä¸‹ä¸€æ¥ +open=打開 +sorry=æŠ±æ‰ +error=錯誤 +warning=è¦å‘Š +unsupported_feature=Briar 桌é¢ç‰ˆå°šç„¡æ³•使用æ¤åŠŸèƒ½ +remove=刪除 +hide=éš±è— +search=æœå°‹ + +# Compose text edit actions +copy=複製 +cut=剪下 +paste=貼上 +select_all=å…¨é¸ + +# Startup screen +startup.title.registration=æ¡è¿Žä¾†åˆ° Briar +startup.title.login=æ¡è¿Žå›žä¾† +startup.field.nickname=暱稱 +startup.field.nickname.explanation=您的暱稱將顯示在您發佈的任何內容æ—。暱稱在創建帳戶後將無法更改。 +startup.field.password=密碼 +startup.field.password.explanation=Briar å¸³è™Ÿæœƒè¢«åŠ å¯†å¾Œå„²å˜åœ¨æ‚¨çš„è¨å‚™ä¸Šï¼Œè€Œä¸æ˜¯é 程雲端。若éºå¿˜å¯†ç¢¼æˆ–移除 Briar 將無法æ¢å¾©åŽŸç”¨å¸³è™Ÿã€‚\n\nè«‹é¸ä¸€å€‹é›£çŒœçš„長密碼,例如 4 å€‹éš¨æ©Ÿå–®å—æˆ–是10 個任æ„å—元的組åˆã€‚ +startup.field.password_confirmation=確èªå¯†ç¢¼ +startup.button.register=創建帳戶 +startup.button.login=登入 +startup.error.name_too_long=暱稱éŽé•· +startup.error.password_too_weak=密碼ä¸å¤ å¼· +startup.error.passwords_not_match=兩個密碼並ä¸ç›¸åŒ +startup.error.password_wrong=密碼錯誤,請é‡è©¦ +startup.error.decryption.title=無法檢查密碼 +startup.error.decryption.text=Briar ç„¡æ³•ä»£æ‚¨æª¢æŸ¥å¯†ç¢¼ï¼Œè«‹é‡æ–°å•Ÿå‹•è¨å‚™ä¾†è§£æ±ºæ¤å•題。 +startup.password_forgotten.button=我忘記了密碼 +startup.password_forgotten.title=忘記密碼 +startup.password_forgotten.text=您的 Briar å¸³æˆ¶è¢«åŠ å¯†å„²å˜åœ¨æ‚¨çš„è£ç½®ä¸Šï¼Œè€Œéžåœ¨é›²ç«¯ã€‚å› æ¤æˆ‘們無法é‡ç½®æ‚¨çš„密碼。您是å¦ç¢ºå®šè¦åˆªé™¤å¸³æˆ¶ï¼Œé‡æ–°é–‹å§‹ï¼Ÿ\n\n注æ„:刪除帳戶將永久失去您以å‰çš„身份ã€è¯çµ¡äººå’Œè¨Šæ¯ã€‚ +startup.failed.expired=æ¤è»Ÿé«”å·²é€¾æœŸï¼Œæ„Ÿè¬æ‚¨çš„æ¸¬è©¦ä½¿ç”¨ï¼\n\nè¦ç¹¼çºŒä½¿ç”¨ Briar,請下載最新版本,您將å¯ç¹¼çºŒ 使用原帳號。 +startup.failed.registration=Briar 無法為您建立帳號\n\n請更新至最新版本後å†è©¦è©¦ +startup.failed.clock_error=由於您è¨å‚™ä¸Šçš„æ™‚間出錯,Briar 無法啟動\n\nè«‹é‡æ–°è¨ç½®å¥½æ£ç¢ºçš„æ™‚間後å†è©¦è©¦ã€‚ +startup.failed.db_error=Briar ç„¡æ³•æ‰“é–‹å˜æœ‰æ‚¨å¸³è™Ÿã€è¯çµ¡äººè³‡æ–™åŠèŠå¤©è¨Šæ¯çš„資料庫\n\nè«‹ç¢ºèª Briar 是å¦å·²åœ¨æ¤è¨å‚™ä¸ŠåŸ·è¡Œï¼Œå¦å‰‡è«‹æ›´æ–°è‡³æœ€æ–°ç‰ˆå¾Œå†è©¦è©¦ã€‚å†ä¸ç„¶å°±å¾—æ–°å»ºå¸³è™Ÿï¼Œå…¶æ–¹å¼æ˜¯åœ¨å½ˆå‡ºçš„密碼視窗ä¸é¸å–"éºå¿˜å¯†ç¢¼"來建立新帳號。 +startup.failed.data_too_old_error=您的帳號在是舊版本的應用ä¸å»ºç«‹ï¼Œä½†åœ¨æœ¬ç‰ˆæœ¬ä¸ç„¡æ³•啟用\n\næ‚¨å¿…é ˆé‡æ–°å®‰è£èˆŠçš„版本或是å¦è¨æ–°å¸³è™Ÿï¼Œè«‹åœ¨å½ˆå‡ºçš„密碼視窗ä¸é¸å–"éºå¿˜å¯†ç¢¼"ä¾†è¨æ–°å¸³è™Ÿã€‚ +startup.failed.data_too_new_error=您的帳號在是新版本的應用ä¸å»ºç«‹ï¼Œä½†åœ¨èˆŠç‰ˆä¸ç„¡æ³•啟用\n\n請更新到最新版後å†è©¦è©¦çœ‹ +startup.failed.service_error=Briar 無法啟動所需的元件\n\n請昇級至最新版後å†é‡è©¦ +startup.database.creating=建立帳號... +startup.database.opening=æ£åœ¨è§£å¯†æ•¸æ“šåº«â€¦â€¦ +startup.database.migrating=æ£åœ¨æ›´æ–°æ•¸æ“šåº«â€¦â€¦ +startup.database.compacting=æ£åœ¨å£“縮數據庫…… +expiration.banner.part1.zero=這個 Briar 測試版本將å³ä»Šå¤©åˆ°æœŸ +expiration.banner.part1.nozero={0, plural, other {這個 Briar æ¸¬è©¦ç‰ˆæœ¬å°‡å³ {0} 天到期}} +expiration.banner.part2=è«‹å³æ™‚更新版本 + +# Notification +notifications.message.private.one_chat={0, plural, other {{0} 則新的ç§äººè¨Šæ¯}} +notifications.message.private.several_chats={0} 新訊æ¯å‡ºç¾åœ¨ {1} çš„ç§äººèŠå¤© +notifications.message.forum.one_forum={0, plural, other {{0} 新論壇貼文}} +notifications.message.forum.several_forum={0} 新貼文出ç¾åœ¨ {1} 論壇 + +# Settings +settings.title=è¨ç½® + +# Settings General +settings.general.title=一般 + +# Settings Display +settings.display.title=顯示 +settings.display.theme.title=主題 +settings.display.theme.auto=ç³»çµ±é»˜èª +settings.display.theme.dark=深色 +settings.display.theme.light=淺色 +settings.display.language.title=語言 +settings.display.language.auto=ç³»çµ±é»˜èª + +# Settings Connections +settings.connections.title=連線 + +# Settings Security +settings.security.title=安全 +settings.security.password.change=更改密碼 +settings.security.password.current=ç•¶å‰å¯†ç¢¼ +settings.security.password.choose=新密碼 +settings.security.password.confirm=ç¢ºèªæ–°å¯†ç¢¼ +settings.security.password.changing=變更密碼 +settings.security.password.changed=密碼已更改。 + +# Settings Notifications +settings.notifications.title=消æ¯é€šçŸ¥ +settings.notifications.visual.title=視覺通知 +settings.notifications.visual.error.unsupported=您的系統目å‰ç„¡æ³•支æ´è¦–覺通知,請改用è²éŸ³æé†’ +settings.notifications.visual.error.libnotify.load=å¿…é …æœ‰ libnotify 方能顯示視覺通知,請考慮是å¦ä¾ç…§ä¸‹åˆ—å®‰è£æŒ‡å—於您的系統ä¸å®‰è£å®ƒ +settings.notifications.visual.error.libnotify.init=Briar 桌é¢ç¨‹å¼ç„¡æ³•連接到任何通知伺æœå™¨ï¼Œè«‹ç¢ºèªå·²å®‰è£ç¬¦åˆ freedesktop.org 的通知伺æœå™¨ä¸”è¨ç½®å¦¥ç•¶ã€‚ +settings.notifications.visual.error.toast4j.init=Briar 桌é¢ç„¡æ³•åˆå§‹åŒ–通知系統 +settings.notifications.sound.title=è²éŸ³é€šçŸ¥ + +# Settings Actions +settings.actions.title=行為