mirror of
https://gitlab.gnome.org/World/Authenticator.git
synced 2025-03-04 08:44:40 +01:00
Rewrite AboutDialog using glade widgets
This commit is contained in:
parent
4ebd9159fb
commit
4b7ed43778
29 changed files with 514 additions and 503 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -12,7 +12,7 @@ test/
|
|||
.auth/
|
||||
auth/
|
||||
_build/
|
||||
|
||||
*.ui#
|
||||
# Distribution / packaging
|
||||
builddir/
|
||||
.Python
|
||||
|
|
|
@ -173,7 +173,7 @@ class Application(Gtk.Application):
|
|||
|
||||
def __on_shortcuts(self, *_):
|
||||
builder = Gtk.Builder()
|
||||
builder.add_from_resource("/com/github/bilelmoussaoui/Authenticator/Shortcuts.ui")
|
||||
builder.add_from_resource("/com/github/bilelmoussaoui/Authenticator/shortcuts.ui")
|
||||
dialog = builder.get_object("shortcuts")
|
||||
dialog.set_transient_for(Window.get_default())
|
||||
dialog.show()
|
||||
|
|
|
@ -23,26 +23,15 @@ require_version("Gtk", "3.0")
|
|||
from gi.repository import Gtk
|
||||
|
||||
|
||||
@Gtk.Template(resource_path='/com/github/bilelmoussaoui/Authenticator/about_dialog.ui')
|
||||
class AboutDialog(Gtk.AboutDialog):
|
||||
"""
|
||||
AboutDialog Widget.
|
||||
"""
|
||||
__gtype_name__ ="AboutDialog"
|
||||
|
||||
def __init__(self):
|
||||
Gtk.AboutDialog.__init__(self)
|
||||
self.set_modal(True)
|
||||
self._build_widgets()
|
||||
super().__init__(self)
|
||||
|
||||
def _build_widgets(self):
|
||||
"""
|
||||
Build the AboutDialog widget.
|
||||
"""
|
||||
self.set_authors(["Bilal Elmoussaoui"])
|
||||
self.set_artists(["Alexandros Felekidis", "Tobias Bernard"])
|
||||
self.set_logo_icon_name("@APP_ID@")
|
||||
self.set_license_type(Gtk.License.GPL_3_0)
|
||||
self.set_program_name(_("Authenticator"))
|
||||
self.set_translator_credits(_("translator-credits"))
|
||||
self.set_version("@VERSION@")
|
||||
self.set_comments(_("Two-factor authentication code generator."))
|
||||
self.set_website("https://gitlab.gnome.org/World/Authenticator")
|
||||
def __repr__(self):
|
||||
return '<AboutDialog>'
|
|
@ -9,7 +9,8 @@
|
|||
<file alias="authenticator-fallback">icons/hicolor/scalable/apps/com.github.bilelmoussaoui.Authenticator.svg</file>
|
||||
|
||||
<!-- UI Files -->
|
||||
<file compressed="true" preprocess="xml-stripblanks" alias="Shortcuts.ui">ui/Shortcuts.ui</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks" alias="shortcuts.ui">ui/shortcuts.ui</file>
|
||||
<file compressed="true" preprocess="xml-stripblanks" alias="about_dialog.ui">about_dialog.ui</file>
|
||||
|
||||
<!-- Default pre-shipped icons -->
|
||||
<file alias="amazon.svg">icons/hicolor/48x48/apps/amazon.svg</file>
|
||||
|
|
|
@ -1,10 +1,17 @@
|
|||
about_dialog_conf = configuration_data()
|
||||
about_dialog_conf.set('APP_ID', application_id)
|
||||
about_dialog_conf.set('VERSION', meson.project_version())
|
||||
gnome.compile_resources(
|
||||
application_id,
|
||||
meson.project_name() + '.gresource.xml',
|
||||
gresource_bundle: true,
|
||||
source_dir: '.',
|
||||
install_dir: join_paths(get_option('datadir'), meson.project_name()),
|
||||
install: true
|
||||
install: true,
|
||||
dependencies: configure_file(
|
||||
input: 'ui/about_dialog.ui.in',
|
||||
output: 'about_dialog.ui',
|
||||
configuration: about_dialog_conf
|
||||
)
|
||||
)
|
||||
|
||||
# Install gschema
|
||||
|
@ -91,7 +98,7 @@ if appstreamcli.found()
|
|||
test (
|
||||
'Validate appdata file',
|
||||
appstreamcli,
|
||||
args: ['validate-relax', appdata_file.full_path()]
|
||||
args: ['validate-relax', '--nonet', appdata_file.full_path()]
|
||||
)
|
||||
endif
|
||||
|
||||
|
|
49
data/ui/about_dialog.ui.in
Normal file
49
data/ui/about_dialog.ui.in
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generated with glade 3.22.0 -->
|
||||
<interface>
|
||||
<requires lib="gtk+" version="3.22"/>
|
||||
<template class="AboutDialog" parent="GtkAboutDialog">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="type_hint">dialog</property>
|
||||
<property name="program_name">Authenticator</property>
|
||||
<property name="version">@VERSION@</property>
|
||||
<property name="comments" translatable="yes">Two-factor authentication code generator.</property>
|
||||
<property name="website">https://gitlab.gnome.org/World/Authenticator</property>
|
||||
<property name="authors">Bilal Elmoussaoui</property>
|
||||
<property name="translator_credits" translatable="yes">translator-credits</property>
|
||||
<property name="artists">Alexandros Felekidis
|
||||
Tobias Bernard</property>
|
||||
<property name="logo_icon_name">@APP_ID@</property>
|
||||
<property name="license_type">gpl-3-0</property>
|
||||
<child internal-child="vbox">
|
||||
<object class="GtkBox">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="orientation">vertical</property>
|
||||
<property name="spacing">2</property>
|
||||
<child internal-child="action_area">
|
||||
<object class="GtkButtonBox">
|
||||
<property name="can_focus">False</property>
|
||||
<property name="layout_style">end</property>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
<property name="position">0</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
<child type="titlebar">
|
||||
<placeholder/>
|
||||
</child>
|
||||
</template>
|
||||
</interface>
|
|
@ -95,14 +95,6 @@ configure_file(
|
|||
'Authenticator/models')
|
||||
)
|
||||
|
||||
configure_file(
|
||||
input: 'Authenticator/widgets/about.py.in',
|
||||
output: 'about.py',
|
||||
configuration: conf,
|
||||
install_dir: join_paths(python.sysconfig_path('purelib'),
|
||||
'Authenticator/widgets')
|
||||
)
|
||||
|
||||
configure_file(
|
||||
input: 'Authenticator/widgets/window.py.in',
|
||||
output: 'window.py',
|
||||
|
@ -132,7 +124,6 @@ install_subdir(
|
|||
install_dir: python.sysconfig_path('purelib'),
|
||||
exclude_files: [
|
||||
'models/settings.py.in',
|
||||
'widgets/about.py.in',
|
||||
'widgets/window.py.in',
|
||||
'utils.py.in',
|
||||
'application.py.in'
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:58+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -17,7 +17,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -82,23 +82,23 @@ msgstr ""
|
|||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -132,14 +132,6 @@ msgstr ""
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
@ -309,42 +301,50 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/about_dialog.ui.in:13
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
|
|
@ -4,7 +4,6 @@ Authenticator/widgets/accounts/add.py
|
|||
Authenticator/widgets/accounts/edit.py
|
||||
Authenticator/widgets/accounts/list.py
|
||||
Authenticator/widgets/accounts/row.py
|
||||
Authenticator/widgets/about.py.in
|
||||
Authenticator/widgets/actions_bar.py
|
||||
Authenticator/widgets/headerbar.py
|
||||
Authenticator/widgets/search_bar.py
|
||||
|
@ -14,5 +13,6 @@ Authenticator/widgets/window.py.in
|
|||
data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in
|
||||
data/com.github.bilelmoussaoui.Authenticator.desktop.in.in
|
||||
data/com.github.bilelmoussaoui.Authenticator.gschema.xml.in
|
||||
data/ui/Shortcuts.ui
|
||||
data/ui/about_dialog.ui.in
|
||||
data/ui/shortcuts.ui
|
||||
authenticator.py.in
|
||||
|
|
45
po/ar.po
45
po/ar.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2018-11-15 08:07+0000\n"
|
||||
"Last-Translator: alaazghoul <a.z9@live.com>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -20,7 +20,7 @@ msgstr ""
|
|||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 3.3-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -88,24 +88,24 @@ msgstr "امسح كود QR"
|
|||
msgid "Close"
|
||||
msgstr "اغلاق"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "المزود"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "اسم الحساب"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
#, fuzzy
|
||||
msgid "Secret token"
|
||||
msgstr "الرمز السري"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "رمز QR خاطئ"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr "مكتبة zbar غير موجودة. سيتم تعطيل ماسح كود QR"
|
||||
|
||||
|
@ -140,14 +140,6 @@ msgstr "تحرير"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "لم يتكمن من توليد المفتاح السري"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "فضل-المترجم"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "كود توليد التوثيق الثنائي."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
@ -321,46 +313,50 @@ msgstr "سواء أكان التطبيق مغلق برقم سري أو لا"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "سواء أكان التطبيق يمكن اغلاقه أو لا"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "كود توليد التوثيق الثنائي."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "خروج"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "اسم الحساب"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "اضافة"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "اختيار"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
|
@ -374,6 +370,9 @@ msgstr "البدء في وضع التصحيح"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "رقم نسخة الموثق"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "فضل-المترجم"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "الموثق"
|
||||
|
|
45
po/ca.po
45
po/ca.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-14 07:19+0000\n"
|
||||
"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -84,23 +84,23 @@ msgstr "Escaneja un codi QR"
|
|||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Proveïdor"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Nom del compte"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Testimoni secret"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "El codi QR no és vàlid"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
"No s’ha trobat la biblioteca zbar. S’inhabilitarà l’escàner de codis QR"
|
||||
|
@ -135,14 +135,6 @@ msgstr "Edita"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "No s’ha pogut generar el codi secret"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Adolfo Jayme Barrientos <fitojb@ubuntu.com>, 2018"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Generador de codis d’autenticació amb dos components."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Suprimeix"
|
||||
|
@ -314,42 +306,46 @@ msgstr "Si s’ha blocat l’aplicació mitjançant una contrasenya o no"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Si l’aplicació es pot blocar o no"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Generador de codis d’autenticació amb dos components."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "General"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Mostra les dreceres"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "Preferències"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Surt"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Comptes"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Afegeix"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Selecciona"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
@ -362,6 +358,9 @@ msgstr "Inicia en mode de depuració"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Número de versió de l’Authenticator"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Adolfo Jayme Barrientos <fitojb@ubuntu.com>, 2018"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Authenticator"
|
||||
|
|
44
po/da.po
44
po/da.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2018-11-03 21:23+0000\n"
|
||||
"Last-Translator: Jack Fredericksen <jack.a.fredericksen@gmail.com>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.3-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -87,26 +87,26 @@ msgstr "Indskan en QR-kode"
|
|||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
#, fuzzy
|
||||
msgid "Account name"
|
||||
msgstr "Kontonavn"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
#, fuzzy
|
||||
msgid "Secret token"
|
||||
msgstr "Hemmelig kode"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
#, fuzzy
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Indskan en QR-kode"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -141,15 +141,6 @@ msgstr ""
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Kunne ikke generere den hemmelige kode"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "TofaktorAutentifikation kodegenerator"
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
@ -331,47 +322,52 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "TofaktorAutentifikation kodegenerator"
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Genveje"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Afslut"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Konto"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Tilføj"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Udvælgelsesindstilling"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
|
|
45
po/de.po
45
po/de.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2018-09-30 08:52+0000\n"
|
||||
"Last-Translator: Cedric Bolleter <cedric.bolleter@gmail.com>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.2-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -86,23 +86,23 @@ msgstr "QR-Code einlesen"
|
|||
msgid "Close"
|
||||
msgstr "schließen"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Anbieter"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Kontoname"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Geheimschlüssel"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Ungültiger QR Code"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
"zbar-Bibliothek wurde nicht gefunden. Der QRCode-Scanner wird deaktiviert"
|
||||
|
@ -137,14 +137,6 @@ msgstr "Bearbeiten"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Der geheime Code konnte nicht erzeugt werden"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Danksagungen an Übersetzer"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Codegenerator für Zweifaktor-Authentifizierung."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
@ -316,47 +308,51 @@ msgstr "Ob die Anwendung mit einem Passwort gesperrt ist oder nicht"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Ob die Anwendung gesperrt werden kann oder nicht"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Codegenerator für Zweifaktor-Authentifizierung."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Tastenkürzel"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Beenden"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Konto"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Auswählen"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
|
@ -370,6 +366,9 @@ msgstr "Starte im Fehlersuch-Modus"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Versions des Authenticator"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Danksagungen an Übersetzer"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Zweifaktor-Authentifizierung"
|
||||
|
|
49
po/es.po
49
po/es.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-01 10:42+0000\n"
|
||||
"Last-Translator: advocatux <advocatux@airpost.net>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -84,23 +84,23 @@ msgstr "Escanear código QR"
|
|||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Proveedor"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Nombre de la cuenta"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Ficha secreta"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Código QR no válido"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
"No se encontró la biblioteca «zbar». Se desactivará el escáner de códigos QR"
|
||||
|
@ -135,16 +135,6 @@ msgstr "Editar"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "No se pudo generar el código secreto"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
"advocatux <advocatux@airpost.net>, 2018\n"
|
||||
"Adolfo Jayme Barrientos <fitojb@ubuntu.com>, 2018"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Generador de códigos de autenticación de doble factor."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
@ -316,42 +306,46 @@ msgstr "Si la aplicación está bloqueada con una contraseña o no"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Si se puede bloquear la aplicación o no"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Generador de códigos de autenticación de doble factor."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "General"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Mostrar atajos"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "Preferencias"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Salir"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Cuentas"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Añadir"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Seleccionar"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
@ -364,6 +358,11 @@ msgstr "Iniciar en el modo de depuración"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Número de versión de «Authenticator»"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr ""
|
||||
#~ "advocatux <advocatux@airpost.net>, 2018\n"
|
||||
#~ "Adolfo Jayme Barrientos <fitojb@ubuntu.com>, 2018"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Authenticator"
|
||||
|
|
42
po/fr.po
42
po/fr.po
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-08 00:59+0000\n"
|
||||
"Last-Translator: Vladislav <vladislavp@pm.me>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -20,7 +20,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -89,24 +89,24 @@ msgstr "Scanner un QR code"
|
|||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Prestataire"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Compte"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
#, fuzzy
|
||||
msgid "Secret token"
|
||||
msgstr "Code secret"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "QR Code invalide"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -141,14 +141,6 @@ msgstr ""
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Le code secret n'a pas pu être généré"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Générateur de code d'authentification à deux facteurs."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
|
@ -328,47 +320,51 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Générateur de code d'authentification à deux facteurs."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Généralité"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Raccourcis clavier"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Quitter"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Compte"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Mode de séléction"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
|
47
po/hu.po
47
po/hu.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2018-03-22 19:06+0000\n"
|
||||
"Last-Translator: Balázs Úr <urbalazs@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2.20-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -88,24 +88,24 @@ msgstr "QR-kód beolvasása"
|
|||
msgid "Close"
|
||||
msgstr "Bezárás"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Fiók neve"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
#, fuzzy
|
||||
msgid "Secret token"
|
||||
msgstr "Titkos jelsor"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Érvénytelen QR-kód"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -140,15 +140,6 @@ msgstr ""
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Nem sikerült előállítani a titkos kódot"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Úr Balázs <urbalazs@gmail.com>, 2018."
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Kétlépcsős hitelesítő kódok előállítója."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Törlés"
|
||||
|
@ -331,47 +322,52 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Kétlépcsős hitelesítő kódok előállítója."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Általános"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Gyorsbillentyűk"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Kilépés"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Fiók"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Hozzáadás"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Kijelölés mód"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Keresés"
|
||||
|
@ -384,6 +380,9 @@ msgstr "Indítás hibakeresési módban"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Hitelesítő verziószáma"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Úr Balázs <urbalazs@gmail.com>, 2018."
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Hitelesítő"
|
||||
|
|
47
po/id.po
47
po/id.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2018-05-14 15:02+0000\n"
|
||||
"Last-Translator: ditokp <ditokpl@gmail.com>\n"
|
||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.0-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -88,24 +88,24 @@ msgstr "Pindai kode QR"
|
|||
msgid "Close"
|
||||
msgstr "Tutup"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Nama Akun"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
#, fuzzy
|
||||
msgid "Secret token"
|
||||
msgstr "Token Rahasia"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Kode QR tidak valid"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -140,15 +140,6 @@ msgstr ""
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Tidak dapat menghasilkan kode rahasia"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "kredit-penerjemah"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Pembuat kode autentikasi dua faktor."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Hapus"
|
||||
|
@ -331,47 +322,52 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Pembuat kode autentikasi dua faktor."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Umum"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Jalan pintas"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Keluar"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Akun"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Tambah"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Mode seleksi"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Cari"
|
||||
|
@ -384,6 +380,9 @@ msgstr "Mulai dengan mode debud"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Nomor versi Authenticator"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "kredit-penerjemah"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "AutentiksiDuaFaktor"
|
||||
|
|
49
po/ko.po
49
po/ko.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-01 10:42+0000\n"
|
||||
"Last-Translator: Minori Hiraoka (미노리) <minori@mnetwork.co.kr>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -84,25 +84,27 @@ msgstr "QR 코드 스캔"
|
|||
msgid "Close"
|
||||
msgstr "닫기"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "제공자"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "계정 이름"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "비밀 토큰"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "올바르지 않은 QR 코드"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr "설치된 zbar 라이브러리가 발견되지 않았습니다. QR 코드 스캐너가 비활성화 됩니다"
|
||||
msgstr ""
|
||||
"설치된 zbar 라이브러리가 발견되지 않았습니다. QR 코드 스캐너가 비활성화 됩니"
|
||||
"다"
|
||||
|
||||
#: Authenticator/widgets/accounts/edit.py:47
|
||||
msgid "Edit {} - {}"
|
||||
|
@ -134,14 +136,6 @@ msgstr "편집"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "비밀 코드를 생성할 수 없었습니다"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Minori Hiraoka <minori@mnetwork.co.kr>"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "2차 인증 비밀번호 생성기."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "삭제"
|
||||
|
@ -311,42 +305,46 @@ msgstr "애플리케이션 암호 설정 여부"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "애플리케이션 암호 설정 가능 여부"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "2차 인증 비밀번호 생성기."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "일반"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "단축키 보이기"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "설정"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "종료"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "계정"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "추가"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "선택"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "검색"
|
||||
|
@ -358,3 +356,6 @@ msgstr "디버그 모드로 시작"
|
|||
#: authenticator.py.in:56
|
||||
msgid "Authenticator version number"
|
||||
msgstr "인증기 버전"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Minori Hiraoka <minori@mnetwork.co.kr>"
|
||||
|
|
45
po/nb_NO.po
45
po/nb_NO.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-01 06:20+0000\n"
|
||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -86,23 +86,23 @@ msgstr "Skann QR-kode"
|
|||
msgid "Close"
|
||||
msgstr "Lukk"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Tilbyder"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Kontonavn"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Hemmelig symbol"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Ugyldig QR-kode"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr "zbar-bibliotek ble ikke funnet. QRkodeskanneren vil skrus av"
|
||||
|
||||
|
@ -136,14 +136,6 @@ msgstr "Rediger"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Kunne ikke generere hemmelig kode"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Allan Nordhøy <epost@anotheragency.no>"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Kodegenerator for to-faktorbekreftelse."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Slett"
|
||||
|
@ -314,47 +306,51 @@ msgstr "Hvorvidt programmet låses med et passord eller ei"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Hvorvidt programmet kan låses eller ei"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Kodegenerator for to-faktorbekreftelse."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Generelt"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Snarveier"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Avslutt"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Konto"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Legg til"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Velg"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
|
@ -368,6 +364,9 @@ msgstr "Start i feilrettingsmodus"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Versjonsnummer for Authenticator"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Allan Nordhøy <epost@anotheragency.no>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Authenticator"
|
||||
|
|
45
po/nl.po
45
po/nl.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-14 07:19+0000\n"
|
||||
"Last-Translator: Nathan Follens <nthn@unseen.is>\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -84,23 +84,23 @@ msgstr "QR-code scannen"
|
|||
msgid "Close"
|
||||
msgstr "Sluiten"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Dienst"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Accountnaam"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Geheime toegangssleutel"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Ongeldige QR-code"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
"De zbar-bibliotheek kan niet worden gevonden; QR-codescanner is uitgeschakeld"
|
||||
|
@ -135,14 +135,6 @@ msgstr "Bewerken"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Kan geen geheime sleutel genereren"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Nathan Follens, Heimen Stoffels"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Code-generator voor authenticatie in twee stappen."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
@ -314,42 +306,46 @@ msgstr "Of de toepassing moet worden vergrendeld met een wachtwoord"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Of de toepassing vergrendeld kan worden"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Code-generator voor authenticatie in twee stappen."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Algemeen"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Sneltoetsen tonen"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "Voorkeuren"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Afsluiten"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Accounts"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Selecteren"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
@ -362,6 +358,9 @@ msgstr "Starten in foutopsporingsmodus"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Versienummer van Authenticator"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Nathan Follens, Heimen Stoffels"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Authenticator"
|
||||
|
|
45
po/nl_BE.po
45
po/nl_BE.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-14 07:20+0000\n"
|
||||
"Last-Translator: Nathan Follens <nthn@unseen.is>\n"
|
||||
"Language-Team: Flemish <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -84,23 +84,23 @@ msgstr "QR-code scannen"
|
|||
msgid "Close"
|
||||
msgstr "Sluiten"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Dienst"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Accountnaam"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Geheim token"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Ongeldige QR-code"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
"De zbar-bibliotheek kan niet gevonden worden. QR-codescanner wordt "
|
||||
|
@ -136,14 +136,6 @@ msgstr "Bewerken"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Aanmaken van geheime code mislukt"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Nathan Follens"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Generator voor tweefactorauthenticatiecodes."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
@ -316,42 +308,46 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Of dat de toepassing al dan niet kan vergrendeld worden"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Generator voor tweefactorauthenticatiecodes."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Algemeen"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Sneltoetsen tonen"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "Voorkeuren"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Afsluiten"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Accounts"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Selecteren"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
@ -364,6 +360,9 @@ msgstr "Starten in debugmodus"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Versienummer van Authenticator"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Nathan Follens"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Authenticator"
|
||||
|
|
45
po/pl.po
45
po/pl.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2018-09-16 13:49+0000\n"
|
||||
"Last-Translator: WaldiS <admin@sto.ugu.pl>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -20,7 +20,7 @@ msgstr ""
|
|||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 3.2-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -87,23 +87,23 @@ msgstr "Skanuj kod QR"
|
|||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Dostawca"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Nazwa konta"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Tajny token"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Nieprawidłowy kod QR"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
"biblioteka zbar nie została znaleziona. Skaner QRCode zostanie wyłączony"
|
||||
|
@ -138,14 +138,6 @@ msgstr "Edycja"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Nie udało się wygenerować sekretnego kodu"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "tłumacz-uznanie"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Dwuskładnikowy generator kodów uwierzytelniających."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Usuń"
|
||||
|
@ -321,46 +313,50 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Dwuskładnikowy generator kodów uwierzytelniających."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Zakończ"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Nazwa konta"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Tryb zaznaczania"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
|
@ -374,6 +370,9 @@ msgstr "Uruchom w trybie debugowania"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Wersja Authenticatora"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "tłumacz-uznanie"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Wystawca uwierzytelnienia"
|
||||
|
|
45
po/pt_BR.po
45
po/pt_BR.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-11 03:06+0000\n"
|
||||
"Last-Translator: RD WebDesign <weblate@rdwebdesign.com.br>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -84,23 +84,23 @@ msgstr "Escanear código QR"
|
|||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Provedor"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Nome da conta"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Token secreto"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Código QR inválido"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
"A biblioteca zbar não foi encontrada. O escaneador QRCode será desativado"
|
||||
|
@ -135,14 +135,6 @@ msgstr "Editar"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Não foi possível gerar o código secreto"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Fúlvio Alves <fga.fulvio@gmail.com>"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Gerador de código de autenticação de dois fatores."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Excluir"
|
||||
|
@ -314,42 +306,46 @@ msgstr "Se o aplicativo está ou não bloqueado com uma senha"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Se o aplicativo pode ou não ser bloqueado"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Gerador de código de autenticação de dois fatores."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Geral"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Mostrar Atalhos"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "Preferências"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Sair"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Contas"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Adicionar"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Selecionar"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
|
@ -362,6 +358,9 @@ msgstr "Iniciar no modo de depuração"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Número da versão do Autenticador"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Fúlvio Alves <fga.fulvio@gmail.com>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Autenticador"
|
||||
|
|
49
po/ru.po
49
po/ru.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-08 00:59+0000\n"
|
||||
"Last-Translator: Vladislav <vladislavp@pm.me>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -16,11 +16,11 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
|
||||
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -85,23 +85,23 @@ msgstr "Сканировать QR код"
|
|||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Провайдер"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Имя аккаунта"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Секретный токен"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Некорректный QR код"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr "zbar библиотека не найдена. Сканнер QRCode будет отключен"
|
||||
|
||||
|
@ -135,14 +135,6 @@ msgstr "Редактировать"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Не удалось генерировать секретный код"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "благодарность-переводчикам"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Генератор кодов двухфакторной аутентификации."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Удалить"
|
||||
|
@ -314,42 +306,46 @@ msgstr "Заблокировано ли приложение паролем ил
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Может ли приложение быть заблоровано или нет"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Генератор кодов двухфакторной аутентификации."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Основные"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Показать Горячие Клавиши"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Выйти"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Аккаунты"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Добавить"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Выбрать"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Поиск"
|
||||
|
@ -361,3 +357,6 @@ msgstr "Запустить в режиме отладки"
|
|||
#: authenticator.py.in:56
|
||||
msgid "Authenticator version number"
|
||||
msgstr "Номер версии аутентификатора"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "благодарность-переводчикам"
|
||||
|
|
47
po/sr.po
47
po/sr.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2018-03-25 14:53+0000\n"
|
||||
"Last-Translator: Slobodan Terzić <githzerai06@gmail.com>\n"
|
||||
"Language-Team: Serbian <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -20,7 +20,7 @@ msgstr ""
|
|||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 2.20-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -87,24 +87,24 @@ msgstr "Скенирај КуР код"
|
|||
msgid "Close"
|
||||
msgstr "Затвори"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Име налога"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
#, fuzzy
|
||||
msgid "Secret token"
|
||||
msgstr "Тајни токен"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Неисправан КуР код"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -139,15 +139,6 @@ msgstr ""
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Не могу да направим тајни код"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Слободан Терзић <githzerai06@gmail.com>"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Стваралац кодова за двофакторну аутентификацију."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Обриши"
|
||||
|
@ -326,46 +317,51 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Стваралац кодова за двофакторну аутентификацију."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Напусти"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Име налога"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Додај"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Режим избора"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
|
@ -379,6 +375,9 @@ msgstr "Покрени у режиму за исправљање грешака"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Верзија Аутентификатора"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Слободан Терзић <githzerai06@gmail.com>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Аутентификатор"
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Serbian (Authenticator)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2018-03-24 20:59+0000\n"
|
||||
"Last-Translator: Slobodan Terzić <githzerai06@gmail.com>\n"
|
||||
"Language-Team: Serbian (latin) <https://hosted.weblate.org/projects/"
|
||||
|
@ -15,7 +15,7 @@ msgstr ""
|
|||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 2.20-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -82,24 +82,24 @@ msgstr "Skeniraj QR kod"
|
|||
msgid "Close"
|
||||
msgstr "Zatvori"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Ime naloga"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
#, fuzzy
|
||||
msgid "Secret token"
|
||||
msgstr "Tajni token"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Neispravan QR kod"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -134,15 +134,6 @@ msgstr ""
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Ne mogu da napravim tajni kod"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Slobodan Terzić <githzerai06@gmail.com>"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Stvaralac kodova za dvofaktornu autentifikaciju."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Obriši"
|
||||
|
@ -321,46 +312,51 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
#, fuzzy
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Stvaralac kodova za dvofaktornu autentifikaciju."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Napusti"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Ime naloga"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Režim izbora"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
#, fuzzy
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
|
@ -374,6 +370,9 @@ msgstr "Pokreni u režimu za ispravljanje grešaka"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Verzija Autentifikatora"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Slobodan Terzić <githzerai06@gmail.com>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Autentifikator"
|
||||
|
|
45
po/sv.po
45
po/sv.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: 2019-01-01 16:01+0000\n"
|
||||
"Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"
|
||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/authenticator/"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.4-dev\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -84,23 +84,23 @@ msgstr "Läs av QR-kod"
|
|||
msgid "Close"
|
||||
msgstr "Stäng"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr "Leverantör"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr "Kontonamn"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr "Hemlig token"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr "Ogiltig QR-kod"
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr "zbar-bibliotek hittades inte. QR-kodskanner inaktiveras."
|
||||
|
||||
|
@ -134,14 +134,6 @@ msgstr "Redigera"
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr "Kunde inte generera den hemliga koden"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr "Anders Jonsson <anders.jonsson@norsjovallen.se>"
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Generator för tvåfaktorsautentiseringskoder."
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr "Ta bort"
|
||||
|
@ -313,42 +305,46 @@ msgstr "Om programmet är låst med lösenord eller inte"
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr "Om programmet kan låsas eller inte"
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr "Generator för tvåfaktorsautentiseringskoder."
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr "Allmänt"
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr "Visa genvägar"
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr "Inställningar"
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr "Avsluta"
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr "Konton"
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr "Lägg till"
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr "Välj"
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
@ -361,6 +357,9 @@ msgstr "Starta i felsökningsläge"
|
|||
msgid "Authenticator version number"
|
||||
msgstr "Versionsnummer för Authenticator"
|
||||
|
||||
#~ msgid "translator-credits"
|
||||
#~ msgstr "Anders Jonsson <anders.jonsson@norsjovallen.se>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Authenticator@NAME_SUFFIX@"
|
||||
#~ msgstr "Authenticator"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Authenticator\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-30 15:06+0100\n"
|
||||
"POT-Creation-Date: 2019-01-25 19:56+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
|
@ -16,7 +16,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: Authenticator/application.py.in:39 Authenticator/widgets/about.py.in:44
|
||||
#: Authenticator/application.py.in:39
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.appdata.xml.in.in:6
|
||||
#: data/com.github.bilelmoussaoui.Authenticator.desktop.in.in:3
|
||||
msgid "Authenticator"
|
||||
|
@ -81,23 +81,23 @@ msgstr ""
|
|||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:159
|
||||
#: Authenticator/widgets/accounts/add.py:161
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:169
|
||||
#: Authenticator/widgets/accounts/add.py:171
|
||||
msgid "Account name"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:175
|
||||
#: Authenticator/widgets/accounts/add.py:177
|
||||
msgid "Secret token"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:258
|
||||
#: Authenticator/widgets/accounts/add.py:260
|
||||
msgid "Invalid QR code"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/accounts/add.py:266
|
||||
#: Authenticator/widgets/accounts/add.py:268
|
||||
msgid "zbar library is not found. QRCode scanner will be disabled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -131,14 +131,6 @@ msgstr ""
|
|||
msgid "Couldn't generate the secret code"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/about.py.in:45
|
||||
msgid "translator-credits"
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/about.py.in:47
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr ""
|
||||
|
||||
#: Authenticator/widgets/actions_bar.py:52
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
@ -308,42 +300,46 @@ msgstr ""
|
|||
msgid "Whether the application can be locked or not"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:13
|
||||
#: data/ui/about_dialog.ui.in:10
|
||||
msgid "Two-factor authentication code generator."
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/shortcuts.ui:13
|
||||
msgctxt "shortcut window"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:17
|
||||
#: data/ui/shortcuts.ui:17
|
||||
msgctxt "shortcut window"
|
||||
msgid "Show Shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:24
|
||||
#: data/ui/shortcuts.ui:24
|
||||
msgctxt "shortcut window"
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:31
|
||||
#: data/ui/shortcuts.ui:31
|
||||
msgctxt "shortcut window"
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:40
|
||||
#: data/ui/shortcuts.ui:40
|
||||
msgctxt "shortcut window"
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:44
|
||||
#: data/ui/shortcuts.ui:44
|
||||
msgctxt "shortcut window"
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:51
|
||||
#: data/ui/shortcuts.ui:51
|
||||
msgctxt "shortcut window"
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: data/ui/Shortcuts.ui:58
|
||||
#: data/ui/shortcuts.ui:58
|
||||
msgctxt "shortcut window"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
|
Loading…
Add table
Reference in a new issue