From 42c70afa61834f263e1f1ac1c5542b7f683a7ecf Mon Sep 17 00:00:00 2001 From: Jeroen Thora Date: Fri, 10 Aug 2018 10:23:06 +0200 Subject: [PATCH 1/6] [MenuBundle] Fix menu item sorting issue with multiple menus (#2072) --- composer.json | 2 +- src/Kunstmaan/MenuBundle/Entity/BaseMenuItem.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cd848d908c..66e6c66a4f 100644 --- a/composer.json +++ b/composer.json @@ -36,7 +36,7 @@ "white-october/pagerfanta-bundle": "~1.0", "kunstmaan/google-api-custom": "~1.0", "ddeboer/data-import-bundle": "~0.1", - "gedmo/doctrine-extensions": "~2.3", + "gedmo/doctrine-extensions": "^2.4.34", "doctrine/doctrine-fixtures-bundle": "~2.2", "stof/doctrine-extensions-bundle": "~1.1", "liip/imagine-bundle": "~1.7", diff --git a/src/Kunstmaan/MenuBundle/Entity/BaseMenuItem.php b/src/Kunstmaan/MenuBundle/Entity/BaseMenuItem.php index 82ea5144c8..738e853d14 100644 --- a/src/Kunstmaan/MenuBundle/Entity/BaseMenuItem.php +++ b/src/Kunstmaan/MenuBundle/Entity/BaseMenuItem.php @@ -34,6 +34,7 @@ abstract class BaseMenuItem extends AbstractEntity * @ORM\ManyToOne(targetEntity="Kunstmaan\MenuBundle\Entity\Menu", inversedBy="items") * @ORM\JoinColumn(name="menu_id", referencedColumnName="id") * @Assert\NotNull() + * @Gedmo\TreeRoot(identifierMethod="getMenu") */ protected $menu; From f4c5f674ee05af6275689b1c2265ad17b63fc66b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bakelants?= Date: Thu, 16 Aug 2018 12:06:11 +0200 Subject: [PATCH 2/6] [MediaBundle] add return to load function (#2076) --- .../MediaBundle/Helper/Imagine/BackgroundFilterLoader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kunstmaan/MediaBundle/Helper/Imagine/BackgroundFilterLoader.php b/src/Kunstmaan/MediaBundle/Helper/Imagine/BackgroundFilterLoader.php index 10e5d5f25d..a45f20c6dd 100644 --- a/src/Kunstmaan/MediaBundle/Helper/Imagine/BackgroundFilterLoader.php +++ b/src/Kunstmaan/MediaBundle/Helper/Imagine/BackgroundFilterLoader.php @@ -17,6 +17,6 @@ class BackgroundFilterLoader extends \Liip\ImagineBundle\Imagine\Filter\Loader\B */ public function load(ImageInterface $image, array $options = array()) { - parent::load($image, $options); + return parent::load($image, $options); } } From b6d2674815d34ae4b9740ed9e5cea20ef02cbb3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bakelants?= Date: Tue, 21 Aug 2018 11:08:16 +0200 Subject: [PATCH 3/6] [KunstmaanNodeSearchBundle] use hosts in useVersion6 check (#2075) --- .../DependencyInjection/Configuration.php | 19 +++++++++++++++++-- .../KunstmaanNodeSearchExtension.php | 11 +++++++++-- .../Helper/ElasticSearchUtil.php | 12 ++++++++---- 3 files changed, 34 insertions(+), 8 deletions(-) diff --git a/src/Kunstmaan/NodeSearchBundle/DependencyInjection/Configuration.php b/src/Kunstmaan/NodeSearchBundle/DependencyInjection/Configuration.php index 6a6a49feca..b5c656f190 100644 --- a/src/Kunstmaan/NodeSearchBundle/DependencyInjection/Configuration.php +++ b/src/Kunstmaan/NodeSearchBundle/DependencyInjection/Configuration.php @@ -15,6 +15,21 @@ */ class Configuration implements ConfigurationInterface { + /** + * @var bool + */ + private $useElasticSearchVersion6; + + + /** + * Configuration constructor. + * @param bool $useElasticSearchVersion6 + */ + public function __construct($useElasticSearchVersion6) + { + $this->useElasticSearchVersion6 = $useElasticSearchVersion6; + } + /** * {@inheritDoc} */ @@ -36,13 +51,13 @@ public function getConfigTreeBuilder() 'boolean', 'binary', ]; - if (!ElasticSearchUtil::useVersion6()) { + if (!$this->useElasticSearchVersion6) { $types[] = 'string'; } $properties->children()->scalarNode('type')->beforeNormalization()->ifNotInArray($types)->thenInvalid('type must be one of: ' . implode(', ', $types)); - if (ElasticSearchUtil::useVersion6()) { + if ($this->useElasticSearchVersion6) { $properties->children()->booleanNode('fielddata'); $properties->children()->booleanNode('doc_values'); $properties->children() diff --git a/src/Kunstmaan/NodeSearchBundle/DependencyInjection/KunstmaanNodeSearchExtension.php b/src/Kunstmaan/NodeSearchBundle/DependencyInjection/KunstmaanNodeSearchExtension.php index 322967d1bc..42aeef2729 100644 --- a/src/Kunstmaan/NodeSearchBundle/DependencyInjection/KunstmaanNodeSearchExtension.php +++ b/src/Kunstmaan/NodeSearchBundle/DependencyInjection/KunstmaanNodeSearchExtension.php @@ -16,12 +16,17 @@ */ class KunstmaanNodeSearchExtension extends Extension implements PrependExtensionInterface { + /** + * @var bool + */ + private $useElasticSearchVersion6; + /** * {@inheritDoc} */ public function load(array $configs, ContainerBuilder $container) { - $configuration = new Configuration(); + $configuration = new Configuration($this->useElasticSearchVersion6); $config = $this->processConfiguration($configuration, $configs); $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); @@ -49,7 +54,9 @@ public function load(array $configs, ContainerBuilder $container) */ public function prepend(ContainerBuilder $container) { - if (ElasticSearchUtil::useVersion6()) { + $this->useElasticSearchVersion6 = ElasticSearchUtil::useVersion6(array($container->getParameter('kunstmaan_search.hostname').':'.$container->getParameter('searchport'))); + + if ($this->useElasticSearchVersion6) { $mapping = [ 'mapping' => [ 'root_id' => [ diff --git a/src/Kunstmaan/NodeSearchBundle/Helper/ElasticSearchUtil.php b/src/Kunstmaan/NodeSearchBundle/Helper/ElasticSearchUtil.php index 1e0179a469..d4f63ab0a2 100644 --- a/src/Kunstmaan/NodeSearchBundle/Helper/ElasticSearchUtil.php +++ b/src/Kunstmaan/NodeSearchBundle/Helper/ElasticSearchUtil.php @@ -14,15 +14,17 @@ final class ElasticSearchUtil private static $esClientInfo; /** + * @var array $hosts + * * @return bool */ - public static function useVersion6() + public static function useVersion6($hosts = array()) { if (PHP_MAJOR_VERSION < 7) { return false; } - $info = self::getESVersionInfo(); + $info = self::getESVersionInfo($hosts); if (null !== $info) { $versionParts = explode('.', $info['version']['number']); @@ -35,13 +37,15 @@ public static function useVersion6() } /** + * @var array $hosts + * * @return array */ - private static function getESVersionInfo() + private static function getESVersionInfo($hosts) { try { if (null === self::$esClientInfo) { - $client = ClientBuilder::create()->build(); + $client = ClientBuilder::create()->setHosts($hosts)->build(); self::$esClientInfo = $client->info(); } } catch (NoNodesAvailableException $e) { From 0585db0a1b721faecd9a9b887016a73f7f02c5c9 Mon Sep 17 00:00:00 2001 From: Kunstmaan Labs Date: Tue, 21 Aug 2018 12:03:25 +0200 Subject: [PATCH 4/6] New Crowdin translations (#1948) [Translations] New Crowdin translations --- .../Resources/translations/messages.de.yml | 86 ++++----- .../Resources/translations/messages.es.yml | 10 +- .../Resources/translations/messages.fr.yml | 10 +- .../Resources/translations/messages.hu.yml | 38 ++-- .../Resources/translations/messages.it.yml | 10 +- .../Resources/translations/messages.nl.yml | 25 ++- .../Resources/translations/messages.pl.yml | 10 +- .../Resources/translations/messages.de.yml | 57 +++--- .../Resources/translations/messages.es.yml | 1 + .../Resources/translations/messages.fr.yml | 1 + .../Resources/translations/messages.hu.yml | 55 +++--- .../Resources/translations/messages.it.yml | 1 + .../Resources/translations/messages.nl.yml | 1 + .../Resources/translations/messages.pl.yml | 1 + .../Resources/translations/messages.de.yml | 54 ++++-- .../Resources/translations/messages.es.yml | 34 ++++ .../Resources/translations/messages.fr.yml | 34 ++++ .../Resources/translations/messages.hu.yml | 38 +++- .../Resources/translations/messages.it.yml | 34 ++++ .../Resources/translations/messages.nl.yml | 41 ++++- .../Resources/translations/messages.pl.yml | 34 ++++ .../Resources/translations/messages.de.yml | 10 +- .../Resources/translations/messages.hu.yml | 10 +- .../Resources/translations/messages.de.yml | 46 ++--- .../Resources/translations/messages.de.yml | 96 +++++----- .../Resources/translations/messages.es.yml | 4 + .../Resources/translations/messages.fr.yml | 4 + .../Resources/translations/messages.hu.yml | 6 +- .../Resources/translations/messages.it.yml | 4 + .../Resources/translations/messages.nl.yml | 4 + .../Resources/translations/messages.pl.yml | 6 +- .../Resources/translations/messages.de.yml | 8 +- .../Resources/translations/messages.de.yml | 12 +- .../Resources/translations/messages.hu.yml | 16 +- .../Resources/translations/messages.de.yml | 96 +++++----- .../Resources/translations/messages.hu.yml | 20 +-- .../Resources/translations/messages.de.yml | 40 ++--- .../Resources/translations/messages.hu.yml | 30 ++-- .../Resources/translations/messages.de.yml | 2 +- .../Resources/translations/messages.hu.yml | 2 +- .../Resources/translations/messages.de.yml | 168 +++++++++--------- .../Resources/translations/messages.hu.yml | 10 +- .../Resources/translations/messages.nl.yml | 7 - .../Resources/translations/messages.de.yml | 2 +- .../Resources/translations/messages.de.yml | 44 ++--- .../Resources/translations/messages.hu.yml | 6 +- .../Resources/translations/messages.de.yml | 32 ++-- .../Resources/translations/messages.de.yml | 64 +++---- .../Resources/translations/messages.hu.yml | 8 +- .../Resources/translations/messages.nl.yml | 2 +- .../Resources/translations/messages.de.yml | 4 +- .../Resources/translations/messages.de.yml | 32 ++-- .../Resources/translations/messages.hu.yml | 16 +- .../Resources/translations/messages.nl.yml | 6 +- .../Resources/translations/messages.de.yml | 44 ++--- .../Resources/translations/messages.hu.yml | 6 +- 56 files changed, 867 insertions(+), 575 deletions(-) diff --git a/src/Kunstmaan/AdminBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/AdminBundle/Resources/translations/messages.de.yml index 67a703ea58..89299b14fb 100644 --- a/src/Kunstmaan/AdminBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/AdminBundle/Resources/translations/messages.de.yml @@ -6,7 +6,7 @@ pages: pagenottranslated: Diese Seite ist nicht übersetzt copyfrom: Aus anderer Sprache kopieren createemptypage: Als leere Seite erstellen - movingconfirmation: You are moving "%title%" to "%target%", are you sure? + movingconfirmation: Sie verschieben "%title%" nach "%target%". Sind Sie sicher? modules: title: Module settings: @@ -23,16 +23,16 @@ settings: toupdate: kann aktualisiert werden auf unknown: unbekannte Version exceptions: - title: Exceptions + title: Ausnahmen code: Code url: URL - urlReferer: URL Referer - createdAt: Created at - isResolved: Is resolved + urlReferer: URL Referrer + createdAt: Erstellt am + isResolved: Behoben events: Events - resolved: Resolved - unresolved: Unresolved - resolve_all: Resolve all + resolved: Behoben + unresolved: Nicht behoben + resolve_all: Alle beheben tools: title: Helfer clear_frontend_cache: Frontend Cache löschen @@ -40,14 +40,14 @@ tools: clear_all_caches: Alle Caches löschen shutdown: Herunterfahren search: - title: Search + title: Suche form: cancel: Abrechen delete: Löschen deletesure: Sind Sie sicher, Sie wollen diese löschen? edit: Bearbeiten - add: Add new - 'add.%subject%': 'Add new %subject%' + add: Neu + 'add.%subject%': 'Neu %subject%' save: Speichern publish: Publizieren unpublish: Depublizieren @@ -69,60 +69,66 @@ form: versions: Versionen button: dropdown: - more: More + more: Mehr filter: - clear: Clear + clear: Zurücksetzen filter: Filter omnext: - home: Home + home: Startseite title: Willkommen! welcome: Willkommen. information: Information. Keine neuen Benachrichtigungen vorhanden. permissions: - you_made_changes: You have made changes to the permissions on this page. - apply_recursively: Apply these changes recursively on all child pages - review_changes: Review your changes - changes: Permission changes - permissions_added: 'The following permissions will be added:' - permissions_removed: 'The following permissions will be removed:' - role_name: Role name + you_made_changes: Sie haben Änderungen an den Berechtigungen dieser Seite vorgenommen. + apply_recursively: Änderungen rekursiv für alle Unterseiten übernehmen + review_changes: Änderungen überprüfen + changes: Berechtigungs-Änderungen + permissions_added: 'Die folgende Berechtigung wird hinzugefügt:' + permissions_removed: 'Die folgende Berechtigung wird entfernt:' + role_name: Rollenname errors: oauth: - invalid: You are not able to login to Google OAuth, your domain name is probably not allowed. + invalid: Anmelden über Google OAuth nicht möglich. Möglicherweise ist die Domain nicht erlaubt. kuma_admin: flash_type: - success: Success - warning: Warning - error: Error - info: Info - danger: Danger + success: Erfolg + warning: Warnung + error: Fehler + info: Information + danger: Achtung dashboard: configuration: title: - label: Title + label: Titel content: - label: Content (raw html) + label: Inhalt (pures HTML) edit: flash: - success: The welcome page has been edited! + success: Die Willkommens-Seite wurde bearbeitet! password_check: flash: - error: Your password has not yet been changed + error: Das Passwort wurde noch nicht geändert ga_ajax_controller: flash: - success: Succesfully saved! + success: Erfolgreich gespeichert! media: flash: - 'deleted_success.%medianame%': Entry '%medianame%' has been deleted! - drop_success: File was uploaded successfuly! - drop_unrecognized: Could not recognize what you dropped! + 'deleted_success.%medianame%': Eintrag "%medianame%" wurde gelöscht! + drop_success: Datei wurde erfolgreich hochgeladen! + drop_unrecognized: Es konnte nicht erkannt werden, was Sie abgelegt haben! login: - forgot_password: Forgot my password - invalid_credentials: Wrong password or email + forgot_password: Passwort vergessen + invalid_credentials: Falsches Passwort oder falsche E-Mail Adresse kuma_js: auto_collapse: - more_button_label: More + more_button_label: Mehr toolbar: + bundle_version: + unknown: Unbekannt + uptodate: Aktuell + toupdate: Nicht aktuell + version: Bundle-Version + status: Bundle-Status exception: - title: Exceptions - message: "%X% exception triggered by %Y% events" + title: Ausnahmen + message: "Ausnahme %X ausgelöst von %Y% Event(s)" diff --git a/src/Kunstmaan/AdminBundle/Resources/translations/messages.es.yml b/src/Kunstmaan/AdminBundle/Resources/translations/messages.es.yml index 37848fb9b4..4a52824c3c 100644 --- a/src/Kunstmaan/AdminBundle/Resources/translations/messages.es.yml +++ b/src/Kunstmaan/AdminBundle/Resources/translations/messages.es.yml @@ -46,8 +46,8 @@ form: delete: Eliminar deletesure: '¿Seguro que quieres borrar esto?' edit: Editar - add: Add new - 'add.%subject%': 'Add new %subject%' + add: Agregar + 'add.%subject%': 'Agregar %subject%' save: Guardar publish: Publicar unpublish: Despublicar @@ -123,6 +123,12 @@ kuma_js: auto_collapse: more_button_label: More toolbar: + bundle_version: + unknown: Unknown + uptodate: Up-to-date + toupdate: Outdated + version: Bundle version + status: Bundle status exception: title: Exceptions message: "%X% exception triggered by %Y% events" diff --git a/src/Kunstmaan/AdminBundle/Resources/translations/messages.fr.yml b/src/Kunstmaan/AdminBundle/Resources/translations/messages.fr.yml index e6fd20a130..e93e1a0f3b 100644 --- a/src/Kunstmaan/AdminBundle/Resources/translations/messages.fr.yml +++ b/src/Kunstmaan/AdminBundle/Resources/translations/messages.fr.yml @@ -46,8 +46,8 @@ form: delete: Supprimer deletesure: Êtes-vous sûr de vouloir supprimer ce ? edit: Modifier - add: Add new - 'add.%subject%': 'Add new %subject%' + add: Ajouter nouveau + 'add.%subject%': 'Ajouter nouveau %subject%' save: Sauver publish: Publier unpublish: Dé-publier @@ -123,6 +123,12 @@ kuma_js: auto_collapse: more_button_label: More toolbar: + bundle_version: + unknown: Unknown + uptodate: Up-to-date + toupdate: Outdated + version: Bundle version + status: Bundle status exception: title: Exceptions message: "%X% exception triggered by %Y% events" diff --git a/src/Kunstmaan/AdminBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/AdminBundle/Resources/translations/messages.hu.yml index dd6034fd6b..b7eb7342b3 100644 --- a/src/Kunstmaan/AdminBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/AdminBundle/Resources/translations/messages.hu.yml @@ -23,16 +23,16 @@ settings: toupdate: frissíthető erre unknown: Nincsenek verzió információk exceptions: - title: Exceptions - code: Code - url: URL - urlReferer: URL Referer - createdAt: Created at - isResolved: Is resolved - events: Events - resolved: Resolved - unresolved: Unresolved - resolve_all: Resolve all + title: Kivételek + code: Kód + url: Webcím + urlReferer: Hivatkozó URL-címe + createdAt: Létrehozva + isResolved: Megoldva + events: Események + resolved: Megoldva + unresolved: Megoldatlan + resolve_all: Mindegyik megoldása tools: title: Eszközök clear_frontend_cache: Frontend cache törlése @@ -40,14 +40,14 @@ tools: clear_all_caches: Az összes cache törlése shutdown: Leállítás search: - title: Search + title: Keresés form: cancel: Mégse delete: Törlés deletesure: Biztos benne? edit: Szerkesztés - add: Add new - 'add.%subject%': 'Add new %subject%' + add: Hozzáad + 'add.%subject%': '%subject% hozzadása' save: Mentés publish: Publikál unpublish: Publikálás visszavonása @@ -117,12 +117,18 @@ kuma_admin: drop_success: A fájlfeltöltés sikeresen befejezve. drop_unrecognized: Nem sikerült értelmezni a fájlhúzás műveletet. login: - forgot_password: Forgot my password - invalid_credentials: Wrong password or email + forgot_password: Elfelejtett jelszó + invalid_credentials: Hibás jelszó vagy e-mail cím kuma_js: auto_collapse: more_button_label: Továbbiak toolbar: + bundle_version: + unknown: Unknown + uptodate: Up-to-date + toupdate: Outdated + version: Bundle version + status: Bundle status exception: - title: Exceptions + title: Kivételek message: "%X% exception triggered by %Y% events" diff --git a/src/Kunstmaan/AdminBundle/Resources/translations/messages.it.yml b/src/Kunstmaan/AdminBundle/Resources/translations/messages.it.yml index c018101a95..6712274497 100644 --- a/src/Kunstmaan/AdminBundle/Resources/translations/messages.it.yml +++ b/src/Kunstmaan/AdminBundle/Resources/translations/messages.it.yml @@ -46,8 +46,8 @@ form: delete: Elimina deletesure: Sei sicuro di voler eliminare questo ? edit: Modifica - add: Add new - 'add.%subject%': 'Add new %subject%' + add: Aggiungi nuovo + 'add.%subject%': 'Aggiungi nuovo %subject%' save: Salva publish: Pubblica unpublish: Sospendi @@ -123,6 +123,12 @@ kuma_js: auto_collapse: more_button_label: More toolbar: + bundle_version: + unknown: Unknown + uptodate: Up-to-date + toupdate: Outdated + version: Bundle version + status: Bundle status exception: title: Exceptions message: "%X% exception triggered by %Y% events" diff --git a/src/Kunstmaan/AdminBundle/Resources/translations/messages.nl.yml b/src/Kunstmaan/AdminBundle/Resources/translations/messages.nl.yml index 1ff422b2c1..f92ee452df 100644 --- a/src/Kunstmaan/AdminBundle/Resources/translations/messages.nl.yml +++ b/src/Kunstmaan/AdminBundle/Resources/translations/messages.nl.yml @@ -33,17 +33,6 @@ settings: resolved: Resolved unresolved: Unresolved resolve_all: Resolve all -toolbar: - bundle_version: - unknown: Onbekend - uptodate: Up-to-date - toupdate: Verouderd - version: Bundle versie - status: Bundle status - exception: - title: Exceptions - message: "%X% exception triggered by %Y% events" - tools: title: Hulpmiddelen clear_frontend_cache: Frontend cache legen @@ -57,8 +46,8 @@ form: delete: Verwijder deletesure: Weet u zeker dat u dit wilt verwijderen? edit: Bewerken - add: Add new - 'add.%subject%': 'Add new %subject%' + add: Toevoegen + 'add.%subject%': 'Voeg nieuwe %subject% toe' save: Opslaan publish: Publiceren unpublish: Publicatie ongedaan maken @@ -133,3 +122,13 @@ kuma_admin: kuma_js: auto_collapse: more_button_label: Meer +toolbar: + bundle_version: + unknown: Onbekend + uptodate: Up-to-date + toupdate: Verouderd + version: Bundle versie + status: Bundle status + exception: + title: Exceptions + message: "%X% exception(s) veroorzaakt door %Y% events" diff --git a/src/Kunstmaan/AdminBundle/Resources/translations/messages.pl.yml b/src/Kunstmaan/AdminBundle/Resources/translations/messages.pl.yml index 48c3dfa1f3..c2e9404f99 100644 --- a/src/Kunstmaan/AdminBundle/Resources/translations/messages.pl.yml +++ b/src/Kunstmaan/AdminBundle/Resources/translations/messages.pl.yml @@ -46,8 +46,8 @@ form: delete: Usuń deletesure: Jesteś pewien, że chcesz usunąć ten element? edit: Edytuj - add: Add new - 'add.%subject%': 'Add new %subject%' + add: Dodaj + 'add.%subject%': 'Utwórz nowy %subject%' save: Zapisz publish: Opublikuj unpublish: Cofnij publikację @@ -123,6 +123,12 @@ kuma_js: auto_collapse: more_button_label: Więcej toolbar: + bundle_version: + unknown: Unknown + uptodate: Up-to-date + toupdate: Outdated + version: Bundle version + status: Bundle status exception: title: Wyjątki message: "%X% wyjątków wywołanych %Y% razy" diff --git a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.de.yml index 0c41f950dc..8dd2943faf 100644 --- a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.de.yml @@ -1,35 +1,36 @@ --- kuma_admin_list: + limit: Max. %limit% Einträge form: - export_to: Export to + export_to: Exportieren nach edit: flash: - success: The entity has been edited - locked: The entity is currently being edited by %user% + success: Die Entität wurde bearbeitet + locked: Die Entität wird gerade von %user% bearbeitet action: - view: View - edit: Edit - delete: Delete - move_up: Move up - move_down: Move down + view: Ansicht + edit: Bearbeiten + delete: Löschen + move_up: Nach oben + move_down: Nach unten filter: - "true": "true" - "false": "false" - before: before - after: after - in: contains - notin: doesn't contain - eq: equals - neq: not equals - lt: lower than - lte: lower than or equal - gt: greater than - gte: greater than or equal - isnull: empty - isnotnull: not empty - contains: contains - doesnotcontain: doesn't contain - equals: equals - notequals: not equals - startswith: starts with - endswith: ends with + "true": "wahr" + "false": "falsch" + before: vor + after: nach + in: beinhaltet + notin: beinhaltet nicht + eq: gleich + neq: nicht gleich + lt: kleiner als + lte: kleiner als oder gleich + gt: größer als + gte: größer als oder gleich + isnull: leer + isnotnull: nicht leer + contains: beinhaltet + doesnotcontain: beinhaltet nicht + equals: gleich + notequals: nicht gleich + startswith: beginnt mit + endswith: endet mit diff --git a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.es.yml b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.es.yml index 0c41f950dc..4adaa91ada 100644 --- a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.es.yml +++ b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.es.yml @@ -1,5 +1,6 @@ --- kuma_admin_list: + limit: Limit %limit% form: export_to: Export to edit: diff --git a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.fr.yml b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.fr.yml index 0c41f950dc..4adaa91ada 100644 --- a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.fr.yml +++ b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.fr.yml @@ -1,5 +1,6 @@ --- kuma_admin_list: + limit: Limit %limit% form: export_to: Export to edit: diff --git a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.hu.yml index 8e22f8b220..ef8b9ee594 100644 --- a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.hu.yml @@ -1,35 +1,36 @@ --- kuma_admin_list: + limit: Limit %limit% form: export_to: Exportálás edit: flash: - success: The entity has been edited - locked: The entity is currently being edited by %user% + success: Az entitás szerkesztették + locked: Az entity-t jelenleg %user% szerkeszti action: - view: View - edit: Edit - delete: Delete - move_up: Move up - move_down: Move down + view: Nézet + edit: Szerkesztés + delete: Törlés + move_up: Felfelé mozgatás + move_down: Lefelé mozgatás filter: - "true": "true" - "false": "false" - before: before - after: after - in: contains - notin: doesn't contain - eq: equals - neq: not equals - lt: lower than - lte: lower than or equal - gt: greater than - gte: greater than or equal - isnull: empty - isnotnull: not empty - contains: contains - doesnotcontain: doesn't contain - equals: equals - notequals: not equals - startswith: starts with - endswith: ends with + "true": "igaz" + "false": "hamis" + before: előtt + after: után + in: tartalmaz + notin: nem tartalmaz + eq: egyenlő + neq: nem egyenlő + lt: alacsonyabb, mint + lte: kisebb vagy egyenlő + gt: nagyobb, mint + gte: nagyobb vagy egyenlő + isnull: üres + isnotnull: nem üres + contains: tartalmaz + doesnotcontain: nem tartalmaz + equals: egyenlő + notequals: nem egyenlő + startswith: ezzel kezdődik + endswith: ezzel végződik diff --git a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.it.yml b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.it.yml index 0c41f950dc..4adaa91ada 100644 --- a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.it.yml +++ b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.it.yml @@ -1,5 +1,6 @@ --- kuma_admin_list: + limit: Limit %limit% form: export_to: Export to edit: diff --git a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.nl.yml b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.nl.yml index 0e253c8914..165d291d53 100644 --- a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.nl.yml +++ b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.nl.yml @@ -1,5 +1,6 @@ --- kuma_admin_list: + limit: Limiet %limit% form: export_to: Exporteer naar edit: diff --git a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.pl.yml b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.pl.yml index b009acfc6a..cb63fbe255 100644 --- a/src/Kunstmaan/AdminListBundle/Resources/translations/messages.pl.yml +++ b/src/Kunstmaan/AdminListBundle/Resources/translations/messages.pl.yml @@ -1,5 +1,6 @@ --- kuma_admin_list: + limit: Limit %limit% form: export_to: Eksportuj do edit: diff --git a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.de.yml index b63ecf44c2..ddfb6ce8d8 100644 --- a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.de.yml @@ -1,15 +1,15 @@ --- article: warning: - create_overview_page: You need to create at least one overview page before you can create a %type% page + create_overview_page: Sie müssen zunächst eine Übersichtsseite erstellen bevor Sie eine Seite vom Typ %type% erstellen können form: date: - label: Date + label: Datum summary: - label: Summary + label: Zusammenfassung modal: add: - label: Add %type% item to %page% + label: Füge %type% zu %page% hinzu author: list: header: @@ -23,15 +23,49 @@ article: label: Name link: label: Link + category: + list: + header: + name: Name + link: Link + filter: + name: Name + link: Link + form: + name: + label: Name + link: + label: Link + page: + url: category + tag: + list: + header: + name: Name + filter: + name: Name + form: + name: + label: Name + page: + url: tag page: list: header: - title: Title - created_at: Created at - updated_at: Updated at + title: Titel + created_at: Erstellt am + updated_at: Aktualisiert am online: Online filter: - title: Title - created_at: Created at - updated_at: Updated at + title: Titel + created_at: Erstellt am + updated_at: Aktualisiert am online: Online +article_overview_page: + filter: Filter + category: Categories + tag: Tags + all: All + route: + category: category + tag: tag diff --git a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.es.yml b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.es.yml index b63ecf44c2..cf780f2296 100644 --- a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.es.yml +++ b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.es.yml @@ -23,6 +23,32 @@ article: label: Name link: label: Link + category: + list: + header: + name: Name + link: Link + filter: + name: Name + link: Link + form: + name: + label: Name + link: + label: Link + page: + url: category + tag: + list: + header: + name: Name + filter: + name: Name + form: + name: + label: Name + page: + url: tag page: list: header: @@ -35,3 +61,11 @@ article: created_at: Created at updated_at: Updated at online: Online +article_overview_page: + filter: Filter + category: Categories + tag: Tags + all: All + route: + category: category + tag: tag diff --git a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.fr.yml b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.fr.yml index b63ecf44c2..cf780f2296 100644 --- a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.fr.yml +++ b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.fr.yml @@ -23,6 +23,32 @@ article: label: Name link: label: Link + category: + list: + header: + name: Name + link: Link + filter: + name: Name + link: Link + form: + name: + label: Name + link: + label: Link + page: + url: category + tag: + list: + header: + name: Name + filter: + name: Name + form: + name: + label: Name + page: + url: tag page: list: header: @@ -35,3 +61,11 @@ article: created_at: Created at updated_at: Updated at online: Online +article_overview_page: + filter: Filter + category: Categories + tag: Tags + all: All + route: + category: category + tag: tag diff --git a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.hu.yml index b4ad1d75bb..caabcda3ff 100644 --- a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.hu.yml @@ -14,15 +14,41 @@ article: list: header: name: Név - link: Link + link: Hivatkozás filter: name: Név - link: Link + link: Hivatkozás form: name: label: Név + link: + label: Hivatkozás + category: + list: + header: + name: Name + link: Link + filter: + name: Name + link: Link + form: + name: + label: Name link: label: Link + page: + url: category + tag: + list: + header: + name: Name + filter: + name: Name + form: + name: + label: Name + page: + url: tag page: list: header: @@ -35,3 +61,11 @@ article: created_at: Létrehozva updated_at: Frissítve online: Online +article_overview_page: + filter: Filter + category: Categories + tag: Tags + all: All + route: + category: category + tag: tag diff --git a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.it.yml b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.it.yml index b63ecf44c2..cf780f2296 100644 --- a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.it.yml +++ b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.it.yml @@ -23,6 +23,32 @@ article: label: Name link: label: Link + category: + list: + header: + name: Name + link: Link + filter: + name: Name + link: Link + form: + name: + label: Name + link: + label: Link + page: + url: category + tag: + list: + header: + name: Name + filter: + name: Name + form: + name: + label: Name + page: + url: tag page: list: header: @@ -35,3 +61,11 @@ article: created_at: Created at updated_at: Updated at online: Online +article_overview_page: + filter: Filter + category: Categories + tag: Tags + all: All + route: + category: category + tag: tag diff --git a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.nl.yml b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.nl.yml index 920a64a15b..6fc17610ed 100644 --- a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.nl.yml +++ b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.nl.yml @@ -23,6 +23,32 @@ article: label: Naam link: label: Koppeling + category: + list: + header: + name: Name + link: Link + filter: + name: Name + link: Link + form: + name: + label: Name + link: + label: Link + page: + url: category + tag: + list: + header: + name: Name + filter: + name: Name + form: + name: + label: Name + page: + url: tag page: list: header: @@ -35,12 +61,11 @@ article: created_at: Aangemaakt op updated_at: Gewijzigd op online: Online - article_overview_page: - filter: Filter - category: Categorieën - tag: Tags - all: Alle - route: - category: categorie - tag: tag \ No newline at end of file + filter: Filter + category: Categorieën + tag: Tags + all: Alle + route: + category: categorie + tag: tag diff --git a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.pl.yml b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.pl.yml index 28334aaca5..eec46cb198 100644 --- a/src/Kunstmaan/ArticleBundle/Resources/translations/messages.pl.yml +++ b/src/Kunstmaan/ArticleBundle/Resources/translations/messages.pl.yml @@ -23,6 +23,32 @@ article: label: Nazwa link: label: Link + category: + list: + header: + name: Name + link: Link + filter: + name: Name + link: Link + form: + name: + label: Name + link: + label: Link + page: + url: category + tag: + list: + header: + name: Name + filter: + name: Name + form: + name: + label: Name + page: + url: tag page: list: header: @@ -35,3 +61,11 @@ article: created_at: Utworzono updated_at: Zaktualizowano online: Online +article_overview_page: + filter: Filter + category: Categories + tag: Tags + all: All + route: + category: category + tag: tag diff --git a/src/Kunstmaan/CacheBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/CacheBundle/Resources/translations/messages.de.yml index 710ffa7c8c..3139b7cd14 100644 --- a/src/Kunstmaan/CacheBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/CacheBundle/Resources/translations/messages.de.yml @@ -2,8 +2,8 @@ kunstmaan_cache: varnish: ban: - path: Path - submit: Ban! - all_domains: Ban on all domains - success: Banned successfully! - menu: Remove from cache + path: Pfad + submit: Bannen! + all_domains: Auf allen Domain bannen + success: Erfolgreich gebannt! + menu: Aus dem Cache löschen diff --git a/src/Kunstmaan/CacheBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/CacheBundle/Resources/translations/messages.hu.yml index 710ffa7c8c..adb4f9ee61 100644 --- a/src/Kunstmaan/CacheBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/CacheBundle/Resources/translations/messages.hu.yml @@ -2,8 +2,8 @@ kunstmaan_cache: varnish: ban: - path: Path - submit: Ban! - all_domains: Ban on all domains - success: Banned successfully! - menu: Remove from cache + path: Elérési út + submit: Kitiltás! + all_domains: Kitiltás minden domainen + success: Sikeres kitiltás! + menu: Törlés a cache-ből diff --git a/src/Kunstmaan/DashboardBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/DashboardBundle/Resources/translations/messages.de.yml index 3606d38c26..cd35f69e18 100644 --- a/src/Kunstmaan/DashboardBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/DashboardBundle/Resources/translations/messages.de.yml @@ -19,37 +19,37 @@ dashboard: avg_session_duration: Durchschn. Sitzungsdauer setup: goals: - disable: Disable goals + disable: Ziele deaktivieren title: Google Analytics dashboard widget einrichten - content: "To learn how to setup the Google Analytics widget, please refer to" + content: "Um mehr Informationen zur Einrichtung des Google Analytics Widgets zu erhalten, besuchen Sie" docs_url: "http://bundles.kunstmaan.be/getting-started/advanced/setting-up-the-google-analytics-dashboard" - docs: the documentation - redirect: "This is your redirect URI:" - refresh: "Once everything is set up, refresh this page." - connect: Connect your Google Account - confirm: Connect now + docs: die Dokumentation + redirect: "Dies ist die Umleitungs-URI:" + refresh: "Aktualisieren Sie diese Seite sobald Sie mit der Einrichtung fertig sind." + connect: Google-Account verbinden + confirm: Jetzt verbinden profile: - title: Select a profile - select: Select a profile.. - content: Select a profile for the selected website + title: Profil auswählen + select: Profil auswählen... + content: Profil für die ausgewählte Website auswählen property: - title: Select a website to track - select: Select a website.. - content: Select a domain registered in your Google Analytics account. + title: Websites auswählen, die überwacht werden soll + select: Website auswählen... + content: Domain auswählen, die in Ihrem Google Analytics Account hinterlegt ist. account: - title: Select an account - select: Select an account.. + title: Benutzerkonto auswählen + select: Benutzerkonto auswählen... link: Dashboard einrichten back: Zum Dashboard segment: - add: Add segment - info: 'To create segments, you can use segment IDs (and also combine them), or write your own queries. Google provides predefined segment IDs (listed below), and you can create your own with the Google Segment Builder tool in Google Analytics. For documentation on how to create your own segment queries, click' - here: here - own: Own segments - builtin: Built-in segments - segments: Segment setup - accounts: Account setup + add: Segment hinzufügen + info: 'Um eigene Segmente zu erstellen, nutzen Sie die Segment IDs (und kombineren diese) oder schreiben Sie eigene Queries. Google stellt voreingestellte Segment IDs zur Verfügung (unten aufgelistet). Sie können eigene Segmente mit dem Google Segment Builder-Tool in Google Analytics erstellen. Zum Öffnen der Dokumentation dazu klicken Sie' + here: hier + own: Eigene Segmente + builtin: Integrierte Segmente + segments: Segment einrichten + accounts: Konto einrichten reset: - property: Change Google Analytics link + property: Google Analytics-Link ändern last_update: "Letzte Aktualisierung:" unavailable: Keine Daten verfügbar, bitte Aktualisieren Button klicken. diff --git a/src/Kunstmaan/FormBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/FormBundle/Resources/translations/messages.de.yml index 9e9e4019d6..45acef73a0 100644 --- a/src/Kunstmaan/FormBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/FormBundle/Resources/translations/messages.de.yml @@ -3,102 +3,106 @@ kuma_form: form: page_admin: title: - label: Title + label: Titel thanks: - label: Thanks + label: Danke subject: - label: Subject + label: Betreff from_email: - label: From e-mail + label: E-Mail Absender to_email: - label: To e-mail + label: E-Mail Empfänger checkbox_page_part: label: - label: Label + label: Beschriftung required: - label: Required + label: Erforderlich errormessage_required: - label: Error message required + label: Fehlermeldung erforderlich choice_page_part: label: - label: Label + label: Beschriftung required: - label: Required + label: Erforderlich errormessage_required: - label: Error message required + label: Fehlermeldung erforderlich expanded: - label: Expanded + label: Erweitert multiple: - label: Multiple + label: Mehrfachauswahl choices: - label: Choices + label: Optionen empty_value: - label: Empty value + label: Leerer Wert email_page_part: label: - label: Label + label: Beschriftung required: - label: Required + label: Benötigt errorMessageRequired: - label: Error message required + label: Fehlermeldung erforderlich errorMessageInvalid: - label: Error message invalid + label: Fehlermeldung ungültig file_upload_page_part: label: - label: Label + label: Beschriftung required: - label: Required + label: Benötigt errormessage_required: - label: Error message required + label: Fehlermeldung benötigt multi_line_text_page_part: label: - label: Label + label: Beschriftung required: - label: Required + label: Erforderlich errormessage_required: - label: Error message required + label: Fehlermeldung erforderlich regex: - label: Regex + label: Regulärer Ausdruck errormessage_regex: - label: Error message regex + label: Fehlermeldung Regulärer Ausdruck single_line_text_page_part: label: - label: Label + label: Beschriftung required: - label: Required + label: Erforderlich errormessage_required: - label: Error message required + label: Fehlermeldung erforderlich regex: - label: Regex + label: Regulärer Ausdruck errormessage_regex: - label: Error message regex + label: Fehlermeldung Regulärer Ausdruck submit_button_page_part: label: - label: Label + label: Beschriftung button: - export_to: Export to + export_to: Exportieren nach list: header: - title: Title - language: Language - path: Form path + title: Titel + language: Sprache + path: Formular-Pfad filter: - title: Title + title: Titel online: Online submission: list: header: - created: Date - language: Language - ip_address: IP address + created: Datum + language: Sprache + ip_address: IP-Adresse formsubmissions: index: - title: Form pages with submissions + title: Formularseiten mit Einträgen menu: - title: Form submissions + title: Formular-Einträge list: - title: Form submissions for page + title: Formular-Einträge für Seite edit: - title: Form submission for page + title: Formular-Eintrag für Seite + delete: + flash: + success: Der Formular-Eintrag wurde gelöscht! + error: Fehler beim Löschen des Formular-Eintrages! subaction: - formsubmissions: "Submissions" + formsubmissions: "Einträge" diff --git a/src/Kunstmaan/FormBundle/Resources/translations/messages.es.yml b/src/Kunstmaan/FormBundle/Resources/translations/messages.es.yml index 9e9e4019d6..53ce2cc702 100644 --- a/src/Kunstmaan/FormBundle/Resources/translations/messages.es.yml +++ b/src/Kunstmaan/FormBundle/Resources/translations/messages.es.yml @@ -100,5 +100,9 @@ formsubmissions: title: Form submissions for page edit: title: Form submission for page + delete: + flash: + success: The form submission is deleted! + error: Deleting the form submission failed! subaction: formsubmissions: "Submissions" diff --git a/src/Kunstmaan/FormBundle/Resources/translations/messages.fr.yml b/src/Kunstmaan/FormBundle/Resources/translations/messages.fr.yml index 9e9e4019d6..53ce2cc702 100644 --- a/src/Kunstmaan/FormBundle/Resources/translations/messages.fr.yml +++ b/src/Kunstmaan/FormBundle/Resources/translations/messages.fr.yml @@ -100,5 +100,9 @@ formsubmissions: title: Form submissions for page edit: title: Form submission for page + delete: + flash: + success: The form submission is deleted! + error: Deleting the form submission failed! subaction: formsubmissions: "Submissions" diff --git a/src/Kunstmaan/FormBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/FormBundle/Resources/translations/messages.hu.yml index 8b90119cfc..ffa56f99ab 100644 --- a/src/Kunstmaan/FormBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/FormBundle/Resources/translations/messages.hu.yml @@ -83,7 +83,7 @@ kuma_form: language: Nyelv path: Űrlap útvonala filter: - title: Title + title: Cím online: Online submission: list: @@ -100,5 +100,9 @@ formsubmissions: title: Kitöltött űrlapok edit: title: Űrlap kitöltés + delete: + flash: + success: The form submission is deleted! + error: Deleting the form submission failed! subaction: formsubmissions: "Űrlap kitöltések" diff --git a/src/Kunstmaan/FormBundle/Resources/translations/messages.it.yml b/src/Kunstmaan/FormBundle/Resources/translations/messages.it.yml index abd850b68f..f98dbe9410 100644 --- a/src/Kunstmaan/FormBundle/Resources/translations/messages.it.yml +++ b/src/Kunstmaan/FormBundle/Resources/translations/messages.it.yml @@ -100,5 +100,9 @@ formsubmissions: title: Moduli d'invio per pagina edit: title: Modulo d'invio per pagina + delete: + flash: + success: The form submission is deleted! + error: Deleting the form submission failed! subaction: formsubmissions: "Invii" diff --git a/src/Kunstmaan/FormBundle/Resources/translations/messages.nl.yml b/src/Kunstmaan/FormBundle/Resources/translations/messages.nl.yml index c29a93c78c..2630bd7b6c 100644 --- a/src/Kunstmaan/FormBundle/Resources/translations/messages.nl.yml +++ b/src/Kunstmaan/FormBundle/Resources/translations/messages.nl.yml @@ -100,5 +100,9 @@ formsubmissions: title: Formulier inzendingen voor pagina edit: title: Formulier inzendingen voor pagina + delete: + flash: + success: The form submission is deleted! + error: Deleting the form submission failed! subaction: formsubmissions: "Inzendingen" diff --git a/src/Kunstmaan/FormBundle/Resources/translations/messages.pl.yml b/src/Kunstmaan/FormBundle/Resources/translations/messages.pl.yml index 4b864005e3..8d359d850d 100644 --- a/src/Kunstmaan/FormBundle/Resources/translations/messages.pl.yml +++ b/src/Kunstmaan/FormBundle/Resources/translations/messages.pl.yml @@ -69,7 +69,7 @@ kuma_form: errormessage_required: label: Komunikat błędu w przypadku nieuzupełnienia regex: - label: Regex + label: Wyrażenia regularne errormessage_regex: label: Komunikat błędu submit_button_page_part: @@ -100,5 +100,9 @@ formsubmissions: title: Wysłane formularze dla strony edit: title: Wysłane formularze dla strony + delete: + flash: + success: The form submission is deleted! + error: Deleting the form submission failed! subaction: formsubmissions: "Przesłane formularze" diff --git a/src/Kunstmaan/GeneratorBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/GeneratorBundle/Resources/translations/messages.de.yml index d83b9d85ca..72bce0f9c8 100644 --- a/src/Kunstmaan/GeneratorBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/GeneratorBundle/Resources/translations/messages.de.yml @@ -1,8 +1,8 @@ --- -'{0} search.no_results|{1} one.result|]1,Inf[ many.results.%count%.%search_for%': '{0} No results for `%search_for%`|{1} %count% result|]1, Inf[ %count% results' +'{0} search.no_results|{1} one.result|]1,Inf[ many.results.%count%.%search_for%': '{0} Keine Ergebnisse für "%search_for%"|{1} %count% Ergebnis|]1,Inf[ %count% Ergebnisse' search: filter: Filter - no_results: No results + no_results: Keine Ergebnisse pagerfanta: - prev: Prev - next: Next + prev: Vorherige + next: Nächste diff --git a/src/Kunstmaan/LeadGenerationBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/LeadGenerationBundle/Resources/translations/messages.de.yml index eb212e0540..53432b0a05 100644 --- a/src/Kunstmaan/LeadGenerationBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/LeadGenerationBundle/Resources/translations/messages.de.yml @@ -2,13 +2,13 @@ kuma_lead_generation: newsletter_popup: button: - close: Close + close: Schließen subscribe: Subscribe - no_thanks: No Thanks! + no_thanks: Nein, danke! label: - email: E-mail + email: E-Mail message: - thanks: Thanks! + thanks: Danke! on_exit_intent: sensitivity: label: Sensitivity @@ -35,11 +35,11 @@ kuma_lead_generation: label: Seconds locale_black_list: locale: - label: Locale + label: Sprache info_text: Defines the locale that should be blacklisted locale_white_list: locale: - label: Locale + label: Sprache info_text: Defines the locale that should be whitelisted max_x_time: times: diff --git a/src/Kunstmaan/LeadGenerationBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/LeadGenerationBundle/Resources/translations/messages.hu.yml index 5420371478..33e7c163cf 100644 --- a/src/Kunstmaan/LeadGenerationBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/LeadGenerationBundle/Resources/translations/messages.hu.yml @@ -55,7 +55,7 @@ kuma_lead_generation: label: Alkalmak url_black_list: urls: - label: Urls + label: Url-ek info_text: | Megadhat fekete listás URL-eket (vagy mintákat). Minden URL külön sorba kerüljön. @@ -63,7 +63,7 @@ kuma_lead_generation: Például: /blog/articles; /blog/page[0-9]+; /blog/.*/comments; ^/$ url_white_list: urls: - label: Urls + label: Url-ek info_text: | Megadhat fehér listás URL-eket (vagy mintákat). Minden URL külön sorba kerüljön. @@ -78,17 +78,17 @@ kuma_lead_generation: add: Hozzáadás cancel: Mégse type: - label: Type + label: Típus list: header: - id: Id + id: ID name: Név type: Típus - html_id: Html ID + html_id: HTML-azonosító rule_count: '# szabály' filter: name: Név - html_id: Html ID + html_id: HTML-azonosító rules: 'page_title.%name%': 'Jogosultsági beállítások: %name%' add: @@ -100,11 +100,11 @@ kuma_lead_generation: cancel: Mégse list: header: - id: Id + id: ID type: Típus properties: Tulajdonságok filter: - id: Id + id: ID breadcrumbs: modules: Modulok popups: Felugró ablakok diff --git a/src/Kunstmaan/MediaBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/MediaBundle/Resources/translations/messages.de.yml index 1affff0071..c916b6bbba 100644 --- a/src/Kunstmaan/MediaBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/MediaBundle/Resources/translations/messages.de.yml @@ -6,11 +6,11 @@ media: media: no: Noch keine Dateien in diesem Verzeichnis. dnd: - tip: "Tip:" - tiptext: did you know you can just drop multiple files here? + tip: "Tipp:" + tiptext: wussten Sie, dass sie mehrere Dateien hier ablegen können? alert: - title: Incoming! - text: Drop your files to instantly upload them to this folder. + title: Eingehend! + text: Dateien hier ablegen, um sie direkt in diesen Ordner hochzuladen. bulkupload: addto: Upload in das Verzeichnis "%folder%" contenttab: @@ -19,11 +19,11 @@ media: title: Eigenschaften title: Medien add: - action: Add media + action: Medien hinzufügen edit: action: Bearbeiten download: - action: Download + action: Herunterladen mediainfo: name: Name contenttype: Medien-Typ @@ -42,32 +42,32 @@ media: save: Erstellen form: name: Name - rel: Rel - parent: Parent - internal_name: Internal name + rel: Beziehung + parent: Übergeordnet + internal_name: Interner Name success: - text: Folder '%folder%' has been created! + text: Der Ordner "%folder%" wurde erstellt! empty: - action: Empty folder - action_short: Empty + action: Leerer Order + action_short: Leer modal: - title: Empty folder - text: Are you sure you want to delete the content of folder "%folder%"? - checkbox: Also delete subfolders - save: Empty + title: Leerer Order + text: Sind Sie sicher, dass Sie den Inhalt des Ordners "%folder%" löschen wollen? + checkbox: Unterordner auch löschen + save: Leer success: - text: Folder '%folder%' has been emptied! + text: Der Ordner "%folder%" wurde gelöscht! bulk_move: - action: Bulk move media - action_short: Bulk move + action: Alle Medien verschieben + action_short: Alle verschieben modal: - title: Bulk move media - text: Select to which folder you want to move the selected media. - save: "Move.." + title: Alle Medien verschieben + text: Order auswählen, in denen die ausgewählten Medien verschoben werden sollen. + save: "Verschieben..." form: - name: Parent folder + name: Übergeordneter Order success: - text: Media has been moved successfully! + text: Medien erfolgreich verschoben! sub: no: Noch keine Unterverzeichnisse vorhanden. delete: @@ -77,20 +77,20 @@ media: title: Verzeichnis Löschen text: Soll das Verzeichnis "%folder%" wirklich gelöscht werden? failure: - text: You can't delete the %folder% folder! + text: Ordner %folder% kann nicht gelöscht werden! success: - text: Folder '%folder%' has been deleted! + text: Ordner "%folder%" wurde gelöscht! save: Speichern contenttab: title: Inhalt propertiestab: title: Eigenschaften - sortby: Sort by + sortby: Sortieren nach show: success: - text: Folder %folder% has been updated! + text: Der Ordner %folder% wurde aktualisiert! bulkupload: - upload: Upload + upload: Hochladen bulkupload: Massen-Upload select_files: Dateien Auswählen upload_more: Upload weiterer Dateien @@ -120,19 +120,19 @@ media: widget: choose: Auswählen delete: Löschen - media_chooser: Media-chooser - icon_chooser: Icon-chooser + media_chooser: Medien-Auswahl + icon_chooser: Icon-Auswahl adminlist: configurator: name: Name - type: Type - date: Date - filesize: Filesize + type: Typ + date: Datum + filesize: Dateigröße filter: name: Name - type: Type - updated_at: Date - filesize: Filesize (in bytes) + type: Typ + updated_at: Datum + filesize: Dateigröße (in Byte) form: remote: name: @@ -140,34 +140,34 @@ media: code: label: Code type: - label: Type + label: Typ copyright: label: Copyright description: - label: Description + label: Beschreibung bulk_upload: files: - label: Files + label: Dateien file: name: label: Name file: - label: File + label: Datei copyright: label: Copyright description: - label: Description + label: Beschreibung originalFilename: - label: Original filename + label: Original-Dateiname remote_audio: type: - label: Type + label: Typ remote_slide: type: - label: Type + label: Typ remote_video: type: - label: Type + label: Typ flash: - created: Media %medianame% has been created! - not_created: Media not created! %mediaerrors% + created: Datei %medianame% wurde erstellt! + not_created: Datei nicht erstellt! %mediaerrors% diff --git a/src/Kunstmaan/MediaBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/MediaBundle/Resources/translations/messages.hu.yml index 14eaf3d802..28f4927dbc 100644 --- a/src/Kunstmaan/MediaBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/MediaBundle/Resources/translations/messages.hu.yml @@ -6,7 +6,7 @@ media: media: no: Még nincs fájl ebben a könyvtárban. dnd: - tip: "Tip:" + tip: "Típus:" tiptext: Tudtad, hogy a fájlokat egyből ebbe a mappába is feltöltheted? alert: title: Érkezik! @@ -58,16 +58,16 @@ media: success: text: A `%folder%` mappa üres! bulk_move: - action: Bulk move media - action_short: Bulk move + action: Tömeges média áthelyezés + action_short: Tömeges áthelyezés modal: - title: Bulk move media - text: Select to which folder you want to move the selected media. - save: "Move.." + title: Tömeges média áthelyezés + text: Válassza ki a mappát, ahová szeretné a kiválasztott file-t áthelyezni. + save: "Mozgatás..." form: - name: Parent folder + name: Szülő-mappa success: - text: Media has been moved successfully! + text: Média sikeresen áthelyezve! sub: no: Még nincsenek almappák delete: @@ -169,5 +169,5 @@ media: type: label: Típus flash: - created: Media %medianame% has been created! - not_created: Media not created! %mediaerrors% + created: A %medianame% file sikeresen létrehozva! + not_created: A file nem lett létrehozva! %mediaerrors% diff --git a/src/Kunstmaan/MenuBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/MenuBundle/Resources/translations/messages.de.yml index de5edc199f..67760513c4 100644 --- a/src/Kunstmaan/MenuBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/MenuBundle/Resources/translations/messages.de.yml @@ -1,7 +1,7 @@ --- kuma_menu: menus: - title: Menus + title: Menüs menu: adminlist: field: @@ -9,28 +9,28 @@ kuma_menu: filter: name: Name action: - manage: Manage + manage: Verwalten menu_item: adminlist: breadcrumb: - modules: Modules - menu: Menu's - menu_items: Menu items - title: Menu items for %name% and language %locale% - online: (Online) - offline: (Offline) + modules: Module + menu: Menüs + menu_items: Menü-Einträge + title: Menü-Eintrag für %name% und Sprache %locale% + online: (online) + offline: (offline) field: - title: Title + title: Titel online: Online - type: Type - url: Url - new_window: New window + type: Typ + url: URL + new_window: Neues Fenster form: - parent: Parent menu item - parent_placeholder: Select the parent menu item... - type: Type - node_translation: Link page - node_translation_placeholder: Select the page to link to... - title: Title - url: Url - new_window: New window + parent: Übergeordneter Menü-Eintrag + parent_placeholder: Übergeordneten Menü-Eintrag auswählen... + type: Typ + node_translation: Link zur Seite + node_translation_placeholder: Verlinkte Seite auswählen... + title: Titel + url: URL + new_window: Neues Fenster diff --git a/src/Kunstmaan/MenuBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/MenuBundle/Resources/translations/messages.hu.yml index 26d584b860..aeacc6dea9 100644 --- a/src/Kunstmaan/MenuBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/MenuBundle/Resources/translations/messages.hu.yml @@ -1,7 +1,7 @@ --- kuma_menu: menus: - title: Menus + title: Menük menu: adminlist: field: @@ -9,28 +9,28 @@ kuma_menu: filter: name: Név action: - manage: Manage + manage: Kezelés menu_item: adminlist: breadcrumb: - modules: Modules - menu: Menu's - menu_items: Menu items - title: Menu items for %name% and language %locale% + modules: Modulok + menu: Menük + menu_items: Menü elemek + title: A %name% és a %locale% nyelvhez tartozó menüpontok online: (Online) offline: (Offline) field: title: Cím online: Online type: Típus - url: Url + url: URL new_window: Új ablakban form: - parent: Parent menu item - parent_placeholder: Select the parent menu item... - type: Type - node_translation: Link page - node_translation_placeholder: Select the page to link to... - title: Title - url: Url - new_window: New window + parent: Szülő menüpont + parent_placeholder: Szülő menpont kiválasztása... + type: Típus + node_translation: Oldal linkelése + node_translation_placeholder: A linkelt oldal kiválasztása... + title: Cím + url: URL + new_window: Új ablak diff --git a/src/Kunstmaan/MultiDomainBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/MultiDomainBundle/Resources/translations/messages.de.yml index 61e0241195..2ace3fda07 100644 --- a/src/Kunstmaan/MultiDomainBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/MultiDomainBundle/Resources/translations/messages.de.yml @@ -1,3 +1,3 @@ --- multi_domain: - host_override_active: Host override is active! + host_override_active: Host-Überschreibung ist aktiv! diff --git a/src/Kunstmaan/MultiDomainBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/MultiDomainBundle/Resources/translations/messages.hu.yml index 61e0241195..a963b08bde 100644 --- a/src/Kunstmaan/MultiDomainBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/MultiDomainBundle/Resources/translations/messages.hu.yml @@ -1,3 +1,3 @@ --- multi_domain: - host_override_active: Host override is active! + host_override_active: A host override aktív! diff --git a/src/Kunstmaan/NodeBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/NodeBundle/Resources/translations/messages.de.yml index 01fbbf4471..f4ca8e6067 100644 --- a/src/Kunstmaan/NodeBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/NodeBundle/Resources/translations/messages.de.yml @@ -4,168 +4,168 @@ subaction: action: saveasdraft: "Entwurf Speichern" recopyfromlanguage: "Inhalte kopieren von anderen Sprach" - exportpagetemplate: "Export pagetemplate" + exportpagetemplate: "Seitenvorlage exportieren" publish: "Publizieren" unpublish: "Depublizieren" preview: "Vorschau" save: "Speichern" delete: "Löschen" addsubpage: "Unterseite Erstellen" - duplicate: "Duplicate" + duplicate: "Duplizieren" modal: - sourcelanguage: "Source language" + sourcelanguage: "Ausgangssprache" pages: copynotavailable: "Bitte zuerst die übergeordnete Seite übersetzen." kuma_node: form: controller_action: title: - label: Title + label: Titel menu_tab: hidden_from_menu: - label: Hidden from menu + label: Im Menü ausblenden internal_name: - label: Internal name + label: Interner Name menu_tab_translation: slug: label: Slug weight: - label: Weight - title: Used to reorder the pages. + label: Gewicht + title: Wird verwendet, um die Seiten neu anordnen. page: title: - label: Navigation title + label: Navigations-Titel page_title: - label: Page title - info_text: Used as title inside the page. + label: Seiten-Titel + info_text: Wird als Titel der Seite verwendet. status: - "will_be_publish_at.%date%.raw": This page will be published at %date% - "will_be_unpublish_at.%date%.raw": This page will be unpublished at %date% + "will_be_publish_at.%date%.raw": Diese Seite wird am %date% veröffentlicht + "will_be_unpublish_at.%date%.raw": Die Veröffentlichung der Seite wird am %date% aufgehoben button: - schedulle_cancel: Cancel - "offline_draft.%public_url%.raw": Offline / Draft version (Go to public version) - online_public.raw: Online / Public version + schedulle_cancel: Abbrechen + "offline_draft.%public_url%.raw": Offline / Entwurf (öffentliche Version anzeigen) + online_public.raw: Online / Öffentliche Version offline.raw: Offline - "go_to_draft_version.%url%.raw": (Go to draft version) + "go_to_draft_version.%url%.raw": (gehe zum Entwurf) admin: publish: flash: - success_published: The page has been published - success_scheduled: Publishing of the page has been scheduled + success_published: Diese Seite wurde veröffentlicht + success_scheduled: Veröffentlichung der Seite wurde geplant unpublish: flash: - success_unpublished: The page has been unpublished - success_scheduled: Unpublishing of the page has been scheduled + success_unpublished: Die Veröffentlichung der Seite wurde aufgehoben + success_scheduled: Das Aufheben der Veröffentlichung der Seite wurde geplant unschedule: flash: - success: The scheduling has been canceled + success: Die Planung wurde abgebrochen delete: flash: - success: The page is deleted! + success: Die Seite wird gelöscht! duplicate: flash: - success: The page has been duplicated! + success: Die Seite wurde dupliziert! revert: flash: - success: The page contents has been reverted + success: Den Inhalt der Seite wurde zurückgesetzt edit: flash: - success: The page has been edited - locked: The page is currently being edited by %users% - locked_success: An automatic backup has been created because the page is being edited by another user + success: Die Seite wurde bearbeitet + locked: Die Seite wird aktuell von %users% bearbeitet + locked_success: Eine automatische Sicherung wurde erstellt, da die Seite von einem anderen Benutzer bearbeitet wird new_page: title: - default: New page + default: Neue Seite list: header: - title: Title - created_at: Created At - updated_at: Updated At + title: Titel + created_at: Erstellt am + updated_at: Aktualisiert am online: Online filter: - title: Title - created_at: Created At - updated_at: Updated At + title: Titel + created_at: Erstellt am + updated_at: Aktualisiert am online: Online - online: (Online) - offline: (Offline) - additional_title: This list contains all the pages, chronologically ordered by updated date. + online: (online) + offline: (offline) + additional_title: Diese Liste enthält alle Seiten geordnet nach dem Datum der letzten Aktualisierung. tab: properties: - title: Properties + title: Eigenschaften menu: - title: Menu + title: Menü permissions: - title: Permissions + title: Berechtigungen searcher: - title: Searcher + title: Suche modal: add_homepage: - h: Add homepage + h: Startseite hinzufügen form: title: - label: Title + label: Titel type: - label: Type + label: Typ add: - label: Add + label: Hinzufügen cancel: - label: Cancel + label: Abbrechen unpublish: - title: Unpublish - body: Are you sure you want to unpublish this page? If you do this, the page will be offline! + title: Veröffentlichung aufheben + body: Sind sie sicher, dass Sie die Veröffentlichung der Seite aufheben wollen? Falls ja, ist die Seite offline! later: - label: Unpublish later - button: Unpublish later - cancel: Cancel + label: Veröffentlichung später aufheben + button: Veröffentlichung später aufheben + cancel: Abbrechen now: - button: Unpublish - cancel: Cancel + button: Veröffentlichung aufheben + cancel: Abbrechen publish: - title: Publish - body: Are you sure you want to publish this page? If you do this, the page will be online! + title: Veröffentlichen + body: Sind Sie sicher, dass die Seite veröffentlicht werden soll? Falls ja, ist die Seite online! later: - label: Publish later - button: Publish later - cancel: Cancel + label: Später veröffentlichen + button: Später veröffentlichen + cancel: Abbrechen now: - button: Publish - cancel: Cancel + button: Veröffentlichen + cancel: Abbrechen versions: - title: Versions + title: Versionen table: - type: Type - last_modified: Last modified - user: User - actions: Actions + type: Typ + last_modified: Letzte Änderung + user: Benutzer + actions: Aktionen actions: - preview: Preview - revert: Revert + preview: Vorschau + revert: Zurücksetzen add_subpage: - title: Add subpage + title: Unterseite hinzufügen label: - title: Title - type: Type + title: Titel + type: Typ button: - add: Add - cancel: Cancel + add: Hinzufügen + cancel: Abbrechen delete_page: - 'title.%page%': Delete page '%page%' - 'body.%page%': This will remove the page completely in all languages! Are you really sure about this? + 'title.%page%': Seite "%page%" löschen + 'body.%page%': Die Seite wird einschließlich aller Sprachen gelöscht! Sind Sie sicher? button: - delete: Delete - cancel: Cancel + delete: Löschen + cancel: Abbrechen duplicate_page: - 'title.%page%': Duplicate page '%page%' + 'title.%page%': Seite "%page%" duplizieren label: - new_title: New title + new_title: Neuer Titel button: - duplicate: Duplicate - cancel: Cancel + duplicate: Duplizieren + cancel: Abbrechen recopyfromlanguage: button: - copy: Copy - cancel: Cancel + copy: Kopieren + cancel: Abbrechen export_pagetemplate: button: - title: Export pagetemplate + title: Seitenvorlage exportieren diff --git a/src/Kunstmaan/NodeBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/NodeBundle/Resources/translations/messages.hu.yml index 363e831f67..35deebe4b2 100644 --- a/src/Kunstmaan/NodeBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/NodeBundle/Resources/translations/messages.hu.yml @@ -4,7 +4,7 @@ subaction: action: saveasdraft: "Mentés piszkozatként" recopyfromlanguage: "Másik nyelvről másolás" - exportpagetemplate: "Export pagetemplate" + exportpagetemplate: "A pagetemplate exportálása" publish: "Publikálás" unpublish: "Publikálás visszavonása" preview: "Előnézet" @@ -71,8 +71,8 @@ kuma_node: edit: flash: success: Az oldal módosítva. - locked: The page is currently being edited by %users% - locked_success: An automatic backup has been created because the page is being edited by another user + locked: Ezt az oldalt jelenleg %user% szerkeszti. + locked_success: Automatikus biztonsági mentés létrehozva, mert jelenleg egy másik felhasználó szerkeszti az oldalt. new_page: title: default: Új oldal @@ -89,7 +89,7 @@ kuma_node: online: Online online: (Online) offline: (Offline) - additional_title: This list contains all the pages, chronologically ordered by updated date. + additional_title: A list az összes oldalt krónológikus sorrendben tartalmazza, a módosítási időpont alapján. tab: properties: title: Tulajdonságok @@ -168,4 +168,4 @@ kuma_node: cancel: Mégse export_pagetemplate: button: - title: Export pagetemplate + title: A pagetemplate exportálása diff --git a/src/Kunstmaan/NodeBundle/Resources/translations/messages.nl.yml b/src/Kunstmaan/NodeBundle/Resources/translations/messages.nl.yml index d9a3e6cc04..070b60a437 100644 --- a/src/Kunstmaan/NodeBundle/Resources/translations/messages.nl.yml +++ b/src/Kunstmaan/NodeBundle/Resources/translations/messages.nl.yml @@ -169,10 +169,3 @@ kuma_node: export_pagetemplate: button: title: Exporteer pagina template - - -# Toolbar -toolbar: - node: - edit: Bewerken - title: Titel diff --git a/src/Kunstmaan/NodeSearchBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/NodeSearchBundle/Resources/translations/messages.de.yml index e8d242ee1b..f6d2917863 100644 --- a/src/Kunstmaan/NodeSearchBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/NodeSearchBundle/Resources/translations/messages.de.yml @@ -7,4 +7,4 @@ node_search: form: search: boost: - label: Boost + label: Beschleunigen diff --git a/src/Kunstmaan/PagePartBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/PagePartBundle/Resources/translations/messages.de.yml index bed005f391..08f5c0a439 100644 --- a/src/Kunstmaan/PagePartBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/PagePartBundle/Resources/translations/messages.de.yml @@ -4,9 +4,9 @@ pagepart: type: 'Überschriftstil' title: 'Titel' link: - internal: Internal - external: External - email: Email + internal: Intern + external: Extern + email: E-Mail choose: 'Link Auswählen' openinnewwindow: 'In neuem Fenster öffnen' text: 'Text' @@ -15,36 +15,36 @@ pagepart: text: content: 'Inhalt' buttons: - move_up: Move up - move_down: Move down - edit: Edit - delete: Delete - resize: Minimize-Maximize + move_up: Nach oben + move_down: Nach unten + edit: Bearbeiten + delete: Löschen + resize: Maximieren/minimieren region: button: - min: Minimize - max: Maximize + min: Minimieren + max: Maximieren kuma_pagepart: tab: content: - title: Content + title: Inhalt modal: delete: - 'title.%type%': "Delete pagepart '%type%'" - 'text.%type%': This will not remove the pagepart completely, save the page to remove this pagepart permanently. + 'title.%type%': "Seitenteil \"%type%\" löschen" + 'text.%type%': Dies entfernt den Seitenteil nicht vollständig. Speichern Sie die Seite um den Seitenteil dauerhaft zu entfernen. button: - delete: Delete - cancel: Cancel + delete: Löschen + cancel: Abrechen select: - add: Add a pagepart + add: Seitenteil hinzufügen template: modal: change: - current: Current - title: Change template + current: Aktuell + title: Vorlage ändern button: - open: Change template - change: Change - cancel: Cancel + open: Vorlage ändern + change: Ändern + cancel: Abbrechen message: - 'no_admin_found.%name%': NO ADMIN FOUND for %name% + 'no_admin_found.%name%': KEIN ADMIN GEFUNDEN für %name% diff --git a/src/Kunstmaan/PagePartBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/PagePartBundle/Resources/translations/messages.hu.yml index f8183b031a..cf1aec9d1b 100644 --- a/src/Kunstmaan/PagePartBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/PagePartBundle/Resources/translations/messages.hu.yml @@ -4,9 +4,9 @@ pagepart: type: 'Fejléc típusa' title: 'Cím' link: - internal: Internal - external: External - email: Email + internal: Belső + external: Külső + email: E-mail choose: 'Link oldalelem' openinnewwindow: 'Új ablakban nyissa meg' text: 'Link szövege' diff --git a/src/Kunstmaan/RedirectBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/RedirectBundle/Resources/translations/messages.de.yml index 8521de1a87..7b80b313e6 100644 --- a/src/Kunstmaan/RedirectBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/RedirectBundle/Resources/translations/messages.de.yml @@ -1,31 +1,31 @@ --- redirect: - title: Redirects - all: All domains - origin_info: The URL that you want to redirect, eg. /contest - target_info: The destination redirect URL, eg. /en/contests/summer-contest + title: Weiterleitungen + all: Alle Domains + origin_info: Die URL, die Sie z.B. umleiten möchten (bspw. /contest) + target_info: Das Weiterleitungs-Ziel, bspw. /en/contests/summer-contest form: redirect: domain: label: Domain origin: - label: Origin + label: Ursprung target: - label: Target + label: Ziel permanent: - label: Permanent + label: Dauerhaft note: - label: Note + label: Notiz adminlist: header: domain: Domain - origin: Origin - target: Target - permanent: Permanent? - note: Note + origin: Ursprung + target: Ziel + permanent: Dauerhaft? + note: Notiz filter: domain: Domain - origin: Origin - target: Target - permanent: Permanent - note: Note + origin: Ursprung + target: Ziel + permanent: Dauerhaft + note: Notiz diff --git a/src/Kunstmaan/SeoBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/SeoBundle/Resources/translations/messages.de.yml index 22966f08b4..98893eeab5 100644 --- a/src/Kunstmaan/SeoBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/SeoBundle/Resources/translations/messages.de.yml @@ -1,35 +1,35 @@ --- seo: robots: - title: Robots - tip: 'Tip:' - warning: This is a default value and example, no custom robots.txt has been defined. - moreinfo: You can find more information about the Kunstmaan robots.txt at our + title: Robots-Datei + tip: 'Tipp:' + warning: Dies ist ein Standardwert und ein Beispiel. Es wurde keine benutzerdefinierte robits.txt definiert. + moreinfo: Sie erhalten mehr Informationen über die Kunstmaan robots.txt auf unserer action: - save: Save - cancel: Cancel - preview: Preview + save: Speichern + cancel: Abrechen + preview: Vorschau form: og: - title: OG Title - description: OG Description - url: OG Url - type: OG Type - image: OG Image + title: OG Titel + description: OG Beschreibung + url: OG URL + type: OG Typ + image: OG Bild article: - author: OG Article Author - publisher: OG Article Publisher - section: OG Article Section + author: OG Author + publisher: OG Veröffentlicher + section: OG Artikelbereich twitter: - title: Title - title_info_text: The title of your twitter card. Falls back to SEO Meta title - description: Description - description_info_text: The description of your twitter card. Falls back to SEO Meta description - sitehandle: Site Handle - sitehandle_info_text: Twitter handle of your website organisation. This value is required for twitter cards to work. - creatorhandle: Creator Handle - creatorhandle_info_text: Twitter handle of your page publisher. - image: Image + title: Titel + title_info_text: Der Titel der Twitter-Karte. Falls nicht angeben, wird der SEO Titel verwendet. + description: Beschreibung + description_info_text: Die Beschreibung der Twitter-Karte. Falls nicht angeben, wird die SEO Beschreibung verwendet + sitehandle: Seiten-@-Benutzername + sitehandle_info_text: Twitter-@-Nutzername der Website-Organisation. Dieser Wert ist erforderlich, damit Twitter-Karten funktionieren. + creatorhandle: Ersteller-@-Benutzername + creatorhandle_info_text: '@-Benutzername des Veröffentlichers' + image: Bild robots: noindex: No index nofollow: No follow @@ -39,20 +39,20 @@ seo: noimageindex: No image index seo: meta_title: - label: Title - info_text: The title tag is often used on search engine results pages. + label: Titel + info_text: Der Titel-Tag wird oft von Suchmaschinen genutzt, um Ergebnisse anzuzeigen. meta_description: - label: Meta description + label: Meta-Beschreibung meta_robots: - label: Meta robots - placeholder: Choose robot tags + label: Meta-Robots + placeholder: Robot.txt Tags auswählen extra_metadata: - label: Extra metadata + label: Extra Metadaten pagetabs: opengraph: Open Graph - twittercards: Twitter Cards + twittercards: Twitter-Karten tab: seo: title: SEO social: - title: Social + title: Soziale Netzwerke diff --git a/src/Kunstmaan/SeoBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/SeoBundle/Resources/translations/messages.hu.yml index 0bc98dab0c..9b9ec74ceb 100644 --- a/src/Kunstmaan/SeoBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/SeoBundle/Resources/translations/messages.hu.yml @@ -1,8 +1,8 @@ - +--- seo: robots: - title: Robots - tip: 'Tip:' + title: Robotok + tip: 'Típus:' warning: Ez csak egy alapértelmezett érték és példa, nincsen robots.txt feltöltve moreinfo: További információk action: @@ -28,7 +28,7 @@ seo: sitehandle: Oldal kezelője sitehandle_info_text: A weblap tulajdonos Twitter kezelője. Ez az érték szükséges ahhoz, hogy működjenek a twitter kártyák. creatorhandle: Oldal létrehozója - creatorhandle_info_text: Twitter handle of your page publisher. + creatorhandle_info_text: A page publisher Twitter handle-je. image: Kép robots: noindex: No index diff --git a/src/Kunstmaan/SeoBundle/Resources/translations/messages.nl.yml b/src/Kunstmaan/SeoBundle/Resources/translations/messages.nl.yml index 3ec98d28c9..6d169e1133 100644 --- a/src/Kunstmaan/SeoBundle/Resources/translations/messages.nl.yml +++ b/src/Kunstmaan/SeoBundle/Resources/translations/messages.nl.yml @@ -1,4 +1,4 @@ -# Media +--- seo: robots: title: Robots diff --git a/src/Kunstmaan/TaggingBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/TaggingBundle/Resources/translations/messages.de.yml index 552f72b210..623afc8b27 100644 --- a/src/Kunstmaan/TaggingBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/TaggingBundle/Resources/translations/messages.de.yml @@ -7,7 +7,7 @@ kuma_tagging: adminlist: header: name: Name - created_at: Created at - updated_at: Updated at + created_at: Erstellt am + updated_at: Aktualisiert am filter: name: Name diff --git a/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.de.yml index 8730146281..2f3dbd2b83 100644 --- a/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.de.yml @@ -15,7 +15,7 @@ settings: refresh_live: Liveseite Aktualisieren import_translations_forced: Importieren und Überschreiben import_translations: Importieren - import_file: Import from spreadsheet + import_file: Aus Tabelle importieren actions: Aktionen export_translations: Export nach csv not_live_warning: "Die Übersetzungen der Liveseite sind nicht aktuell. Bitte 'Liveseite Aktualisieren' klicken." @@ -24,38 +24,38 @@ settings: succesful_edited: "Übersetzung wurde erfolgreich bearbeitet" kuma_translator: form: - upload_file_choose: Please choose a file to upload - force_checkbox: Force overwriting translations + upload_file_choose: Datei zum Hochladen auswählen + force_checkbox: Übersetzungen überschreiben text_with_locale: locale: - label: Locale + label: Sprache text: label: Text command: clear: flash: - success: All live translations are up to date. + success: Alle Übersetzungen sind aktuell. import: flash: - success: Translations successfully imported, none existing translations were overwritten. - force_success: Translations successfully imported, all existing translations were overwritten. + success: Übersetzungen erfolgreich importiert. Es wurde keine Übersetzung überschrieben. + force_success: Übersetzungen erfolgreich importiert. Es wurden alle Übersetzung überschrieben. modal: confirmation: force_import: - title: Are you sure you want to force an import? - body: All existing translations will be overwritten. - confirm_button: Import - cancel_button: Cancel + title: Sind Sie sicher, dass Sie einen Import erzwingen möchten? + body: Alle existierenden Übersetzungen werden überschrieben. + confirm_button: Importieren + cancel_button: Abrechen adminlist: header: domain: Domain - keyword: Keyword + keyword: Schlagwort filter: domain: Domain - keyword: Keyword + keyword: Schlagwort text: Text - locale: Locale + locale: Sprache toolbar: translations: - title: Translations - count: Count + title: Übersetzungen + count: Anzahl diff --git a/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.hu.yml index 3e8aea6e86..cf77c0d2df 100644 --- a/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.hu.yml @@ -14,18 +14,18 @@ settings: edit: Szerkesztése refresh_live: Azonnali frissítés import_translations_forced: Kényszerített import - import_translations: Import - import_file: Import from spreadsheet - actions: Actions - export_translations: Export to CSV + import_translations: Importálás + import_file: Importálás táblázatból + actions: Műveletek + export_translations: Exportálás CSV fáljba not_live_warning: "A fordítás nem azonnali idejű!" choose_language: "Válassz egy nyelvet" succesful_added: "Sikeresen hozzá lett adva." succesful_edited: "Sikeres szerkesztés" kuma_translator: form: - upload_file_choose: Please choose a file to upload - force_checkbox: Force overwriting translations + upload_file_choose: Kérjük, válassz ki egy fájlt a feltöltéshez + force_checkbox: A fordítások felülírása text_with_locale: locale: label: Nyelv @@ -57,5 +57,5 @@ kuma_translator: locale: Nyelv toolbar: translations: - title: Translations - count: Count + title: Fordítások + count: Mennyiség diff --git a/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.nl.yml b/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.nl.yml index 249ff89dac..653a806848 100644 --- a/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.nl.yml +++ b/src/Kunstmaan/TranslatorBundle/Resources/translations/messages.nl.yml @@ -56,6 +56,6 @@ kuma_translator: text: Tekst locale: Lokaal toolbar: - translations: - title: Vertalingen - count: Aantal + translations: + title: Vertalingen + count: Teller diff --git a/src/Kunstmaan/UserManagementBundle/Resources/translations/messages.de.yml b/src/Kunstmaan/UserManagementBundle/Resources/translations/messages.de.yml index 5d8ff99757..5fdb90ad19 100644 --- a/src/Kunstmaan/UserManagementBundle/Resources/translations/messages.de.yml +++ b/src/Kunstmaan/UserManagementBundle/Resources/translations/messages.de.yml @@ -6,7 +6,7 @@ settings: edit: Gruppe Bearbeiten add: Gruppe Erstellen roles: Rollen - roles_placeholder: Choose the roles... + roles_placeholder: Rollen auswählen... users: Benutzer user: username: Benutzername @@ -16,7 +16,7 @@ settings: email: E-Mail enabled: Aktiv roles: Gruppen - roles_placeholder: Choose the permission groups... + roles_placeholder: Berechtigungsgruppen auswählen... add: Benutzer Erstellen edit: Benutzer Bearbeiten roles: Rollen @@ -28,53 +28,53 @@ kuma_user: roles: add: flash: - 'success.%role%': Role '%role%' has been created! + 'success.%role%': Die Rolle "%role%" wurde erstellt! edit: flash: - 'success.%role%': Role '%role%' has been edited! + 'success.%role%': Die Rolle "%role%" wurde aktualisiert! delete: flash: - 'success.%role%': Role '%role%' has been deleted! + 'success.%role%': Die Rolle "%role%" wurde gelöscht! users: adminlist: header: - username: Username - email: E-mail - enabled: Enabled - last_login: Last login - groups: Groups + username: Benutzername + email: E-Mail + enabled: Aktiv + last_login: Letzte Anmeldung + groups: Gruppen filter: - username: Username - email: E-mail - enabled: Enabled + username: Benutzername + email: E-Mail + enabled: Aktiv add: flash: - 'success.%username%': User '%username%' has been created! + 'success.%username%': Der Benutzer "%username%" wurde erstellt! edit: flash: - 'success.%username%': User '%username%' has been edited! + 'success.%username%': Der Benutzer "%username%" wurde aktualisiert! delete: flash: - 'success.%username%': User '%username%' has been deleted! + 'success.%username%': Der Benutzer "%username%" wurde gelöscht! group: adminlist: header: name: Name - roles: Roles + roles: Rollen filter: name: Name add: flash: - success: Group %groupname% has been created! + success: Die Gruppe "%groupname%" wurde erstellt! edit: flash: - success: Group %groupname% has been edited! + success: Die Gruppe "%groupname%" wurde aktualisiert! delete: flash: - success: Group %groupname% has been deleted! + success: Die Gruppe "%groupname%" wurde gelöscht! role: adminlist: header: - role: Role + role: Rolle filter: - role: Role + role: Rolle diff --git a/src/Kunstmaan/UserManagementBundle/Resources/translations/messages.hu.yml b/src/Kunstmaan/UserManagementBundle/Resources/translations/messages.hu.yml index 0ac097945b..853c3ef03a 100644 --- a/src/Kunstmaan/UserManagementBundle/Resources/translations/messages.hu.yml +++ b/src/Kunstmaan/UserManagementBundle/Resources/translations/messages.hu.yml @@ -65,13 +65,13 @@ kuma_user: name: Név add: flash: - success: Group %groupname% has been created! + success: A %groupname% nevű csoport sikeresen létrehozva! edit: flash: - success: Group %groupname% has been edited! + success: A %groupname% nevű csoport sikeresen szerkesztve! delete: flash: - success: Group %groupname% has been deleted! + success: A %groupname% nevű csoport sikeresen törölve! role: adminlist: header: From 9f31937d925f75663315eb7d2dd4d33e6a2487bb Mon Sep 17 00:00:00 2001 From: Ruud Denivel Date: Tue, 21 Aug 2018 13:51:49 +0200 Subject: [PATCH 5/6] update changelog --- CHANGELOG-5.X.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG-5.X.md b/CHANGELOG-5.X.md index ee2c928f48..17ff52c711 100644 --- a/CHANGELOG-5.X.md +++ b/CHANGELOG-5.X.md @@ -1,5 +1,12 @@ # Changelog +## 5.0.9 / 2018-08-21 + +* [MediaBundle] add return to load function [#2076](https://github.com/Kunstmaan/KunstmaanBundlesCMS/pull/2076) ([@bakie](https://github.com/bakie)) +* [KunstmaanNodeSearchBundle] use hosts in useVersion6 check [#2075](https://github.com/Kunstmaan/KunstmaanBundlesCMS/pull/2075) ([@bakie](https://github.com/bakie)) +* [MenuBundle] Fix menu item sorting issue with multiple menus [#2072](https://github.com/Kunstmaan/KunstmaanBundlesCMS/pull/2072) ([@acrobat](https://github.com/acrobat)) + + ## 5.0.8 / 2018-08-07 * [AdminList] Fix admin list empty url [#2071](https://github.com/Kunstmaan/KunstmaanBundlesCMS/pull/2071) ([@dannyvw](https://github.com/dannyvw)) From 7628b73d28cac3c073b6d50ece3979eaa1897caa Mon Sep 17 00:00:00 2001 From: Jeroen Thora Date: Tue, 21 Aug 2018 14:56:35 +0200 Subject: [PATCH 6/6] [NodeBundle] Deprecate unused TemplateEngine constructor argument (#2073) --- .../EventListener/RenderContextListener.php | 15 ++++++++++++--- .../NodeBundle/Resources/config/services.yml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/Kunstmaan/NodeBundle/EventListener/RenderContextListener.php b/src/Kunstmaan/NodeBundle/EventListener/RenderContextListener.php index 08f16299b2..e4818f31f7 100644 --- a/src/Kunstmaan/NodeBundle/EventListener/RenderContextListener.php +++ b/src/Kunstmaan/NodeBundle/EventListener/RenderContextListener.php @@ -25,10 +25,19 @@ class RenderContextListener * @param EngineInterface $templating * @param EntityManagerInterface $em */ - public function __construct(EngineInterface $templating, EntityManagerInterface $em) + public function __construct(/* EngineInterface|EntityManagerInterface */ $em, EntityManagerInterface $emOld = null) { - $this->templating = $templating; - $this->em = $em; + if ($em instanceof EngineInterface) { + // NEXT_MAJOR Also remove the symfony/templating dependency as it is unused after the removal of the templating parameter. + @trigger_error(sprintf('Passing a templating engine as the first argument of "%s" is deprecated since KunstmaanNodeBundle 5.1 and will be removed in KunstmaanNodeBundle 6.0. Remove the template engine service argument.', __METHOD__), E_USER_DEPRECATED); + + $this->templating = $em; + $this->em = $emOld; + + return; + } + + $this->em = $em; } /** diff --git a/src/Kunstmaan/NodeBundle/Resources/config/services.yml b/src/Kunstmaan/NodeBundle/Resources/config/services.yml index 1b7c5baa83..392bcdabf5 100644 --- a/src/Kunstmaan/NodeBundle/Resources/config/services.yml +++ b/src/Kunstmaan/NodeBundle/Resources/config/services.yml @@ -159,7 +159,7 @@ services: kunstmaan_node.render.context.listener: class: Kunstmaan\NodeBundle\EventListener\RenderContextListener - arguments: ['@templating', '@doctrine.orm.entity_manager'] + arguments: ['@doctrine.orm.entity_manager'] tags: - { name: kernel.event_listener, event: kernel.view, method: onKernelView }