diff -Nru pastebinit-1.5/debian/changelog pastebinit-1.5.1/debian/changelog --- pastebinit-1.5/debian/changelog 2019-07-23 21:31:11.000000000 +0000 +++ pastebinit-1.5.1/debian/changelog 2019-08-03 05:48:40.000000000 +0000 @@ -1,3 +1,16 @@ +pastebinit (1.5.1-1) unstable; urgency=medium + + * New upstream release. + - Fix the URL in the manpage (Closes: #822636, LP: #1574849). + - Add German translations (Closes: #886026). + - Remove cxg.de and lpaste.net (Closes: #915901). + - Remove both patches as they were applied upstream. + * Update to the new pastebinit home in debian/control. + * Update the watch file for the new upstream location. + * Bump Standards-version to 4.4.0, no changes needed. + + -- Simon Quigley Sat, 03 Aug 2019 00:48:40 -0500 + pastebinit (1.5-3) unstable; urgency=medium * Salvage the package (Closes: #927231). diff -Nru pastebinit-1.5/debian/control pastebinit-1.5.1/debian/control --- pastebinit-1.5/debian/control 2019-07-23 20:49:06.000000000 +0000 +++ pastebinit-1.5.1/debian/control 2019-08-03 05:46:07.000000000 +0000 @@ -4,8 +4,8 @@ Maintainer: Simon Quigley Build-Depends: debhelper (>= 12) Build-Depends-Indep: docbook-xml, docbook-xsl, xsltproc -Standards-Version: 4.3.0 -Homepage: http://launchpad.net/pastebinit/ +Standards-Version: 4.4.0 +Homepage: https://phab.lubuntu.me/source/pastebinit/ Vcs-Browser: https://salsa.debian.org/debian/pastebinit Vcs-Git: https://salsa.debian.org/debian/pastebinit.git diff -Nru pastebinit-1.5/debian/patches/0001-move-away-from-deprecated-platform-functions.patch pastebinit-1.5.1/debian/patches/0001-move-away-from-deprecated-platform-functions.patch --- pastebinit-1.5/debian/patches/0001-move-away-from-deprecated-platform-functions.patch 2019-07-23 20:43:05.000000000 +0000 +++ pastebinit-1.5.1/debian/patches/0001-move-away-from-deprecated-platform-functions.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -Description: move away from deprecated platform functions - The linux_distribution function from the platform has been deprecated in - Python 3.5. `distro` is the natural successor, however it is a new dependency. -Author: Antonio Terceiro - ---- a/pastebinit -+++ b/pastebinit -@@ -38,8 +38,8 @@ defaultPB = "pastebin.com" - - # Now try to override it with a distributor pastebin - try: -- import platform -- release = platform.linux_distribution()[0].lower() -+ import distro -+ release = distro.linux_distribution(full_distribution_name=False)[0].lower() - if release == 'debian': - defaultPB = "paste.debian.net" - elif release == 'fedora': diff -Nru pastebinit-1.5/debian/patches/0002-update-urlopen-usage.patch pastebinit-1.5.1/debian/patches/0002-update-urlopen-usage.patch --- pastebinit-1.5/debian/patches/0002-update-urlopen-usage.patch 2019-07-23 20:25:41.000000000 +0000 +++ pastebinit-1.5.1/debian/patches/0002-update-urlopen-usage.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,74 +0,0 @@ -Description: update urlopen usage - The URLOpener classes from the urllib.request are deprecated in Python 3.5. - Replace them with a more modern usage of urlopen(). - . - Note that this patch removes the special handling of HTTP 401 - ("Unauthorized"). - -Author: Antonio Terceiro - ---- a/pastebinit -+++ b/pastebinit -@@ -27,11 +27,11 @@ if sys.version[0] == "2": - from ConfigParser import NoOptionError - from ConfigParser import SafeConfigParser as ConfigParser - from urllib import urlencode -- from urllib import FancyURLopener -+ from urllib import request - else: - from configparser import ConfigParser, NoOptionError - from urllib.parse import urlencode -- from urllib.request import FancyURLopener -+ from urllib import request - - # Set the default pastebin - defaultPB = "pastebin.com" -@@ -72,12 +72,13 @@ try: - version = "1.5" - configfile = os.path.expanduser("~/.pastebinit.xml") - -- # Custom urlopener to handle 401's -- class pasteURLopener(FancyURLopener): -+ class PasteRequest(request.Request): - version = "Pastebinit v%s" % version - -- def http_error_401(self, url, fp, errcode, errmsg, headers, data=None): -- return None -+ def __init__(self, *args, **opts): -+ super(PasteRequest, self).__init__(*args, **opts) -+ if 'User-agent' not in self.headers: -+ self.add_header('User-agent', self.version) - - def preloadPastebins(): - # Check several places for config files: -@@ -410,25 +411,25 @@ try: - else: - post_format = 'standard' - -- url_opener = pasteURLopener() -+ req = PasteRequest(fetch_url) - - if post_format == 'json': - if json: -- params = json.dumps(params) -- url_opener.addheader('Content-type', 'text/json') -+ params = bytes(json.dumps(params), encoding='US-ASCII') -+ req.add_header('Content-type', 'text/json') - else: - print(_("Could not find any json library."), file=sys.stderr) - sys.exit(1) - else: - # Convert to a format usable with the HTML POST -- params = urlencode(params) -+ params = bytes(urlencode(params), encoding='US-ASCII') - - # Send the informations and be redirected to the final page - if verbose: - print("POSTing to: %s\nParams: %s" % ( - fetch_url, str(params)), file=sys.stderr) - try: -- page = url_opener.open(fetch_url, params) -+ page = request.urlopen(req, params) - except Exception as e: - print(_("Failed to contact the server: %s") % e, file=sys.stderr) - sys.exit(1) diff -Nru pastebinit-1.5/debian/patches/series pastebinit-1.5.1/debian/patches/series --- pastebinit-1.5/debian/patches/series 2019-07-23 20:25:41.000000000 +0000 +++ pastebinit-1.5.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -0001-move-away-from-deprecated-platform-functions.patch -0002-update-urlopen-usage.patch diff -Nru pastebinit-1.5/debian/watch pastebinit-1.5.1/debian/watch --- pastebinit-1.5/debian/watch 2019-07-23 20:25:41.000000000 +0000 +++ pastebinit-1.5.1/debian/watch 2019-08-03 05:45:11.000000000 +0000 @@ -1,3 +1,3 @@ -version=3 -https://launchpad.net/pastebinit/ \ -(?:|.*/)pastebinit(?:[_\-]v?|)(\d[^\s/]*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) +version=4 +opts=filenamemangle=s/.+\/@ANY_VERSION@\.tar\.gz/pastebinit_$1\.orig\.tar\.gz/ \ + https://github.com/lubuntu-team/pastebinit/releases .*/@ANY_VERSION@\.tar\.gz diff -Nru pastebinit-1.5/pastebin.d/cxg.de.conf pastebinit-1.5.1/pastebin.d/cxg.de.conf --- pastebinit-1.5/pastebin.d/cxg.de.conf 2016-02-29 06:27:28.000000000 +0000 +++ pastebinit-1.5.1/pastebin.d/cxg.de.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,14 +0,0 @@ -[pastebin] -basename = cxg.de -regexp = http://cxg.de - -[format] -user = desc -content = pastetext -format = lang -page = page -regexp = regexp - -[defaults] -page = paste.php -regexp = href="http://cxg.de/(.*)" diff -Nru pastebinit-1.5/pastebin.d/lpaste.net.conf pastebinit-1.5.1/pastebin.d/lpaste.net.conf --- pastebinit-1.5/pastebin.d/lpaste.net.conf 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/pastebin.d/lpaste.net.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -[pastebin] -basename = lpaste.net -regexp = http://lpaste.net - -[format] -public = public -title = title -user = author -lang = language -channel = channel -content = paste -email = email -page = page - -[defaults] -page = new -public = Public -channel = -email = -lang = diff -Nru pastebinit-1.5/pastebinit pastebinit-1.5.1/pastebinit --- pastebinit-1.5/pastebinit 2016-03-01 05:52:32.000000000 +0000 +++ pastebinit-1.5.1/pastebinit 2019-08-03 05:35:53.000000000 +0000 @@ -1,10 +1,9 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Author: Stéphane Graber # Written by Stéphane Graber # Daniel Bartlett -# Last modification : Mon Jan 6 18:46:46 EST 2014 # 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 @@ -23,23 +22,18 @@ from __future__ import print_function import sys -if sys.version[0] == "2": - from ConfigParser import NoOptionError - from ConfigParser import SafeConfigParser as ConfigParser - from urllib import urlencode - from urllib import FancyURLopener -else: - from configparser import ConfigParser, NoOptionError - from urllib.parse import urlencode - from urllib.request import FancyURLopener +from configparser import ConfigParser, NoOptionError +from urllib.parse import urlencode +from urllib import request # Set the default pastebin defaultPB = "pastebin.com" # Now try to override it with a distributor pastebin try: - import platform - release = platform.linux_distribution()[0].lower() + import distro + release = distro.linux_distribution( + full_distribution_name=False)[0].lower() if release == 'debian': defaultPB = "paste.debian.net" elif release == 'fedora': @@ -69,15 +63,16 @@ socket.setdefaulttimeout(15) # Version number to show in the usage - version = "1.5" + version = "1.5.1" configfile = os.path.expanduser("~/.pastebinit.xml") - # Custom urlopener to handle 401's - class pasteURLopener(FancyURLopener): + class PasteRequest(request.Request): version = "Pastebinit v%s" % version - def http_error_401(self, url, fp, errcode, errmsg, headers, data=None): - return None + def __init__(self, *args, **opts): + super(PasteRequest, self).__init__(*args, **opts) + if 'User-agent' not in self.headers: + self.add_header('User-agent', self.version) def preloadPastebins(): # Check several places for config files: @@ -410,25 +405,25 @@ else: post_format = 'standard' - url_opener = pasteURLopener() + req = PasteRequest(fetch_url) if post_format == 'json': if json: - params = json.dumps(params) - url_opener.addheader('Content-type', 'text/json') + params = bytes(json.dumps(params), encoding='US-ASCII') + req.add_header('Content-type', 'text/json') else: print(_("Could not find any json library."), file=sys.stderr) sys.exit(1) else: # Convert to a format usable with the HTML POST - params = urlencode(params) + params = bytes(urlencode(params), encoding='US-ASCII') # Send the informations and be redirected to the final page if verbose: print("POSTing to: %s\nParams: %s" % ( fetch_url, str(params)), file=sys.stderr) try: - page = url_opener.open(fetch_url, params) + page = request.urlopen(req, params) except Exception as e: print(_("Failed to contact the server: %s") % e, file=sys.stderr) sys.exit(1) diff -Nru pastebinit-1.5/pastebinit.xml pastebinit-1.5.1/pastebinit.xml --- pastebinit-1.5/pastebinit.xml 2016-02-29 16:39:32.000000000 +0000 +++ pastebinit-1.5.1/pastebinit.xml 2019-08-03 05:35:53.000000000 +0000 @@ -4,7 +4,7 @@ Stephane"> Graber"> - January 06, 2014"> + August 03, 2019"> 1"> stgraber@ubuntu.com"> @@ -112,7 +112,7 @@ Here's an example file: <pastebinit> - <pastebin>http://paste.ubuntu.com</pastebin> + <pastebin>https://paste.ubuntu.com</pastebin> <author>Stephane Graber</author> <jabberid>stgraber@stgraber.org</jabberid> <format>text</format> diff -Nru pastebinit-1.5/po/af.po pastebinit-1.5.1/po/af.po --- pastebinit-1.5/po/af.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/af.po 2019-08-03 05:35:53.000000000 +0000 @@ -9,13 +9,13 @@ "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-01-06 23:31+0000\n" "PO-Revision-Date: 2012-10-23 12:24+0000\n" -"Last-Translator: Dawid de Jager \n" +"Last-Translator: Dawid de Jager \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ast.po pastebinit-1.5.1/po/ast.po --- pastebinit-1.5/po/ast.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ast.po 2019-08-03 05:35:53.000000000 +0000 @@ -9,13 +9,13 @@ "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-01-06 23:31+0000\n" "PO-Revision-Date: 2012-02-14 12:49+0000\n" -"Last-Translator: ivarela \n" +"Last-Translator: ivarela \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/bs.po pastebinit-1.5.1/po/bs.po --- pastebinit-1.5/po/bs.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/bs.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" @@ -39,6 +39,7 @@ #: ../pastebinit:204 msgid "Reads on stdin for input or takes a list of filenames as parameters" msgstr "" +"Čita na standarnom ulazu ili uzima listu imena datoteka kao parametre." #: ../pastebinit:206 msgid "Optional arguments (not supported by all pastebins):" @@ -90,7 +91,7 @@ #: ../pastebinit:221 msgid "\t-v Print the version number" -msgstr "" +msgstr "\t-v Prikaži broj verzije" #: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 #: ../pastebinit:434 ../pastebinit:443 @@ -134,7 +135,7 @@ #: ../pastebinit:413 msgid "Failed to contact the server: %s" -msgstr "" +msgstr "Neuspjelo kontaktiranje servera: %s" #: ../pastebinit:437 msgid "" diff -Nru pastebinit-1.5/po/ca.po pastebinit-1.5.1/po/ca.po --- pastebinit-1.5/po/ca.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ca.po 2019-08-03 05:35:53.000000000 +0000 @@ -9,13 +9,13 @@ "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2014-01-06 23:31+0000\n" "PO-Revision-Date: 2012-02-14 07:12+0000\n" -"Last-Translator: David Planella \n" +"Last-Translator: David Planella \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ca@valencia.po pastebinit-1.5.1/po/ca@valencia.po --- pastebinit-1.5/po/ca@valencia.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ca@valencia.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ce.po pastebinit-1.5.1/po/ce.po --- pastebinit-1.5/po/ce.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ce.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/cs.po pastebinit-1.5.1/po/cs.po --- pastebinit-1.5/po/cs.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/cs.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,16 +14,16 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" -msgstr "" +msgstr "%s: žádná sekce [pastebin]" #: ../pastebinit:110 msgid "%s: no 'basename' in [pastebin]" -msgstr "" +msgstr "%s: žádné 'výchozí jméno' v [pastebin]" #: ../pastebinit:139 #, docstring @@ -35,14 +35,18 @@ "Unknown website, please post a bugreport to request this pastebin to be " "added (%s)" msgstr "" +"Neznámá webová stránka, napište prosím hlášení o chybě, aby bylo k této " +"pastebin události přidáno (%s)" #: ../pastebinit:204 msgid "Reads on stdin for input or takes a list of filenames as parameters" msgstr "" +"Na vstupu čte standardní vstup \"stdin\", nebo jako parametr vezme seznam " +"názvů souborů" #: ../pastebinit:206 msgid "Optional arguments (not supported by all pastebins):" -msgstr "" +msgstr "Volitelné argumenty (není podporováno všemi pastebins):" #: ../pastebinit:208 msgid "\t-a " @@ -62,40 +66,40 @@ #: ../pastebinit:212 msgid "\t-i " -msgstr "" +msgstr "\t-i " #: ../pastebinit:213 msgid "\t-l List all supported pastebins" -msgstr "" +msgstr "\t-l Seznam všech podporovaných pastebins" #: ../pastebinit:214 msgid "\t-j " -msgstr "" +msgstr "\t-j " #: ../pastebinit:216 msgid "\t-m " -msgstr "" +msgstr "\t-m " #: ../pastebinit:218 msgid "\t-r " -msgstr "" +msgstr "\t-r " #: ../pastebinit:219 msgid "\t-t " -msgstr "" +msgstr "\t-t <Název vkládání: výchozí je prázdné>" #: ../pastebinit:220 msgid "\t-u <username> -p <password>" -msgstr "" +msgstr "\t-u <uživatelské jméno> -p <heslo>" #: ../pastebinit:221 msgid "\t-v Print the version number" -msgstr "" +msgstr "\t-v Vypiš číslo verze" #: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 #: ../pastebinit:434 ../pastebinit:443 msgid "KeyboardInterrupt caught." -msgstr "" +msgstr "zachycení přerušení klávesnice \"KeyboardInterrupt\"." #: ../pastebinit:274 msgid "Error parsing configuration file!" @@ -113,7 +117,7 @@ #: ../pastebinit:313 msgid "Supported pastebins:" -msgstr "" +msgstr "Podporované pastebins:" #: ../pastebinit:349 msgid "Unable to read from: %s" @@ -126,17 +130,20 @@ #: ../pastebinit:370 msgid "The content you are trying to send exceeds the pastebin's size limit." msgstr "" +"Obsah, který se pokoušíte odeslat, překračuje velikostní limit pro pastebin." #: ../pastebinit:403 msgid "Could not find any json library." -msgstr "" +msgstr "Nelze najít žádnou JSON knihovnu" #: ../pastebinit:413 msgid "Failed to contact the server: %s" -msgstr "" +msgstr "Chyba spojení se serverem: %s" #: ../pastebinit:437 msgid "" "Unable to read or parse the result page, it could be a server timeout or a " "change server side, try with another pastebin." msgstr "" +"Nelze načíst nebo analyzovat požadovanou stránku, může to být způsobeno " +"časovým limitem, nebo změnou umístněním serveru, zkuste to s jiným pastebin." diff -Nru pastebinit-1.5/po/cy.po pastebinit-1.5.1/po/cy.po --- pastebinit-1.5/po/cy.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/cy.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,27 +14,29 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" -msgstr "" +msgstr "%s: dim adran [pastebin]" #: ../pastebinit:110 msgid "%s: no 'basename' in [pastebin]" -msgstr "" +msgstr "%s: na 'enw sylfaen' yn [pastebin]" #: ../pastebinit:139 #, docstring msgid "Return the parameters array for the selected pastebin" -msgstr "" +msgstr "Dychwelwch y amrywiaeth paramedrau ar gyfer y pastebin dethol" #: ../pastebinit:179 msgid "" "Unknown website, please post a bugreport to request this pastebin to be " "added (%s)" msgstr "" +"Gwefan anhysbys, os gwelwch yn dda bostio bugreport i ofyn am y pastebin i'w " +"hychwanegu" #: ../pastebinit:204 msgid "Reads on stdin for input or takes a list of filenames as parameters" @@ -42,35 +44,35 @@ #: ../pastebinit:206 msgid "Optional arguments (not supported by all pastebins):" -msgstr "" +msgstr "Dadleuon Dewisol (heb ei gefnogi gan yr holl pastebins):" #: ../pastebinit:208 msgid "\t-a <author:default is '%s'>" -msgstr "" +msgstr "\t-a <awdur:diofyn yn '%s'>" #: ../pastebinit:209 msgid "\t-b <pastebin url:default is '%s'>" -msgstr "" +msgstr "\t-b <pastebin url:diofyn yn '%s'>" #: ../pastebinit:210 msgid "\t-f <format of paste:default is '%s'>" -msgstr "" +msgstr "\t-f <fformat past:diofyn yn '%s'>" #: ../pastebinit:211 msgid "\t-h This help screen" -msgstr "" +msgstr "\t-h Mae'r sgrin hon yn help" #: ../pastebinit:212 msgid "\t-i <input file>" -msgstr "" +msgstr "\t-i <ffeil mewnbwn>" #: ../pastebinit:213 msgid "\t-l List all supported pastebins" -msgstr "" +msgstr "\t-l Rhestrwch yr holl pastebins cefnogi" #: ../pastebinit:214 msgid "\t-j <jabberid for notifications:default is '%s'>" -msgstr "" +msgstr "\t-j <jabberid ar gyfer hysbysiadau:diofyn yn '%s'>" #: ../pastebinit:216 msgid "\t-m <permatag for all versions of a post:default is blank>" @@ -82,11 +84,11 @@ #: ../pastebinit:219 msgid "\t-t <title of paste:default is blank>" -msgstr "" +msgstr "\t-t <teitl past:diofyn yn wag>" #: ../pastebinit:220 msgid "\t-u <username> -p <password>" -msgstr "" +msgstr "\t-u <enw defnyddiwr> -p <cyfrinair>" #: ../pastebinit:221 msgid "\t-v Print the version number" @@ -95,32 +97,33 @@ #: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 #: ../pastebinit:434 ../pastebinit:443 msgid "KeyboardInterrupt caught." -msgstr "" +msgstr "KeyboardInterrupt dal." #: ../pastebinit:274 msgid "Error parsing configuration file!" -msgstr "" +msgstr "Gwall dosrannu ffeil cyfluniad!" #: ../pastebinit:275 msgid "" "Please ensure that your configuration file looks similar to the following:" msgstr "" +"Gwnewch yn siŵr bod eich ffeil cyfluniad yn edrych yn debyg i'r canlynol:" #: ../pastebinit:288 msgid "Invalid arguments!\n" -msgstr "" +msgstr "Dadleuon annilys!\n" #: ../pastebinit:313 msgid "Supported pastebins:" -msgstr "" +msgstr "Pastebins Chymorth:" #: ../pastebinit:349 msgid "Unable to read from: %s" -msgstr "" +msgstr "Methu darllen o: %s" #: ../pastebinit:353 msgid "You are trying to send an empty document, exiting." -msgstr "" +msgstr "Yr ydych yn ceisio anfon dogfen wag, cyffrous." #: ../pastebinit:370 msgid "The content you are trying to send exceeds the pastebin's size limit." diff -Nru pastebinit-1.5/po/da.po pastebinit-1.5.1/po/da.po --- pastebinit-1.5/po/da.po 1970-01-01 00:00:00.000000000 +0000 +++ pastebinit-1.5.1/po/da.po 2019-08-03 05:35:53.000000000 +0000 @@ -0,0 +1,141 @@ +# Danish translation for pastebinit +# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 +# This file is distributed under the same license as the pastebinit package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2016. +# +msgid "" +msgstr "" +"Project-Id-Version: pastebinit\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2014-01-06 23:31+0000\n" +"PO-Revision-Date: 2016-04-16 10:10+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Danish <da@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" + +#: ../pastebinit:105 +msgid "%s: no section [pastebin]" +msgstr "%s: ingen sektion [pastebin]" + +#: ../pastebinit:110 +msgid "%s: no 'basename' in [pastebin]" +msgstr "%s: intet \"basenavn\" i [pastebin]" + +#: ../pastebinit:139 +#, docstring +msgid "Return the parameters array for the selected pastebin" +msgstr "" + +#: ../pastebinit:179 +msgid "" +"Unknown website, please post a bugreport to request this pastebin to be " +"added (%s)" +msgstr "" + +#: ../pastebinit:204 +msgid "Reads on stdin for input or takes a list of filenames as parameters" +msgstr "" + +#: ../pastebinit:206 +msgid "Optional arguments (not supported by all pastebins):" +msgstr "" + +#: ../pastebinit:208 +msgid "\t-a <author:default is '%s'>" +msgstr "" + +#: ../pastebinit:209 +msgid "\t-b <pastebin url:default is '%s'>" +msgstr "" + +#: ../pastebinit:210 +msgid "\t-f <format of paste:default is '%s'>" +msgstr "" + +#: ../pastebinit:211 +msgid "\t-h This help screen" +msgstr "" + +#: ../pastebinit:212 +msgid "\t-i <input file>" +msgstr "" + +#: ../pastebinit:213 +msgid "\t-l List all supported pastebins" +msgstr "" + +#: ../pastebinit:214 +msgid "\t-j <jabberid for notifications:default is '%s'>" +msgstr "" + +#: ../pastebinit:216 +msgid "\t-m <permatag for all versions of a post:default is blank>" +msgstr "" + +#: ../pastebinit:218 +msgid "\t-r <parent posts ID:defaults to none>" +msgstr "" + +#: ../pastebinit:219 +msgid "\t-t <title of paste:default is blank>" +msgstr "" + +#: ../pastebinit:220 +msgid "\t-u <username> -p <password>" +msgstr "" + +#: ../pastebinit:221 +msgid "\t-v Print the version number" +msgstr "" + +#: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 +#: ../pastebinit:434 ../pastebinit:443 +msgid "KeyboardInterrupt caught." +msgstr "" + +#: ../pastebinit:274 +msgid "Error parsing configuration file!" +msgstr "" + +#: ../pastebinit:275 +msgid "" +"Please ensure that your configuration file looks similar to the following:" +msgstr "" + +#: ../pastebinit:288 +msgid "Invalid arguments!\n" +msgstr "" + +#: ../pastebinit:313 +msgid "Supported pastebins:" +msgstr "" + +#: ../pastebinit:349 +msgid "Unable to read from: %s" +msgstr "" + +#: ../pastebinit:353 +msgid "You are trying to send an empty document, exiting." +msgstr "" + +#: ../pastebinit:370 +msgid "The content you are trying to send exceeds the pastebin's size limit." +msgstr "" + +#: ../pastebinit:403 +msgid "Could not find any json library." +msgstr "" + +#: ../pastebinit:413 +msgid "Failed to contact the server: %s" +msgstr "" + +#: ../pastebinit:437 +msgid "" +"Unable to read or parse the result page, it could be a server timeout or a " +"change server side, try with another pastebin." +msgstr "" diff -Nru pastebinit-1.5/po/de.po pastebinit-1.5.1/po/de.po --- pastebinit-1.5/po/de.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/de.po 2019-08-03 05:35:53.000000000 +0000 @@ -1,21 +1,22 @@ # Po file for pastebinit # Copyright (C) 2007, Pastebinit Developers Team # Vinzenz Vietzke <vinz@v1nz.org>, 2008 -# -# +# Markus Hiereth <markus.hiereth@freenet.de>, 2017. +# Markus Hiereth <translation@hiereth.de>, 2017, 2018. msgid "" msgstr "" "Project-Id-Version: pastebinit 0.8.1\n" "Report-Msgid-Bugs-To: pastebinit@packages.debian.org\n" "POT-Creation-Date: 2014-01-06 23:31+0000\n" -"PO-Revision-Date: 2015-02-17 09:53+0000\n" -"Last-Translator: Rolf Leggewie <Unknown>\n" -"Language-Team: German <debian-l10n-german@lists.debian.org>\n" +"PO-Revision-Date: 2018-04-15 15:30+0000\n" +"Last-Translator: Markus Hiereth <Unknown>\n" +"Language-Team: debian-l10n-german <debian-l10n-german@lists.debian.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" +"Language: de\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" @@ -23,7 +24,7 @@ #: ../pastebinit:110 msgid "%s: no 'basename' in [pastebin]" -msgstr "%s: Kein 'basename' in [pastebin]" +msgstr "%s: Kein »basename« in [pastebin]" #: ../pastebinit:139 #, docstring @@ -35,31 +36,31 @@ "Unknown website, please post a bugreport to request this pastebin to be " "added (%s)" msgstr "" -"Unbekannte Webseite. Bitte senden Sie einen Fehlerbericht, damit dieser " +"Unbekannte Webadresse. Bitte senden Sie einen Fehlerbericht, damit dieser " "Pastebin hinzugefügt werden kann (%s)" #: ../pastebinit:204 msgid "Reads on stdin for input or takes a list of filenames as parameters" msgstr "" -"Wartet auf Eingaben via stdin oder akzeptiert eine Liste von Dateinamen als " -"Argumente" +"Wartet auf Eingaben via Standardeingabe oder akzeptiert eine Liste von " +"Dateinamen als Argumente" #: ../pastebinit:206 msgid "Optional arguments (not supported by all pastebins):" msgstr "" -"Zusätzliche Argumente, die nicht von allen Pastebin verstanden werden:" +"Zusätzliche Argumente, die nicht von allen Pastebins verstanden werden:" #: ../pastebinit:208 msgid "\t-a <author:default is '%s'>" -msgstr "\t-a <Autor: Vorgabe ist '%s'>" +msgstr "\t-a <Autor: Vorgabe ist »%s«>" #: ../pastebinit:209 msgid "\t-b <pastebin url:default is '%s'>" -msgstr "\t-b <Pastebin-URL: Vorgabe ist '%s'>" +msgstr "\t-b <Pastebin-URL: Vorgabe ist »%s«>" #: ../pastebinit:210 msgid "\t-f <format of paste:default is '%s'>" -msgstr "\t-f<Format des Dokuments: Vorgabe ist '%s'>" +msgstr "\t-f <Format des Beitrags: Vorgabe ist »%s«>" #: ../pastebinit:211 msgid "\t-h This help screen" @@ -67,15 +68,15 @@ #: ../pastebinit:212 msgid "\t-i <input file>" -msgstr "" +msgstr "\t-i <Eingabedatei>" #: ../pastebinit:213 msgid "\t-l List all supported pastebins" -msgstr "\t-l Liste der unterstützen Pastebins" +msgstr "\t-l alle unterstützen Pastebins auflisten" #: ../pastebinit:214 msgid "\t-j <jabberid for notifications:default is '%s'>" -msgstr "\t-j <Jabber-ID für Benachrichtigungen: Vorgabe ist '%s'>" +msgstr "\t-j <Jabber-ID für Benachrichtigungen: Vorgabe ist »%s«>" #: ../pastebinit:216 msgid "\t-m <permatag for all versions of a post:default is blank>" @@ -85,7 +86,7 @@ #: ../pastebinit:218 msgid "\t-r <parent posts ID:defaults to none>" -msgstr "\t-r <ID des Elternbeitrags: keine Vorgabe>" +msgstr "\t-r <ID des Elternbeitrags: ohne Vorgabewert>" #: ../pastebinit:219 msgid "\t-t <title of paste:default is blank>" @@ -97,23 +98,22 @@ #: ../pastebinit:221 msgid "\t-v Print the version number" -msgstr "\t-v Gibt die Versionsnummer aus" +msgstr "\t-v Version des Programms ausgeben" #: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 #: ../pastebinit:434 ../pastebinit:443 msgid "KeyboardInterrupt caught." -msgstr "Beendet durch manuellen Abbruch." +msgstr "Abbruchanforderung (»KeyboardInterrupt«) erhalten." #: ../pastebinit:274 msgid "Error parsing configuration file!" -msgstr "Fehler beim Auslesen der Konfigurationsdatei!" +msgstr "Fehler beim Auswerten der Konfigurationsdatei!" #: ../pastebinit:275 msgid "" "Please ensure that your configuration file looks similar to the following:" msgstr "" -"Bitte stellen Sie sicher, dass Ihre Konfigurationsdatei in etwa wie folgt " -"aussieht:" +"Bitte stellen Sie sicher, dass Ihre Konfigurationsdatei in etwa so aussieht:" #: ../pastebinit:288 msgid "Invalid arguments!\n" @@ -129,13 +129,13 @@ #: ../pastebinit:353 msgid "You are trying to send an empty document, exiting." -msgstr "Sie versuchen ein leeres Dokument zu senden, Abbruch." +msgstr "Sie versuchen einen leeren Beitrag zu senden; Abbruch." #: ../pastebinit:370 msgid "The content you are trying to send exceeds the pastebin's size limit." msgstr "" -"Der von Ihnen gesendete Inhalt überschreitet das Größenlimit des gewählten " -"Pastebin." +"Der Beitrag, den Sie versuchen zu senden, ist größer als vom gewählten " +"Pastebin erlaubt." #: ../pastebinit:403 msgid "Could not find any json library." @@ -143,16 +143,16 @@ #: ../pastebinit:413 msgid "Failed to contact the server: %s" -msgstr "Konnte keinen Kontakt zum Server %s aufnehmen" +msgstr "Kontaktaufnahme mit dem Server %s schlug fehl." #: ../pastebinit:437 msgid "" "Unable to read or parse the result page, it could be a server timeout or a " "change server side, try with another pastebin." msgstr "" -"Die Ergebnisseite kann nicht gelesen oder ausgewertet werden, dies könnte " -"durch eine Zeitüberschreitung des Servers oder eine Server-seitige " -"Veränderung verursacht worden sein. Versuchen Sie einen anderen Pastebin." +"Die Ergebnisseite kann nicht gelesen oder ausgewertet werden, was mit einer " +"Zeitbegrenzung oder einer Änderung auf der Seite des Servers zusammenhängen " +"könnte. Versuchen Sie einen anderen Pastebin." #~ msgid "Reads on stdin for input or takes a filename as first parameter" #~ msgstr "Standardeingabe oder von Datei als erstem Parameter auslesen" diff -Nru pastebinit-1.5/po/el.po pastebinit-1.5.1/po/el.po --- pastebinit-1.5/po/el.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/el.po 2019-08-03 05:35:53.000000000 +0000 @@ -9,13 +9,13 @@ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "POT-Creation-Date: 2014-01-06 23:31+0000\n" "PO-Revision-Date: 2012-02-15 18:39+0000\n" -"Last-Translator: Simos Xenitellis <Unknown>\n" +"Last-Translator: Simos Xenitellis  <Unknown>\n" "Language-Team: Greek <el@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" @@ -41,6 +41,8 @@ #: ../pastebinit:204 msgid "Reads on stdin for input or takes a list of filenames as parameters" msgstr "" +"Διαβάζει από το stdin για είσοδο ή παίρνει μια λίστα από ονόματα αρχείων ως " +"παραμέτρους" #: ../pastebinit:206 msgid "Optional arguments (not supported by all pastebins):" @@ -93,7 +95,7 @@ #: ../pastebinit:221 msgid "\t-v Print the version number" -msgstr "" +msgstr "\t-v Τυπώνει τον αριθμό έκδοσης" #: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 #: ../pastebinit:434 ../pastebinit:443 @@ -139,7 +141,7 @@ #: ../pastebinit:413 msgid "Failed to contact the server: %s" -msgstr "" +msgstr "Αποτυχία επικοινωνίας με το διακομιστή: %s" #: ../pastebinit:437 msgid "" diff -Nru pastebinit-1.5/po/en_AU.po pastebinit-1.5.1/po/en_AU.po --- pastebinit-1.5/po/en_AU.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/en_AU.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/en_GB.po pastebinit-1.5.1/po/en_GB.po --- pastebinit-1.5/po/en_GB.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/en_GB.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/eo.po pastebinit-1.5.1/po/eo.po --- pastebinit-1.5/po/eo.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/eo.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/es.po pastebinit-1.5.1/po/es.po --- pastebinit-1.5/po/es.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/es.po 2019-08-03 05:35:53.000000000 +0000 @@ -9,13 +9,13 @@ "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "POT-Creation-Date: 2014-01-06 23:31+0000\n" "PO-Revision-Date: 2012-02-16 00:01+0000\n" -"Last-Translator: Adolfo Jayme <fitoschido@gmail.com>\n" +"Last-Translator: Adolfo Jayme <Unknown>\n" "Language-Team: Spanish <es@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/et.po pastebinit-1.5.1/po/et.po --- pastebinit-1.5/po/et.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/et.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/fi.po pastebinit-1.5.1/po/fi.po --- pastebinit-1.5/po/fi.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/fi.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/fr.po pastebinit-1.5.1/po/fr.po --- pastebinit-1.5/po/fr.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/fr.po 2019-08-03 05:35:53.000000000 +0000 @@ -13,8 +13,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/gl.po pastebinit-1.5.1/po/gl.po --- pastebinit-1.5/po/gl.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/gl.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/he.po pastebinit-1.5.1/po/he.po --- pastebinit-1.5/po/he.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/he.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/hr.po pastebinit-1.5.1/po/hr.po --- pastebinit-1.5/po/hr.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/hr.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/id.po pastebinit-1.5.1/po/id.po --- pastebinit-1.5/po/id.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/id.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/it.po pastebinit-1.5.1/po/it.po --- pastebinit-1.5/po/it.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/it.po 2019-08-03 05:35:53.000000000 +0000 @@ -13,8 +13,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ja.po pastebinit-1.5.1/po/ja.po --- pastebinit-1.5/po/ja.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ja.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/km.po pastebinit-1.5.1/po/km.po --- pastebinit-1.5/po/km.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/km.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/kn.po pastebinit-1.5.1/po/kn.po --- pastebinit-1.5/po/kn.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/kn.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ko.po pastebinit-1.5.1/po/ko.po --- pastebinit-1.5/po/ko.po 1970-01-01 00:00:00.000000000 +0000 +++ pastebinit-1.5.1/po/ko.po 2019-08-03 05:35:53.000000000 +0000 @@ -0,0 +1,141 @@ +# Korean translation for pastebinit +# Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 +# This file is distributed under the same license as the pastebinit package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: pastebinit\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2014-01-06 23:31+0000\n" +"PO-Revision-Date: 2017-08-19 07:50+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Korean <ko@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" + +#: ../pastebinit:105 +msgid "%s: no section [pastebin]" +msgstr "%s: [pastebin] 섹션이 없습니다" + +#: ../pastebinit:110 +msgid "%s: no 'basename' in [pastebin]" +msgstr "%s: [pastebin] 에 'basename' 이 없습니다" + +#: ../pastebinit:139 +#, docstring +msgid "Return the parameters array for the selected pastebin" +msgstr "선택된 pastebin 의 파라메터 배열을 돌려줍니다" + +#: ../pastebinit:179 +msgid "" +"Unknown website, please post a bugreport to request this pastebin to be " +"added (%s)" +msgstr "알려지지 않은 웹 사이트입니다. pastebin에 추가될 수 있도록 버그리포트를 보내주세요 (%s)" + +#: ../pastebinit:204 +msgid "Reads on stdin for input or takes a list of filenames as parameters" +msgstr "입력에 대한 stdin 을 읽거나 파일명 목록을 파라메터로 가져옵니다" + +#: ../pastebinit:206 +msgid "Optional arguments (not supported by all pastebins):" +msgstr "옵션 인자값 (모든 pastebin이 지원하는 것은 아님):" + +#: ../pastebinit:208 +msgid "\t-a <author:default is '%s'>" +msgstr "\t-a <저자. 기본값은 '%s'>" + +#: ../pastebinit:209 +msgid "\t-b <pastebin url:default is '%s'>" +msgstr "\t-b <pastebin 주소. 기본값은 '%s'>" + +#: ../pastebinit:210 +msgid "\t-f <format of paste:default is '%s'>" +msgstr "\t-f <붙여넣는 형식. 기본값은 '%s'>" + +#: ../pastebinit:211 +msgid "\t-h This help screen" +msgstr "\t-h 이 도움말 화면" + +#: ../pastebinit:212 +msgid "\t-i <input file>" +msgstr "\t-i <입력 파일>" + +#: ../pastebinit:213 +msgid "\t-l List all supported pastebins" +msgstr "\t-l 지원하는 모든 pastebin 목록" + +#: ../pastebinit:214 +msgid "\t-j <jabberid for notifications:default is '%s'>" +msgstr "\t-j <알림을 전송할 jabber id. 기본값은 '%s'>" + +#: ../pastebinit:216 +msgid "\t-m <permatag for all versions of a post:default is blank>" +msgstr "\t-m <올리는 모든 포스트 버전의 permatag. 기본값은 공란>" + +#: ../pastebinit:218 +msgid "\t-r <parent posts ID:defaults to none>" +msgstr "\t-r <부모 포스트 ID: 기본값은 없음>" + +#: ../pastebinit:219 +msgid "\t-t <title of paste:default is blank>" +msgstr "\t-t <붙여넣은 항목의 제목: 기본값은 공란>" + +#: ../pastebinit:220 +msgid "\t-u <username> -p <password>" +msgstr "\t-u <사용자명> -p <비밀번호>" + +#: ../pastebinit:221 +msgid "\t-v Print the version number" +msgstr "\t-v 버전 번호를 출력합니다" + +#: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 +#: ../pastebinit:434 ../pastebinit:443 +msgid "KeyboardInterrupt caught." +msgstr "KeyboardInterrupt 가 발생하였습니다." + +#: ../pastebinit:274 +msgid "Error parsing configuration file!" +msgstr "설정 파일을 읽어들이는 데에 오류가 발생하였습니다." + +#: ../pastebinit:275 +msgid "" +"Please ensure that your configuration file looks similar to the following:" +msgstr "설정 파일이 다음 상황과 같은지 확인하여 주십시요:" + +#: ../pastebinit:288 +msgid "Invalid arguments!\n" +msgstr "올바르지 않은 인자값입니다!\n" + +#: ../pastebinit:313 +msgid "Supported pastebins:" +msgstr "제공되는 pastebin:" + +#: ../pastebinit:349 +msgid "Unable to read from: %s" +msgstr "읽을 수 없음 : %s" + +#: ../pastebinit:353 +msgid "You are trying to send an empty document, exiting." +msgstr "비어있는 문서를 전송하려고 시도하였습니다. 종료합니다." + +#: ../pastebinit:370 +msgid "The content you are trying to send exceeds the pastebin's size limit." +msgstr "전송을 시도한 내용은 pastebin 사이즈 제한을 초과하였습니다." + +#: ../pastebinit:403 +msgid "Could not find any json library." +msgstr "json 라이브러리를 찾을 수 없었습니다." + +#: ../pastebinit:413 +msgid "Failed to contact the server: %s" +msgstr "서버 연결에 실패하였습니다: %s" + +#: ../pastebinit:437 +msgid "" +"Unable to read or parse the result page, it could be a server timeout or a " +"change server side, try with another pastebin." +msgstr "" diff -Nru pastebinit-1.5/po/lv.po pastebinit-1.5.1/po/lv.po --- pastebinit-1.5/po/lv.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/lv.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ml.po pastebinit-1.5.1/po/ml.po --- pastebinit-1.5/po/ml.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ml.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ms.po pastebinit-1.5.1/po/ms.po --- pastebinit-1.5/po/ms.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ms.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/my.po pastebinit-1.5.1/po/my.po --- pastebinit-1.5/po/my.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/my.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/nb.po pastebinit-1.5.1/po/nb.po --- pastebinit-1.5/po/nb.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/nb.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,49 +14,50 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" -msgstr "" +msgstr "%s: ingen seksjon [pastebin]" #: ../pastebinit:110 msgid "%s: no 'basename' in [pastebin]" -msgstr "" +msgstr "%s: [pastebin] mangler «basename»" #: ../pastebinit:139 #, docstring msgid "Return the parameters array for the selected pastebin" -msgstr "Returner parameterlisten for den valgte pastebin" +msgstr "Skriv ut parameterliste for valgt pastebin" #: ../pastebinit:179 msgid "" "Unknown website, please post a bugreport to request this pastebin to be " "added (%s)" msgstr "" -"Ukjent webside, vær snill å send en bugrapport for å legge til den " -"etterspurte pastebin (%s)" +"Ukjent nettside. Send inn en feilrapport og be om at denne pastebin-en blir " +"lagt til (%s)" #: ../pastebinit:204 msgid "Reads on stdin for input or takes a list of filenames as parameters" msgstr "" +"Leser fra standard inndata eller bruker en liste over filnavn som parametre" #: ../pastebinit:206 msgid "Optional arguments (not supported by all pastebins):" -msgstr "" +msgstr "Tilleggsargumenter (støttes ikke av alle pastebin-er):" #: ../pastebinit:208 msgid "\t-a <author:default is '%s'>" -msgstr "\t-a <forfatter:standard er '%s'>" +msgstr "\t-a <forfatter:standard er «%s»>" #: ../pastebinit:209 msgid "\t-b <pastebin url:default is '%s'>" -msgstr "\t-b <pastebin url:standard er '%s'>" +msgstr "\t-b <pastebin url:standard er «%s»>" #: ../pastebinit:210 msgid "\t-f <format of paste:default is '%s'>" -msgstr "\t-f <format for paste:standard er '%s'>" +msgstr "\t-f <format for paste:standard er «%s»>" #: ../pastebinit:211 msgid "\t-h This help screen" @@ -64,27 +65,27 @@ #: ../pastebinit:212 msgid "\t-i <input file>" -msgstr "" +msgstr "\t-i <inndatafil>" #: ../pastebinit:213 msgid "\t-l List all supported pastebins" -msgstr "" +msgstr "\t-l Vis alle støttede pastebin-er" #: ../pastebinit:214 msgid "\t-j <jabberid for notifications:default is '%s'>" -msgstr "\t-j <jabberid for varsel:standard er '%s'>" +msgstr "\t-j <jabber-id for varsel:standard er «%s»>" #: ../pastebinit:216 msgid "\t-m <permatag for all versions of a post:default is blank>" -msgstr "\t-m <permatag for alle versjoner av en post:standard er blank>" +msgstr "\t-m <permatag for alle versjoner av en post:står tom som standard>" #: ../pastebinit:218 msgid "\t-r <parent posts ID:defaults to none>" -msgstr "\t-r <forelder posts ID:standard er tom>" +msgstr "\t-r <forelderpost-ID:står tom som standard>" #: ../pastebinit:219 msgid "\t-t <title of paste:default is blank>" -msgstr "\t-t <paste tittel:standard er blank>" +msgstr "\t-t <tittel:står tom som standard>" #: ../pastebinit:220 msgid "\t-u <username> -p <password>" @@ -92,7 +93,7 @@ #: ../pastebinit:221 msgid "\t-v Print the version number" -msgstr "" +msgstr "\t-v Skriv ut versjonsnummer" #: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 #: ../pastebinit:434 ../pastebinit:443 @@ -101,24 +102,24 @@ #: ../pastebinit:274 msgid "Error parsing configuration file!" -msgstr "Feil ved parsning av konfigurasjonsfil!" +msgstr "Feil under tolkning av oppsettsfil!" #: ../pastebinit:275 msgid "" "Please ensure that your configuration file looks similar to the following:" -msgstr "Pass på at konfigurasjonsfilen ligner det følgende:" +msgstr "Pass på at oppsettsfila likner følgende:" #: ../pastebinit:288 msgid "Invalid arguments!\n" -msgstr "Ugyldige argument!\n" +msgstr "Ugyldige argumenter!\n" #: ../pastebinit:313 msgid "Supported pastebins:" -msgstr "" +msgstr "Støttede pastebin-er:" #: ../pastebinit:349 msgid "Unable to read from: %s" -msgstr "Klarer ikke å lese fra: %s" +msgstr "Klarte ikke å lese fra %s" #: ../pastebinit:353 msgid "You are trying to send an empty document, exiting." @@ -127,19 +128,20 @@ #: ../pastebinit:370 msgid "The content you are trying to send exceeds the pastebin's size limit." msgstr "" +"Innholdet du prøver å sende tar større plass enn hva pastebin tillater." #: ../pastebinit:403 msgid "Could not find any json library." -msgstr "" +msgstr "Fant ikke json-bibliotek." #: ../pastebinit:413 msgid "Failed to contact the server: %s" -msgstr "" +msgstr "Klarte ikke å kontakte tjeneren. %s" #: ../pastebinit:437 msgid "" "Unable to read or parse the result page, it could be a server timeout or a " "change server side, try with another pastebin." msgstr "" -"Klarer ikke å lese eller tolke resultatsiden. Dette kan være grunnet " -"tidsavbrudd eller endring på serveren. Prøv med en annen pastebin." +"Klarte ikke å lese eller tolke resultatside. Dette kan skyldes tidsavbrudd " +"eller endring på tjeneren. Prøv en annen pastebin." diff -Nru pastebinit-1.5/po/nl.po pastebinit-1.5.1/po/nl.po --- pastebinit-1.5/po/nl.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/nl.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/oc.po pastebinit-1.5.1/po/oc.po --- pastebinit-1.5/po/oc.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/oc.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/pa.po pastebinit-1.5.1/po/pa.po --- pastebinit-1.5/po/pa.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/pa.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/pl.po pastebinit-1.5.1/po/pl.po --- pastebinit-1.5/po/pl.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/pl.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" @@ -41,6 +41,8 @@ #: ../pastebinit:204 msgid "Reads on stdin for input or takes a list of filenames as parameters" msgstr "" +"Odczytuje na wejściu standardowym dla wejścia lub pobiera listę nazw plików " +"jako parametrów" #: ../pastebinit:206 msgid "Optional arguments (not supported by all pastebins):" @@ -93,7 +95,7 @@ #: ../pastebinit:221 msgid "\t-v Print the version number" -msgstr "" +msgstr "\t-v Wyświetla numer wersji" #: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 #: ../pastebinit:434 ../pastebinit:443 @@ -138,7 +140,7 @@ #: ../pastebinit:413 msgid "Failed to contact the server: %s" -msgstr "" +msgstr "Błąd połączenia z serwerem: %s" #: ../pastebinit:437 msgid "" diff -Nru pastebinit-1.5/po/pt_BR.po pastebinit-1.5.1/po/pt_BR.po --- pastebinit-1.5/po/pt_BR.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/pt_BR.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/pt.po pastebinit-1.5.1/po/pt.po --- pastebinit-1.5/po/pt.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/pt.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ro.po pastebinit-1.5.1/po/ro.po --- pastebinit-1.5/po/ro.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ro.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/ru.po pastebinit-1.5.1/po/ru.po --- pastebinit-1.5/po/ru.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ru.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/sk.po pastebinit-1.5.1/po/sk.po --- pastebinit-1.5/po/sk.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/sk.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/sl.po pastebinit-1.5.1/po/sl.po --- pastebinit-1.5/po/sl.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/sl.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/sq.po pastebinit-1.5.1/po/sq.po --- pastebinit-1.5/po/sq.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/sq.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:33+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/sr.po pastebinit-1.5.1/po/sr.po --- pastebinit-1.5/po/sr.po 1970-01-01 00:00:00.000000000 +0000 +++ pastebinit-1.5.1/po/sr.po 2019-08-03 05:35:53.000000000 +0000 @@ -0,0 +1,141 @@ +# Serbian translation for pastebinit +# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 +# This file is distributed under the same license as the pastebinit package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2016. +# +msgid "" +msgstr "" +"Project-Id-Version: pastebinit\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2014-01-06 23:31+0000\n" +"PO-Revision-Date: 2016-03-02 20:38+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Serbian <sr@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" + +#: ../pastebinit:105 +msgid "%s: no section [pastebin]" +msgstr "" + +#: ../pastebinit:110 +msgid "%s: no 'basename' in [pastebin]" +msgstr "" + +#: ../pastebinit:139 +#, docstring +msgid "Return the parameters array for the selected pastebin" +msgstr "" + +#: ../pastebinit:179 +msgid "" +"Unknown website, please post a bugreport to request this pastebin to be " +"added (%s)" +msgstr "" + +#: ../pastebinit:204 +msgid "Reads on stdin for input or takes a list of filenames as parameters" +msgstr "" + +#: ../pastebinit:206 +msgid "Optional arguments (not supported by all pastebins):" +msgstr "" + +#: ../pastebinit:208 +msgid "\t-a <author:default is '%s'>" +msgstr "\t-a <аутор:основно је „%s“>" + +#: ../pastebinit:209 +msgid "\t-b <pastebin url:default is '%s'>" +msgstr "" + +#: ../pastebinit:210 +msgid "\t-f <format of paste:default is '%s'>" +msgstr "" + +#: ../pastebinit:211 +msgid "\t-h This help screen" +msgstr "\t-h Приказује овај екран помоћи" + +#: ../pastebinit:212 +msgid "\t-i <input file>" +msgstr "\t-i <улазна датотека>" + +#: ../pastebinit:213 +msgid "\t-l List all supported pastebins" +msgstr "" + +#: ../pastebinit:214 +msgid "\t-j <jabberid for notifications:default is '%s'>" +msgstr "" + +#: ../pastebinit:216 +msgid "\t-m <permatag for all versions of a post:default is blank>" +msgstr "" + +#: ../pastebinit:218 +msgid "\t-r <parent posts ID:defaults to none>" +msgstr "" + +#: ../pastebinit:219 +msgid "\t-t <title of paste:default is blank>" +msgstr "" + +#: ../pastebinit:220 +msgid "\t-u <username> -p <password>" +msgstr "\t-u <корисник> -p <лозинка>" + +#: ../pastebinit:221 +msgid "\t-v Print the version number" +msgstr "\t-v Исписује број издања" + +#: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 +#: ../pastebinit:434 ../pastebinit:443 +msgid "KeyboardInterrupt caught." +msgstr "" + +#: ../pastebinit:274 +msgid "Error parsing configuration file!" +msgstr "Грешка обраде датотеке подешавања!" + +#: ../pastebinit:275 +msgid "" +"Please ensure that your configuration file looks similar to the following:" +msgstr "" + +#: ../pastebinit:288 +msgid "Invalid arguments!\n" +msgstr "Неисправни аргументи!\n" + +#: ../pastebinit:313 +msgid "Supported pastebins:" +msgstr "" + +#: ../pastebinit:349 +msgid "Unable to read from: %s" +msgstr "Не могу да читам из: %s" + +#: ../pastebinit:353 +msgid "You are trying to send an empty document, exiting." +msgstr "Покушавате да пошаљете празан документ, излазим." + +#: ../pastebinit:370 +msgid "The content you are trying to send exceeds the pastebin's size limit." +msgstr "" + +#: ../pastebinit:403 +msgid "Could not find any json library." +msgstr "Не могу да нађем никакву јсон библиотеку." + +#: ../pastebinit:413 +msgid "Failed to contact the server: %s" +msgstr "Нисам успео да ступим у везу са сервером: %s" + +#: ../pastebinit:437 +msgid "" +"Unable to read or parse the result page, it could be a server timeout or a " +"change server side, try with another pastebin." +msgstr "" diff -Nru pastebinit-1.5/po/sv.po pastebinit-1.5.1/po/sv.po --- pastebinit-1.5/po/sv.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/sv.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/th.po pastebinit-1.5.1/po/th.po --- pastebinit-1.5/po/th.po 1970-01-01 00:00:00.000000000 +0000 +++ pastebinit-1.5.1/po/th.po 2019-08-03 05:35:53.000000000 +0000 @@ -0,0 +1,141 @@ +# Thai translation for pastebinit +# Copyright (c) 2019 Rosetta Contributors and Canonical Ltd 2019 +# This file is distributed under the same license as the pastebinit package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: pastebinit\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2014-01-06 23:31+0000\n" +"PO-Revision-Date: 2019-03-14 13:37+0000\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: Thai <th@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2019-03-15 05:31+0000\n" +"X-Generator: Launchpad (build 18905)\n" + +#: ../pastebinit:105 +msgid "%s: no section [pastebin]" +msgstr "" + +#: ../pastebinit:110 +msgid "%s: no 'basename' in [pastebin]" +msgstr "" + +#: ../pastebinit:139 +#, docstring +msgid "Return the parameters array for the selected pastebin" +msgstr "" + +#: ../pastebinit:179 +msgid "" +"Unknown website, please post a bugreport to request this pastebin to be " +"added (%s)" +msgstr "" + +#: ../pastebinit:204 +msgid "Reads on stdin for input or takes a list of filenames as parameters" +msgstr "" + +#: ../pastebinit:206 +msgid "Optional arguments (not supported by all pastebins):" +msgstr "" + +#: ../pastebinit:208 +msgid "\t-a <author:default is '%s'>" +msgstr "" + +#: ../pastebinit:209 +msgid "\t-b <pastebin url:default is '%s'>" +msgstr "" + +#: ../pastebinit:210 +msgid "\t-f <format of paste:default is '%s'>" +msgstr "" + +#: ../pastebinit:211 +msgid "\t-h This help screen" +msgstr "" + +#: ../pastebinit:212 +msgid "\t-i <input file>" +msgstr "" + +#: ../pastebinit:213 +msgid "\t-l List all supported pastebins" +msgstr "" + +#: ../pastebinit:214 +msgid "\t-j <jabberid for notifications:default is '%s'>" +msgstr "" + +#: ../pastebinit:216 +msgid "\t-m <permatag for all versions of a post:default is blank>" +msgstr "" + +#: ../pastebinit:218 +msgid "\t-r <parent posts ID:defaults to none>" +msgstr "" + +#: ../pastebinit:219 +msgid "\t-t <title of paste:default is blank>" +msgstr "" + +#: ../pastebinit:220 +msgid "\t-u <username> -p <password>" +msgstr "" + +#: ../pastebinit:221 +msgid "\t-v Print the version number" +msgstr "" + +#: ../pastebinit:253 ../pastebinit:271 ../pastebinit:285 ../pastebinit:346 +#: ../pastebinit:434 ../pastebinit:443 +msgid "KeyboardInterrupt caught." +msgstr "" + +#: ../pastebinit:274 +msgid "Error parsing configuration file!" +msgstr "" + +#: ../pastebinit:275 +msgid "" +"Please ensure that your configuration file looks similar to the following:" +msgstr "" + +#: ../pastebinit:288 +msgid "Invalid arguments!\n" +msgstr "" + +#: ../pastebinit:313 +msgid "Supported pastebins:" +msgstr "" + +#: ../pastebinit:349 +msgid "Unable to read from: %s" +msgstr "" + +#: ../pastebinit:353 +msgid "You are trying to send an empty document, exiting." +msgstr "" + +#: ../pastebinit:370 +msgid "The content you are trying to send exceeds the pastebin's size limit." +msgstr "" + +#: ../pastebinit:403 +msgid "Could not find any json library." +msgstr "" + +#: ../pastebinit:413 +msgid "Failed to contact the server: %s" +msgstr "" + +#: ../pastebinit:437 +msgid "" +"Unable to read or parse the result page, it could be a server timeout or a " +"change server side, try with another pastebin." +msgstr "" diff -Nru pastebinit-1.5/po/tr.po pastebinit-1.5.1/po/tr.po --- pastebinit-1.5/po/tr.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/tr.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" "X-Poedit-Country: TURKEY\n" "X-Poedit-Language: Turkish\n" diff -Nru pastebinit-1.5/po/ug.po pastebinit-1.5.1/po/ug.po --- pastebinit-1.5/po/ug.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/ug.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/uk.po pastebinit-1.5.1/po/uk.po --- pastebinit-1.5/po/uk.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/uk.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/zh_CN.po pastebinit-1.5.1/po/zh_CN.po --- pastebinit-1.5/po/zh_CN.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/zh_CN.po 2019-08-03 05:35:53.000000000 +0000 @@ -14,8 +14,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]" diff -Nru pastebinit-1.5/po/zh_TW.po pastebinit-1.5.1/po/zh_TW.po --- pastebinit-1.5/po/zh_TW.po 2016-02-29 04:33:08.000000000 +0000 +++ pastebinit-1.5.1/po/zh_TW.po 2019-08-03 05:35:53.000000000 +0000 @@ -13,8 +13,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2015-09-11 05:12+0000\n" -"X-Generator: Launchpad (build 17720)\n" +"X-Launchpad-Export-Date: 2018-07-11 04:34+0000\n" +"X-Generator: Launchpad (build 18719)\n" #: ../pastebinit:105 msgid "%s: no section [pastebin]"