diff --git a/.gitignore b/.gitignore index d163863..608b1d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +.vscode/ build/ \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 6e73aa3..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - // Verwendet IntelliSense zum Ermitteln möglicher Attribute. - // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. - // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Debug", - "type": "gdb", - "request": "launch", - "target": "./bin/executable", - "cwd": "${workspaceRoot}" - } - ] -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index bf18339..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "tasks": [ - { - "label": "ninja", - "type": "shell", - "command": "cd ${workspaceFolder}/build && ninja", - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} \ No newline at end of file diff --git a/Config.vala.cmake b/Config.vala.cmake deleted file mode 100644 index 13904c2..0000000 --- a/Config.vala.cmake +++ /dev/null @@ -1,25 +0,0 @@ -// -// Copyright (C) 2015-2015 Artem Anufrij -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . -// - -namespace Constants { -public const string DATADIR = "@DATADIR@"; -public const string PKGDATADIR = "@PKGDATADIR@"; -public const string GETTEXT_PACKAGE = "@GETTEXT_PACKAGE@"; -public const string RELEASE_NAME = "@RELEASE_NAME@"; -public const string VERSION = "@VERSION@"; -public const string VERSION_INFO = "@VERSION_INFO@"; -} diff --git a/README.md b/README.md index d202750..e8feef9 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ git clone https://github.com/artemanufrij/webpin.git cd webpin ``` -Compile, install and start Melody on your system +Compile, install and start Webpin on your system ``` meson build --prefix=/usr cd build diff --git a/data/com.github.artemanufrij.webpin.appdata.xml b/data/com.github.artemanufrij.webpin.appdata.xml.in similarity index 100% rename from data/com.github.artemanufrij.webpin.appdata.xml rename to data/com.github.artemanufrij.webpin.appdata.xml.in diff --git a/data/com.github.artemanufrij.webpin.desktop b/data/com.github.artemanufrij.webpin.desktop.in similarity index 87% rename from data/com.github.artemanufrij.webpin.desktop rename to data/com.github.artemanufrij.webpin.desktop.in index ded90a6..7db07a5 100644 --- a/data/com.github.artemanufrij.webpin.desktop +++ b/data/com.github.artemanufrij.webpin.desktop.in @@ -2,7 +2,6 @@ Name=Webpin GenericName=Webpin Comment=Pin your websites on your desktop -Comment[lt]=Prisegti interneto svetaines savo darbalaukyje Keywords=internet;webapp; Exec=com.github.artemanufrij.webpin %u Icon=com.github.artemanufrij.webpin diff --git a/data/icons/32/com.github.artemanufrij.webpin.svg b/data/icons/32/com.github.artemanufrij.webpin.svg index 132e604..e0e2953 100644 --- a/data/icons/32/com.github.artemanufrij.webpin.svg +++ b/data/icons/32/com.github.artemanufrij.webpin.svg @@ -1,287 +1,76 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/data/icons/48/com.github.artemanufrij.webpin.svg b/data/icons/48/com.github.artemanufrij.webpin.svg index c58bb44..0f0a235 100644 --- a/data/icons/48/com.github.artemanufrij.webpin.svg +++ b/data/icons/48/com.github.artemanufrij.webpin.svg @@ -1,287 +1,76 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/data/icons/64/com.github.artemanufrij.webpin.svg b/data/icons/64/com.github.artemanufrij.webpin.svg index 65fef5e..ee8dd31 100644 --- a/data/icons/64/com.github.artemanufrij.webpin.svg +++ b/data/icons/64/com.github.artemanufrij.webpin.svg @@ -1,287 +1,76 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/data/meson.build b/data/meson.build index c18df94..f463471 100644 --- a/data/meson.build +++ b/data/meson.build @@ -5,26 +5,38 @@ foreach i : icon_sizes join_paths('icons/', i, meson.project_name() + '.svg'), install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps') ) -endforeach - -foreach i : icon_sizes + install_data( + join_paths('icons/', i, meson.project_name() + '.svg'), + install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps') + ) install_data( join_paths('icons/', i, meson.project_name() + '.svg'), install_dir: join_paths(get_option('datadir'), 'icons/hicolor', i + 'x' + i, 'mimetypes') ) + install_data( + join_paths('icons/', i, meson.project_name() + '.svg'), + install_dir: join_paths(get_option('datadir'), 'icons/hicolor', i + 'x' + i + '@2', 'mimetypes') + ) endforeach install_data( - 'icons/64/' + meson.project_name() + '.svg', + join_paths('icons', '64', meson.project_name() + '.svg'), install_dir: join_paths(get_option('datadir'), 'icons/hicolor/scalable/apps') ) -install_data( - meson.project_name() + '.desktop', +i18n.merge_file( + input: meson.project_name() + '.desktop.in', + output: meson.project_name() + '.desktop', + po_dir: join_paths(meson.source_root(), 'po', 'extra'), + type: 'desktop', + install: true, install_dir: join_paths(get_option('datadir'), 'applications') ) -install_data( - meson.project_name() + '.appdata.xml', +i18n.merge_file( + input: meson.project_name() + '.appdata.xml.in', + output: meson.project_name() + '.appdata.xml', + po_dir: join_paths(meson.source_root(), 'po', 'extra'), + install: true, install_dir: join_paths(get_option('datadir'), 'metainfo') ) \ No newline at end of file diff --git a/debian/rules b/debian/rules index e50e7cd..e11fef4 100755 --- a/debian/rules +++ b/debian/rules @@ -10,5 +10,20 @@ #export DH_VERBOSE=1 %: - dh $@ + dh $@ +override_dh_auto_clean: + rm -rf debian/build + +override_dh_auto_configure: + mkdir -p debian/build + cd debian/build && meson --prefix=/usr ../.. + +override_dh_auto_build: + cd debian/build && ninja -v + +override_dh_auto_test: + cd debian/build && ninja test + +override_dh_auto_install: + cd debian/build && DESTDIR=${CURDIR}/debian/com.github.artemanufrij.webpin ninja install \ No newline at end of file diff --git a/meson/post_install.py b/meson/post_install.py old mode 100644 new mode 100755 index 47bea16..3057125 --- a/meson/post_install.py +++ b/meson/post_install.py @@ -1,24 +1,16 @@ #!/usr/bin/env python3 -import os +from os import path, environ import subprocess -prefix = os.environ.get('MESON_INSTALL_PREFIX', '/usr') -datadir = os.path.join(prefix, 'share') +prefix = environ.get('MESON_INSTALL_PREFIX', '/usr/local') +schemadir = path.join(environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas') +datadir = path.join(prefix, 'share') -# Packaging tools define DESTDIR and this isn't needed for them -if 'DESTDIR' not in os.environ: - - - print('Compiling gsettings schemas...') - schema_dir = os.path.join(datadir, 'glib-2.0/schemas') - subprocess.call(['glib-compile-schemas', schema_dir]) - - print('Updating icon cache...') - icon_cache_dir = os.path.join(datadir, 'icons', 'hicolor') - - subprocess.call(['gtk-update-icon-cache', '-qtf', icon_cache_dir]) - - print('Updating desktop database...') - desktop_database_dir = os.path.join(datadir, 'applications') - subprocess.call(['update-desktop-database', '-q', desktop_database_dir]) +if not environ.get('DESTDIR'): + print('Compiling gsettings schemas…') + subprocess.call(['glib-compile-schemas', schemadir]) + print('Updating icon cache…') + subprocess.call(['gtk-update-icon-cache', '-qtf', path.join(datadir, 'icons', 'hicolor')]) + print('Updating desktop database…') + subprocess.call(['update-desktop-database', '-q', path.join(datadir, 'applications')]) \ No newline at end of file diff --git a/po/LINGUAS b/po/LINGUAS index 32f9ece..f4a9e3c 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -121,7 +121,6 @@ ne ng nl nn -no nr nv ny @@ -189,8 +188,7 @@ xh yi yo za -zh_CN zh_HK zh zh_TW -zu +zu \ No newline at end of file diff --git a/po/aa.po b/po/aa.po index 483a928..e02d046 100644 --- a/po/aa.po +++ b/po/aa.po @@ -1,9 +1,20 @@ +# Afar translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: aa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ab.po b/po/ab.po index 483a928..92a71a2 100644 --- a/po/ab.po +++ b/po/ab.po @@ -1,9 +1,20 @@ +# Abkhazian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ab\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ae.po b/po/ae.po index 483a928..b77c903 100644 --- a/po/ae.po +++ b/po/ae.po @@ -1,9 +1,20 @@ +# Avestan translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ae\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/af.po b/po/af.po index 483a928..9a2713d 100644 --- a/po/af.po +++ b/po/af.po @@ -1,9 +1,20 @@ +# Afrikaans translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ak.po b/po/ak.po index 483a928..e76faff 100644 --- a/po/ak.po +++ b/po/ak.po @@ -1,9 +1,20 @@ +# Akan translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ak\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/am.po b/po/am.po index 483a928..428fbf1 100644 --- a/po/am.po +++ b/po/am.po @@ -1,9 +1,20 @@ +# Amharic translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/an.po b/po/an.po index 483a928..2fd356e 100644 --- a/po/an.po +++ b/po/an.po @@ -1,9 +1,20 @@ +# Aragonese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: an\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ar.po b/po/ar.po index 483a928..7a3e87c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -1,9 +1,20 @@ +# Arabic translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/as.po b/po/as.po index 483a928..efd578e 100644 --- a/po/as.po +++ b/po/as.po @@ -1,9 +1,20 @@ +# Assamese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: as\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ast.po b/po/ast.po index 483a928..3bf8ed5 100644 --- a/po/ast.po +++ b/po/ast.po @@ -1,9 +1,20 @@ +# Asturian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/av.po b/po/av.po index 483a928..eb46b27 100644 --- a/po/av.po +++ b/po/av.po @@ -1,9 +1,20 @@ +# Avaric translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: av\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ay.po b/po/ay.po index 483a928..50c032f 100644 --- a/po/ay.po +++ b/po/ay.po @@ -1,9 +1,20 @@ +# Aymara translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ay\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/az.po b/po/az.po index 483a928..6f390a2 100644 --- a/po/az.po +++ b/po/az.po @@ -1,9 +1,20 @@ +# Azerbaijani translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ba.po b/po/ba.po index 483a928..96c4c65 100644 --- a/po/ba.po +++ b/po/ba.po @@ -1,9 +1,20 @@ +# Bashkir translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ba\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/be.po b/po/be.po index ae460b3..4a2815f 100644 --- a/po/be.po +++ b/po/be.po @@ -1,11 +1,22 @@ +# Belarusian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" +"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" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -36,7 +47,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -47,7 +58,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -71,6 +82,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -79,32 +94,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -143,3 +162,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/bg.po b/po/bg.po index 92b6760..5cb01c5 100644 --- a/po/bg.po +++ b/po/bg.po @@ -1,10 +1,21 @@ +# Bulgarian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/bh.po b/po/bh.po index 483a928..bc7f5c5 100644 --- a/po/bh.po +++ b/po/bh.po @@ -1,9 +1,20 @@ +# Bihari translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/bi.po b/po/bi.po index 483a928..146a048 100644 --- a/po/bi.po +++ b/po/bi.po @@ -1,9 +1,20 @@ +# Bislama translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/bm.po b/po/bm.po index 483a928..d089578 100644 --- a/po/bm.po +++ b/po/bm.po @@ -1,9 +1,20 @@ +# Bambara translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bm\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/bn.po b/po/bn.po index 483a928..f813492 100644 --- a/po/bn.po +++ b/po/bn.po @@ -1,9 +1,20 @@ +# Bengali translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/bo.po b/po/bo.po index 483a928..d32c48d 100644 --- a/po/bo.po +++ b/po/bo.po @@ -1,9 +1,20 @@ +# Tibetan translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/br.po b/po/br.po index 483a928..78adc31 100644 --- a/po/br.po +++ b/po/br.po @@ -1,9 +1,20 @@ +# Breton translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/bs.po b/po/bs.po index 483a928..b296622 100644 --- a/po/bs.po +++ b/po/bs.po @@ -1,9 +1,20 @@ +# Bosnian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ca.po b/po/ca.po index 483a928..2df6ac6 100644 --- a/po/ca.po +++ b/po/ca.po @@ -1,9 +1,20 @@ +# Catalan translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ce.po b/po/ce.po index 483a928..5d25ac1 100644 --- a/po/ce.po +++ b/po/ce.po @@ -1,9 +1,20 @@ +# Chechen translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ce\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ch.po b/po/ch.po index 483a928..c5bf6bc 100644 --- a/po/ch.po +++ b/po/ch.po @@ -1,9 +1,20 @@ +# Chamorro translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ch\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ckb.po b/po/ckb.po index 483a928..0a3cd47 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -1,9 +1,20 @@ +# Language ckb translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/co.po b/po/co.po index 483a928..04ab8e5 100644 --- a/po/co.po +++ b/po/co.po @@ -1,9 +1,20 @@ +# Corsican translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: co\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/com.github.artemanufrij.webpin.pot b/po/com.github.artemanufrij.webpin.pot index d8d26b6..39165fc 100644 --- a/po/com.github.artemanufrij.webpin.pot +++ b/po/com.github.artemanufrij.webpin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -46,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -57,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -81,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -89,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -153,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/cr.po b/po/cr.po index 483a928..cc9c398 100644 --- a/po/cr.po +++ b/po/cr.po @@ -1,9 +1,20 @@ +# Cree translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/cs.po b/po/cs.po index 89ddfad..801333c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,9 +1,20 @@ +# Czech translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: src/Widgets/WebItem.vala:126 @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/cu.po b/po/cu.po index 483a928..9bf78ef 100644 --- a/po/cu.po +++ b/po/cu.po @@ -1,9 +1,20 @@ +# Church Slavic translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/cv.po b/po/cv.po index 483a928..ab6e796 100644 --- a/po/cv.po +++ b/po/cv.po @@ -1,9 +1,20 @@ +# Chuvash translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/cy.po b/po/cy.po index 483a928..48396bc 100644 --- a/po/cy.po +++ b/po/cy.po @@ -1,9 +1,20 @@ +# Welsh translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/da.po b/po/da.po index 483a928..d8dce17 100644 --- a/po/da.po +++ b/po/da.po @@ -1,9 +1,21 @@ +# Danish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/de.mo b/po/de.mo deleted file mode 100644 index 7a9b14e..0000000 Binary files a/po/de.mo and /dev/null differ diff --git a/po/de.po b/po/de.po index b83286e..650d893 100644 --- a/po/de.po +++ b/po/de.po @@ -1,22 +1,21 @@ -# German translation for webby-browser -# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 -# This file is distributed under the same license as the webby-browser package. -# FIRST AUTHOR , 2015. +# German translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Tobias Bannert, 2019. # msgid "" msgstr "" -"Project-Id-Version: webby-browser\n" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" -"PO-Revision-Date: 2017-08-14 18:27+0200\n" -"Last-Translator: Tobias Bannert \n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Tobias Bannert\n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-03-24 00:16+0000\n" -"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,9 +34,8 @@ msgid "Application name" msgstr "Anwendungsname" #: src/Widgets/Views/Editor.vala:96 -#, fuzzy msgid "https://myapp.domain or file:///my/local/file" -msgstr "https://myapp.domain" +msgstr "https://myapp.domain oder file:///my/local/file" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" @@ -48,7 +46,7 @@ msgid "or" msgstr "oder" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "Datei auswählen…" #: src/Widgets/Views/Editor.vala:128 @@ -59,7 +57,7 @@ msgstr "Cookies speichern" msgid "Save login information" msgstr "Anmeldeinformation speichern" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -72,9 +70,8 @@ msgid "Save app" msgstr "Speichern" #: src/Widgets/Views/Editor.vala:182 -#, fuzzy msgid "url must start with http:// or https:// or file:///" -msgstr "Adresse muss mit http:// oder https:// beginnen" +msgstr "Adresse muss mit http:// oder https:// oder file:/// beginnen" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" @@ -84,6 +81,10 @@ msgstr "Anwendung ist bereits vorhanden" msgid "Images" msgstr "Bilder" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "Abbrechen" @@ -92,32 +93,36 @@ msgstr "Abbrechen" msgid "Open" msgstr "Öffnen" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "Öffne Anfrage in einer externen Anwendung…" -#: src/Windows/WebApp.vala:97 -#, fuzzy, c-format -msgid "Open %s" -msgstr "Öffnen" +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:98 +#, c-format +msgid "Open %s" +msgstr "Öffnen %s" + +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -126,14 +131,12 @@ msgid "Choose an image…" msgstr "" #: src/Services/DesktopFilesManager.vala:86 -#, fuzzy msgid "_Cancel" -msgstr "Abbrechen" +msgstr "_Abbrechen" #: src/Services/DesktopFilesManager.vala:87 -#, fuzzy msgid "_Open" -msgstr "Öffnen" +msgstr "_Öffnen" #: src/MainWindow.vala:62 msgid "Applications" @@ -159,29 +162,10 @@ msgstr "App erstellen" msgid "Create a new web app with Webpin" msgstr "Erstelle eine neue Webapp mit Webpin" -#~ msgid "Accept" -#~ msgstr "Bestätigen" +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" -#~ msgid "No Web Apps Availible" -#~ msgstr "Es sind keine Webapps vorhanden" - -#~ msgid "Create a new Webpin Web App." -#~ msgstr "Erstelle eine neue Webapp mit Webpin" - -#~ msgid "Create a new Webpin web app." -#~ msgstr "Eine neue Webapp erstellen" - -#~ msgid "Remove Application" -#~ msgstr "Anwendung entfernen" - -#~ msgid "Create a new web app with webby" -#~ msgstr "Erstelle eine neue Webanwendung mit Webby" - -#~ msgid "Create app" -#~ msgstr "Anwendung erstellen" - -#~ msgid "App created" -#~ msgstr "Anwendung wurde erstellt" - -#~ msgid "The application shortcut was successfully created" -#~ msgstr "Tastenkürzel für die Anwendung wurde erfolgreich erstellt" +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/dv.po b/po/dv.po index 483a928..5c59881 100644 --- a/po/dv.po +++ b/po/dv.po @@ -1,9 +1,20 @@ +# Divehi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: dv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/dz.po b/po/dz.po index 483a928..1796ebd 100644 --- a/po/dz.po +++ b/po/dz.po @@ -1,9 +1,20 @@ +# Dzongkha translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: dz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ee.po b/po/ee.po index 483a928..d7f2d22 100644 --- a/po/ee.po +++ b/po/ee.po @@ -1,9 +1,20 @@ +# Ewe translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ee\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/el.po b/po/el.po index 483a928..77bc164 100644 --- a/po/el.po +++ b/po/el.po @@ -1,9 +1,21 @@ +# Greek translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/en_AU.po b/po/en_AU.po index 483a928..7ce490a 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -1,143 +1,171 @@ +# English translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" -msgstr "" +msgstr "Delete Webapp" #: src/Widgets/WebItem.vala:131 msgid "Edit Webapp Properties" -msgstr "" +msgstr "Edit Webapp Properties" #: src/Widgets/Views/Editor.vala:84 msgid "Create a new web app" -msgstr "" +msgstr "Create a new web app" #: src/Widgets/Views/Editor.vala:92 msgid "Application name" -msgstr "" +msgstr "Application name" #: src/Widgets/Views/Editor.vala:96 msgid "https://myapp.domain or file:///my/local/file" -msgstr "" +msgstr "https://myapp.domain or file:///my/local/file" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" -msgstr "" +msgstr "theme icon name" #: src/Widgets/Views/Editor.vala:108 msgid "or" -msgstr "" +msgstr "or" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "" +msgid "Set from file…" +msgstr "Set from file…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" -msgstr "" +msgstr "Save cookies" #: src/Widgets/Views/Editor.vala:130 msgid "Save login information" -msgstr "" +msgstr "Save login information" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" -msgstr "" +msgstr "Run in background if closed" #: src/Widgets/Views/Editor.vala:134 msgid "Use minimal UI" -msgstr "" +msgstr "Use minimal UI" #: src/Widgets/Views/Editor.vala:159 msgid "Save app" -msgstr "" +msgstr "Save app" #: src/Widgets/Views/Editor.vala:182 msgid "url must start with http:// or https:// or file:///" -msgstr "" +msgstr "url must start with http:// or https:// or file:///" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" -msgstr "" +msgstr "App already exist" #: src/Widgets/Views/Editor.vala:428 src/Services/DesktopFilesManager.vala:90 msgid "Images" -msgstr "" +msgstr "Images" + +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "Choose icon" #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" -msgstr "" +msgstr "Cancel" #: src/Widgets/Views/Editor.vala:434 msgid "Open" -msgstr "" +msgstr "Open" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" +msgstr "Open request in an external application…" + +#: src/Windows/WebApp.vala:63 +msgid "Loading…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" -msgstr "" +msgstr "Open %s" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" -msgstr "" +msgstr "Back" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" -msgstr "" +msgstr "Home" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" -msgstr "" +msgstr "Forward" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" -msgstr "" +msgstr "Reload" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" -msgstr "" +msgstr "Copy URL into clipboard" #: src/Services/DesktopFilesManager.vala:84 msgid "Choose an image…" -msgstr "" +msgstr "Choose an image…" #: src/Services/DesktopFilesManager.vala:86 msgid "_Cancel" -msgstr "" +msgstr "_Cancel" #: src/Services/DesktopFilesManager.vala:87 msgid "_Open" -msgstr "" +msgstr "_Open" #: src/MainWindow.vala:62 msgid "Applications" -msgstr "" +msgstr "Applications" #: src/MainWindow.vala:69 msgid "Add a new Web App" -msgstr "" +msgstr "Add a new Web App" #: src/MainWindow.vala:74 msgid "No Web Apps Available" -msgstr "" +msgstr "No Web Apps Available" #: src/MainWindow.vala:74 msgid "Manage your web apps." -msgstr "" +msgstr "Manage your web apps." #: src/MainWindow.vala:75 msgid "Create App" -msgstr "" +msgstr "Create App" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" +msgstr "Create a new web app with Webpin" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" msgstr "" diff --git a/po/en_CA.po b/po/en_CA.po index 483a928..7ee777e 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -1,143 +1,171 @@ +# English translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" -msgstr "" +msgstr "Delete Webapp" #: src/Widgets/WebItem.vala:131 msgid "Edit Webapp Properties" -msgstr "" +msgstr "Edit Webapp Properties" #: src/Widgets/Views/Editor.vala:84 msgid "Create a new web app" -msgstr "" +msgstr "Create a new web app" #: src/Widgets/Views/Editor.vala:92 msgid "Application name" -msgstr "" +msgstr "Application name" #: src/Widgets/Views/Editor.vala:96 msgid "https://myapp.domain or file:///my/local/file" -msgstr "" +msgstr "https://myapp.domain or file:///my/local/file" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" -msgstr "" +msgstr "theme icon name" #: src/Widgets/Views/Editor.vala:108 msgid "or" -msgstr "" +msgstr "or" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "" +msgid "Set from file…" +msgstr "Set from file…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" -msgstr "" +msgstr "Save cookies" #: src/Widgets/Views/Editor.vala:130 msgid "Save login information" -msgstr "" +msgstr "Save login information" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" -msgstr "" +msgstr "Run in background if closed" #: src/Widgets/Views/Editor.vala:134 msgid "Use minimal UI" -msgstr "" +msgstr "Use minimal UI" #: src/Widgets/Views/Editor.vala:159 msgid "Save app" -msgstr "" +msgstr "Save app" #: src/Widgets/Views/Editor.vala:182 msgid "url must start with http:// or https:// or file:///" -msgstr "" +msgstr "url must start with http:// or https:// or file:///" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" -msgstr "" +msgstr "App already exist" #: src/Widgets/Views/Editor.vala:428 src/Services/DesktopFilesManager.vala:90 msgid "Images" -msgstr "" +msgstr "Images" + +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "Choose icon" #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" -msgstr "" +msgstr "Cancel" #: src/Widgets/Views/Editor.vala:434 msgid "Open" -msgstr "" +msgstr "Open" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" +msgstr "Open request in an external application…" + +#: src/Windows/WebApp.vala:63 +msgid "Loading…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" -msgstr "" +msgstr "Open %s" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" -msgstr "" +msgstr "Back" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" -msgstr "" +msgstr "Home" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" -msgstr "" +msgstr "Forward" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" -msgstr "" +msgstr "Reload" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" -msgstr "" +msgstr "Copy URL into clipboard" #: src/Services/DesktopFilesManager.vala:84 msgid "Choose an image…" -msgstr "" +msgstr "Choose an image…" #: src/Services/DesktopFilesManager.vala:86 msgid "_Cancel" -msgstr "" +msgstr "_Cancel" #: src/Services/DesktopFilesManager.vala:87 msgid "_Open" -msgstr "" +msgstr "_Open" #: src/MainWindow.vala:62 msgid "Applications" -msgstr "" +msgstr "Applications" #: src/MainWindow.vala:69 msgid "Add a new Web App" -msgstr "" +msgstr "Add a new Web App" #: src/MainWindow.vala:74 msgid "No Web Apps Available" -msgstr "" +msgstr "No Web Apps Available" #: src/MainWindow.vala:74 msgid "Manage your web apps." -msgstr "" +msgstr "Manage your web apps." #: src/MainWindow.vala:75 msgid "Create App" -msgstr "" +msgstr "Create App" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" +msgstr "Create a new web app with Webpin" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index 483a928..036b0b3 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1,143 +1,171 @@ +# English translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" -msgstr "" +msgstr "Delete Webapp" #: src/Widgets/WebItem.vala:131 msgid "Edit Webapp Properties" -msgstr "" +msgstr "Edit Webapp Properties" #: src/Widgets/Views/Editor.vala:84 msgid "Create a new web app" -msgstr "" +msgstr "Create a new web app" #: src/Widgets/Views/Editor.vala:92 msgid "Application name" -msgstr "" +msgstr "Application name" #: src/Widgets/Views/Editor.vala:96 msgid "https://myapp.domain or file:///my/local/file" -msgstr "" +msgstr "https://myapp.domain or file:///my/local/file" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" -msgstr "" +msgstr "theme icon name" #: src/Widgets/Views/Editor.vala:108 msgid "or" -msgstr "" +msgstr "or" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "" +msgid "Set from file…" +msgstr "Set from file…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" -msgstr "" +msgstr "Save cookies" #: src/Widgets/Views/Editor.vala:130 msgid "Save login information" -msgstr "" +msgstr "Save login information" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" -msgstr "" +msgstr "Run in background if closed" #: src/Widgets/Views/Editor.vala:134 msgid "Use minimal UI" -msgstr "" +msgstr "Use minimal UI" #: src/Widgets/Views/Editor.vala:159 msgid "Save app" -msgstr "" +msgstr "Save app" #: src/Widgets/Views/Editor.vala:182 msgid "url must start with http:// or https:// or file:///" -msgstr "" +msgstr "url must start with http:// or https:// or file:///" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" -msgstr "" +msgstr "App already exist" #: src/Widgets/Views/Editor.vala:428 src/Services/DesktopFilesManager.vala:90 msgid "Images" -msgstr "" +msgstr "Images" + +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "Choose icon" #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" -msgstr "" +msgstr "Cancel" #: src/Widgets/Views/Editor.vala:434 msgid "Open" -msgstr "" +msgstr "Open" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" +msgstr "Open request in an external application…" + +#: src/Windows/WebApp.vala:63 +msgid "Loading…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" -msgstr "" +msgstr "Open %s" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" -msgstr "" +msgstr "Back" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" -msgstr "" +msgstr "Home" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" -msgstr "" +msgstr "Forward" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" -msgstr "" +msgstr "Reload" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" -msgstr "" +msgstr "Copy URL into clipboard" #: src/Services/DesktopFilesManager.vala:84 msgid "Choose an image…" -msgstr "" +msgstr "Choose an image…" #: src/Services/DesktopFilesManager.vala:86 msgid "_Cancel" -msgstr "" +msgstr "_Cancel" #: src/Services/DesktopFilesManager.vala:87 msgid "_Open" -msgstr "" +msgstr "_Open" #: src/MainWindow.vala:62 msgid "Applications" -msgstr "" +msgstr "Applications" #: src/MainWindow.vala:69 msgid "Add a new Web App" -msgstr "" +msgstr "Add a new Web App" #: src/MainWindow.vala:74 msgid "No Web Apps Available" -msgstr "" +msgstr "No Web Apps Available" #: src/MainWindow.vala:74 msgid "Manage your web apps." -msgstr "" +msgstr "Manage your web apps." #: src/MainWindow.vala:75 msgid "Create App" -msgstr "" +msgstr "Create App" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" +msgstr "Create a new web app with Webpin" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" msgstr "" diff --git a/po/eo.po b/po/eo.po index 92b6760..1dfecd0 100644 --- a/po/eo.po +++ b/po/eo.po @@ -1,10 +1,21 @@ +# Esperanto translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/es.po b/po/es.po index 1356439..dbf3ea0 100644 --- a/po/es.po +++ b/po/es.po @@ -1,11 +1,21 @@ -# Spanish translation for Webpin -# Last translated 2/4/19 day/month/year +# Spanish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Erasmo Marín , 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Erasmo Marín \n" +"Language-Team: Spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -36,7 +46,8 @@ msgid "or" msgstr "o" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +#, fuzzy +msgid "Set from file…" msgstr "Seleccionar archivo..." #: src/Widgets/Views/Editor.vala:128 @@ -47,7 +58,7 @@ msgstr "Guardar cookies" msgid "Save login information" msgstr "Guardar inicios de sesión" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "Mantener en memoria al cerrarse" @@ -71,6 +82,10 @@ msgstr "La app ya existe" msgid "Images" msgstr "Imágenes" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "Cancelar" @@ -79,32 +94,36 @@ msgstr "Cancelar" msgid "Open" msgstr "Abrir" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "Abriendo en aplicación externa…" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "Abrir %s" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "Anterior" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "Inicio" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "Siguiente" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "Recargar" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "Copiar URL en portapapeles" @@ -143,3 +162,11 @@ msgstr "Crear App" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "Crea una nueva web app con Webpin" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/et.po b/po/et.po index 92b6760..aa7e640 100644 --- a/po/et.po +++ b/po/et.po @@ -1,10 +1,21 @@ +# Estonian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/eu.po b/po/eu.po index 483a928..69ded80 100644 --- a/po/eu.po +++ b/po/eu.po @@ -1,9 +1,20 @@ +# Basque translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/extra/LINGUAS b/po/extra/LINGUAS new file mode 100644 index 0000000..f4a9e3c --- /dev/null +++ b/po/extra/LINGUAS @@ -0,0 +1,194 @@ +aa +ab +ae +af +ak +am +an +ar +as +ast +av +ay +az +ba +be +bg +bh +bi +bm +bn +bo +br +bs +ca +ce +ch +ckb +co +cr +cs +cu +cv +cy +da +de +dv +dz +ee +el +en_AU +en_CA +en_GB +eo +es +et +eu +fa +ff +fi +fj +fo +fr_CA +fr +fy +ga +gd +gl +gn +gu +gv +ha +he +hi +ho +hr +ht +hu +hy +hz +ia +id +ie +ig +ii +ik +io +is +it +iu +ja +jv +ka +kg +ki +kj +kk +kl +km +kn +ko +kr +ks +ku +kv +kw +ky +la +lb +lg +li +ln +lo +lt +lu +lv +mg +mh +mi +mk +ml +mn +mo +mr +ms +mt +my +na +nb +nd +ne +ng +nl +nn +nr +nv +ny +oc +oj +om +or +os +pa +pi +pl +ps +pt_BR +pt +qu +rm +rn +ro +rue +ru +rw +sa +sc +sd +se +sg +si +sk +sl +sma +sm +sn +so +sq +sr +ss +st +su +sv +sw +ta +te +tg +th +ti +tk +tl +tn +to +tr +ts +tt +tw +ty +ug +uk +ur +uz +ve +vi +vo +wa +wo +xh +yi +yo +za +zh_HK +zh +zh_TW +zu \ No newline at end of file diff --git a/po/extra/POTFILES b/po/extra/POTFILES new file mode 100644 index 0000000..3af01d9 --- /dev/null +++ b/po/extra/POTFILES @@ -0,0 +1,2 @@ +data/com.github.artemanufrij.webpin.desktop.in +data/com.github.artemanufrij.webpin.appdata.xml.in \ No newline at end of file diff --git a/po/extra/aa.po b/po/extra/aa.po new file mode 100644 index 0000000..0fb3e73 --- /dev/null +++ b/po/extra/aa.po @@ -0,0 +1,232 @@ +# Afar translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: aa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ab.po b/po/extra/ab.po new file mode 100644 index 0000000..ff11f9d --- /dev/null +++ b/po/extra/ab.po @@ -0,0 +1,232 @@ +# Abkhazian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ae.po b/po/extra/ae.po new file mode 100644 index 0000000..380084e --- /dev/null +++ b/po/extra/ae.po @@ -0,0 +1,232 @@ +# Avestan translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ae\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/af.po b/po/extra/af.po new file mode 100644 index 0000000..56b1158 --- /dev/null +++ b/po/extra/af.po @@ -0,0 +1,232 @@ +# Afrikaans translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ak.po b/po/extra/ak.po new file mode 100644 index 0000000..d7f4185 --- /dev/null +++ b/po/extra/ak.po @@ -0,0 +1,232 @@ +# Akan translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ak\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/am.po b/po/extra/am.po new file mode 100644 index 0000000..30c12b1 --- /dev/null +++ b/po/extra/am.po @@ -0,0 +1,232 @@ +# Amharic translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/an.po b/po/extra/an.po new file mode 100644 index 0000000..5cd6bc7 --- /dev/null +++ b/po/extra/an.po @@ -0,0 +1,232 @@ +# Aragonese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: an\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ar.po b/po/extra/ar.po new file mode 100644 index 0000000..f902399 --- /dev/null +++ b/po/extra/ar.po @@ -0,0 +1,232 @@ +# Arabic translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/as.po b/po/extra/as.po new file mode 100644 index 0000000..9faf155 --- /dev/null +++ b/po/extra/as.po @@ -0,0 +1,232 @@ +# Assamese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: as\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ast.po b/po/extra/ast.po new file mode 100644 index 0000000..85a3ce8 --- /dev/null +++ b/po/extra/ast.po @@ -0,0 +1,232 @@ +# Asturian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/av.po b/po/extra/av.po new file mode 100644 index 0000000..8674e73 --- /dev/null +++ b/po/extra/av.po @@ -0,0 +1,232 @@ +# Avaric translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: av\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ay.po b/po/extra/ay.po new file mode 100644 index 0000000..5be35da --- /dev/null +++ b/po/extra/ay.po @@ -0,0 +1,232 @@ +# Aymara translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ay\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/az.po b/po/extra/az.po new file mode 100644 index 0000000..136f09d --- /dev/null +++ b/po/extra/az.po @@ -0,0 +1,232 @@ +# Azerbaijani translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ba.po b/po/extra/ba.po new file mode 100644 index 0000000..d39ee54 --- /dev/null +++ b/po/extra/ba.po @@ -0,0 +1,232 @@ +# Bashkir translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ba\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/be.po b/po/extra/be.po new file mode 100644 index 0000000..650f90a --- /dev/null +++ b/po/extra/be.po @@ -0,0 +1,234 @@ +# Belarusian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: be\n" +"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" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/bg.po b/po/extra/bg.po new file mode 100644 index 0000000..004cdaa --- /dev/null +++ b/po/extra/bg.po @@ -0,0 +1,233 @@ +# Bulgarian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/bh.po b/po/extra/bh.po new file mode 100644 index 0000000..4fec234 --- /dev/null +++ b/po/extra/bh.po @@ -0,0 +1,232 @@ +# Bihari translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/bi.po b/po/extra/bi.po new file mode 100644 index 0000000..3c0f635 --- /dev/null +++ b/po/extra/bi.po @@ -0,0 +1,232 @@ +# Bislama translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/bm.po b/po/extra/bm.po new file mode 100644 index 0000000..8b62732 --- /dev/null +++ b/po/extra/bm.po @@ -0,0 +1,232 @@ +# Bambara translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/bn.po b/po/extra/bn.po new file mode 100644 index 0000000..9721e53 --- /dev/null +++ b/po/extra/bn.po @@ -0,0 +1,232 @@ +# Bengali translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/bo.po b/po/extra/bo.po new file mode 100644 index 0000000..0a8198d --- /dev/null +++ b/po/extra/bo.po @@ -0,0 +1,232 @@ +# Tibetan translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/br.po b/po/extra/br.po new file mode 100644 index 0000000..b7a57cd --- /dev/null +++ b/po/extra/br.po @@ -0,0 +1,232 @@ +# Breton translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: br\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/bs.po b/po/extra/bs.po new file mode 100644 index 0000000..66c5fa9 --- /dev/null +++ b/po/extra/bs.po @@ -0,0 +1,232 @@ +# Bosnian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ca.po b/po/extra/ca.po new file mode 100644 index 0000000..caf07a1 --- /dev/null +++ b/po/extra/ca.po @@ -0,0 +1,232 @@ +# Catalan translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ce.po b/po/extra/ce.po new file mode 100644 index 0000000..5da1c9e --- /dev/null +++ b/po/extra/ce.po @@ -0,0 +1,232 @@ +# Chechen translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ce\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ch.po b/po/extra/ch.po new file mode 100644 index 0000000..2f4c4f4 --- /dev/null +++ b/po/extra/ch.po @@ -0,0 +1,232 @@ +# Chamorro translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ch\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ckb.po b/po/extra/ckb.po new file mode 100644 index 0000000..67ff8b1 --- /dev/null +++ b/po/extra/ckb.po @@ -0,0 +1,232 @@ +# Language ckb translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ckb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/co.po b/po/extra/co.po new file mode 100644 index 0000000..86213a0 --- /dev/null +++ b/po/extra/co.po @@ -0,0 +1,232 @@ +# Corsican translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: co\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/cr.po b/po/extra/cr.po new file mode 100644 index 0000000..2dd89b7 --- /dev/null +++ b/po/extra/cr.po @@ -0,0 +1,232 @@ +# Cree translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/cs.po b/po/extra/cs.po new file mode 100644 index 0000000..9e2f890 --- /dev/null +++ b/po/extra/cs.po @@ -0,0 +1,233 @@ +# Czech translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/cu.po b/po/extra/cu.po new file mode 100644 index 0000000..a2a0706 --- /dev/null +++ b/po/extra/cu.po @@ -0,0 +1,232 @@ +# Church Slavic translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/cv.po b/po/extra/cv.po new file mode 100644 index 0000000..439c2b8 --- /dev/null +++ b/po/extra/cv.po @@ -0,0 +1,232 @@ +# Chuvash translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/cy.po b/po/extra/cy.po new file mode 100644 index 0000000..bc05561 --- /dev/null +++ b/po/extra/cy.po @@ -0,0 +1,232 @@ +# Welsh translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/da.po b/po/extra/da.po new file mode 100644 index 0000000..c481e70 --- /dev/null +++ b/po/extra/da.po @@ -0,0 +1,233 @@ +# Danish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/de.po b/po/extra/de.po new file mode 100644 index 0000000..87929c1 --- /dev/null +++ b/po/extra/de.po @@ -0,0 +1,233 @@ +# German translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/dv.po b/po/extra/dv.po new file mode 100644 index 0000000..be03f69 --- /dev/null +++ b/po/extra/dv.po @@ -0,0 +1,232 @@ +# Divehi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: dv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/dz.po b/po/extra/dz.po new file mode 100644 index 0000000..d424842 --- /dev/null +++ b/po/extra/dz.po @@ -0,0 +1,232 @@ +# Dzongkha translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: dz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ee.po b/po/extra/ee.po new file mode 100644 index 0000000..aa03ba0 --- /dev/null +++ b/po/extra/ee.po @@ -0,0 +1,232 @@ +# Ewe translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ee\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/el.po b/po/extra/el.po new file mode 100644 index 0000000..f086856 --- /dev/null +++ b/po/extra/el.po @@ -0,0 +1,233 @@ +# Greek translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/en_AU.po b/po/extra/en_AU.po new file mode 100644 index 0000000..3ef804b --- /dev/null +++ b/po/extra/en_AU.po @@ -0,0 +1,236 @@ +# English translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "Webpin" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "Pin your websites on your desktop" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "internet;webapp;" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "com.github.artemanufrij.webpin" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "New Webapp" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "document-new-symbolic" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "A simple app to pin websites on the desktop" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "Webpin is a fork of Webby (by Erasmo Marín)." + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "Artem Anufrij" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "New:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "Theme switcher" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "Option for minimal UI" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "Improved:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "Cache choosed icon instead to reference it" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "Sort items inside app overview" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "Fixed:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "Custom icon was replaced by default one" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "Navigation buttons" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "Moved to Meson" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "Support for local .html files" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "Restore correct window size" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "Grabing page icon" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "Translation:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "Dutch (by Heimen Stoffels)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "Prepare for JUNO" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "Restore window position for hidden apps" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "Desktop Action Menu" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "Small UI fixes" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "favicon fetching" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "Save and restore window position" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "Grab favorite icon" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "Fix:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "Grab website color" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "Russian (by Camellan)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "Lithuanian (by welaq)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "Option for Dark Theme" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "Grab 'theme-color' (if exists) from called website" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "Custom settings in .desktop" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "Set custom color" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "Desktop icon name" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "Set custom color for headerbar" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "Open application on clicking desktop notification" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "Copy current URI into clipboard" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "Open WebApp on single click instead double click" diff --git a/po/extra/en_CA.po b/po/extra/en_CA.po new file mode 100644 index 0000000..07c3aca --- /dev/null +++ b/po/extra/en_CA.po @@ -0,0 +1,236 @@ +# English translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "Webpin" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "Pin your websites on your desktop" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "internet;webapp;" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "com.github.artemanufrij.webpin" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "New Webapp" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "document-new-symbolic" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "A simple app to pin websites on the desktop" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "Webpin is a fork of Webby (by Erasmo Marín)." + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "Artem Anufrij" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "New:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "Theme switcher" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "Option for minimal UI" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "Improved:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "Cache choosed icon instead to reference it" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "Sort items inside app overview" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "Fixed:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "Custom icon was replaced by default one" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "Navigation buttons" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "Moved to Meson" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "Support for local .html files" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "Restore correct window size" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "Grabing page icon" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "Translation:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "Dutch (by Heimen Stoffels)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "Prepare for JUNO" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "Restore window position for hidden apps" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "Desktop Action Menu" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "Small UI fixes" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "favicon fetching" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "Save and restore window position" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "Grab favorite icon" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "Fix:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "Grab website color" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "Russian (by Camellan)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "Lithuanian (by welaq)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "Option for Dark Theme" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "Grab 'theme-color' (if exists) from called website" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "Custom settings in .desktop" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "Set custom color" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "Desktop icon name" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "Set custom color for headerbar" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "Open application on clicking desktop notification" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "Copy current URI into clipboard" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "Open WebApp on single click instead double click" diff --git a/po/extra/en_GB.po b/po/extra/en_GB.po new file mode 100644 index 0000000..99b1494 --- /dev/null +++ b/po/extra/en_GB.po @@ -0,0 +1,236 @@ +# English translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "Webpin" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "Pin your websites on your desktop" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "internet;webapp;" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "com.github.artemanufrij.webpin" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "New Webapp" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "document-new-symbolic" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "A simple app to pin websites on the desktop" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "Webpin is a fork of Webby (by Erasmo Marín)." + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "Artem Anufrij" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "New:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "Theme switcher" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "Option for minimal UI" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "Improved:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "Cache choosed icon instead to reference it" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "Sort items inside app overview" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "Fixed:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "Custom icon was replaced by default one" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "Navigation buttons" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "Moved to Meson" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "Support for local .html files" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "Restore correct window size" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "Grabing page icon" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "Translation:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "Dutch (by Heimen Stoffels)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "Prepare for JUNO" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "Restore window position for hidden apps" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "Desktop Action Menu" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "Small UI fixes" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "favicon fetching" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "Save and restore window position" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "Grab favorite icon" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "Fix:" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "Grab website color" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "Russian (by Camellan)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "Lithuanian (by welaq)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "Option for Dark Theme" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "Grab 'theme-color' (if exists) from called website" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "Custom settings in .desktop" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "Set custom color" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "Desktop icon name" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "Set custom color for headerbar" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "Open application on clicking desktop notification" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "Copy current URI into clipboard" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "Open WebApp on single click instead double click" diff --git a/po/extra/eo.po b/po/extra/eo.po new file mode 100644 index 0000000..258e3eb --- /dev/null +++ b/po/extra/eo.po @@ -0,0 +1,233 @@ +# Esperanto translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/es.po b/po/extra/es.po new file mode 100644 index 0000000..bb5548b --- /dev/null +++ b/po/extra/es.po @@ -0,0 +1,233 @@ +# Spanish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/et.po b/po/extra/et.po new file mode 100644 index 0000000..13b0558 --- /dev/null +++ b/po/extra/et.po @@ -0,0 +1,233 @@ +# Estonian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/eu.po b/po/extra/eu.po new file mode 100644 index 0000000..fb08364 --- /dev/null +++ b/po/extra/eu.po @@ -0,0 +1,232 @@ +# Basque translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/extra.pot b/po/extra/extra.pot new file mode 100644 index 0000000..050b074 --- /dev/null +++ b/po/extra/extra.pot @@ -0,0 +1,233 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/fa.po b/po/extra/fa.po new file mode 100644 index 0000000..9566120 --- /dev/null +++ b/po/extra/fa.po @@ -0,0 +1,232 @@ +# Persian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ff.po b/po/extra/ff.po new file mode 100644 index 0000000..0c705b0 --- /dev/null +++ b/po/extra/ff.po @@ -0,0 +1,232 @@ +# Fulah translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ff\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/fi.po b/po/extra/fi.po new file mode 100644 index 0000000..f5588a3 --- /dev/null +++ b/po/extra/fi.po @@ -0,0 +1,233 @@ +# Finnish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/fj.po b/po/extra/fj.po new file mode 100644 index 0000000..d110029 --- /dev/null +++ b/po/extra/fj.po @@ -0,0 +1,232 @@ +# Fijian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/fo.po b/po/extra/fo.po new file mode 100644 index 0000000..f7b82cc --- /dev/null +++ b/po/extra/fo.po @@ -0,0 +1,233 @@ +# Faroese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/fr.po b/po/extra/fr.po new file mode 100644 index 0000000..c56be7d --- /dev/null +++ b/po/extra/fr.po @@ -0,0 +1,239 @@ +# French translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# NathanBnm, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: NathanBnm\n" +"Language-Team: Français\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "Webpin" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "Épinglez vos sites Web sur votre bureau" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "internet;application Web;" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "com.github.artemanufrij.webpin" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "Nouvelle application Web" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "document-new-symbolic" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "Une simple application pour épingler vos sites Web sur votre bureau" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" +"Créez vos propres applications Web. Épinglez vos sites favoris dans le menu " +"des Applications ou dans le Dock comme une application de bureau classique." + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "Wepbin est inspiré de Webby (par Erasmo Marín)." + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "Artem Anufrij" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "Nouveau" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "Bouton de changement du thème" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "Option pour une interface minimale" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "Amélioration :" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "L'icône sélectionnée est mise en cache pour la référencer" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "Tri des éléments dans la vue d'ensemble de l'application" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "Correction :" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "L'icône personnalisée était remplacée par celle par défaut" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "Boutons de navigation" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "Passage à Meson" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "Prise en charge des fichiers HTML locaux" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "Restauration de la taille correcte de la fenêtre" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "Récupération de l'icône de la page" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "Traduction :" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "Néelandais (par Heimen Stoffels)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "Préparation pour JUNO" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" +"Restauration de la position de la fenêtre pour les applications masquées" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "Menu contextuel du lanceur" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "Petites corrections de l'interface" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" +"Navigation précédent/suivant avec les boutons de la souris (8/9) (Grâce à " +"Julian Raschke)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "Récupération de la favicon" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "Sauvegarde et restauration de la position de la fenêtre" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "Récupération de l'icône favorite" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "Correction :" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "Récupération de la couleur du site Web" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "Russe (par Camellan)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "Lituanien (par welaq)" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "Option pour le thème sombre" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "Récupération de « theme-color » (s'il existe) depuis les sites appelés" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "Paramètres personnalisés dans le fichier .desktop" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "Définissez une couleur personnalisée" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "Nom de l'icône pour le lanceur" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "Définissez une couleur personnalisée pour la barre de titre" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "Ouvrez l'application en cliquant sur les notifications du bureau" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "Copiez l'URI courant dans le presse-papiers" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" +"Ouvrez une application Web avec un simple clic au lieu d'un double-clic" diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po new file mode 100644 index 0000000..c6e8fcd --- /dev/null +++ b/po/extra/fr_CA.po @@ -0,0 +1,233 @@ +# French translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/fy.po b/po/extra/fy.po new file mode 100644 index 0000000..ca88523 --- /dev/null +++ b/po/extra/fy.po @@ -0,0 +1,232 @@ +# Western Frisian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ga.po b/po/extra/ga.po new file mode 100644 index 0000000..1b5f150 --- /dev/null +++ b/po/extra/ga.po @@ -0,0 +1,233 @@ +# Irish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/gd.po b/po/extra/gd.po new file mode 100644 index 0000000..8db916e --- /dev/null +++ b/po/extra/gd.po @@ -0,0 +1,232 @@ +# Scottish Gaelic translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/gl.po b/po/extra/gl.po new file mode 100644 index 0000000..ab68a32 --- /dev/null +++ b/po/extra/gl.po @@ -0,0 +1,232 @@ +# Galician translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/gn.po b/po/extra/gn.po new file mode 100644 index 0000000..60bd14f --- /dev/null +++ b/po/extra/gn.po @@ -0,0 +1,232 @@ +# Guarani translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/gu.po b/po/extra/gu.po new file mode 100644 index 0000000..37d8ec6 --- /dev/null +++ b/po/extra/gu.po @@ -0,0 +1,232 @@ +# Gujarati translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/gv.po b/po/extra/gv.po new file mode 100644 index 0000000..006b1db --- /dev/null +++ b/po/extra/gv.po @@ -0,0 +1,232 @@ +# Manx translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ha.po b/po/extra/ha.po new file mode 100644 index 0000000..b5e9055 --- /dev/null +++ b/po/extra/ha.po @@ -0,0 +1,232 @@ +# Hausa translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ha\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/he.po b/po/extra/he.po new file mode 100644 index 0000000..47b6a76 --- /dev/null +++ b/po/extra/he.po @@ -0,0 +1,233 @@ +# Hebrew translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/hi.po b/po/extra/hi.po new file mode 100644 index 0000000..7dec32c --- /dev/null +++ b/po/extra/hi.po @@ -0,0 +1,232 @@ +# Hindi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ho.po b/po/extra/ho.po new file mode 100644 index 0000000..4f4a69b --- /dev/null +++ b/po/extra/ho.po @@ -0,0 +1,232 @@ +# Hiri Motu translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ho\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/hr.po b/po/extra/hr.po new file mode 100644 index 0000000..7a4d196 --- /dev/null +++ b/po/extra/hr.po @@ -0,0 +1,234 @@ +# Croatian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hr\n" +"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" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ht.po b/po/extra/ht.po new file mode 100644 index 0000000..3181a11 --- /dev/null +++ b/po/extra/ht.po @@ -0,0 +1,232 @@ +# Haitian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ht\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/hu.po b/po/extra/hu.po new file mode 100644 index 0000000..689f221 --- /dev/null +++ b/po/extra/hu.po @@ -0,0 +1,233 @@ +# Hungarian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/hy.po b/po/extra/hy.po new file mode 100644 index 0000000..706f36d --- /dev/null +++ b/po/extra/hy.po @@ -0,0 +1,232 @@ +# Armenian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/hz.po b/po/extra/hz.po new file mode 100644 index 0000000..f3fdc72 --- /dev/null +++ b/po/extra/hz.po @@ -0,0 +1,232 @@ +# Herero translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ia.po b/po/extra/ia.po new file mode 100644 index 0000000..8409544 --- /dev/null +++ b/po/extra/ia.po @@ -0,0 +1,232 @@ +# Interlingua translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/id.po b/po/extra/id.po new file mode 100644 index 0000000..67dbee2 --- /dev/null +++ b/po/extra/id.po @@ -0,0 +1,232 @@ +# Indonesian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ie.po b/po/extra/ie.po new file mode 100644 index 0000000..5f00295 --- /dev/null +++ b/po/extra/ie.po @@ -0,0 +1,232 @@ +# Interlingue translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ie\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ig.po b/po/extra/ig.po new file mode 100644 index 0000000..8b0866a --- /dev/null +++ b/po/extra/ig.po @@ -0,0 +1,232 @@ +# Igbo translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ig\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ii.po b/po/extra/ii.po new file mode 100644 index 0000000..fe88bd3 --- /dev/null +++ b/po/extra/ii.po @@ -0,0 +1,232 @@ +# Sichuan Yi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ii\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ik.po b/po/extra/ik.po new file mode 100644 index 0000000..0959c97 --- /dev/null +++ b/po/extra/ik.po @@ -0,0 +1,232 @@ +# Inupiak translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ik\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/io.po b/po/extra/io.po new file mode 100644 index 0000000..5239032 --- /dev/null +++ b/po/extra/io.po @@ -0,0 +1,232 @@ +# Language io translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: io\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/is.po b/po/extra/is.po new file mode 100644 index 0000000..de0f67f --- /dev/null +++ b/po/extra/is.po @@ -0,0 +1,232 @@ +# Icelandic translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/it.po b/po/extra/it.po new file mode 100644 index 0000000..8685d60 --- /dev/null +++ b/po/extra/it.po @@ -0,0 +1,233 @@ +# Italian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/iu.po b/po/extra/iu.po new file mode 100644 index 0000000..91c0f75 --- /dev/null +++ b/po/extra/iu.po @@ -0,0 +1,232 @@ +# Inuktitut translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: iu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ja.po b/po/extra/ja.po new file mode 100644 index 0000000..ecfff1e --- /dev/null +++ b/po/extra/ja.po @@ -0,0 +1,233 @@ +# Japanese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/jv.po b/po/extra/jv.po new file mode 100644 index 0000000..81f8b22 --- /dev/null +++ b/po/extra/jv.po @@ -0,0 +1,232 @@ +# Javanese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: jv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ka.po b/po/extra/ka.po new file mode 100644 index 0000000..5819b67 --- /dev/null +++ b/po/extra/ka.po @@ -0,0 +1,232 @@ +# Georgian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/kg.po b/po/extra/kg.po new file mode 100644 index 0000000..a2546c1 --- /dev/null +++ b/po/extra/kg.po @@ -0,0 +1,232 @@ +# Kongo translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ki.po b/po/extra/ki.po new file mode 100644 index 0000000..d6b585b --- /dev/null +++ b/po/extra/ki.po @@ -0,0 +1,232 @@ +# Kikuyu translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ki\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/kj.po b/po/extra/kj.po new file mode 100644 index 0000000..09c1fcf --- /dev/null +++ b/po/extra/kj.po @@ -0,0 +1,232 @@ +# Kuanyama translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/kk.po b/po/extra/kk.po new file mode 100644 index 0000000..bef1358 --- /dev/null +++ b/po/extra/kk.po @@ -0,0 +1,232 @@ +# Kazakh translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/kl.po b/po/extra/kl.po new file mode 100644 index 0000000..8a2f5d7 --- /dev/null +++ b/po/extra/kl.po @@ -0,0 +1,232 @@ +# Kalaallisut translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/km.po b/po/extra/km.po new file mode 100644 index 0000000..81061cf --- /dev/null +++ b/po/extra/km.po @@ -0,0 +1,232 @@ +# Central Khmer translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/kn.po b/po/extra/kn.po new file mode 100644 index 0000000..a7002b0 --- /dev/null +++ b/po/extra/kn.po @@ -0,0 +1,232 @@ +# Kannada translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ko.po b/po/extra/ko.po new file mode 100644 index 0000000..1ab39de --- /dev/null +++ b/po/extra/ko.po @@ -0,0 +1,233 @@ +# Korean translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/kr.po b/po/extra/kr.po new file mode 100644 index 0000000..a5dd1f0 --- /dev/null +++ b/po/extra/kr.po @@ -0,0 +1,232 @@ +# Kanuri translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ks.po b/po/extra/ks.po new file mode 100644 index 0000000..38ebebd --- /dev/null +++ b/po/extra/ks.po @@ -0,0 +1,232 @@ +# Kashmiri translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ks\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ku.po b/po/extra/ku.po new file mode 100644 index 0000000..68cd30a --- /dev/null +++ b/po/extra/ku.po @@ -0,0 +1,232 @@ +# Kurdish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ku\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/kv.po b/po/extra/kv.po new file mode 100644 index 0000000..843af26 --- /dev/null +++ b/po/extra/kv.po @@ -0,0 +1,232 @@ +# Komi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/kw.po b/po/extra/kw.po new file mode 100644 index 0000000..04e2e24 --- /dev/null +++ b/po/extra/kw.po @@ -0,0 +1,232 @@ +# Cornish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ky.po b/po/extra/ky.po new file mode 100644 index 0000000..37d0b06 --- /dev/null +++ b/po/extra/ky.po @@ -0,0 +1,232 @@ +# Kirghiz translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/la.po b/po/extra/la.po new file mode 100644 index 0000000..32e88f8 --- /dev/null +++ b/po/extra/la.po @@ -0,0 +1,232 @@ +# Latin translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: la\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/lb.po b/po/extra/lb.po new file mode 100644 index 0000000..d429b7a --- /dev/null +++ b/po/extra/lb.po @@ -0,0 +1,232 @@ +# Letzeburgesch translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/lg.po b/po/extra/lg.po new file mode 100644 index 0000000..3de46ea --- /dev/null +++ b/po/extra/lg.po @@ -0,0 +1,232 @@ +# Ganda translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/li.po b/po/extra/li.po new file mode 100644 index 0000000..82b75c9 --- /dev/null +++ b/po/extra/li.po @@ -0,0 +1,232 @@ +# Limburgish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: li\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ln.po b/po/extra/ln.po new file mode 100644 index 0000000..dfb014a --- /dev/null +++ b/po/extra/ln.po @@ -0,0 +1,232 @@ +# Lingala translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ln\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/lo.po b/po/extra/lo.po new file mode 100644 index 0000000..869dcbb --- /dev/null +++ b/po/extra/lo.po @@ -0,0 +1,232 @@ +# Laotian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/lt.po b/po/extra/lt.po new file mode 100644 index 0000000..cb44289 --- /dev/null +++ b/po/extra/lt.po @@ -0,0 +1,234 @@ +# Lithuanian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lt\n" +"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" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "Prisegti interneto svetaines savo darbalaukyje" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/lu.po b/po/extra/lu.po new file mode 100644 index 0000000..21775fa --- /dev/null +++ b/po/extra/lu.po @@ -0,0 +1,232 @@ +# Luba-Katanga translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/lv.po b/po/extra/lv.po new file mode 100644 index 0000000..514772f --- /dev/null +++ b/po/extra/lv.po @@ -0,0 +1,234 @@ +# Latvian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lv\n" +"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 != 0 ? 1 : " +"2);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/meson.build b/po/extra/meson.build new file mode 100644 index 0000000..891039a --- /dev/null +++ b/po/extra/meson.build @@ -0,0 +1,7 @@ +i18n.gettext('extra', + args: [ + '--directory=' + meson.source_root(), + '--from-code=UTF-8' + ], + install: false +) \ No newline at end of file diff --git a/po/extra/mg.po b/po/extra/mg.po new file mode 100644 index 0000000..6d929bc --- /dev/null +++ b/po/extra/mg.po @@ -0,0 +1,232 @@ +# Malagasy translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/mh.po b/po/extra/mh.po new file mode 100644 index 0000000..7cadf25 --- /dev/null +++ b/po/extra/mh.po @@ -0,0 +1,232 @@ +# Marshallese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/mi.po b/po/extra/mi.po new file mode 100644 index 0000000..36ccc45 --- /dev/null +++ b/po/extra/mi.po @@ -0,0 +1,232 @@ +# Maori translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/mk.po b/po/extra/mk.po new file mode 100644 index 0000000..a80ea98 --- /dev/null +++ b/po/extra/mk.po @@ -0,0 +1,232 @@ +# Macedonian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ml.po b/po/extra/ml.po new file mode 100644 index 0000000..59f16e7 --- /dev/null +++ b/po/extra/ml.po @@ -0,0 +1,232 @@ +# Malayalam translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ml\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/mn.po b/po/extra/mn.po new file mode 100644 index 0000000..29bd27c --- /dev/null +++ b/po/extra/mn.po @@ -0,0 +1,232 @@ +# Mongolian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/mo.po b/po/extra/mo.po new file mode 100644 index 0000000..70c7e88 --- /dev/null +++ b/po/extra/mo.po @@ -0,0 +1,232 @@ +# Moldavian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/mr.po b/po/extra/mr.po new file mode 100644 index 0000000..39b72c6 --- /dev/null +++ b/po/extra/mr.po @@ -0,0 +1,232 @@ +# Marathi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ms.po b/po/extra/ms.po new file mode 100644 index 0000000..8efb4d1 --- /dev/null +++ b/po/extra/ms.po @@ -0,0 +1,232 @@ +# Malay translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/mt.po b/po/extra/mt.po new file mode 100644 index 0000000..1ef5239 --- /dev/null +++ b/po/extra/mt.po @@ -0,0 +1,232 @@ +# Maltese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/my.po b/po/extra/my.po new file mode 100644 index 0000000..c37a3ce --- /dev/null +++ b/po/extra/my.po @@ -0,0 +1,232 @@ +# Burmese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: my\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/na.po b/po/extra/na.po new file mode 100644 index 0000000..8b0bf9f --- /dev/null +++ b/po/extra/na.po @@ -0,0 +1,232 @@ +# Nauru translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: na\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/nb.po b/po/extra/nb.po new file mode 100644 index 0000000..c0b8afb --- /dev/null +++ b/po/extra/nb.po @@ -0,0 +1,233 @@ +# Norwegian Bokmal translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/nd.po b/po/extra/nd.po new file mode 100644 index 0000000..6bc1e4e --- /dev/null +++ b/po/extra/nd.po @@ -0,0 +1,232 @@ +# North Ndebele translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ne.po b/po/extra/ne.po new file mode 100644 index 0000000..9418919 --- /dev/null +++ b/po/extra/ne.po @@ -0,0 +1,232 @@ +# Nepali translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ng.po b/po/extra/ng.po new file mode 100644 index 0000000..749d524 --- /dev/null +++ b/po/extra/ng.po @@ -0,0 +1,232 @@ +# Ndonga translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ng\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/nl.po b/po/extra/nl.po new file mode 100644 index 0000000..43fd7b7 --- /dev/null +++ b/po/extra/nl.po @@ -0,0 +1,233 @@ +# Dutch translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/nn.po b/po/extra/nn.po new file mode 100644 index 0000000..9dec9cd --- /dev/null +++ b/po/extra/nn.po @@ -0,0 +1,233 @@ +# Norwegian Nynorsk translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/nr.po b/po/extra/nr.po new file mode 100644 index 0000000..62e4ee9 --- /dev/null +++ b/po/extra/nr.po @@ -0,0 +1,232 @@ +# South Ndebele translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/nv.po b/po/extra/nv.po new file mode 100644 index 0000000..6b21261 --- /dev/null +++ b/po/extra/nv.po @@ -0,0 +1,232 @@ +# Navajo translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ny.po b/po/extra/ny.po new file mode 100644 index 0000000..04d9588 --- /dev/null +++ b/po/extra/ny.po @@ -0,0 +1,232 @@ +# Nyanja translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ny\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/oc.po b/po/extra/oc.po new file mode 100644 index 0000000..000406d --- /dev/null +++ b/po/extra/oc.po @@ -0,0 +1,232 @@ +# Occitan translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/oj.po b/po/extra/oj.po new file mode 100644 index 0000000..229f4a3 --- /dev/null +++ b/po/extra/oj.po @@ -0,0 +1,232 @@ +# Ojibwa translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oj\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/om.po b/po/extra/om.po new file mode 100644 index 0000000..f050ca6 --- /dev/null +++ b/po/extra/om.po @@ -0,0 +1,232 @@ +# (Afan) Oromo translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: om\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/or.po b/po/extra/or.po new file mode 100644 index 0000000..d39655c --- /dev/null +++ b/po/extra/or.po @@ -0,0 +1,232 @@ +# Oriya translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: or\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/os.po b/po/extra/os.po new file mode 100644 index 0000000..1448e2a --- /dev/null +++ b/po/extra/os.po @@ -0,0 +1,232 @@ +# Ossetian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: os\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/pa.po b/po/extra/pa.po new file mode 100644 index 0000000..0503216 --- /dev/null +++ b/po/extra/pa.po @@ -0,0 +1,232 @@ +# Punjabi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/pi.po b/po/extra/pi.po new file mode 100644 index 0000000..f45a5e1 --- /dev/null +++ b/po/extra/pi.po @@ -0,0 +1,232 @@ +# Pali translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/pl.po b/po/extra/pl.po new file mode 100644 index 0000000..c8451a1 --- /dev/null +++ b/po/extra/pl.po @@ -0,0 +1,234 @@ +# Polish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ps.po b/po/extra/ps.po new file mode 100644 index 0000000..f20eda6 --- /dev/null +++ b/po/extra/ps.po @@ -0,0 +1,232 @@ +# Pashto translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ps\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/pt.po b/po/extra/pt.po new file mode 100644 index 0000000..a58aca0 --- /dev/null +++ b/po/extra/pt.po @@ -0,0 +1,233 @@ +# Portuguese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po new file mode 100644 index 0000000..32586cc --- /dev/null +++ b/po/extra/pt_BR.po @@ -0,0 +1,233 @@ +# Portuguese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/qu.po b/po/extra/qu.po new file mode 100644 index 0000000..ebeee31 --- /dev/null +++ b/po/extra/qu.po @@ -0,0 +1,232 @@ +# Quechua translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: qu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/rm.po b/po/extra/rm.po new file mode 100644 index 0000000..52c94e9 --- /dev/null +++ b/po/extra/rm.po @@ -0,0 +1,232 @@ +# Romansh translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/rn.po b/po/extra/rn.po new file mode 100644 index 0000000..e791e6d --- /dev/null +++ b/po/extra/rn.po @@ -0,0 +1,232 @@ +# Kirundi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ro.po b/po/extra/ro.po new file mode 100644 index 0000000..df5045c --- /dev/null +++ b/po/extra/ro.po @@ -0,0 +1,234 @@ +# Romanian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ru.po b/po/extra/ru.po new file mode 100644 index 0000000..c1f950d --- /dev/null +++ b/po/extra/ru.po @@ -0,0 +1,234 @@ +# Russian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ru\n" +"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" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/rue.po b/po/extra/rue.po new file mode 100644 index 0000000..7f4c458 --- /dev/null +++ b/po/extra/rue.po @@ -0,0 +1,232 @@ +# Language rue translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rue\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/rw.po b/po/extra/rw.po new file mode 100644 index 0000000..3a3dee1 --- /dev/null +++ b/po/extra/rw.po @@ -0,0 +1,232 @@ +# Kinyarwanda translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sa.po b/po/extra/sa.po new file mode 100644 index 0000000..ae63a10 --- /dev/null +++ b/po/extra/sa.po @@ -0,0 +1,232 @@ +# Sanskrit translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sc.po b/po/extra/sc.po new file mode 100644 index 0000000..b3b7c18 --- /dev/null +++ b/po/extra/sc.po @@ -0,0 +1,232 @@ +# Sardinian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sd.po b/po/extra/sd.po new file mode 100644 index 0000000..0f692a3 --- /dev/null +++ b/po/extra/sd.po @@ -0,0 +1,232 @@ +# Sindhi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/se.po b/po/extra/se.po new file mode 100644 index 0000000..71ed11a --- /dev/null +++ b/po/extra/se.po @@ -0,0 +1,232 @@ +# Northern Sami translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: se\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sg.po b/po/extra/sg.po new file mode 100644 index 0000000..0f93df5 --- /dev/null +++ b/po/extra/sg.po @@ -0,0 +1,232 @@ +# Sango translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/si.po b/po/extra/si.po new file mode 100644 index 0000000..f36d22d --- /dev/null +++ b/po/extra/si.po @@ -0,0 +1,232 @@ +# Sinhala translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: si\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sk.po b/po/extra/sk.po new file mode 100644 index 0000000..baaa7d3 --- /dev/null +++ b/po/extra/sk.po @@ -0,0 +1,233 @@ +# Slovak translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sl.po b/po/extra/sl.po new file mode 100644 index 0000000..8eea7cf --- /dev/null +++ b/po/extra/sl.po @@ -0,0 +1,234 @@ +# Slovenian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sm.po b/po/extra/sm.po new file mode 100644 index 0000000..4505639 --- /dev/null +++ b/po/extra/sm.po @@ -0,0 +1,232 @@ +# Samoan translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sm\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sma.po b/po/extra/sma.po new file mode 100644 index 0000000..404788c --- /dev/null +++ b/po/extra/sma.po @@ -0,0 +1,232 @@ +# Southern Sami translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sma\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sn.po b/po/extra/sn.po new file mode 100644 index 0000000..f9c0f99 --- /dev/null +++ b/po/extra/sn.po @@ -0,0 +1,232 @@ +# Shona translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/so.po b/po/extra/so.po new file mode 100644 index 0000000..aefcfcf --- /dev/null +++ b/po/extra/so.po @@ -0,0 +1,232 @@ +# Somali translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: so\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sq.po b/po/extra/sq.po new file mode 100644 index 0000000..60dab34 --- /dev/null +++ b/po/extra/sq.po @@ -0,0 +1,232 @@ +# Albanian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sr.po b/po/extra/sr.po new file mode 100644 index 0000000..8777c46 --- /dev/null +++ b/po/extra/sr.po @@ -0,0 +1,234 @@ +# Serbian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sr\n" +"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" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ss.po b/po/extra/ss.po new file mode 100644 index 0000000..884b30b --- /dev/null +++ b/po/extra/ss.po @@ -0,0 +1,232 @@ +# Siswati translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ss\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/st.po b/po/extra/st.po new file mode 100644 index 0000000..f619b05 --- /dev/null +++ b/po/extra/st.po @@ -0,0 +1,232 @@ +# Sesotho translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: st\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/su.po b/po/extra/su.po new file mode 100644 index 0000000..9eb6ce6 --- /dev/null +++ b/po/extra/su.po @@ -0,0 +1,232 @@ +# Sundanese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: su\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sv.po b/po/extra/sv.po new file mode 100644 index 0000000..75ba87a --- /dev/null +++ b/po/extra/sv.po @@ -0,0 +1,233 @@ +# Swedish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/sw.po b/po/extra/sw.po new file mode 100644 index 0000000..ed0cd3e --- /dev/null +++ b/po/extra/sw.po @@ -0,0 +1,232 @@ +# Swahili translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ta.po b/po/extra/ta.po new file mode 100644 index 0000000..a77a480 --- /dev/null +++ b/po/extra/ta.po @@ -0,0 +1,232 @@ +# Tamil translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/te.po b/po/extra/te.po new file mode 100644 index 0000000..14d9181 --- /dev/null +++ b/po/extra/te.po @@ -0,0 +1,232 @@ +# Telugu translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: te\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/tg.po b/po/extra/tg.po new file mode 100644 index 0000000..6602cdb --- /dev/null +++ b/po/extra/tg.po @@ -0,0 +1,232 @@ +# Tajik translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/th.po b/po/extra/th.po new file mode 100644 index 0000000..06c1817 --- /dev/null +++ b/po/extra/th.po @@ -0,0 +1,232 @@ +# Thai translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ti.po b/po/extra/ti.po new file mode 100644 index 0000000..44fbf50 --- /dev/null +++ b/po/extra/ti.po @@ -0,0 +1,232 @@ +# Tigrinya translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ti\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/tk.po b/po/extra/tk.po new file mode 100644 index 0000000..a4c5d10 --- /dev/null +++ b/po/extra/tk.po @@ -0,0 +1,232 @@ +# Turkmen translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/tl.po b/po/extra/tl.po new file mode 100644 index 0000000..6162e64 --- /dev/null +++ b/po/extra/tl.po @@ -0,0 +1,232 @@ +# Tagalog translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/tn.po b/po/extra/tn.po new file mode 100644 index 0000000..d8a3b64 --- /dev/null +++ b/po/extra/tn.po @@ -0,0 +1,232 @@ +# Setswana translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/to.po b/po/extra/to.po new file mode 100644 index 0000000..556b70e --- /dev/null +++ b/po/extra/to.po @@ -0,0 +1,232 @@ +# Tonga translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: to\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/tr.po b/po/extra/tr.po new file mode 100644 index 0000000..c1bc6cc --- /dev/null +++ b/po/extra/tr.po @@ -0,0 +1,233 @@ +# Turkish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ts.po b/po/extra/ts.po new file mode 100644 index 0000000..1f28077 --- /dev/null +++ b/po/extra/ts.po @@ -0,0 +1,232 @@ +# Tsonga translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ts\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/tt.po b/po/extra/tt.po new file mode 100644 index 0000000..7ed5572 --- /dev/null +++ b/po/extra/tt.po @@ -0,0 +1,232 @@ +# Tatar translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/tw.po b/po/extra/tw.po new file mode 100644 index 0000000..c740c76 --- /dev/null +++ b/po/extra/tw.po @@ -0,0 +1,232 @@ +# Twi translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ty.po b/po/extra/ty.po new file mode 100644 index 0000000..2efab08 --- /dev/null +++ b/po/extra/ty.po @@ -0,0 +1,232 @@ +# Tahitian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ty\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ug.po b/po/extra/ug.po new file mode 100644 index 0000000..76a3a32 --- /dev/null +++ b/po/extra/ug.po @@ -0,0 +1,232 @@ +# Uighur translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ug\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/uk.po b/po/extra/uk.po new file mode 100644 index 0000000..09a9934 --- /dev/null +++ b/po/extra/uk.po @@ -0,0 +1,234 @@ +# Ukrainian translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uk\n" +"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" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ur.po b/po/extra/ur.po new file mode 100644 index 0000000..8022172 --- /dev/null +++ b/po/extra/ur.po @@ -0,0 +1,232 @@ +# Urdu translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ur\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/uz.po b/po/extra/uz.po new file mode 100644 index 0000000..7974644 --- /dev/null +++ b/po/extra/uz.po @@ -0,0 +1,232 @@ +# Uzbek translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/ve.po b/po/extra/ve.po new file mode 100644 index 0000000..c4684c9 --- /dev/null +++ b/po/extra/ve.po @@ -0,0 +1,232 @@ +# Venda translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ve\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/vi.po b/po/extra/vi.po new file mode 100644 index 0000000..99d5656 --- /dev/null +++ b/po/extra/vi.po @@ -0,0 +1,233 @@ +# Vietnamese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/vo.po b/po/extra/vo.po new file mode 100644 index 0000000..4e3fc0c --- /dev/null +++ b/po/extra/vo.po @@ -0,0 +1,232 @@ +# Volapuk translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/wa.po b/po/extra/wa.po new file mode 100644 index 0000000..d190cf7 --- /dev/null +++ b/po/extra/wa.po @@ -0,0 +1,232 @@ +# Language wa translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/wo.po b/po/extra/wo.po new file mode 100644 index 0000000..913166b --- /dev/null +++ b/po/extra/wo.po @@ -0,0 +1,232 @@ +# Wolof translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/xh.po b/po/extra/xh.po new file mode 100644 index 0000000..09e452e --- /dev/null +++ b/po/extra/xh.po @@ -0,0 +1,232 @@ +# Xhosa translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: xh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/yi.po b/po/extra/yi.po new file mode 100644 index 0000000..76eae75 --- /dev/null +++ b/po/extra/yi.po @@ -0,0 +1,232 @@ +# Yiddish translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: yi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/yo.po b/po/extra/yo.po new file mode 100644 index 0000000..3fecfd2 --- /dev/null +++ b/po/extra/yo.po @@ -0,0 +1,232 @@ +# Yoruba translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: yo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/za.po b/po/extra/za.po new file mode 100644 index 0000000..1861f76 --- /dev/null +++ b/po/extra/za.po @@ -0,0 +1,232 @@ +# Zhuang translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: za\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/zh.po b/po/extra/zh.po new file mode 100644 index 0000000..68c6427 --- /dev/null +++ b/po/extra/zh.po @@ -0,0 +1,232 @@ +# Chinese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/zh_HK.po b/po/extra/zh_HK.po new file mode 100644 index 0000000..9417857 --- /dev/null +++ b/po/extra/zh_HK.po @@ -0,0 +1,232 @@ +# Chinese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/zh_TW.po b/po/extra/zh_TW.po new file mode 100644 index 0000000..9f4a15a --- /dev/null +++ b/po/extra/zh_TW.po @@ -0,0 +1,232 @@ +# Chinese translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/extra/zu.po b/po/extra/zu.po new file mode 100644 index 0000000..a690f58 --- /dev/null +++ b/po/extra/zu.po @@ -0,0 +1,232 @@ +# Zulu translations for extra package. +# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# Automatically generated, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-04-17 19:56+0200\n" +"PO-Revision-Date: 2019-04-17 19:17+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/com.github.artemanufrij.webpin.desktop.in:3 +#: data/com.github.artemanufrij.webpin.desktop.in:4 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:7 +msgid "Webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:5 +msgid "Pin your websites on your desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:6 +msgid "internet;webapp;" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:8 +msgid "com.github.artemanufrij.webpin" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:16 +msgid "New Webapp" +msgstr "" + +#: data/com.github.artemanufrij.webpin.desktop.in:17 +msgid "document-new-symbolic" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:8 +msgid "A simple app to pin websites on the desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:10 +msgid "" +"Create your own WebApps. Pin your any favorite website on Applications Menu " +"or Plank like a regular desktop app." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:11 +msgid "Webpin is a fork of Webby (by Erasmo Marín)." +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:22 +msgid "Artem Anufrij" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:38 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:51 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:63 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:71 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:111 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:123 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:145 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:202 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:218 +msgid "New:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:40 +msgid "Theme switcher" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:41 +msgid "Option for minimal UI" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:43 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:102 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:115 +msgid "Improved:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:45 +msgid "Cache choosed icon instead to reference it" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:53 +msgid "Sort items inside app overview" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:55 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:76 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:94 +msgid "Fixed:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:57 +msgid "Custom icon was replaced by default one" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:65 +msgid "Navigation buttons" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:73 +msgid "Moved to Meson" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:74 +msgid "Support for local .html files" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:78 +msgid "Restore correct window size" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:79 +msgid "Grabing page icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:81 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:136 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:210 +msgid "Translation:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:83 +msgid "Dutch (by Heimen Stoffels)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:88 +msgid "Prepare for JUNO" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:96 +msgid "Restore window position for hidden apps" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:104 +msgid "Desktop Action Menu" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:105 +msgid "Small UI fixes" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:113 +msgid "" +"back/forward navigation by mouse buttons (8/9) (Thanks to Julian Raschke)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:117 +msgid "favicon fetching" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:125 +msgid "Save and restore window position" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:126 +msgid "Grab favorite icon" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:128 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:154 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:162 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:170 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:178 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:186 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:194 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:206 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:222 +msgid "Fix:" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:130 +msgid "Grab website color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:138 +msgid "Russian (by Camellan)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:139 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:212 +msgid "Lithuanian (by welaq)" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:147 +msgid "Option for Dark Theme" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:148 +msgid "Grab 'theme-color' (if exists) from called website" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:156 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:164 +msgid "Custom settings in .desktop" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:172 +msgid "Set custom color" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:180 +msgid "Desktop icon name" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:188 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:196 +#: data/com.github.artemanufrij.webpin.appdata.xml.in:204 +msgid "Set custom color for headerbar" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:208 +msgid "Open application on clicking desktop notification" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:220 +msgid "Copy current URI into clipboard" +msgstr "" + +#: data/com.github.artemanufrij.webpin.appdata.xml.in:224 +msgid "Open WebApp on single click instead double click" +msgstr "" diff --git a/po/fa.po b/po/fa.po index 483a928..ffd2f55 100644 --- a/po/fa.po +++ b/po/fa.po @@ -1,9 +1,20 @@ +# Persian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ff.po b/po/ff.po index 483a928..3a5d73e 100644 --- a/po/ff.po +++ b/po/ff.po @@ -1,9 +1,20 @@ +# Fulah translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ff\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/fi.po b/po/fi.po index 92b6760..569a51b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,10 +1,21 @@ +# Finnish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/fj.po b/po/fj.po index 483a928..962e958 100644 --- a/po/fj.po +++ b/po/fj.po @@ -1,9 +1,20 @@ +# Fijian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fj\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/fo.po b/po/fo.po index 92b6760..6540479 100644 --- a/po/fo.po +++ b/po/fo.po @@ -1,10 +1,21 @@ +# Faroese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/fr.po b/po/fr.po index 06e61e3..7760736 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,144 +1,171 @@ +# French translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# NathanBnm, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: NathanBnm\n" +"Language-Team: Français\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n>1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" -msgstr "" +msgstr "Supprimer l'application Web" #: src/Widgets/WebItem.vala:131 msgid "Edit Webapp Properties" -msgstr "" +msgstr "Modifier les propriétés de l'application Web" #: src/Widgets/Views/Editor.vala:84 msgid "Create a new web app" -msgstr "" +msgstr "Créer une nouvelle application Web" #: src/Widgets/Views/Editor.vala:92 msgid "Application name" -msgstr "" +msgstr "Nom de l'application" #: src/Widgets/Views/Editor.vala:96 msgid "https://myapp.domain or file:///my/local/file" -msgstr "" +msgstr "https://monapp.domaine ou file:///mon/fichier/local" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" -msgstr "" +msgstr "Nom de l'icône" #: src/Widgets/Views/Editor.vala:108 msgid "or" -msgstr "" +msgstr "ou" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "" +msgid "Set from file…" +msgstr "Définir à partir d'un fichier…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" -msgstr "" +msgstr "Enregistrer les cookies" #: src/Widgets/Views/Editor.vala:130 msgid "Save login information" -msgstr "" +msgstr "Enregistrer les informations de connexion" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" -msgstr "" +msgstr "Exécuter en arrière-plan" #: src/Widgets/Views/Editor.vala:134 msgid "Use minimal UI" -msgstr "" +msgstr "Utiliser l'interface minimale" #: src/Widgets/Views/Editor.vala:159 msgid "Save app" -msgstr "" +msgstr "Enregistrer l'application" #: src/Widgets/Views/Editor.vala:182 msgid "url must start with http:// or https:// or file:///" -msgstr "" +msgstr "L'URL doit commencer par http:// ou https:// ou file:///" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" -msgstr "" +msgstr "Cette application existe déjà" #: src/Widgets/Views/Editor.vala:428 src/Services/DesktopFilesManager.vala:90 msgid "Images" -msgstr "" +msgstr "Images" + +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "Choisir l'icône" #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" -msgstr "" +msgstr "Annuler" #: src/Widgets/Views/Editor.vala:434 msgid "Open" -msgstr "" +msgstr "Ouvrir" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" -msgstr "" +msgstr "Ouvrir la requête dans une application externe…" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "Chargement…" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" -msgstr "" +msgstr "Ouvrir %s" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" -msgstr "" +msgstr "Retour" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" -msgstr "" +msgstr "Accueil" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" -msgstr "" +msgstr "Suivant" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" -msgstr "" +msgstr "Recharger" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" -msgstr "" +msgstr "Copier l'URL dans le presse-papiers" #: src/Services/DesktopFilesManager.vala:84 msgid "Choose an image…" -msgstr "" +msgstr "Choisir une image…" #: src/Services/DesktopFilesManager.vala:86 msgid "_Cancel" -msgstr "" +msgstr "_Annuler" #: src/Services/DesktopFilesManager.vala:87 msgid "_Open" -msgstr "" +msgstr "_Ouvrir" #: src/MainWindow.vala:62 msgid "Applications" -msgstr "" +msgstr "Applications" #: src/MainWindow.vala:69 msgid "Add a new Web App" -msgstr "" +msgstr "Ajouter une nouvelle application Web" #: src/MainWindow.vala:74 msgid "No Web Apps Available" -msgstr "" +msgstr "Pas d'applications Web disponibles" #: src/MainWindow.vala:74 msgid "Manage your web apps." -msgstr "" +msgstr "Gérez vos applications Web." #: src/MainWindow.vala:75 msgid "Create App" -msgstr "" +msgstr "Créer une application" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" -msgstr "" +msgstr "Créez une nouvelle aplication Web avec Webpin" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "Thème clair" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "Thème sombre" diff --git a/po/fr_CA.po b/po/fr_CA.po index 06e61e3..c5c0c74 100644 --- a/po/fr_CA.po +++ b/po/fr_CA.po @@ -1,10 +1,21 @@ +# French translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n>1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/fy.po b/po/fy.po index 483a928..6b773b7 100644 --- a/po/fy.po +++ b/po/fy.po @@ -1,9 +1,20 @@ +# Western Frisian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ga.po b/po/ga.po index 483a928..67ef36b 100644 --- a/po/ga.po +++ b/po/ga.po @@ -1,9 +1,21 @@ +# Irish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/gd.po b/po/gd.po index 483a928..b51c8a5 100644 --- a/po/gd.po +++ b/po/gd.po @@ -1,9 +1,20 @@ +# Scottish Gaelic translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/gl.po b/po/gl.po index 45d16f7..113ab92 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,22 +1,20 @@ -# Galician translation for webby-browser -# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 -# This file is distributed under the same license as the webby-browser package. -# FIRST AUTHOR , 2015. +# Galician translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Miguel Anxo Bouzada , 2019. # msgid "" msgstr "" -"Project-Id-Version: webby-browser\n" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" -"PO-Revision-Date: 2015-03-11 07:29+0000\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-03-24 00:16+0000\n" -"X-Generator: Launchpad (build 17413)\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -27,18 +25,16 @@ msgid "Edit Webapp Properties" msgstr "" #: src/Widgets/Views/Editor.vala:84 -#, fuzzy msgid "Create a new web app" -msgstr "Crear unha nova aplicación web con Webby" +msgstr "" #: src/Widgets/Views/Editor.vala:92 msgid "Application name" msgstr "Nome da aplicación" #: src/Widgets/Views/Editor.vala:96 -#, fuzzy msgid "https://myapp.domain or file:///my/local/file" -msgstr "https://amiñapp.dominio" +msgstr "https://amiñapp.dominio ou file:///my/local/file" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" @@ -49,8 +45,8 @@ msgid "or" msgstr "ou" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "Estabelecer desde un ficheiro..." +msgid "Set from file…" +msgstr "Estabelecer desde un ficheiro…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" @@ -60,7 +56,7 @@ msgstr "Gardar as cookies" msgid "Save login information" msgstr "Gardar a información da sesión" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,14 +65,12 @@ msgid "Use minimal UI" msgstr "" #: src/Widgets/Views/Editor.vala:159 -#, fuzzy msgid "Save app" -msgstr "Crear a aplicación" +msgstr "" #: src/Widgets/Views/Editor.vala:182 -#, fuzzy msgid "url must start with http:// or https:// or file:///" -msgstr "O URL debe comezar con http:// ou https://" +msgstr "O URL debe comezar con http:// ou https:// ou file:///" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" @@ -86,6 +80,10 @@ msgstr "Xa existe a aplicación" msgid "Images" msgstr "Imaxes" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "Carcelar" @@ -94,32 +92,36 @@ msgstr "Carcelar" msgid "Open" msgstr "Abrir" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 -#, fuzzy, c-format -msgid "Open %s" -msgstr "Abrir" +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:98 +#, c-format +msgid "Open %s" +msgstr "Abrir %s" + +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -128,14 +130,12 @@ msgid "Choose an image…" msgstr "" #: src/Services/DesktopFilesManager.vala:86 -#, fuzzy msgid "_Cancel" -msgstr "Carcelar" +msgstr "_Carcelar" #: src/Services/DesktopFilesManager.vala:87 -#, fuzzy msgid "_Open" -msgstr "Abrir" +msgstr "_Abrir" #: src/MainWindow.vala:62 msgid "Applications" @@ -154,23 +154,17 @@ msgid "Manage your web apps." msgstr "" #: src/MainWindow.vala:75 -#, fuzzy msgid "Create App" -msgstr "Crear a aplicación" +msgstr "" #: src/MainWindow.vala:75 -#, fuzzy msgid "Create a new web app with Webpin" -msgstr "Crear unha nova aplicación web con Webby" +msgstr "" -#~ msgid "Remove Application" -#~ msgstr "Retirar a aplicación" +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" -#~ msgid "Accept" -#~ msgstr "Aceptar" - -#~ msgid "App created" -#~ msgstr "Creouse a aplicación" - -#~ msgid "The application shortcut was successfully created" -#~ msgstr "Creouse satisfactoriamente o atallo á aplicación" +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/gn.po b/po/gn.po index 483a928..3fff85a 100644 --- a/po/gn.po +++ b/po/gn.po @@ -1,9 +1,20 @@ +# Guarani translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/gu.po b/po/gu.po index 483a928..3d71c57 100644 --- a/po/gu.po +++ b/po/gu.po @@ -1,9 +1,20 @@ +# Gujarati translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/gv.po b/po/gv.po index 483a928..19725b7 100644 --- a/po/gv.po +++ b/po/gv.po @@ -1,9 +1,20 @@ +# Manx translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ha.po b/po/ha.po index 483a928..39388eb 100644 --- a/po/ha.po +++ b/po/ha.po @@ -1,9 +1,20 @@ +# Hausa translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ha\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/he.po b/po/he.po index 92b6760..d624465 100644 --- a/po/he.po +++ b/po/he.po @@ -1,10 +1,21 @@ +# Hebrew translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/hi.po b/po/hi.po index 483a928..da28555 100644 --- a/po/hi.po +++ b/po/hi.po @@ -1,9 +1,20 @@ +# Hindi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ho.po b/po/ho.po index 483a928..866e38c 100644 --- a/po/ho.po +++ b/po/ho.po @@ -1,9 +1,20 @@ +# Hiri Motu translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ho\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/hr.po b/po/hr.po index ae460b3..77a19df 100644 --- a/po/hr.po +++ b/po/hr.po @@ -1,11 +1,22 @@ +# Croatian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" +"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" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -36,7 +47,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -47,7 +58,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -71,6 +82,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -79,32 +94,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -143,3 +162,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ht.po b/po/ht.po index 483a928..4f1a5f2 100644 --- a/po/ht.po +++ b/po/ht.po @@ -1,9 +1,20 @@ +# Haitian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ht\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/hu.po b/po/hu.po index 92b6760..198f261 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1,10 +1,21 @@ +# Hungarian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/hy.po b/po/hy.po index 483a928..8bec5a6 100644 --- a/po/hy.po +++ b/po/hy.po @@ -1,9 +1,20 @@ +# Armenian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/hz.po b/po/hz.po index 483a928..964b80e 100644 --- a/po/hz.po +++ b/po/hz.po @@ -1,9 +1,20 @@ +# Herero translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ia.po b/po/ia.po index 483a928..cf3dbcc 100644 --- a/po/ia.po +++ b/po/ia.po @@ -1,9 +1,20 @@ +# Interlingua translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/id.po b/po/id.po index 483a928..0ee609d 100644 --- a/po/id.po +++ b/po/id.po @@ -1,9 +1,20 @@ +# Indonesian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ie.po b/po/ie.po index 483a928..8b729bd 100644 --- a/po/ie.po +++ b/po/ie.po @@ -1,9 +1,20 @@ +# Interlingue translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ie\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ig.po b/po/ig.po index 483a928..aa69546 100644 --- a/po/ig.po +++ b/po/ig.po @@ -1,9 +1,20 @@ +# Igbo translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ig\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ii.po b/po/ii.po index 483a928..900b7c6 100644 --- a/po/ii.po +++ b/po/ii.po @@ -1,9 +1,20 @@ +# Sichuan Yi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ii\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ik.po b/po/ik.po index 483a928..661f413 100644 --- a/po/ik.po +++ b/po/ik.po @@ -1,9 +1,20 @@ +# Inupiak translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ik\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/io.po b/po/io.po index 483a928..f9ec5d2 100644 --- a/po/io.po +++ b/po/io.po @@ -1,9 +1,20 @@ +# Language io translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: io\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/is.po b/po/is.po index 483a928..d75335e 100644 --- a/po/is.po +++ b/po/is.po @@ -1,9 +1,20 @@ +# Icelandic translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/it.po b/po/it.po index 92b6760..69df814 100644 --- a/po/it.po +++ b/po/it.po @@ -1,10 +1,21 @@ +# Italian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/iu.po b/po/iu.po index 483a928..3c3df0e 100644 --- a/po/iu.po +++ b/po/iu.po @@ -1,9 +1,20 @@ +# Inuktitut translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: iu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ja.po b/po/ja.po index 1c6e5cc..68d4db8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1,10 +1,21 @@ +# Japanese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/jv.po b/po/jv.po index 483a928..383b821 100644 --- a/po/jv.po +++ b/po/jv.po @@ -1,9 +1,20 @@ +# Javanese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: jv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ka.po b/po/ka.po index 483a928..bcccdd5 100644 --- a/po/ka.po +++ b/po/ka.po @@ -1,9 +1,20 @@ +# Georgian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/kg.po b/po/kg.po index 483a928..a9bf9d8 100644 --- a/po/kg.po +++ b/po/kg.po @@ -1,9 +1,20 @@ +# Kongo translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ki.po b/po/ki.po index 483a928..64daa6b 100644 --- a/po/ki.po +++ b/po/ki.po @@ -1,9 +1,20 @@ +# Kikuyu translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ki\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/kj.po b/po/kj.po index 483a928..b7a5290 100644 --- a/po/kj.po +++ b/po/kj.po @@ -1,9 +1,20 @@ +# Kuanyama translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kj\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/kk.po b/po/kk.po index 483a928..f9b8c5f 100644 --- a/po/kk.po +++ b/po/kk.po @@ -1,9 +1,20 @@ +# Kazakh translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/kl.po b/po/kl.po index 483a928..127a63b 100644 --- a/po/kl.po +++ b/po/kl.po @@ -1,9 +1,20 @@ +# Kalaallisut translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/km.po b/po/km.po index 483a928..bfb5d99 100644 --- a/po/km.po +++ b/po/km.po @@ -1,9 +1,20 @@ +# Central Khmer translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: km\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/kn.po b/po/kn.po index 483a928..f58efa5 100644 --- a/po/kn.po +++ b/po/kn.po @@ -1,9 +1,20 @@ +# Kannada translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ko.po b/po/ko.po index 1c6e5cc..2080d64 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,10 +1,21 @@ +# Korean translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/kr.po b/po/kr.po index 483a928..c42807f 100644 --- a/po/kr.po +++ b/po/kr.po @@ -1,9 +1,20 @@ +# Kanuri translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ks.po b/po/ks.po index 483a928..03ac8db 100644 --- a/po/ks.po +++ b/po/ks.po @@ -1,9 +1,20 @@ +# Kashmiri translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ks\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ku.po b/po/ku.po index 483a928..d585682 100644 --- a/po/ku.po +++ b/po/ku.po @@ -1,9 +1,20 @@ +# Kurdish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ku\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/kv.po b/po/kv.po index 483a928..00248e0 100644 --- a/po/kv.po +++ b/po/kv.po @@ -1,9 +1,20 @@ +# Komi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/kw.po b/po/kw.po index 483a928..7053cdd 100644 --- a/po/kw.po +++ b/po/kw.po @@ -1,9 +1,20 @@ +# Cornish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ky.po b/po/ky.po index 483a928..1cae957 100644 --- a/po/ky.po +++ b/po/ky.po @@ -1,9 +1,20 @@ +# Kirghiz translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ky\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/la.po b/po/la.po index 483a928..4121cef 100644 --- a/po/la.po +++ b/po/la.po @@ -1,9 +1,20 @@ +# Latin translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: la\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/lb.po b/po/lb.po index 483a928..d27bd71 100644 --- a/po/lb.po +++ b/po/lb.po @@ -1,9 +1,20 @@ +# Letzeburgesch translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/lg.po b/po/lg.po index 483a928..fdcf469 100644 --- a/po/lg.po +++ b/po/lg.po @@ -1,9 +1,20 @@ +# Ganda translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/li.po b/po/li.po index 483a928..3b02c9e 100644 --- a/po/li.po +++ b/po/li.po @@ -1,9 +1,20 @@ +# Limburgish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: li\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ln.po b/po/ln.po index 483a928..61f53e3 100644 --- a/po/ln.po +++ b/po/ln.po @@ -1,9 +1,20 @@ +# Lingala translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ln\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/lo.po b/po/lo.po index 483a928..9b67acb 100644 --- a/po/lo.po +++ b/po/lo.po @@ -1,9 +1,20 @@ +# Laotian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/lt.po b/po/lt.po index 9845bc1..76ded84 100644 --- a/po/lt.po +++ b/po/lt.po @@ -1,21 +1,20 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# Moo, 2017. +# Lithuanian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Moo, 2019. # msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" "PO-Revision-Date: 2019-01-28 14:24+0200\n" "Last-Translator: Moo\n" -"Language-Team: \n" +"Language-Team: none\n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" @@ -48,8 +47,8 @@ msgid "or" msgstr "arba" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "Nustatyti iš failo..." +msgid "Set from file…" +msgstr "Nustatyti iš failo…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" @@ -59,7 +58,7 @@ msgstr "Įrašyti slapukus" msgid "Save login information" msgstr "Įrašyti prisijungimo informaciją" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "Užvėrus, vykdyti fone" @@ -83,6 +82,10 @@ msgstr "Programa jau yra" msgid "Images" msgstr "Paveikslai" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "Atsisakyti" @@ -91,32 +94,36 @@ msgstr "Atsisakyti" msgid "Open" msgstr "Atverti" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "Užklausa atveriama išorinėje programoje…" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "Atverti %s" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "Atgal" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "Pradžia" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "Pirmyn" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "Įkelti iš naujo" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "Kopijuoti URL į iškarpinę" @@ -156,20 +163,10 @@ msgstr "Sukurti programą" msgid "Create a new web app with Webpin" msgstr "Sukurkite naują saityno programą, naudodami Webpin" -#~ msgid "Use Dark Theme" -#~ msgstr "Naudoti tamsią temą" +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" -#~ msgid "_Close" -#~ msgstr "_Užverti" - -#~ msgid "Preferences" -#~ msgstr "Nuostatos" - -#~ msgid "Accept" -#~ msgstr "Priimti" - -#~ msgid "Copy URI into clipboard" -#~ msgstr "Kopijuoti URI į iškarpinę" - -#~ msgid "Run in background when closed" -#~ msgstr "Užvėrus, palikti veikti fone" +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/lu.po b/po/lu.po index 483a928..f799ec9 100644 --- a/po/lu.po +++ b/po/lu.po @@ -1,9 +1,20 @@ +# Luba-Katanga translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/lv.po b/po/lv.po index 7a07716..3f44799 100644 --- a/po/lv.po +++ b/po/lv.po @@ -1,10 +1,22 @@ +# Latvian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +47,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +58,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +82,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +94,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +162,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/meson.build b/po/meson.build index 50da237..382a323 100644 --- a/po/meson.build +++ b/po/meson.build @@ -3,4 +3,6 @@ i18n.gettext(meson.project_name(), '--directory=' + meson.source_root(), '--from-code=UTF-8' ] -) \ No newline at end of file +) + +subdir('extra') \ No newline at end of file diff --git a/po/mg.po b/po/mg.po index 483a928..49d6740 100644 --- a/po/mg.po +++ b/po/mg.po @@ -1,9 +1,20 @@ +# Malagasy translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/mh.po b/po/mh.po index 483a928..94cb78f 100644 --- a/po/mh.po +++ b/po/mh.po @@ -1,9 +1,20 @@ +# Marshallese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/mi.po b/po/mi.po index 483a928..6e22b87 100644 --- a/po/mi.po +++ b/po/mi.po @@ -1,9 +1,20 @@ +# Maori translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/mk.po b/po/mk.po index 483a928..d0429b1 100644 --- a/po/mk.po +++ b/po/mk.po @@ -1,9 +1,20 @@ +# Macedonian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ml.po b/po/ml.po index 483a928..b36e310 100644 --- a/po/ml.po +++ b/po/ml.po @@ -1,9 +1,20 @@ +# Malayalam translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/mn.po b/po/mn.po index 483a928..1849210 100644 --- a/po/mn.po +++ b/po/mn.po @@ -1,9 +1,20 @@ +# Mongolian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/mo.po b/po/mo.po index 483a928..5393301 100644 --- a/po/mo.po +++ b/po/mo.po @@ -1,9 +1,20 @@ +# Moldavian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/mr.po b/po/mr.po index 483a928..a25499f 100644 --- a/po/mr.po +++ b/po/mr.po @@ -1,9 +1,20 @@ +# Marathi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ms.po b/po/ms.po index 483a928..aa0c8b9 100644 --- a/po/ms.po +++ b/po/ms.po @@ -1,9 +1,20 @@ +# Malay translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/mt.po b/po/mt.po index 483a928..fa4d0d7 100644 --- a/po/mt.po +++ b/po/mt.po @@ -1,9 +1,20 @@ +# Maltese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/my.po b/po/my.po index 483a928..a7d26ca 100644 --- a/po/my.po +++ b/po/my.po @@ -1,9 +1,20 @@ +# Burmese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: my\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/na.po b/po/na.po index 483a928..a27571e 100644 --- a/po/na.po +++ b/po/na.po @@ -1,9 +1,20 @@ +# Nauru translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: na\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/nb.po b/po/nb.po index 92b6760..059cc51 100644 --- a/po/nb.po +++ b/po/nb.po @@ -1,10 +1,21 @@ +# Norwegian Bokmal translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/nd.po b/po/nd.po index 483a928..0dbe0c5 100644 --- a/po/nd.po +++ b/po/nd.po @@ -1,9 +1,20 @@ +# North Ndebele translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ne.po b/po/ne.po index 483a928..fc5057d 100644 --- a/po/ne.po +++ b/po/ne.po @@ -1,9 +1,20 @@ +# Nepali translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ne\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ng.po b/po/ng.po index 483a928..8b895b7 100644 --- a/po/ng.po +++ b/po/ng.po @@ -1,9 +1,20 @@ +# Ndonga translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ng\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/nl.po b/po/nl.po index 833645a..52ec10f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,17 +1,21 @@ +# Dutch translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Heimen Stoffels , 2019. +# msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" -"PO-Revision-Date: \n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" "Last-Translator: Heimen Stoffels \n" -"Language-Team: \n" +"Language-Team: none\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 2.1.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -42,8 +46,8 @@ msgid "or" msgstr "of" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "Kiezen uit bestand..." +msgid "Set from file…" +msgstr "Kiezen uit bestand…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" @@ -53,7 +57,7 @@ msgstr "Cookies opslaan" msgid "Save login information" msgstr "Inloggegevens opslaan" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "Uitvoeren op achtergrond na afsluiten" @@ -77,6 +81,10 @@ msgstr "App bestaat al" msgid "Images" msgstr "Afbeeldingen" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "Annuleren" @@ -85,32 +93,36 @@ msgstr "Annuleren" msgid "Open" msgstr "Openen" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "Verzoek openen in externe applicatie…" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "%s openen" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "Terug" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "Startpagina" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "Vooruit" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "Herladen" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "URL kopiëren naar klembord" @@ -150,53 +162,10 @@ msgstr "App creëren" msgid "Create a new web app with Webpin" msgstr "Creëer een nieuwe webapp met Webpin" -#~ msgid "Change" -#~ msgstr "Wijzigen" +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" -#~ msgid "Device" -#~ msgstr "Apparaat" - -#~ msgid "Calculating checksum…" -#~ msgstr "Bezig met berekenen van controlesom…" - -#~ msgid "please wait…" -#~ msgstr "even geduld…" - -#~ msgid "Ready!" -#~ msgstr "Klaar!" - -#~ msgid "%s was written onto %s" -#~ msgstr "%s is weggeschreven naar %s" - -#~ msgid "Image Burner" -#~ msgstr "Schijfafbeeldingen branden" - -#~ msgid "Choose an algorithm" -#~ msgstr "Kies een algoritme" - -#~ msgid "Finished" -#~ msgstr "Afgerond" - -#~ msgid "Select Image" -#~ msgstr "Schijfafbeelding kiezen" - -#~ msgid "Select Drive" -#~ msgstr "Schijf kiezen" - -#~ msgid "No removable devices found…" -#~ msgstr "Geen verwijderbare apparaten aangetroffen…" - -#~ msgid "Flash" -#~ msgstr "Versturen" - -#~ msgid "Write Image" -#~ msgstr "Schijfafbeelding wegschrijven" - -#~ msgid "Image files" -#~ msgstr "Schijfafbeeldingsbestanden" - -#~ msgid "No image file chosen…" -#~ msgstr "Geen schijfafbeeldingsbestand gekozen…" - -#~ msgid "No device chosen…" -#~ msgstr "Geen apparaat gekozen…" +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/nn.po b/po/nn.po index 92b6760..5f64417 100644 --- a/po/nn.po +++ b/po/nn.po @@ -1,10 +1,21 @@ +# Norwegian Nynorsk translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/no.po b/po/no.po deleted file mode 100644 index 92b6760..0000000 --- a/po/no.po +++ /dev/null @@ -1,144 +0,0 @@ -msgid "" -msgstr "" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -#: src/Widgets/WebItem.vala:126 -msgid "Delete Webapp" -msgstr "" - -#: src/Widgets/WebItem.vala:131 -msgid "Edit Webapp Properties" -msgstr "" - -#: src/Widgets/Views/Editor.vala:84 -msgid "Create a new web app" -msgstr "" - -#: src/Widgets/Views/Editor.vala:92 -msgid "Application name" -msgstr "" - -#: src/Widgets/Views/Editor.vala:96 -msgid "https://myapp.domain or file:///my/local/file" -msgstr "" - -#: src/Widgets/Views/Editor.vala:106 -msgid "theme icon name" -msgstr "" - -#: src/Widgets/Views/Editor.vala:108 -msgid "or" -msgstr "" - -#: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "" - -#: src/Widgets/Views/Editor.vala:128 -msgid "Save cookies" -msgstr "" - -#: src/Widgets/Views/Editor.vala:130 -msgid "Save login information" -msgstr "" - -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 -msgid "Run in background if closed" -msgstr "" - -#: src/Widgets/Views/Editor.vala:134 -msgid "Use minimal UI" -msgstr "" - -#: src/Widgets/Views/Editor.vala:159 -msgid "Save app" -msgstr "" - -#: src/Widgets/Views/Editor.vala:182 -msgid "url must start with http:// or https:// or file:///" -msgstr "" - -#: src/Widgets/Views/Editor.vala:197 -msgid "App already exist" -msgstr "" - -#: src/Widgets/Views/Editor.vala:428 src/Services/DesktopFilesManager.vala:90 -msgid "Images" -msgstr "" - -#: src/Widgets/Views/Editor.vala:433 -msgid "Cancel" -msgstr "" - -#: src/Widgets/Views/Editor.vala:434 -msgid "Open" -msgstr "" - -#: src/Widgets/Browser.vala:112 -msgid "Open request in an external application…" -msgstr "" - -#: src/Windows/WebApp.vala:97 -#, c-format -msgid "Open %s" -msgstr "" - -#: src/Windows/WebApp.vala:137 -msgid "Back" -msgstr "" - -#: src/Windows/WebApp.vala:146 -msgid "Home" -msgstr "" - -#: src/Windows/WebApp.vala:154 -msgid "Forward" -msgstr "" - -#: src/Windows/WebApp.vala:163 -msgid "Reload" -msgstr "" - -#: src/Windows/WebApp.vala:174 -msgid "Copy URL into clipboard" -msgstr "" - -#: src/Services/DesktopFilesManager.vala:84 -msgid "Choose an image…" -msgstr "" - -#: src/Services/DesktopFilesManager.vala:86 -msgid "_Cancel" -msgstr "" - -#: src/Services/DesktopFilesManager.vala:87 -msgid "_Open" -msgstr "" - -#: src/MainWindow.vala:62 -msgid "Applications" -msgstr "" - -#: src/MainWindow.vala:69 -msgid "Add a new Web App" -msgstr "" - -#: src/MainWindow.vala:74 -msgid "No Web Apps Available" -msgstr "" - -#: src/MainWindow.vala:74 -msgid "Manage your web apps." -msgstr "" - -#: src/MainWindow.vala:75 -msgid "Create App" -msgstr "" - -#: src/MainWindow.vala:75 -msgid "Create a new web app with Webpin" -msgstr "" diff --git a/po/nr.po b/po/nr.po index 483a928..dbf277b 100644 --- a/po/nr.po +++ b/po/nr.po @@ -1,9 +1,20 @@ +# South Ndebele translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/nv.po b/po/nv.po index 483a928..15f2c0b 100644 --- a/po/nv.po +++ b/po/nv.po @@ -1,9 +1,20 @@ +# Navajo translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ny.po b/po/ny.po index 483a928..b5a8ed9 100644 --- a/po/ny.po +++ b/po/ny.po @@ -1,9 +1,20 @@ +# Nyanja translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ny\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/oc.po b/po/oc.po index 483a928..68b9786 100644 --- a/po/oc.po +++ b/po/oc.po @@ -1,9 +1,20 @@ +# Occitan translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/oj.po b/po/oj.po index 483a928..b6000dd 100644 --- a/po/oj.po +++ b/po/oj.po @@ -1,9 +1,20 @@ +# Ojibwa translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oj\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/om.po b/po/om.po index 483a928..886fe5f 100644 --- a/po/om.po +++ b/po/om.po @@ -1,9 +1,20 @@ +# (Afan) Oromo translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: om\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/or.po b/po/or.po index 483a928..8133848 100644 --- a/po/or.po +++ b/po/or.po @@ -1,9 +1,20 @@ +# Oriya translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: or\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/os.po b/po/os.po index 483a928..017d8c9 100644 --- a/po/os.po +++ b/po/os.po @@ -1,9 +1,20 @@ +# Ossetian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: os\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/pa.po b/po/pa.po index 483a928..5536975 100644 --- a/po/pa.po +++ b/po/pa.po @@ -1,9 +1,20 @@ +# Punjabi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/pi.po b/po/pi.po index 483a928..fe36024 100644 --- a/po/pi.po +++ b/po/pi.po @@ -1,9 +1,20 @@ +# Pali translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/pl.po b/po/pl.po index f365393..d24341c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1,11 +1,22 @@ +# Polish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -36,7 +47,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -47,7 +58,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -71,6 +82,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -79,32 +94,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -143,3 +162,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ps.po b/po/ps.po index 483a928..08e14fd 100644 --- a/po/ps.po +++ b/po/ps.po @@ -1,9 +1,20 @@ +# Pashto translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ps\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/pt.po b/po/pt.po index 92b6760..5e4cccd 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,10 +1,21 @@ +# Portuguese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/pt_BR.mo b/po/pt_BR.mo deleted file mode 100644 index eeddab2..0000000 Binary files a/po/pt_BR.mo and /dev/null differ diff --git a/po/pt_BR.po b/po/pt_BR.po index 90d3cda..9198e45 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1,21 +1,20 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Portuguese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Filipe de Almeida Garrett , 2019. # msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" -"PO-Revision-Date: 2018-04-04 12:32-0300\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" "Last-Translator: Filipe de Almeida Garrett \n" -"Language-Team: \n" +"Language-Team: none\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: src/Widgets/WebItem.vala:126 @@ -35,9 +34,8 @@ msgid "Application name" msgstr "Nome do aplicativo" #: src/Widgets/Views/Editor.vala:96 -#, fuzzy msgid "https://myapp.domain or file:///my/local/file" -msgstr "https://meuapp.dominio" +msgstr "https://meuapp.dominio ou file:///my/local/file" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" @@ -48,8 +46,8 @@ msgid "or" msgstr "ou" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "Definir do arquivo..." +msgid "Set from file…" +msgstr "Definir do arquivo…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" @@ -59,7 +57,7 @@ msgstr "Salvar cookies" msgid "Save login information" msgstr "Salvar informação de login" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "Executar em segundo plano se fechado" @@ -72,9 +70,8 @@ msgid "Save app" msgstr "Salvar app" #: src/Widgets/Views/Editor.vala:182 -#, fuzzy msgid "url must start with http:// or https:// or file:///" -msgstr "o endereço deve começar com http:// ou https://" +msgstr "o endereço deve começar com http:// ou https:// ou file:///" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" @@ -84,6 +81,10 @@ msgstr "App já existente" msgid "Images" msgstr "Imagens" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "Cancelar" @@ -92,38 +93,42 @@ msgstr "Cancelar" msgid "Open" msgstr "Abrir" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" -msgstr "Abrir requisição em um aplicativo externo..." +msgstr "Abrir requisição em um aplicativo externo…" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "Abrir %s" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "Copiar endereço para a área de transferência" #: src/Services/DesktopFilesManager.vala:84 msgid "Choose an image…" -msgstr "Escolha uma imagem..." +msgstr "Escolha uma imagem…" #: src/Services/DesktopFilesManager.vala:86 msgid "_Cancel" @@ -157,11 +162,10 @@ msgstr "Criar aplicativo" msgid "Create a new web app with Webpin" msgstr "Crie um novo web app com o Webpin" -#~ msgid "Use Dark Theme" -#~ msgstr "Usar tema escuro" +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" -#~ msgid "_Close" -#~ msgstr "_Fechar" - -#~ msgid "Preferences" -#~ msgstr "Preferências" +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/qu.po b/po/qu.po index 483a928..c251a5a 100644 --- a/po/qu.po +++ b/po/qu.po @@ -1,9 +1,20 @@ +# Quechua translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: qu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/rm.po b/po/rm.po index 483a928..1e0c3be 100644 --- a/po/rm.po +++ b/po/rm.po @@ -1,9 +1,20 @@ +# Romansh translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rm\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/rn.po b/po/rn.po index 483a928..7ddfbd6 100644 --- a/po/rn.po +++ b/po/rn.po @@ -1,9 +1,20 @@ +# Kirundi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ro.po b/po/ro.po index 09d40a4..e4fd388 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,9 +1,20 @@ +# Romanian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" @@ -36,7 +47,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -47,7 +58,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -71,6 +82,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -79,32 +94,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -143,3 +162,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ru.po b/po/ru.po index a60313f..43841d0 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,27 +1,22 @@ -# Russian translation for webby-browser -# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 -# This file is distributed under the same license as the webby-browser package. -# FIRST AUTHOR , 2015. -# Андрей Культяпов , 2017. +# Russian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Андрей Культяпов , 2019. # msgid "" msgstr "" -"Project-Id-Version: webby-browser\n" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" -"PO-Revision-Date: 2017-11-28 23:50+0400\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" "Last-Translator: Andrey Kultyapov \n" "Language-Team: Russian \n" -"Language: ru_RU\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-03-24 00:16+0000\n" -"X-Generator: Poedit 2.0.4\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-Poedit-Basepath: ../src\n" -"X-Poedit-SearchPath-0: .\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -40,9 +35,8 @@ msgid "Application name" msgstr "Имя приложения" #: src/Widgets/Views/Editor.vala:96 -#, fuzzy msgid "https://myapp.domain or file:///my/local/file" -msgstr "https://myapp.domain" +msgstr "https://myapp.domain или file:///my/local/file" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" @@ -53,8 +47,8 @@ msgid "or" msgstr "или" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "Установить из файла..." +msgid "Set from file…" +msgstr "Установить из файла…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" @@ -64,7 +58,7 @@ msgstr "Сохранить cookies" msgid "Save login information" msgstr "Сохранить данные авторизации" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "Работать в фоновом режиме после закрытия" @@ -77,9 +71,8 @@ msgid "Save app" msgstr "Сохранить приложение" #: src/Widgets/Views/Editor.vala:182 -#, fuzzy msgid "url must start with http:// or https:// or file:///" -msgstr "адрес должен начинаться с http:// или https://" +msgstr "адрес должен начинаться с http:// или https:// или file:///" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" @@ -89,6 +82,10 @@ msgstr "Это приложение уже существует" msgid "Images" msgstr "Изображения" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "Отменить" @@ -97,32 +94,36 @@ msgstr "Отменить" msgid "Open" msgstr "Открыть" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "Открыть запрос во внешнем приложении…" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "Открыть %s" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "Копировать ссылку в буфер обмена" @@ -162,35 +163,10 @@ msgstr "Создать приложение" msgid "Create a new web app with Webpin" msgstr "Создайте новое веб-приложение с помощью Webpin" -#~ msgid "Use Dark Theme" -#~ msgstr "Использовать тёмную тему" +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" -#~ msgid "_Close" -#~ msgstr "_Закрыть" - -#~ msgid "Preferences" -#~ msgstr "Настройки" - -#~ msgid "Accept" -#~ msgstr "Согласен" - -#~ msgid "Unmute notifications" -#~ msgstr "Включить уведомления" - -#~ msgid "Mute notifications" -#~ msgstr "Отключить уведомления" - -#~ msgid "Desktop notifications are enabled" -#~ msgstr "Уведомления включены" - -#~ msgid "Create a new Webpin Web App." -#~ msgstr "Создать новое веб-приложение в Webpin." - -#~ msgid "Remove Application" -#~ msgstr "Удалить приложение" - -#~ msgid "App created" -#~ msgstr "Приложение создано" - -#~ msgid "The application shortcut was successfully created" -#~ msgstr "Ярлык приложения успешно создан" +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/rue.po b/po/rue.po index 483a928..e0f931e 100644 --- a/po/rue.po +++ b/po/rue.po @@ -1,9 +1,20 @@ +# Language rue translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rue\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/rw.po b/po/rw.po index 483a928..b16387a 100644 --- a/po/rw.po +++ b/po/rw.po @@ -1,9 +1,20 @@ +# Kinyarwanda translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: rw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sa.po b/po/sa.po index 483a928..51e93fa 100644 --- a/po/sa.po +++ b/po/sa.po @@ -1,9 +1,20 @@ +# Sanskrit translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sc.po b/po/sc.po index 483a928..c215faf 100644 --- a/po/sc.po +++ b/po/sc.po @@ -1,9 +1,20 @@ +# Sardinian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sd.po b/po/sd.po index 483a928..a13d9df 100644 --- a/po/sd.po +++ b/po/sd.po @@ -1,9 +1,20 @@ +# Sindhi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/se.po b/po/se.po index 483a928..53cb9ef 100644 --- a/po/se.po +++ b/po/se.po @@ -1,9 +1,20 @@ +# Northern Sami translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sg.po b/po/sg.po index 483a928..0e4f98b 100644 --- a/po/sg.po +++ b/po/sg.po @@ -1,9 +1,20 @@ +# Sango translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/si.po b/po/si.po index 483a928..71306d8 100644 --- a/po/si.po +++ b/po/si.po @@ -1,9 +1,20 @@ +# Sinhala translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sk.po b/po/sk.po index 89ddfad..a143569 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,9 +1,20 @@ +# Slovak translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: src/Widgets/WebItem.vala:126 @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sl.po b/po/sl.po index 40dc3eb..f2b0979 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,11 +1,22 @@ +# Slovenian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -36,7 +47,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -47,7 +58,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -71,6 +82,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -79,32 +94,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -143,3 +162,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sm.po b/po/sm.po index 483a928..7c5d10b 100644 --- a/po/sm.po +++ b/po/sm.po @@ -1,9 +1,20 @@ +# Samoan translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sm\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sma.po b/po/sma.po index 483a928..62f9ef0 100644 --- a/po/sma.po +++ b/po/sma.po @@ -1,9 +1,20 @@ +# Southern Sami translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sma\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sn.po b/po/sn.po index 483a928..215912a 100644 --- a/po/sn.po +++ b/po/sn.po @@ -1,9 +1,20 @@ +# Shona translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/so.po b/po/so.po index 483a928..9c9da54 100644 --- a/po/so.po +++ b/po/so.po @@ -1,9 +1,20 @@ +# Somali translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: so\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sq.po b/po/sq.po index 483a928..fb60e2f 100644 --- a/po/sq.po +++ b/po/sq.po @@ -1,9 +1,20 @@ +# Albanian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sr.po b/po/sr.po index ae460b3..48e0858 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,11 +1,22 @@ +# Serbian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" +"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" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -36,7 +47,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -47,7 +58,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -71,6 +82,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -79,32 +94,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -143,3 +162,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ss.po b/po/ss.po index 483a928..f6762cf 100644 --- a/po/ss.po +++ b/po/ss.po @@ -1,9 +1,20 @@ +# Siswati translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ss\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/st.po b/po/st.po index 483a928..90fb55d 100644 --- a/po/st.po +++ b/po/st.po @@ -1,9 +1,20 @@ +# Sesotho translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: st\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/su.po b/po/su.po index 483a928..dbbf000 100644 --- a/po/su.po +++ b/po/su.po @@ -1,9 +1,20 @@ +# Sundanese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: su\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sv.po b/po/sv.po index 92b6760..8edc5ea 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,10 +1,21 @@ +# Swedish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/sw.po b/po/sw.po index 483a928..70cc2fa 100644 --- a/po/sw.po +++ b/po/sw.po @@ -1,9 +1,20 @@ +# Swahili translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ta.po b/po/ta.po index 483a928..b31cda7 100644 --- a/po/ta.po +++ b/po/ta.po @@ -1,9 +1,20 @@ +# Tamil translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/te.po b/po/te.po index 483a928..581357d 100644 --- a/po/te.po +++ b/po/te.po @@ -1,9 +1,20 @@ +# Telugu translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/tg.po b/po/tg.po index 483a928..55a86bd 100644 --- a/po/tg.po +++ b/po/tg.po @@ -1,9 +1,20 @@ +# Tajik translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/th.po b/po/th.po index 483a928..c67655c 100644 --- a/po/th.po +++ b/po/th.po @@ -1,9 +1,20 @@ +# Thai translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ti.po b/po/ti.po index 483a928..0f284f0 100644 --- a/po/ti.po +++ b/po/ti.po @@ -1,9 +1,20 @@ +# Tigrinya translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ti\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/tk.po b/po/tk.po index 483a928..f3cfaf2 100644 --- a/po/tk.po +++ b/po/tk.po @@ -1,9 +1,20 @@ +# Turkmen translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/tl.po b/po/tl.po index 483a928..7e62af8 100644 --- a/po/tl.po +++ b/po/tl.po @@ -1,9 +1,20 @@ +# Tagalog translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/tn.po b/po/tn.po index 483a928..89fec8c 100644 --- a/po/tn.po +++ b/po/tn.po @@ -1,9 +1,20 @@ +# Setswana translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/to.po b/po/to.po index 483a928..e725680 100644 --- a/po/to.po +++ b/po/to.po @@ -1,9 +1,20 @@ +# Tonga translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: to\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/tr.po b/po/tr.po index 92b6760..aedd7a9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,10 +1,21 @@ +# Turkish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -35,7 +46,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -46,7 +57,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -70,6 +81,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -78,32 +93,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -142,3 +161,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ts.po b/po/ts.po index 483a928..d742cb3 100644 --- a/po/ts.po +++ b/po/ts.po @@ -1,9 +1,20 @@ +# Tsonga translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ts\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/tt.po b/po/tt.po index 483a928..f4e5501 100644 --- a/po/tt.po +++ b/po/tt.po @@ -1,9 +1,20 @@ +# Tatar translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/tw.po b/po/tw.po index 483a928..09f63c3 100644 --- a/po/tw.po +++ b/po/tw.po @@ -1,9 +1,20 @@ +# Twi translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ty.po b/po/ty.po index 483a928..1468e0e 100644 --- a/po/ty.po +++ b/po/ty.po @@ -1,9 +1,20 @@ +# Tahitian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ty\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ug.po b/po/ug.po index 483a928..e006b38 100644 --- a/po/ug.po +++ b/po/ug.po @@ -1,9 +1,20 @@ +# Uighur translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/uk.po b/po/uk.po index ae460b3..0de82b6 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,11 +1,22 @@ +# Ukrainian translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" +"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" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -36,7 +47,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -47,7 +58,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -71,6 +82,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -79,32 +94,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -143,3 +162,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ur.po b/po/ur.po index 483a928..e146370 100644 --- a/po/ur.po +++ b/po/ur.po @@ -1,9 +1,20 @@ +# Urdu translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/uz.po b/po/uz.po index 483a928..139459e 100644 --- a/po/uz.po +++ b/po/uz.po @@ -1,9 +1,20 @@ +# Uzbek translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/ve.po b/po/ve.po index 483a928..e1a945b 100644 --- a/po/ve.po +++ b/po/ve.po @@ -1,9 +1,20 @@ +# Venda translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ve\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/vi.po b/po/vi.po index 7b69c52..ccd18da 100644 --- a/po/vi.po +++ b/po/vi.po @@ -1,22 +1,21 @@ -# Vietnamese translation for webby-browser -# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 -# This file is distributed under the same license as the webby-browser package. -# FIRST AUTHOR , 2015. +# Vietnamese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Nguyễn Thanh Tài, 2019. # msgid "" msgstr "" -"Project-Id-Version: webby-browser\n" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" -"PO-Revision-Date: 2015-03-15 13:06+0000\n" -"Last-Translator: Nguyễn Thanh Tài \n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Nguyễn Thanh Tài\n" "Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-03-24 00:16+0000\n" -"X-Generator: Launchpad (build 17413)\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -27,18 +26,16 @@ msgid "Edit Webapp Properties" msgstr "" #: src/Widgets/Views/Editor.vala:84 -#, fuzzy msgid "Create a new web app" -msgstr "Tạo ứng dụng web mới với webby" +msgstr "" #: src/Widgets/Views/Editor.vala:92 msgid "Application name" msgstr "Tên ứng dụng" #: src/Widgets/Views/Editor.vala:96 -#, fuzzy msgid "https://myapp.domain or file:///my/local/file" -msgstr "https://ungdung.tenmien" +msgstr "https://ungdung.tenmien hoặc file:///my/local/file" #: src/Widgets/Views/Editor.vala:106 msgid "theme icon name" @@ -49,8 +46,8 @@ msgid "or" msgstr "hoặc" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "Đặt từ tập tin..." +msgid "Set from file…" +msgstr "Đặt từ tập tin…" #: src/Widgets/Views/Editor.vala:128 msgid "Save cookies" @@ -60,7 +57,7 @@ msgstr "Lưu cookie" msgid "Save login information" msgstr "Lưu thông tin đăng nhập" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,14 +66,12 @@ msgid "Use minimal UI" msgstr "" #: src/Widgets/Views/Editor.vala:159 -#, fuzzy msgid "Save app" -msgstr "Tạo ứng dụng" +msgstr "" #: src/Widgets/Views/Editor.vala:182 -#, fuzzy msgid "url must start with http:// or https:// or file:///" -msgstr "url phải bắt đầu với http:// hoặc https://" +msgstr "url phải bắt đầu với http:// hoặc https:// hoặc file:///" #: src/Widgets/Views/Editor.vala:197 msgid "App already exist" @@ -86,6 +81,10 @@ msgstr "Ứng dụng đã tồn tại" msgid "Images" msgstr "Hình ảnh" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "Huỷ" @@ -94,32 +93,36 @@ msgstr "Huỷ" msgid "Open" msgstr "Mở" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 -#, fuzzy, c-format -msgid "Open %s" -msgstr "Mở" +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:98 +#, c-format +msgid "Open %s" +msgstr "Mở %s" + +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -128,14 +131,12 @@ msgid "Choose an image…" msgstr "" #: src/Services/DesktopFilesManager.vala:86 -#, fuzzy msgid "_Cancel" -msgstr "Huỷ" +msgstr "_Huỷ" #: src/Services/DesktopFilesManager.vala:87 -#, fuzzy msgid "_Open" -msgstr "Mở" +msgstr "_Mở" #: src/MainWindow.vala:62 msgid "Applications" @@ -154,23 +155,17 @@ msgid "Manage your web apps." msgstr "" #: src/MainWindow.vala:75 -#, fuzzy msgid "Create App" -msgstr "Tạo ứng dụng" +msgstr "" #: src/MainWindow.vala:75 -#, fuzzy msgid "Create a new web app with Webpin" -msgstr "Tạo ứng dụng web mới với webby" +msgstr "" -#~ msgid "Remove Application" -#~ msgstr "Gỡ ứng dụng" +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" -#~ msgid "Accept" -#~ msgstr "Đồng ý" - -#~ msgid "App created" -#~ msgstr "Đã tạo ứng dụng" - -#~ msgid "The application shortcut was successfully created" -#~ msgstr "Đã tạo lối tắt ứng dụng thành công" +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/vo.po b/po/vo.po index 483a928..cae6801 100644 --- a/po/vo.po +++ b/po/vo.po @@ -1,9 +1,20 @@ +# Volapuk translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/wa.po b/po/wa.po index 483a928..3bfe88a 100644 --- a/po/wa.po +++ b/po/wa.po @@ -1,9 +1,20 @@ +# Language wa translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/wo.po b/po/wo.po index 483a928..119cc3e 100644 --- a/po/wo.po +++ b/po/wo.po @@ -1,9 +1,20 @@ +# Wolof translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/xh.po b/po/xh.po index 483a928..682168d 100644 --- a/po/xh.po +++ b/po/xh.po @@ -1,9 +1,20 @@ +# Xhosa translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: xh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/yi.po b/po/yi.po index 483a928..25e6e5e 100644 --- a/po/yi.po +++ b/po/yi.po @@ -1,9 +1,20 @@ +# Yiddish translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: yi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/yo.po b/po/yo.po index 483a928..75a330d 100644 --- a/po/yo.po +++ b/po/yo.po @@ -1,9 +1,20 @@ +# Yoruba translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: yo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/za.po b/po/za.po index 483a928..2b24f21 100644 --- a/po/za.po +++ b/po/za.po @@ -1,9 +1,20 @@ +# Zhuang translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: za\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/zh.po b/po/zh.po index 483a928..e9c6800 100644 --- a/po/zh.po +++ b/po/zh.po @@ -1,9 +1,20 @@ +# Chinese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po deleted file mode 100644 index 483a928..0000000 --- a/po/zh_CN.po +++ /dev/null @@ -1,143 +0,0 @@ -msgid "" -msgstr "" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" - -#: src/Widgets/WebItem.vala:126 -msgid "Delete Webapp" -msgstr "" - -#: src/Widgets/WebItem.vala:131 -msgid "Edit Webapp Properties" -msgstr "" - -#: src/Widgets/Views/Editor.vala:84 -msgid "Create a new web app" -msgstr "" - -#: src/Widgets/Views/Editor.vala:92 -msgid "Application name" -msgstr "" - -#: src/Widgets/Views/Editor.vala:96 -msgid "https://myapp.domain or file:///my/local/file" -msgstr "" - -#: src/Widgets/Views/Editor.vala:106 -msgid "theme icon name" -msgstr "" - -#: src/Widgets/Views/Editor.vala:108 -msgid "or" -msgstr "" - -#: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." -msgstr "" - -#: src/Widgets/Views/Editor.vala:128 -msgid "Save cookies" -msgstr "" - -#: src/Widgets/Views/Editor.vala:130 -msgid "Save login information" -msgstr "" - -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 -msgid "Run in background if closed" -msgstr "" - -#: src/Widgets/Views/Editor.vala:134 -msgid "Use minimal UI" -msgstr "" - -#: src/Widgets/Views/Editor.vala:159 -msgid "Save app" -msgstr "" - -#: src/Widgets/Views/Editor.vala:182 -msgid "url must start with http:// or https:// or file:///" -msgstr "" - -#: src/Widgets/Views/Editor.vala:197 -msgid "App already exist" -msgstr "" - -#: src/Widgets/Views/Editor.vala:428 src/Services/DesktopFilesManager.vala:90 -msgid "Images" -msgstr "" - -#: src/Widgets/Views/Editor.vala:433 -msgid "Cancel" -msgstr "" - -#: src/Widgets/Views/Editor.vala:434 -msgid "Open" -msgstr "" - -#: src/Widgets/Browser.vala:112 -msgid "Open request in an external application…" -msgstr "" - -#: src/Windows/WebApp.vala:97 -#, c-format -msgid "Open %s" -msgstr "" - -#: src/Windows/WebApp.vala:137 -msgid "Back" -msgstr "" - -#: src/Windows/WebApp.vala:146 -msgid "Home" -msgstr "" - -#: src/Windows/WebApp.vala:154 -msgid "Forward" -msgstr "" - -#: src/Windows/WebApp.vala:163 -msgid "Reload" -msgstr "" - -#: src/Windows/WebApp.vala:174 -msgid "Copy URL into clipboard" -msgstr "" - -#: src/Services/DesktopFilesManager.vala:84 -msgid "Choose an image…" -msgstr "" - -#: src/Services/DesktopFilesManager.vala:86 -msgid "_Cancel" -msgstr "" - -#: src/Services/DesktopFilesManager.vala:87 -msgid "_Open" -msgstr "" - -#: src/MainWindow.vala:62 -msgid "Applications" -msgstr "" - -#: src/MainWindow.vala:69 -msgid "Add a new Web App" -msgstr "" - -#: src/MainWindow.vala:74 -msgid "No Web Apps Available" -msgstr "" - -#: src/MainWindow.vala:74 -msgid "Manage your web apps." -msgstr "" - -#: src/MainWindow.vala:75 -msgid "Create App" -msgstr "" - -#: src/MainWindow.vala:75 -msgid "Create a new web app with Webpin" -msgstr "" diff --git a/po/zh_HK.po b/po/zh_HK.po index 483a928..8f9d0f7 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -1,9 +1,20 @@ +# Chinese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_HK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 483a928..2ae7605 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,9 +1,20 @@ +# Chinese translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/po/zu.po b/po/zu.po index 483a928..cd33786 100644 --- a/po/zu.po +++ b/po/zu.po @@ -1,9 +1,20 @@ +# Zulu translations for com.github.artemanufrij.webpin package. +# Copyright (C) 2019 THE com.github.artemanufrij.webpin'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.artemanufrij.webpin package. +# Automatically generated, 2019. +# msgid "" msgstr "" +"Project-Id-Version: com.github.artemanufrij.webpin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-11-04 17:19+0100\n" +"POT-Creation-Date: 2019-07-18 14:33+0200\n" +"PO-Revision-Date: 2019-04-17 19:16+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" #: src/Widgets/WebItem.vala:126 msgid "Delete Webapp" @@ -34,7 +45,7 @@ msgid "or" msgstr "" #: src/Widgets/Views/Editor.vala:109 -msgid "Set from file..." +msgid "Set from file…" msgstr "" #: src/Widgets/Views/Editor.vala:128 @@ -45,7 +56,7 @@ msgstr "" msgid "Save login information" msgstr "" -#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:185 +#: src/Widgets/Views/Editor.vala:132 src/Windows/WebApp.vala:188 msgid "Run in background if closed" msgstr "" @@ -69,6 +80,10 @@ msgstr "" msgid "Images" msgstr "" +#: src/Widgets/Views/Editor.vala:431 +msgid "Choose icon" +msgstr "" + #: src/Widgets/Views/Editor.vala:433 msgid "Cancel" msgstr "" @@ -77,32 +92,36 @@ msgstr "" msgid "Open" msgstr "" -#: src/Widgets/Browser.vala:112 +#: src/Widgets/Browser.vala:113 msgid "Open request in an external application…" msgstr "" -#: src/Windows/WebApp.vala:97 +#: src/Windows/WebApp.vala:63 +msgid "Loading…" +msgstr "" + +#: src/Windows/WebApp.vala:98 #, c-format msgid "Open %s" msgstr "" -#: src/Windows/WebApp.vala:137 +#: src/Windows/WebApp.vala:140 msgid "Back" msgstr "" -#: src/Windows/WebApp.vala:146 +#: src/Windows/WebApp.vala:149 msgid "Home" msgstr "" -#: src/Windows/WebApp.vala:154 +#: src/Windows/WebApp.vala:157 msgid "Forward" msgstr "" -#: src/Windows/WebApp.vala:163 +#: src/Windows/WebApp.vala:166 msgid "Reload" msgstr "" -#: src/Windows/WebApp.vala:174 +#: src/Windows/WebApp.vala:177 msgid "Copy URL into clipboard" msgstr "" @@ -141,3 +160,11 @@ msgstr "" #: src/MainWindow.vala:75 msgid "Create a new web app with Webpin" msgstr "" + +#: src/MainWindow.vala:151 +msgid "Light background" +msgstr "" + +#: src/MainWindow.vala:152 +msgid "Dark background" +msgstr "" diff --git a/src/Application.vala b/src/Application.vala index 651c2a0..5900b38 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -114,7 +114,7 @@ namespace Webpin { GLib.OptionEntry [] options = new OptionEntry [4]; options [0] = { "new", 0, 0, OptionArg.NONE, ref new_app, "Create new Webapp", null }; options [1] = { "remove", 0, 0, OptionArg.NONE, ref remove_app, "Remove Webapp", null }; - options [2] = { "", 0, 0, OptionArg.STRING_ARRAY, ref arg_files, null, "[URI...]" }; + options [2] = { "", 0, 0, OptionArg.STRING_ARRAY, ref arg_files, null, "[URI…]" }; options [3] = { null }; var opt_context = new OptionContext ("actions"); diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 14a1abb..3c83aa2 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -148,6 +148,8 @@ namespace Webpin { private void header_build_style_switcher () { var mode_switch = new Granite.ModeSwitch.from_icon_name ("display-brightness-symbolic", "weather-clear-night-symbolic"); + mode_switch.primary_icon_tooltip_text = _("Light background"); + mode_switch.secondary_icon_tooltip_text = _("Dark background"); mode_switch.valign = Gtk.Align.CENTER; mode_switch.active = settings.use_dark_theme; mode_switch.notify["active"].connect (() => { diff --git a/src/Widgets/Views/Editor.vala b/src/Widgets/Views/Editor.vala index 97e396d..9d9da92 100644 --- a/src/Widgets/Views/Editor.vala +++ b/src/Widgets/Views/Editor.vala @@ -106,7 +106,7 @@ namespace Webpin.Widgets.Views { icon_name_entry.set_placeholder_text (_ ("theme icon name")); var or_label = new Gtk.Label (_ ("or")); - var icon_chooser_button = new Gtk.Button.with_label (_ ("Set from file...")); + var icon_chooser_button = new Gtk.Button.with_label (_ ("Set from file…")); icon_chooser_button.get_style_context ().add_class ("suggested-action"); popover_box.margin = 10; diff --git a/src/Windows/WebApp.vala b/src/Windows/WebApp.vala index 90f9514..1b8a3d5 100644 --- a/src/Windows/WebApp.vala +++ b/src/Windows/WebApp.vala @@ -60,6 +60,7 @@ namespace Webpin.Windows { } spinner = new Gtk.Spinner (); + spinner.tooltip_text = _("Loading…"); spinner.set_size_request (16, 16); headerbar.pack_end (spinner); diff --git a/uncrustify.cfg b/uncrustify.cfg index 8d8551a..632555d 100644 --- a/uncrustify.cfg +++ b/uncrustify.cfg @@ -379,7 +379,7 @@ sp_before_comma = remove # ignore/add/remove/force # Add or remove space between an open paren and comma: '(,' vs '( ,' sp_paren_comma = force # ignore/add/remove/force -# Add or remove space before the variadic '...' when preceded by a non-punctuator +# Add or remove space before the variadic '…' when preceded by a non-punctuator sp_before_ellipsis = ignore # ignore/add/remove/force # Add or remove space after class ':' @@ -594,11 +594,11 @@ sp_after_oc_at_sel_parens = ignore # ignore/add/remove/force sp_inside_oc_at_sel_parens = ignore # ignore/add/remove/force # Add or remove space before a block pointer caret -# '^int (int arg){...}' vs. ' ^int (int arg){...}' +# '^int (int arg){…}' vs. ' ^int (int arg){…}' sp_before_oc_block_caret = ignore # ignore/add/remove/force # Add or remove space after a block pointer caret -# '^int (int arg){...}' vs. '^ int (int arg){...}' +# '^int (int arg){…}' vs. '^ int (int arg){…}' sp_after_oc_block_caret = ignore # ignore/add/remove/force # Add or remove space around the ':' in 'b ? t : f' @@ -1345,7 +1345,7 @@ cmt_insert_file_footer = "" # string # The filename that contains text to insert before a function implementation if the function isn't preceded with a C/C++ comment. # Will substitute $(function) with the function name and $(javaparam) with the javadoc @param and @return stuff. -# Will also substitute $(fclass) with the class name: void CFoo::Bar() { ... } +# Will also substitute $(fclass) with the class name: void CFoo::Bar() { … } cmt_insert_func_header = "" # string # The filename that contains text to insert before a class if the class isn't preceded with a C/C++ comment. @@ -1417,14 +1417,14 @@ pp_define_at_level = false # false/true # put token in quotes # - these: ' " and ` are recognized as quote delimiters # -# type token1 token2 token3 ... +# type token1 token2 token3 … # ^ optionally specify multiple tokens on a single line # define def_token output_token # ^ output_token is optional, then NULL is assumed # macro-open token # macro-close token # macro-else token -# set id token1 token2 ... +# set id token1 token2 … # ^ optionally specify multiple tokens on a single line # ^ id is one of the names in token_enum.h sans the CT_ prefix, # e.g. PP_PRAGMA