mirror of
https://github.com/Second-Hand-Friends/kleinanzeigen-bot.git
synced 2026-03-12 02:31:45 +01:00
feat: add multi-language support
This commit is contained in:
201
src/kleinanzeigen_bot/resources/translations.de.yaml
Normal file
201
src/kleinanzeigen_bot/resources/translations.de.yaml
Normal file
@@ -0,0 +1,201 @@
|
||||
#################################################
|
||||
getopt.py:
|
||||
#################################################
|
||||
do_longs:
|
||||
"option --%s requires argument": "Option --%s benötigt ein Argument"
|
||||
"option --%s must not have an argument": "Option --%s darf kein Argument haben"
|
||||
long_has_args:
|
||||
"option --%s not recognized": "Option --%s unbekannt"
|
||||
"option --%s not a unique prefix": "Option --%s ist kein eindeutiger Prefix"
|
||||
do_shorts:
|
||||
"option -%s requires argument": "Option -%s benötigt ein Argument"
|
||||
short_has_arg:
|
||||
"option -%s not recognized": "Option -%s unbekannt"
|
||||
|
||||
|
||||
#################################################
|
||||
kleinanzeigen_bot/__init__.py:
|
||||
#################################################
|
||||
run:
|
||||
"DONE: No configuration errors found.": "FERTIG: Keine Konfigurationsfehler gefunden."
|
||||
'You provided no ads selector. Defaulting to "due".': 'Es wurden keine Anzeigen-Selektor angegeben. Es wird "due" verwendet.'
|
||||
"DONE: No new/outdated ads found.": "FERTIG: Keine neuen/veralteten Anzeigen gefunden."
|
||||
"DONE: No ads to delete found.": "FERTIG: Keine zu löschnenden Anzeigen gefunden."
|
||||
'You provided no ads selector. Defaulting to "new".': 'Es wurden keine Anzeigen-Selektor angegeben. Es wird "new" verwendet.'
|
||||
"Unknown command: %s" : "Unbekannter Befehl: %s"
|
||||
|
||||
show_help:
|
||||
"Usage:": "Verwendung:"
|
||||
"COMMAND [OPTIONS]" : "BEFEHL [OPTIONEN]"
|
||||
"Commands:": "Befehle"
|
||||
|
||||
parse_args:
|
||||
"Use --help to display available options.": "Mit --help können die verfügbaren Optionen angezeigt werden."
|
||||
"More than one command given: %s": "Mehr als ein Befehl angegeben: %s"
|
||||
|
||||
configure_file_logging:
|
||||
"Logging to [%s]...": "Protokollierung in [%s]..."
|
||||
"App version: %s": "App Version: %s"
|
||||
"Python version: %s": "Python Version: %s"
|
||||
|
||||
load_ads:
|
||||
"Searching for ad config files...": "Suche nach Anzeigendateien..."
|
||||
" -> found %s": "-> %s gefunden"
|
||||
"ad config file": "Anzeigendatei"
|
||||
"Start fetch task for the ad(s) with id(s):": "Starte Abrufaufgabe für die Anzeige(n) mit ID(s):"
|
||||
" -> SKIPPED: inactive ad [%s]": " -> ÜBERSPRUNGEN: inaktive Anzeige [%s]"
|
||||
" -> SKIPPED: ad [%s] is not in list of given ids.": " -> ÜBERSPRUNGEN: Anzeige [%s] ist nicht in der Liste der angegebenen IDs."
|
||||
" -> SKIPPED: ad [%s] is not new. already has an id assigned.":
|
||||
" -> ÜBERSPRUNGEN: Anzeige [%s] ist nicht neu. Eine ID wurde bereits zugewiesen."
|
||||
" -> SKIPPED: ad [%s] was last published %d days ago. republication is only required every %s days":
|
||||
" -> ÜBERSPRUNGEN: Anzeige [%s] wurde zuletzt vor %d Tagen veröffentlicht. Eine erneute Veröffentlichung ist nur alle %s Tage erforderlich."
|
||||
"Loaded %s": "%s geladen"
|
||||
"ad": "Anzeige"
|
||||
|
||||
load_config:
|
||||
" -> found %s": "-> %s gefunden"
|
||||
"category": "Kategorie"
|
||||
"config": "Konfiguration"
|
||||
|
||||
login:
|
||||
"Checking if already logged in...": "Überprüfe, ob bereits eingeloggt..."
|
||||
"Already logged in as [%s]. Skipping login.": "Bereits eingeloggt als [%s]. Überspringe Anmeldung."
|
||||
"Opening login page...": "Öffne Anmeldeseite..."
|
||||
"Captcha present! Please solve the captcha.": "Captcha vorhanden! Bitte lösen Sie das Captcha."
|
||||
|
||||
handle_after_login_logic:
|
||||
"# Device verification message detected. Please follow the instruction displayed in the Browser.":
|
||||
"# Nachricht zur Geräteverifizierung erkannt. Bitte den Anweisungen im Browser folgen."
|
||||
"Press ENTER when done...": "EINGABETASTE drücken, wenn erledigt..."
|
||||
"Handling GDPR disclaimer...": "Verarbeite DSGVO-Hinweis..."
|
||||
|
||||
delete_ads:
|
||||
"Processing %s/%s: '%s' from [%s]...": "Verarbeite %s/%s: '%s' von [%s]..."
|
||||
"DONE: Deleted %s": "FERTIG: %s gelöscht"
|
||||
"ad": "Anzeige"
|
||||
|
||||
delete_ad:
|
||||
"Deleting ad '%s' if already present...": "Lösche Anzeige '%s', falls bereits vorhanden..."
|
||||
"Expected CSRF Token not found in HTML content!": "Erwartetes CSRF-Token wurde im HTML-Inhalt nicht gefunden!"
|
||||
|
||||
publish_ads:
|
||||
"Processing %s/%s: '%s' from [%s]...": "Verarbeite %s/%s: '%s' von [%s]..."
|
||||
"DONE: (Re-)published %s": "FERTIG: %s (erneut) veröffentlicht"
|
||||
"ad": "Anzeige"
|
||||
|
||||
publish_ad:
|
||||
"Publishing ad '%s'...": "Veröffentliche Anzeige '%s'..."
|
||||
"Failed to set shipping attribute for type '%s'!": "Fehler beim setzen des Versandattributs für den Typ '%s'!"
|
||||
"# Captcha present! Please solve the captcha.": "# Captcha vorhanden! Bitte lösen Sie das Captcha."
|
||||
"Press a key to continue...": "Eine Taste drücken, um fortzufahren..."
|
||||
" -> SUCCESS: ad published with ID %s": " -> ERFOLG: Anzeige mit ID %s veröffentlicht"
|
||||
|
||||
__set_condition:
|
||||
"Unable to close condition dialog!": "Kann den Dialog für Artikelzustand nicht schließen!"
|
||||
|
||||
__upload_images:
|
||||
" -> found %s": "-> %s gefunden"
|
||||
"image": "Bild"
|
||||
" -> uploading image [%s]": " -> Lade Bild [%s] hoch"
|
||||
|
||||
download_ads:
|
||||
"Scanning your ad overview...": "Scanne Anzeigenübersicht..."
|
||||
'%s found!': '%s gefunden.'
|
||||
"ad": "Anzeige"
|
||||
"Starting download of all ads...": "Starte den Download aller Anzeigen..."
|
||||
'%d of %d ads were downloaded from your profile.': '%d von %d Anzeigen wurden aus Ihrem Profil heruntergeladen.'
|
||||
"Starting download of not yet downloaded ads...": "Starte den Download noch nicht heruntergeladener Anzeigen..."
|
||||
'The ad with id %d has already been saved.': 'Die Anzeige mit der ID %d wurde bereits gespeichert.'
|
||||
'%s were downloaded from your profile.': '%s wurden aus Ihrem Profil heruntergeladen.'
|
||||
"new ad": "neue Anzeige"
|
||||
'Starting download of ad(s) with the id(s):': 'Starte Download der Anzeige(n) mit den ID(s):'
|
||||
'Downloaded ad with id %d': 'Anzeige mit der ID %d heruntergeladen'
|
||||
'The page with the id %d does not exist!': 'Die Seite mit der ID %d existiert nicht!'
|
||||
|
||||
|
||||
#################################################
|
||||
kleinanzeigen_bot/extract.py:
|
||||
#################################################
|
||||
download_ad:
|
||||
"Created ads directory at ./%s.": "Verzeichnis für Anzeigen erstellt unter ./%s."
|
||||
"Deleting current folder of ad %s...": "Lösche aktuellen Ordner der Anzeige %s..."
|
||||
"New directory for ad created at %s.": "Neues Verzeichnis für Anzeige erstellt unter %s."
|
||||
|
||||
_download_images_from_ad_page:
|
||||
"Found %s.": "%s gefunden."
|
||||
"NEXT button in image gallery is missing, aborting image fetching.":
|
||||
"NEXT-Schaltfläche in der Bildergalerie fehlt, Bildabruf abgebrochen."
|
||||
"Downloaded %s.": "%s heruntergeladen."
|
||||
"No image area found. Continue without downloading images.":
|
||||
"Kein Bildbereich gefunden. Fahre fort ohne Bilder herunterzuladen."
|
||||
|
||||
extract_ad_id_from_ad_url:
|
||||
"The ad ID could not be extracted from the given URL %s":
|
||||
"Die Anzeigen-ID konnte nicht aus der angegebenen URL extrahiert werden: %s"
|
||||
|
||||
extract_own_ads_urls:
|
||||
"There are currently no ads on your profile!": "Derzeit gibt es keine Anzeigen auf deinem Profil!"
|
||||
"It looks like you have many ads!": "Es scheint viele Anzeigen zu geben!"
|
||||
"It looks like all your ads fit on one overview page.": "Alle Anzeigen scheinen auf eine Übersichtsseite zu passen."
|
||||
"Last ad overview page explored.": "Letzte Anzeigenübersichtsseite gesichtet."
|
||||
|
||||
naviagte_to_ad_page:
|
||||
"There is no ad under the given ID.": "Es gibt keine Anzeige unter der angegebenen ID."
|
||||
"A popup appeared!": "Ein Popup ist erschienen!"
|
||||
|
||||
_extract_ad_page_info:
|
||||
'Extracting information from ad with title \"%s\"': 'Extrahiere Informationen aus der Anzeige mit dem Titel "%s"'
|
||||
|
||||
_extract_contact_from_ad_page:
|
||||
'No street given in the contact.': 'Keine Straße in den Kontaktdaten angegeben.'
|
||||
|
||||
#################################################
|
||||
kleinanzeigen_bot/utils.py:
|
||||
#################################################
|
||||
format:
|
||||
"ERROR": "FEHLER"
|
||||
"WARNING": "WARNUNG"
|
||||
"CRITICAL": "KRITISCH"
|
||||
|
||||
load_dict_if_exists:
|
||||
"Loading %s[%s]...": "Lade %s[%s]..."
|
||||
" from ": " aus "
|
||||
'Unsupported file type. The file name "%s" must end with *.json, *.yaml, or *.yml':
|
||||
'Nicht unterstützter Dateityp. Der Dateiname "%s" muss mit *.json, *.yaml oder *.yml enden.'
|
||||
|
||||
save_dict:
|
||||
"Saving [%s]...": "Speichere [%s]..."
|
||||
|
||||
on_sigint:
|
||||
"Aborted on user request.": "Auf Benutzerwunsch abgebrochen."
|
||||
|
||||
|
||||
#################################################
|
||||
kleinanzeigen_bot/web_scraping_mixin.py:
|
||||
#################################################
|
||||
create_browser_session:
|
||||
"Creating Browser session...": "Erstelle Browsersitzung..."
|
||||
" -> Browser binary location: %s": " -> Speicherort der Browser-Binärdatei: %s"
|
||||
"Using existing browser process at %s:%s": "Verwende bestehenden Browser-Prozess unter %s:%s"
|
||||
"New Browser session is %s": "Neue Browsersitzung ist %s"
|
||||
" -> Browser profile name: %s": " -> Browser-Profilname: %s"
|
||||
" -> Custom Browser argument: %s": " -> Benutzerdefiniertes Browser-Argument: %s"
|
||||
" -> Browser user data dir: %s": " -> Benutzerdatenverzeichnis des Browsers: %s"
|
||||
" -> Setting chrome prefs [%s]...": " -> Setze Chrome-Einstellungen [%s]..."
|
||||
" -> Adding Browser extension: [%s]": " -> Füge Browser-Erweiterung hinzu: [%s]"
|
||||
|
||||
get_compatible_browser:
|
||||
"Installed browser for OS %s could not be detected": "Installierter Browser für OS %s konnte nicht erkannt werden"
|
||||
"Installed browser could not be detected": "Installierter Browser konnte nicht erkannt werden"
|
||||
|
||||
web_check:
|
||||
"Unsupported attribute: %s": "Nicht unterstütztes Attribut: %s"
|
||||
|
||||
web_find:
|
||||
"Unsupported selector type: %s": "Nicht unterstützter Selektortyp: %s"
|
||||
|
||||
web_find_all:
|
||||
"Unsupported selector type: %s": "Nicht unterstützter Selektortyp: %s"
|
||||
|
||||
web_sleep:
|
||||
" ... pausing for %d ms ...": " ... pausiere für %d ms ..."
|
||||
Reference in New Issue
Block a user