diff --git a/.github/workflows/code_analysis.yaml b/.github/workflows/code_analysis.yaml index ca724b97e..33bb1649c 100644 --- a/.github/workflows/code_analysis.yaml +++ b/.github/workflows/code_analysis.yaml @@ -64,6 +64,9 @@ jobs: - name: Check XLIFF translation files run: bin/console lint:xliff translations --ansi + - name: Validate translation catalogues + run: php bin/validate-translations + - name: Check Doctrine Mapping run: bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction --ansi diff --git a/bin/update-translation-notes b/bin/update-translation-notes new file mode 100755 index 000000000..0abb400c2 --- /dev/null +++ b/bin/update-translation-notes @@ -0,0 +1,235 @@ +#!/usr/bin/env php + blocks in translations/*.xlf so every unit lists + * the real usage locations (path:line) of its key in the codebase — src, + * templates, assets, themes and the bundled bolt widgets. The same notes are + * written to the en file and every locale file, so all catalogues stay + * identical in structure. + * + * Units whose keys are consumed by Symfony itself (standard security and + * validator messages) have no code location and therefore carry no notes. + * + * Run it after moving or adding translation keys: + * + * php bin/update-translation-notes + */ + +$root = dirname(__DIR__); +$domains = ['messages', 'security', 'validators']; + +// Keys built at runtime: 'status.published' is used via trans('status.' . $status). +$dynamicPrefixes = ['status.']; + +$usageDirs = ['src', 'templates', 'assets/js', 'config', 'tests', 'public/theme', 'vendor/bolt']; +$usageExtensions = ['php', 'twig', 'js', 'vue', 'yaml', 'yml']; + +// Standard security/validator messages have no in-repo usage: they are emitted +// by Symfony itself. For those, note the vendor source that produces them +// (the exception returning the messageKey, the constraint declaring the message). +$vendorFallbackDirs = [ + 'security' => ['vendor/symfony/security-core', 'vendor/symfony/security-http'], + 'validators' => ['vendor/symfony/validator', 'vendor/symfony/form', 'vendor/symfony/doctrine-bridge', 'vendor/symfony/security-core'], +]; + +// --------------------------------------------------------------------------- +// load the usage corpus +// --------------------------------------------------------------------------- +/** + * @param string[] $dirs + * @param string[] $extensions + * @return array relative path => file content + */ +function loadCorpus(string $root, array $dirs, array $extensions): array +{ + $corpus = []; + foreach ($dirs as $dir) { + $base = "{$root}/{$dir}"; + if (! is_dir($base)) { + continue; + } + $iterator = new RecursiveIteratorIterator( + new RecursiveCallbackFilterIterator( + new RecursiveDirectoryIterator($base, FilesystemIterator::SKIP_DOTS), + static fn (SplFileInfo $f): bool => $f->getFilename() !== 'node_modules' && $f->getFilename() !== 'translations' + ) + ); + foreach ($iterator as $file) { + if ($file->isFile() && in_array($file->getExtension(), $extensions, true)) { + $corpus[substr((string) $file->getPathname(), strlen($root) + 1)] = (string) file_get_contents($file->getPathname()); + } + } + } + ksort($corpus); + + return $corpus; +} + +$corpus = loadCorpus($root, $usageDirs, $usageExtensions); + +/** + * @var array cached line splits per file + */ +$lineCache = []; + +/** + * @param array $corpus + * @param array $lineCache + * @return string[] "path:line" locations where $needle occurs + */ +function locate(array $corpus, string $needle, array &$lineCache): array +{ + $locations = []; + foreach ($corpus as $path => $content) { + if (! str_contains($content, $needle)) { + continue; + } + if (! isset($lineCache[$path])) { + $lineCache[$path] = explode("\n", $content); + } + foreach ($lineCache[$path] as $i => $line) { + if (str_contains($line, $needle)) { + $locations[] = $path . ':' . ($i + 1); + } + } + } + + return $locations; +} + +/** + * @param array $corpus + * @param string[] $dynamicPrefixes + * @param array $lineCache + * @param array $vendorCorpus + * @param array $vendorLineCache + * @return string[] + */ +function usageNotes(array $corpus, string $key, array $dynamicPrefixes, array &$lineCache, array $vendorCorpus = [], array &$vendorLineCache = []): array +{ + $fuzzy = false; + // quoted occurrences are precise; fall back to a plain substring match + $locations = array_merge(locate($corpus, "'{$key}'", $lineCache), locate($corpus, "\"{$key}\"", $lineCache)); + if ($locations === []) { + $locations = locate($corpus, $key, $lineCache); + } + if ($locations === []) { + foreach ($dynamicPrefixes as $prefix) { + if (str_starts_with($key, $prefix)) { + $locations = locate($corpus, "'{$prefix}'", $lineCache); + break; + } + } + } + if ($locations === [] && $vendorCorpus !== []) { + $escaped = str_replace("'", "\\'", $key); // 'user\'s current password.' + $locations = array_merge( + locate($vendorCorpus, "'{$key}'", $vendorLineCache), + locate($vendorCorpus, "\"{$key}\"", $vendorLineCache), + $escaped !== $key ? locate($vendorCorpus, "'{$escaped}'", $vendorLineCache) : [] + ); + // messages assembled at runtime, e.g. 'try again '.'in %minutes% minute': + // retry with the key progressively shortened from the right + $prefix = $key; + while ($locations === [] && str_contains($prefix, ' ')) { + $lastSpace = strrpos($prefix, ' '); + if ($lastSpace === false) { + break; + } + $prefix = trim(substr($prefix, 0, $lastSpace)); + if (strlen($prefix) < 25) { + break; + } + $locations = locate($vendorCorpus, $prefix, $vendorLineCache); + if ($locations !== []) { + $fuzzy = true; + } + } + } + $locations = array_values(array_unique($locations)); + + // Sort by path first, then by line number numerically (not lexicographically). + usort($locations, static function (string $a, string $b): int { + $aColon = (int) strrpos($a, ':'); + $bColon = (int) strrpos($b, ':'); + $pathCmp = strcmp(substr($a, 0, $aColon), substr($b, 0, $bColon)); + if ($pathCmp !== 0) { + return $pathCmp; + } + return ((int) substr($a, $aColon + 1)) - ((int) substr($b, $bColon + 1)); + }); + + // Prefix fuzzy matches with '~' so downstream tools can identify them. + if ($fuzzy && $locations !== []) { + $locations = array_map(static fn (string $loc): string => '~' . $loc, $locations); + } + + return $locations; +} + +// --------------------------------------------------------------------------- +// rewrite the xlf files +// --------------------------------------------------------------------------- +$notesByDomain = []; + +// Pre-load vendor corpora once across domains (avoids double-reading shared +// vendor dirs like symfony/security-core that appear in multiple domains). +$vendorCorpusCache = []; +foreach ($vendorFallbackDirs as $domain => $dirs) { + foreach ($dirs as $dir) { + if (! isset($vendorCorpusCache[$dir])) { + $vendorCorpusCache[$dir] = loadCorpus($root, [$dir], ['php']); + } + } +} + +foreach ($domains as $domain) { + // compute notes once per domain, based on the en key set + $enContent = (string) file_get_contents("{$root}/translations/{$domain}.en.xlf"); + preg_match_all('/(.*?)<\/source>/s', $enContent, $matches); + $vendorCorpus = []; + foreach ($vendorFallbackDirs[$domain] ?? [] as $dir) { + $vendorCorpus += $vendorCorpusCache[$dir]; + } + $vendorLineCache = []; + $notes = []; + foreach ($matches[1] as $escapedKey) { + $key = html_entity_decode($escapedKey, ENT_QUOTES | ENT_XML1, 'UTF-8'); + $notes[$key] = usageNotes($corpus, $key, $dynamicPrefixes, $lineCache, $vendorCorpus, $vendorLineCache); + } + $notesByDomain[$domain] = $notes; + + foreach (glob("{$root}/translations/{$domain}.*.xlf") ?: [] as $path) { + $content = (string) file_get_contents($path); + $content = (string) preg_replace_callback( + '/([ \t]*)]*>\n(?:[ \t]*.*?<\/notes>\n)?(.*?<\/unit>\n)/s', + static function (array $m) use ($notes): string { + preg_match('/(.*?)<\/source>/s', $m[0], $src); + $key = html_entity_decode($src[1] ?? '', ENT_QUOTES | ENT_XML1, 'UTF-8'); + preg_match('/^[ \t]*]*>\n/', $m[0], $header); + $indent = $m[1]; + $block = $header[0] ?? ''; + if (! empty($notes[$key])) { + $block .= "{$indent} \n"; + foreach ($notes[$key] as $location) { + $block .= "{$indent} {$location}\n"; + } + $block .= "{$indent} \n"; + } + + return $block . $m[2]; + }, + $content + ); + file_put_contents($path, $content); + } +} + +foreach ($domains as $domain) { + $withNotes = count(array_filter($notesByDomain[$domain])); + $total = count($notesByDomain[$domain]); + echo "{$domain}: usage notes for {$withNotes}/{$total} keys, mirrored to all locale files\n"; +} diff --git a/bin/validate-translations b/bin/validate-translations new file mode 100755 index 000000000..3b0f40208 --- /dev/null +++ b/bin/validate-translations @@ -0,0 +1,317 @@ +#!/usr/bin/env php +..xlf contains exactly the same + * keys (and unit ids) as .en.xlf — nothing missing, nothing extra, + * no duplicates. + * 2. Header sanity: and trgLang match the filename. + * 3. Usage (messages domain): every key is referenced somewhere in the code + * (src, templates, assets, config, public/theme, bundled bolt widgets), + * and every key referenced in code exists in messages.en.xlf. + * The security and validators domains are consumed by Symfony itself + * (auth exception messageKeys, constraint messages), so only parity is + * checked there. + * + * Exits 1 if any error is found, so it can run in CI: + * + * php bin/validate-translations + */ + +$root = dirname(__DIR__); +$domains = ['messages', 'security', 'validators']; + +// Keys built at runtime, e.g. 'status.' ~ record.status in ContentExtension. +$dynamicPrefixes = ['status.']; + +// Where translation keys may be referenced. +$usageDirs = ['src', 'templates', 'assets/js', 'config', 'tests', 'public/theme', 'vendor/bolt']; +$usageExtensions = ['php', 'twig', 'js', 'vue', 'yaml', 'yml']; + +// Fixed manifest of expected translation files. A deleted file must cause a +// hard failure rather than silently validating fewer files. +$expectedFiles = [ + 'messages.bg.xlf', 'messages.cs.xlf', 'messages.de.xlf', 'messages.el.xlf', + 'messages.en.xlf', 'messages.es.xlf', 'messages.fr.xlf', 'messages.hu.xlf', + 'messages.it.xlf', 'messages.nl.xlf', 'messages.pl.xlf', 'messages.pt_BR.xlf', + 'messages.ru.xlf', 'messages.tr.xlf', 'messages.uk.xlf', 'messages.zh_CN.xlf', + 'security.cs.xlf', 'security.de.xlf', 'security.el.xlf', 'security.en.xlf', + 'security.es.xlf', 'security.fr.xlf', 'security.hu.xlf', 'security.nl.xlf', + 'security.ru.xlf', 'security.tr.xlf', 'security.zh_CN.xlf', + 'validators.cs.xlf', 'validators.de.xlf', 'validators.el.xlf', 'validators.en.xlf', + 'validators.es.xlf', 'validators.fr.xlf', 'validators.hu.xlf', 'validators.it.xlf', + 'validators.nl.xlf', 'validators.pl.xlf', 'validators.pt_BR.xlf', + 'validators.ru.xlf', 'validators.tr.xlf', 'validators.uk.xlf', 'validators.zh_CN.xlf', +]; + +$errors = []; +$warnings = []; + +// ------------------------------------------------------------------------- +// 0: verify the file manifest is complete +// ------------------------------------------------------------------------- +foreach ($expectedFiles as $expected) { + if (! file_exists("{$root}/translations/{$expected}")) { + $errors[] = "{$expected}: expected file is missing from translations/"; + } +} +$actualFiles = array_map(basename(...), glob("{$root}/translations/*.xlf") ?: []); +foreach (array_diff($actualFiles, $expectedFiles) as $extra) { + $warnings[] = "{$extra}: file exists but is not in the expected manifest (add it to bin/validate-translations \$expectedFiles)"; +} + +/** + * @return array{units: array, duplicates: string[], notes: array, fileId: ?string, trgLang: ?string, loadError: bool} + */ +function parseXlf(string $path): array +{ + $dom = new DOMDocument(); + if (! @$dom->load($path)) { + return [ + 'units' => [], + 'duplicates' => [], + 'notes' => [], + 'fileId' => null, + 'trgLang' => null, + 'loadError' => true, + ]; + } + $xliff = $dom->documentElement; + if ($xliff === null) { + return [ + 'units' => [], + 'duplicates' => [], + 'notes' => [], + 'fileId' => null, + 'trgLang' => null, + 'loadError' => true, + ]; + } + $xpath = new DOMXPath($dom); + $xpath->registerNamespace('x2', 'urn:oasis:names:tc:xliff:document:2.0'); + $xpath->registerNamespace('x1', 'urn:oasis:names:tc:xliff:document:1.2'); + + $units = []; + $duplicates = []; + $notes = []; + foreach (['//x2:unit' => 'x2', '//x1:trans-unit' => 'x1'] as $query => $ns) { + $unitList = $xpath->query($query); + if ($unitList === false) { + continue; + } + /** @var DOMElement $unit */ + foreach ($unitList as $unit) { + $sourceList = $xpath->query($ns === 'x2' ? 'x2:segment/x2:source' : 'x1:source', $unit); + $source = $sourceList !== false ? $sourceList->item(0) : null; + if (!$source instanceof DOMElement) { + continue; + } + $key = $source->textContent; + if (isset($units[$key])) { + $duplicates[] = $key; + } + $units[$key] = $unit->getAttribute('id'); + $notes[$key] = []; + $noteList = $xpath->query($ns === 'x2' ? 'x2:notes/x2:note' : 'x1:note', $unit); + if ($noteList !== false) { + foreach ($noteList as $noteNode) { + if ($noteNode instanceof DOMElement) { + $notes[$key][] = $noteNode->textContent; + } + } + } + } + } + + $fileList = $xpath->query('//x2:file'); + $file = $fileList !== false ? $fileList->item(0) : null; + + return [ + 'units' => $units, + 'duplicates' => $duplicates, + 'notes' => $notes, + 'fileId' => $file instanceof DOMElement ? $file->getAttribute('id') : null, + 'trgLang' => $xliff->getAttribute('trgLang') ?: null, + 'loadError' => false, + ]; +} + +// ------------------------------------------------------------------------- +// 1 + 2: structure parity and header sanity +// ------------------------------------------------------------------------- +$enCatalogues = []; + +foreach ($domains as $domain) { + $enPath = "{$root}/translations/{$domain}.en.xlf"; + if (! file_exists($enPath)) { + $errors[] = "{$domain}.en.xlf: file not found"; + continue; + } + $en = parseXlf($enPath); + if ($en['loadError']) { + $errors[] = "{$domain}.en.xlf: failed to parse XML (malformed or truncated file)"; + continue; + } + $enCatalogues[$domain] = $en; + foreach ($en['duplicates'] as $key) { + $errors[] = "{$domain}.en.xlf: duplicate key \"{$key}\""; + } + + foreach (glob("{$root}/translations/{$domain}.*.xlf") ?: [] as $path) { + $filename = basename($path, '.xlf'); + $locale = substr($filename, strlen($domain) + 1); + $parsed = $locale === 'en' ? $en : parseXlf($path); + + if ($parsed['loadError']) { + $errors[] = "{$filename}.xlf: failed to parse XML (malformed or truncated file)"; + continue; + } + + if ($parsed['fileId'] !== $filename) { + $errors[] = "{$filename}.xlf: should be \"{$filename}\""; + } + $expectedTrgLang = str_replace('_', '-', $locale); + if ($parsed['trgLang'] !== null && $parsed['trgLang'] !== $expectedTrgLang) { + $errors[] = "{$filename}.xlf: trgLang=\"{$parsed['trgLang']}\" should be \"{$expectedTrgLang}\""; + } + + if ($locale === 'en') { + continue; + } + foreach ($parsed['duplicates'] as $key) { + $errors[] = "{$filename}.xlf: duplicate key \"{$key}\""; + } + foreach (array_diff_key($en['units'], $parsed['units']) as $key => $id) { + $errors[] = "{$filename}.xlf: missing key \"{$key}\""; + } + foreach (array_diff_key($parsed['units'], $en['units']) as $key => $id) { + $errors[] = "{$filename}.xlf: redundant key \"{$key}\" (not in {$domain}.en.xlf)"; + } + foreach (array_intersect_key($parsed['units'], $en['units']) as $key => $id) { + if ($id !== $en['units'][$key]) { + $warnings[] = "{$filename}.xlf: unit id \"{$id}\" for \"{$key}\" differs from en (\"{$en['units'][$key]}\")"; + } + if (($parsed['notes'][$key] ?? []) !== ($en['notes'][$key] ?? [])) { + $errors[] = "{$filename}.xlf: for \"{$key}\" differ from {$domain}.en.xlf (run bin/update-translation-notes)"; + } + } + } + + // en notes must point at files that still exist + foreach ($en['notes'] as $key => $noteList) { + foreach ($noteList as $note) { + $notePath = explode(':', ltrim($note, '~'))[0]; + if (! file_exists("{$root}/{$notePath}")) { + $warnings[] = "{$domain}.en.xlf: note \"{$note}\" for \"{$key}\" points at a missing file (run bin/update-translation-notes)"; + } + } + } + + // byte-level parity: outside , trgLang and , every locale + // file must be identical to the en file (same order, notes, formatting) + $skeleton = static function (string $path): string { + $content = (string) file_get_contents($path); + $content = (string) preg_replace('/.*?<\/target>/s', '_', $content); + $content = (string) preg_replace('/trgLang="[^"]*"/', 'trgLang="_"', $content, 1); + + return (string) preg_replace('//', '', $content, 1); + }; + $enSkeleton = $skeleton($enPath); + foreach (glob("{$root}/translations/{$domain}.*.xlf") ?: [] as $path) { + if ($skeleton($path) !== $enSkeleton) { + $errors[] = basename($path) . ": file structure differs from {$domain}.en.xlf outside (order, notes or formatting drift)"; + } + } +} + +// ------------------------------------------------------------------------- +// 3: usage audit for the messages domain +// ------------------------------------------------------------------------- +$corpus = ''; +foreach ($usageDirs as $dir) { + $base = "{$root}/{$dir}"; + if (! is_dir($base)) { + continue; + } + $iterator = new RecursiveIteratorIterator( + new RecursiveCallbackFilterIterator( + new RecursiveDirectoryIterator($base, FilesystemIterator::SKIP_DOTS), + static fn (SplFileInfo $f): bool => $f->getFilename() !== 'node_modules' && $f->getFilename() !== 'translations' + ) + ); + foreach ($iterator as $file) { + if ($file->isFile() && in_array($file->getExtension(), $usageExtensions, true)) { + $corpus .= (string) file_get_contents($file->getPathname()) . "\n"; + } + } +} + +if (isset($enCatalogues['messages'])) { + // 3a: every key in messages.en.xlf is referenced somewhere + foreach ($enCatalogues['messages']['units'] as $key => $id) { + if (str_contains($corpus, "'{$key}'") || str_contains($corpus, "\"{$key}\"") || str_contains($corpus, $key)) { + continue; + } + $dynamic = false; + foreach ($dynamicPrefixes as $prefix) { + if (str_starts_with($key, $prefix)) { + $dynamic = true; + break; + } + } + if (! $dynamic) { + $errors[] = "messages.en.xlf: unused key \"{$key}\" (not referenced in code, themes or bundled widgets)"; + } + } + + // 3b: every key referenced in code exists in one of the en catalogues + $known = []; + foreach ($enCatalogues as $catalogue) { + $known += $catalogue['units']; + } + $patterns = [ + "/'([^'\\n]{2,120})'\\s*\\|\\s*trans\\b/", // twig: 'key'|trans + '/\"([^\"\\n]{2,120})\"\\s*\\|\\s*trans\\b/', // twig: "key"|trans + "/__\\(\\s*'([^'\\n]{2,120})'/", // twig helper: __('key') + "/->trans\\(\\s*'([^'\\n]{2,120})'/", // php: ->trans('key') + '/->trans\\(\\s*\"([^\"\\n]{2,120})\"/', + ]; + $used = []; + foreach ($patterns as $pattern) { + preg_match_all($pattern, $corpus, $matches); + foreach ($matches[1] as $key) { + $used[$key] = true; + } + } + foreach (array_keys($used) as $key) { + if (in_array($key, $dynamicPrefixes, true)) { + continue; // concatenated at runtime, e.g. trans('status.' . $status) + } + if (! isset($known[$key])) { + $errors[] = "missing key \"{$key}\": referenced in code but present in no *.en.xlf catalogue"; + } + } +} + +// ------------------------------------------------------------------------- +// report +// ------------------------------------------------------------------------- +foreach ($warnings as $warning) { + echo "\033[33m[WARN]\033[0m {$warning}\n"; +} +foreach ($errors as $error) { + echo "\033[31m[ERROR]\033[0m {$error}\n"; +} + +$files = count(glob("{$root}/translations/*.xlf") ?: []); +if ($errors === []) { + echo "\033[32m[OK]\033[0m {$files} translation files validated: structure in sync with en, no unused or missing keys.\n"; + exit(0); +} + +printf("\n%d error(s), %d warning(s) in %d translation files.\n", count($errors), count($warnings), $files); +exit(1); diff --git a/translations/messages.bg.xlf b/translations/messages.bg.xlf index e73483c6a..c6b846a2d 100644 --- a/translations/messages.bg.xlf +++ b/translations/messages.bg.xlf @@ -1,1210 +1,3437 @@ + + + templates/users/edit.html.twig:6 + + + title.edit_user + Редактирай потребител + + + + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 + action.save Запази - + + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + - user.unknown_user - Неизвестен потребител + action.do_something + Направи нещо - + + + templates/users/listing.html.twig:64 + - caption.dashboard - Болт табло + action.edit + Редактирай - + + + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 + - caption.content - Съдържание + label.username + Потребителско име - + + + templates/security/login.html.twig:4 + - caption.settings - Настройки + title.login + Вход - + + + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 + - caption.configuration - Конфигурация + label.password + Парола - + + + templates/security/login.html.twig:60 + - caption.users_permissions - Потребители и права за достъп + action.log_in + Вход - + + + templates/content/listing.html.twig:58 + - caption.main_configuration - Основна конфигурация + title.contentlisting + Списък на записи - + + + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 + - caption.contenttypes - Типове съдържание + field.id + Идентификатор - + + + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 + - caption.taxonomies - Таксономии + field.status + Статус - + + + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 + - caption.menu_setup - Настройки на навицагията + field.createdAt + Създаден на - + + + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 + - caption.routing_setup - Конфигурация на маршрутите + field.modifiedAt + Променен на - + + + templates/content/_fields_aside.html.twig:15 + - caption.all_configuration_files - Всички конфугурационни файлове + field.publishedAt + Публикуван на - + + + templates/content/_fields_aside.html.twig:24 + - caption.maintenance - Поддръжка + field.depublishedAt + Отпубликуван на - + + + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 + - caption.extensions - Разширения + field.title + Заглавие - + + + templates/media/edit.html.twig:45 + - caption.logviewer - Преглед на дневника + field.description + Описание - + + + templates/media/edit.html.twig:51 + - caption.api - ППИ (API) + field.copyright + Авторски права - + + + templates/media/edit.html.twig:58 + - caption.clear_cache - Изчисти кеш паметта + field.originalFilename + Оригинално име на файла - + + + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 + - caption.translations - Преводи / етикети + field.width + Ширина - + + + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 + - caption.kitchensink - Всички компоненти + field.height + Височина - + + + templates/media/edit.html.twig:142 + - caption.about_bolt - За Болт + field.filesize + Размер на файла - + + + src/Form/LoginType.php:31 + - caption.file_management - Управление на файловете + label.username_or_email + Потребителско име или имейл - + + + src/Form/LoginType.php:58 + - caption.uploaded_files - Качени файлове + label.rememberme + Запомни ме? - + + + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 + - caption.view_edit_templates - Преглед и редакция на шаблоните + about.visit_bolt + Посети Boltcms.io + + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 + about.bolt_documentation Болт документация - + + + templates/pages/about.html.twig:60 + - general.greeting - Привет, админ! + about.bolt_on_github + Болт в GitHub - + + + templates/pages/about.html.twig:64 + - action.logout - Изход + about.used_libraries + Потребителски библиотеки / компоненти - + + + templates/pages/about.html.twig:66 + - action.edit_profile - Редактирай профил + about.list_of_used_libraries + Отдолу са външните библиотеки, използвани от Болт: - + + + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 + - about.visit_bolt - Посети Boltcms.io + label.email + Имейл адрес - + + + templates/users/_form.html.twig:185 + - general.phrase.search - Търсене + label.about + Относно - + + + src/Controller/Backend/UserEditController.php:129 + - listing.placeholder_search - Търси клучова дума… + user.updated_successfully + Успешно актуализиране - + + + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 + - title.edit_user_profile - Редактирай потребителски профил + content.updated_successfully + Съдържанието е актуализирано успешно - + + + src/Controller/Backend/MediaEditController.php:88 + - admin_sidebar_toggler.toggle - Превключи меню ]]> + content.created_successfully + Медийният елемент е създаден успешно - + + + src/Controller/Backend/FileEditController.php:106 + - admin_sidebar.toggler - Превключи ширина на страничната лента + editfile.could_not_write + Медийният елемент не можа да бъде записан - + + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + - action.new - Нов + label.locale + Локал - + + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + - action.view - Прегледай + The Default theme + Темата по подразбиране - + + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + - label.username - Потребителско име + The Default Dark theme + Тъмната тема по подразбиране - + + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + - label.display_name - Показано име + WoordPers: Kinda looks like that other CMS + WoordPers: Прилича малко на онази другата CMS - + + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + - label.password - Парола + caption.dashboard + Болт табло - + + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + - label.email - Имейл адрес + caption.clear_cache + Изчисти кеш паметта - + + + src/Menu/BackendMenuBuilder.php:145 + - label.locale - Локал + caption.menu_setup + Настройки на навицагията - + + + src/Menu/BackendMenuBuilder.php:134 + - action.close_alert - Затвори + caption.taxonomies + Таксономии - + + + src/Menu/BackendMenuBuilder.php:123 + - flash_messages.notification - Известие + caption.contenttypes + Типове съдържание - + + + src/Menu/BackendMenuBuilder.php:112 + - success - Успех! + caption.main_configuration + Основна конфигурация - + + + src/Menu/BackendMenuBuilder.php:99 + - user.updated_profile - Потребителският профил беше актуализиран! + caption.users_permissions + Потребители и права за достъп - + + + src/Menu/BackendMenuBuilder.php:89 + - listing_filter.button_compact - Компактен + caption.configuration + Конфигурация - + + + src/Menu/BackendMenuBuilder.php:77 + - listing_filter.button_expanded - Разширен + caption.settings + Настройки - + + + src/Menu/BackendMenuBuilder.php:61 + - listing_table.actions.view_on_site - Виж на сайта + caption.content + Съдържание - + + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + - listing_table.actions.status_to_publish - Промени статуса на 'публикуван' + caption.file_management + Управление на файловете - + + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + - listing_table.actions.status_to_held - Промени статуса на 'задържан' + caption.extensions + Разширения - + + + src/Menu/BackendMenuBuilder.php:280 + - listing_table.actions.status_to_draft - Промени статуса на 'чернова' + caption.view_edit_templates + Преглед и редакция на шаблоните - + + + src/Menu/BackendMenuBuilder.php:270 + - listing_table.actions.duplicate - Копирай + caption.uploaded_files + Качени файлове - + + + src/Menu/BackendMenuBuilder.php:157 + - listing_table.actions.delete - Изтрий + caption.routing_setup + Конфигурация на маршрутите - + + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + - listing_table.actions.slug - Път/линк + caption.translations + Преводи / етикети - + + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + - listing_table.actions.created_on - Създаден на + caption.about_bolt + За Болт - + + + templates/pages/about.html.twig:11 + - listing_table.actions.published_on - Публикуван на + caption.bolt_payoff + Функционална, лека и лесна система за управление на съдържанието - + + + templates/content/edit.html.twig:22 + - listing_table.actions.last_modified_on - Последно променен на + caption.edit + Редактирай - + + + templates/finder/_uploader.html.twig:8 + - listing_table.actions.button_edit - Промени + caption.file_uploader + Прикачване на файлове - + + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + - pager.previous - Предишна страница + caption.meta_information + Мета информация - + + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + - pager.next - Следваща страница + date + Дата - + + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + - title.primary_actions - Основни действия + size + Размер - + + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + - action.preview - Прегледай + thumbnail + Миниатюра - + + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + - label.current_status - Настоящ статус + filename + Име на файла - + + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + - status.held - Задържан + actions + Действия - + + + templates/finder/_folders.html.twig:6 + - action.confirm_delete - Сигурен/а ли си, че искаш да изтриеш настоящото съдържание? + directoryname + Име на директорията - + + + templates/finder/_quickselect.html.twig:9 + - action.delete - Изтрий + form.quick_select_file + Бързо изберете файл за редактиране… - + + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + - title.options - Опции + caption.path + Път - + + + templates/media/edit.html.twig:30 + - field.status - Статус + caption.filename + Име на файла - + + + templates/content/listing.html.twig:63 + - status.published - Публикуван + action.create_new + Създай нов - + + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + - status.timed - Определен за време + general.greeting + Привет, %name%! - + + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + - status.draft - Чернова + action.logout + Изход - + + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + - field.publishedAt - Публикуван на + action.edit_profile + Редактирай профил - + + + templates/_partials/_flash_messages.html.twig:1 + - editor_date.toggle - Превключи + action.close_alert + Затвори - + + + src/Menu/BackendMenuBuilder.php:207 + - field.depublishedAt - Отпубликуван на + caption.api + ППИ (API) - + + + src/Menu/BackendMenuBuilder.php:165 + - field.author - Автор + caption.all_configuration_files + Всички конфугурационни файлове - + + + src/Menu/BackendMenuBuilder.php:177 + - field.createdAt - Създаден на + caption.maintenance + Поддръжка - + + + templates/finder/editfile.html.twig:21 + - field.modifiedAt - Променен на + caption.edit_file + Редактирай файл - + + + templates/content/_localeswitcher.html.twig:7 + - field.id - Идентификатор + field.current_locale + Текуща локализация - + + + templates/content/_localeswitcher.html.twig:14 + - caption.edit - Редактирай + field.switch_to_locale + Превключи към локализация - + + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + - slug.button_unlocked - Отключен + field.author + Автор - + + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + - slug.button_locked - Заключен + general.phrase.edit + Редактиране - + + + public/theme/skeleton/partials/_recordfooter.twig:7 + - slug.button_edit - Редактирай + Unknown + Неизвестно - + + + public/theme/skeleton/partials/_recordfooter.twig:6 + - slug.generate_from - Генерирай от: + general.phrase.written-by-on + Написано от %name% на %date%. - + + + public/theme/skeleton/partials/_aside.twig:33 + - upload.allow_file_types - Типове файлове, разрешени за прикачване: + general.phrase.missing-about-page + Страницата „Относно“ липсва - + + + public/theme/skeleton/partials/_aside.twig:35 + - upload.max_size - Максимален размер на файла: + general.phrase.missing-about-page-block + Блокът „Относно“ липсва - + + + public/theme/skeleton/partials/_aside.twig:53 + - image.button_upload - Прикачи + contenttypes.generic.recent + Скорошни %contenttypes% - + + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + - image.button_from_library - От библиотеката + general.phrase.search-ellipsis + - + + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + - image.button_remove - Премахни + general.phrase.search + Търсене - + + + public/theme/skeleton/partials/_aside.twig:60 + - image.placeholder_filename - Име на файл (прикачи нов файл или избери съществуващ) + contenttypes.generic.overview + Преглед на %contenttypes% - + + + public/theme/skeleton/partials/_aside.twig:62 + - image.placeholder_alt_text - Алтернативно съобщение + contenttypes.generic.no-recent + Не са намерени скорошни %contenttype% - + + + public/theme/skeleton/partials/_footer.twig:4 + - image.button_edit_attributes - Редактирай атрибутите + Menu + Меню - + + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + - editor_embed.content_url - Линк към съдържанието за вграждане + Search + Търсене - + + + public/theme/skeleton/partials/_recordfooter.twig:14 + - editor_embed.placeholder_content_url - Линк към съдържанието в Facebook (Фейсбук), Twitter (Туитър), Soundcloud (Саундклауд), Youtube (Ютюб), Vimeo (Вимео)… + general.phrase.permalink + Постоянна връзка - + + + src/Controller/Backend/ClearCacheController.php:24 + - editor_embed.label_height - Височина + label.cache_cleared + Кеш паметта беше изчистена успешно! - + + + src/Menu/BackendMenuBuilder.php:238 + - editor_embed.label_pixel - пиксел + caption.kitchensink + Всички компоненти - + + + public/theme/skeleton/search.twig:11 + - editor_embed.label_matched_embed - Съвпадащо съдържание за вграждане + general.phrase.search-results-for + Резултати от търсенето за „%search%“. - + + + public/theme/skeleton/search.twig:51 + - editor_embed.label_preview - Прегледай + general.phrase.no-search-results-for + Няма намерени резултати за „%search%“. - + + + public/theme/skeleton/search.twig:53 + - editor_embed.label_size - Размер + general.phrase.no-search-term-provided + Моля, въведете дума за търсене, за да се покажат подходящи резултати. - + + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + - extensions.title_desc - Описание: + general.phrase.read-more + Прочети повече - + + + public/theme/skeleton/partials/_footer.twig:17 + - extensions.title_author - Автор: + general.phrase.built-with-bolt + създаден с Bolt.]]> - + + + vendor/bolt/newswidget/templates/news.html.twig:3 + - extensions.title_package - Пакет / име на клас: + general.latest_bolt_news + Последни новини от Болт - + + + templates/content/_buttons.html.twig:19 + - extensions.title_configuration - Конфигурационен файл + action.preview + Прегледай - + + + templates/content/_buttons.html.twig:58 + - extensions.title_version - Версия + action.view_saved + Преглед на запазената версия - + + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + - extensions.button_detailed_view - Виж детайлите + label.display_name + Показано име - + + + templates/content/edit.html.twig:22 + - extensions.button_configuration - Конфигурация + caption.duplicate + Дублиране - + + + src/Form/ChangePasswordFormType.php:40 + - extensions.button_source - Програмен код + label.new_password + Нова парола - + + + src/Controller/Backend/FileEditController.php:104 + - extensions.message_not_implemented - Все още не работи. Извинете! + editfile.updated_successfully + Файлът е актуализиран успешно! - + + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + - extensions.button_remove - Изтрий разширението + action.add_user + Добави потребител + + + + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + + + success + Успех! + + + + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + + + user.updated_profile + Потребителският профил беше актуализиран! + + + + + templates/users/_form.html.twig:124 + + + label.roles + Роли + + + + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + + + user.new_user + Нов потребител + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + + + action.view + Прегледай + + + + + templates/_partials/fields/slug.html.twig:18 + + + slug.button_locked + Заключен + + + + + templates/_partials/fields/slug.html.twig:19 + + + slug.button_edit + Редактирай + + + + + templates/_partials/fields/slug.html.twig:20 + + + slug.generate_from + Генерирай от: + + + + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + + + image.button_upload + Прикачи + + + + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + + + image.button_from_library + От библиотеката + + + + + templates/_partials/_content_listing.html.twig:23 + + + listing_table.actions.view_on_site + Виж на сайта + + + + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + + listing_table.actions.status_to_publish + Промени статуса на 'публикуван' + + + + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + + listing_table.actions.status_to_held + Промени статуса на 'задържан' + + + + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + + listing_table.actions.status_to_draft + Промени статуса на 'чернова' + + + + + templates/_partials/_content_listing.html.twig:28 + + + listing_table.actions.duplicate + Копирай + + + + + templates/_partials/_content_listing.html.twig:29 + + + listing_table.actions.delete + Изтрий + + + + + templates/_partials/_content_listing.html.twig:30 + + + listing_table.actions.slug + Път/линк + + + + + templates/_partials/_content_listing.html.twig:31 + + + listing_table.actions.created_on + Създаден на + + + + + templates/_partials/_content_listing.html.twig:32 + + + listing_table.actions.published_on + Публикуван на + + + + + templates/_partials/_content_listing.html.twig:33 + + + listing_table.actions.last_modified_on + Последно променен на + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Избран(и) + + + + + templates/_partials/fields/embed.html.twig:20 + + + editor_embed.content_url + Линк към съдържанието за вграждане + + + + + templates/_partials/fields/embed.html.twig:21 + + + editor_embed.placeholder_content_url + Линк към съдържанието в Facebook (Фейсбук), Twitter (Туитър), Soundcloud (Саундклауд), Youtube (Ютюб), Vimeo (Вимео)… + + + + + templates/_partials/fields/embed.html.twig:22 + + + editor_embed.label_height + Височина + + + + + templates/_partials/fields/embed.html.twig:23 + + + editor_embed.label_pixel + пиксел + + + + + templates/_partials/fields/embed.html.twig:24 + + + editor_embed.label_matched_embed + Съвпадащо съдържание за вграждане + + + + + templates/_partials/fields/embed.html.twig:25 + + + editor_embed.label_preview + Прегледай + + + + + templates/_partials/fields/embed.html.twig:26 + + + editor_embed.label_size + Размер + + + + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + + + image.placeholder_filename + Име на файл (прикачи нов файл или избери съществуващ) + + + + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + + + image.placeholder_alt_text + Алтернативно съобщение + + + + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + + + image.placeholder_title + Атрибут Title + + + + + templates/_base/layout.html.twig:91 + + + admin_sidebar.toggler + Превключи ширина на страничната лента + + + + + templates/_base/layout.html.twig:82 + + + admin_sidebar_toggler.toggle + Превключи меню ]]> + + + + + templates/_partials/fields/date.html.twig:39 + + + editor_date.toggle + Превключи + + + + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + + + flash_messages.notification + Известие + + + + + templates/content/_localeswitcher.html.twig:19 + + + localeswitcher.button_info + Виж информация за локализацията + + + + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + + + listing.title_sortby + Сортирай по + + + + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + + + listing.placeholder_filter + Дума за търсене + + + + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + + + listing.button_filter + Търсене + + + + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + + + listing.button_clear + Изчисти сортиране/филтър + + + + + templates/content/view_locales.html.twig:99 + + + view_locales.badge_default + По подразбиране + + + + + templates/content/view_locales.html.twig:105 + + + view_locales.badge_ok + OK + + + + + templates/content/view_locales.html.twig:101 + + + view_locales.badge_missing + Липсва + + + + + templates/finder/_files_actions.html.twig:10 + + + files_cards.button_toggle + Превключи падащото меню + + + + + templates/finder/_files_actions.html.twig:17 + + + files_cards.action_edit_image_info + Промени информацията на снимката + + + + + templates/finder/_files_actions.html.twig:19 + + + files_cards.action_edit_file + Редактирай файла в редактора + + + + + templates/finder/_files_actions.html.twig:25 + + + files_cards.action_view_original + Виж оригинала + + + + + templates/finder/_files_actions.html.twig:36 + + + files_cards.action_duplicate + Копирай + + + + + templates/finder/_files_actions.html.twig:49 + + + files_cards.action_delete + Изтрий + + + + + templates/finder/_files_actions.html.twig:56 + + + files_cards.label_filename + Име на файла: + + + + + templates/finder/_files_actions.html.twig:63 + + + files_cards.label_title + Заглавие: + + + + + templates/finder/_files_actions.html.twig:70 + + + files_cards.label_dimensions + Размери: + + + + + templates/finder/_files_actions.html.twig:76 + + + files_cards.label_filesize + Размер на файла: + + + + + templates/finder/_files_actions.html.twig:81 + + + files_cards.label_created_on + Създаден на + + + + + templates/finder/_files_list.html.twig:75 + + + files_list.remark + Няма файлове в настоящата папка. Избери папка. + + + + + templates/finder/_quickselect.html.twig:5 + + + quickselect.title_select + Изберете файл: + + + + + templates/finder/finder.html.twig:45 + + + finder.button_list + Лист + + + + + templates/finder/finder.html.twig:49 + + + finder.button_cards + Карти + + + + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + + + extensions.title_desc + Описание: + + + + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + + + extensions.title_author + Автор: + + + + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + + extensions.title_package + Пакет / име на клас: + + + + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + + + extensions.title_version + Версия + + + + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + + extensions.info_not_installed + Това е локален пакет, не е инсталиран чрез Composer + + + + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + + + extensions.title_class + Име на класа: + + + + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + + + extensions.button_configuration + Конфигурация + + + + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + + + extensions.button_source + Програмен код + + + + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + + + extensions.button_remove + Изтрий разширението + + + + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + + + extensions.button_disable + Изключи разширението + + + + + templates/security/login.html.twig:40 + + + login.header_login + Bolt » Вход + + + + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + + extensions.message_not_implemented + Все още не работи. Извинете! + + + + + templates/content/listing.html.twig:6 + + + listing.title_overview + Общ преглед на + + + + + templates/finder/_files_cards.html.twig:48 + + + files_cards.message_no_files + В тази папка няма файлове. Изберете папка за навигация от дясната страна. + + + + + templates/_partials/_content_listing.html.twig:13 + + + listing_filter.button_compact + Компактен + + + + + templates/_partials/_content_listing.html.twig:14 + + + listing_filter.button_expanded + Разширен + + + + + templates/finder/finder.html.twig:41 + + + finder.label_view + Виж: + + + + + templates/_partials/_content_listing.html.twig:34 + + + listing_table.actions.button_edit + Промени + + + + + src/Controller/Backend/UserController.php:50 + + + controller.user.title + Потребители и права за достъп + + + + + src/Controller/Backend/UserController.php:51 + + + controller.user.subtitle + За редактиране на потребителите и техните права за достъп + + + + + templates/users/listing.html.twig:20 + + + listing.title_display_name + Показано име + + + + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + + + listing.title_username + Потребителско име + + + + + templates/users/listing.html.twig:20 + + + listing.title_email + Имейл + + + + + templates/users/listing.html.twig:21 + + + listing.title_roles + Роли + + + + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + + + listing.title_last_seen + Възраст на сесията + + + + + templates/users/listing.html.twig:23 + + + listing.title_last_ip + Последно IP + + + + + templates/users/listing.html.twig:24 + + + listing.title_actions + Действия + + + + + templates/users/profile.html.twig:11 + + + user.unknown_user + Неизвестен потребител + + + + + templates/media/edit.html.twig:114 + + + label.predominant_colors__in_image + Преобладаващи цветове в изображението + + + + + public/theme/skeleton/listing.twig:14 + + + general.phrase.overview-for + Преглед за „%slug%“ + + + + + public/theme/skeleton/partials/_recordfooter.twig:40 + + + general.phrase.related-content + Свързано съдържание + + + + + public/theme/skeleton/partials/_footer.twig:13 + + + action.search + Търсене + + + + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + + + caption.new_contenttype + Нов %contenttype% + + + + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + + + caption.untitled_contenttype + Неозаглавен %contenttype% + + + + + templates/users/profile.html.twig:6 + + + title.edit_user_profile + Редактирай потребителски профил + + + + + templates/pages/menupage.html.twig:13 + + + caption.redirection_page + Страница за пренасочване + + + + + templates/media/edit.html.twig:6 + + + caption.edit_image + Редактиране на изображение + + + + + templates/users/_form.html.twig:44 + + + password.suggested + %password%]]> + + + + + templates/media/edit.html.twig:70 + + + field.cropX + Изрязване X + + + + + templates/media/edit.html.twig:73 + + + field.cropXPostfix + Позиция на изрязване по оста X, диапазон 0-100. + + + + + templates/media/edit.html.twig:80 + + + field.cropYPostfix + Позиция на изрязване по оста Y, диапазон 0-100. + + + + + templates/media/edit.html.twig:77 + + + field.cropY + Изрязване Y + + + + + templates/media/edit.html.twig:84 + + + field.cropZoom + Коефициент на мащабиране при изрязване + + + + + templates/media/edit.html.twig:87 + + + field.cropZoomPostfix + Ниво на мащабиране при изрязване, диапазон 1-10. + + + + + templates/content/listing.html.twig:136 + + + title.contentType + Тип съдържание + + + + + templates/_partials/_content_listing.html.twig:44 + + + listing_table.no_results + Няма намерени резултати. Разширете критериите за филтриране или добавете още съдържание. + + + + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + + + listing.option_select_sortby + Избери поле за сортиране + + + + + templates/content/edit.html.twig:103 + + + title.primary_actions + Основни действия - + + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + - extensions.button_disable - Изключи разширението + title.options + Опции - + + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + - caption.redirection_page - Страница за пренасочване + action.delete + Изтрий - + + + templates/users/listing.html.twig:76 + - controller.user.subtitle - За редактиране на потребителите и техните права за достъп + action.enable + Активиране - + + + templates/users/listing.html.twig:71 + - controller.user.title - Потребители и права за достъп + action.disable + Деактиривай - + + + templates/users/listing.html.twig:124 + - listing.title_display_name - Показано име + listing.title_session_expires + Изтичане на сесията - + + + templates/users/listing.html.twig:125 + - listing.title_username - Потребителско име + listing.title_ip_address + IP адрес - + + + templates/users/listing.html.twig:126 + - listing.title_email - Имейл + listing.title_browser + Браузър / платформа - + + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + - listing.title_roles - Роли + image.button_remove + Премахни - + + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + - listing.title_last_seen - Възраст на сесията + image.button_edit_attributes + Редактирай атрибутите - + + + templates/_partials/fields/imagelist.html.twig:27 + - listing.title_last_ip - Последно IP + image.add_new_image + Добавяне на ново изображение - + + + templates/_partials/fields/filelist.html.twig:25 + - listing.title_actions - Действия + file.add_new_file + Добавяне на нов файл - + + + templates/_partials/fields/_collection_buttons.html.twig:20 + - action.edit - Редактирай + collection.remove_item + Премахване на елемент - + + + templates/_partials/fields/collection.html.twig:6 + - action.disable - Деактиривай + collection.add_item + Добавяне на нов елемент към „%name%“ - + + + templates/_partials/fields/_collection_buttons.html.twig:5 + - action.add_user - Добави потребител + collection.move_item_up + Премести нагоре - + + + templates/_partials/fields/_collection_buttons.html.twig:9 + + + collection.move_item_down + Премести надолу + + + + + templates/pages/extensions.html.twig:54 + + + extensions.button_detailed_view + Виж детайлите + + + + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + + + extensions.title_configuration + Конфигурационен файл + + + + + templates/finder/_uploader.html.twig:17 + + + caption.file_upload.upload_text + Пусни файлове тук, за да прикачиш + + + + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + + + pager.next + Следваща страница + + + + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + + + pager.previous + Предишна страница + + + + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + + + image.button_up + Нагоре + + + + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + + + image.button_down + Надолу + + + + + templates/helpers/_field_blocks.twig:28 + + + general.phrase.download + Изтегляне + + + + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + + + caption.logviewer + Преглед на дневника + + + + + templates/pages/logviewer.html.twig:39 + + + label.request + Заявка (request) + + + + + templates/pages/logviewer.html.twig:53 + + + label.trace + Следа (trace) + + + + + templates/pages/logviewer.html.twig:71 + + + label.context + Контекст + + + + + templates/pages/logviewer.html.twig:19 + + + label.id + Идентификатор + + + + + templates/pages/logviewer.html.twig:20 + + + label.level + Ниво + + + + + templates/pages/logviewer.html.twig:23 + + + label.message + Съобщение + + + + + templates/pages/logviewer.html.twig:25 + + + label.timestamp + Време + + + + + templates/pages/logviewer.html.twig:86 + + + label.user + Потребител + + + + + templates/users/listing.html.twig:33 + + + listing.disabled + Деактивирано + + + + + templates/_partials/fields/slug.html.twig:17 + + + slug.button_unlocked + Отключен + + + + + public/theme/skeleton/listing.twig:42 + + + general.phrase.no-content-found + Няма намерено съдържание + + + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + + + general.phrase.none + Няма + + + + + templates/content/view_locales.html.twig:103 + + + view_locales.badge_empty + Празно + + + + + templates/content/listing.html.twig:45 + + + action.update_all + Приложи за всички + + + + + templates/pages/about.html.twig:21 + + + about.system_info + Системна информация + + + + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + + + action.confirm_delete + Сигурен/а ли си, че искаш да изтриеш настоящото съдържание? + + + + + src/Form/LoginType.php:38 + + + placeholder.username_or_email + вашето потребителско име или имейл + + + + + src/Form/LoginType.php:52 + + + placeholder.password + вашата парола + + + + + src/Menu/BackendMenuBuilder.php:336 + + + caption.other_content + Друго съдържание + + + + + templates/finder/editfile.html.twig:39 + + + editfile.target_not_writable + Запазването е деактивирано, защото целевият файл не може да бъде записан. + + + + + templates/_partials/fields/_label.html.twig:6 + + + label.translatable + Това поле може да се преведе + + + + + templates/pages/logviewer.html.twig:92 + + + label.content + Съдържание + + + + + src/Controller/Backend/FileEditController.php:148 + + + file.delete_success + Файлът е изтрит успешно! + + + + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + + + file.delete_confirm + Сигурен/а ли си, че искаш да изтриеш този файл? + + + + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + + + listing.title_filterby + Търси / филтрирай по + + + + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + + + content.status_changed_successfully + Статусът е променен успешно + + + + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + + + content.deleted_successfully + Съдържанието е изтрито успешно + + + + + templates/content/_buttons.html.twig:46 + + + label.current_status + Настоящ статус + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.published + Публикуван + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - listing.title_session_expires - Изтичане на сесията + status.draft + Чернова - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - listing.title_ip_address - IP адрес + status.timed + Определен за време - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - listing.title_browser - Браузър / платформа + status.held + Задържан - + + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + - user.new_user - Нов потребител + collection.confirm_delete + Сигурни ли сте, че искате да изтриете този елемент от колекцията? - + + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + - title.edit_user - Редактирай потребител + upload.allow_file_types + Типове файлове, разрешени за прикачване: - + + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + - password.suggested - %password%]]> + upload.max_size + Максимален размер на файла: - + + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + - label.roles - Роли + listing.placeholder_search + Търси клучова дума… - + + + templates/pages/dashboard.html.twig:12 + - caption.path - Път + title.filtered_by + „%filter%“.]]> - + + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + - caption.edit_file - Редактирай файл + action.view_site + Преглед на уебсайта - + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + - label.id - Идентификатор + action.new + Нов - + + + templates/pages/extension_details.html.twig:39 + - label.level - Ниво + extensions.no_dependencies + Няма известни зависимости - + + + templates/pages/extension_details.html.twig:36 + - label.message - Съобщение + extensions.title_dependencies + Зависимости - + + + templates/_partials/fields/collection.html.twig:7 + - label.timestamp - Време + collection.expand_all + Разгъни всички - + + + templates/_partials/fields/collection.html.twig:8 + - label.request - Заявка (request) + collection.collapse_all + Свий всички - + + + templates/content/edit.html.twig:45 + - label.trace - Следа (trace) + content.edit_missing_definition + Дефиницията за този тип съдържание (ContentType) липсва! Редактирането на този запис няма да работи според очакванията. Моля, проверете вашия файл contenttypes.yaml, за да се уверите, че съдържа %contenttype%. - + + + templates/_partials/fields/collection.html.twig:10 + - label.context - Контекст + collection.select + Изберете … - + + + src/Form/LoginType.php:34 + - label.user - Потребител + form.empty_username_email + Моля, въведете вашето потребителско име или имейл - + + + src/Form/LoginType.php:46 + - label.cache_cleared - Кеш паметта беше изчистена успешно! + form.empty_password + Моля, въведете вашата парола - + + + src/Form/ResetPasswordRequestFormType.php:28 + - Button - Бутон + form.empty_email + Моля, въведете вашия имейл - + + + templates/content/listing.html.twig:112 + - <strong>Well done!</strong> You successfully read this important alert message. - Поздравления! Успешно пречете това важно известие.]]> + listing.title_filterby_field + Филтриране по поле - + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + - info - Информация + image.button_from_url + От URL - + + + templates/finder/_files_actions.html.twig:29 + - 57d589f - Внимание Това известие се нуждае от внимание, но не е от изключителна важност.]]> + files_cards.copy_to_clipboard + Копирай връзката към файла + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + warning Предупреждение - - - <strong>Warning!</strong> Better check yourself, you're not looking too good. - Предупреждение! Провери се, защото не изглеждаш много добре.]]> - - - + + + src/Controller/Backend/FilemanagerController.php:150 + - danger - Опасност + filemanager.create_folder_already_exists + Папката вече съществува - + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + - <strong>Oh snap!</strong> Change a few things up and try submitting again. - Ох, нещо се случи Промени няколко неща и опитай да изпратиш отново.]]> + filemanager.create_folder_error + Папката не можа да бъде създадена - + + + src/Controller/Backend/FilemanagerController.php:155 + - general.latest_bolt_news - Последни новини от Болт + filemanager.create_folder_success + Папката е създадена успешно. - + + + src/Controller/Backend/FilemanagerController.php:115 + - general.phrase.read-more - Прочети повече + filemanager.delete_folder_successful + Папката е изтрита успешно - + + + templates/finder/_createfolder.html.twig:13 + - action.do_something - Направи нещо + folder.create_new + Нова папка - + + + templates/users/_form.html.twig:172 + - label.translatable - Това поле може да се преведе + label.avatar + Аватар - + + + templates/security/login.html.twig:64 + - caption.bolt_payoff - Функционална, лека и лесна система за управление на съдържанието + login.forgotpassword + Забравена парола - + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + - about.system_info - Системна информация + reset_password.request_header + Нулиране на паролата - + + + templates/reset_password/request.html.twig:42 + - about.bolt_on_github - Болт в GitHub + reset_password.request_description + Въведете вашия имейл адрес и ще ви изпратим връзка за нулиране на паролата. - + + + templates/reset_password/request.html.twig:44 + - about.used_libraries - Потребителски библиотеки / компоненти + reset_password.request_send + Изпрати - + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + - about.list_of_used_libraries - Отдолу са външните библиотеки, използвани от Болт: + Email + Имейл - + + + templates/reset_password/request.html.twig:47 + - caption.meta_information - Мета информация + reset_password.back-to-login + Обратно към входа - + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + - finder.label_view - Виж: + reset_password.reset_header + Нулиране на вашата парола - + + + templates/reset_password/check_email.html.twig:4 + - finder.button_list - Лист + reset_password.check_email_sent_header + Имейлът за нулиране на паролата е изпратен - + + + templates/reset_password/check_email.html.twig:35 + - finder.button_cards - Карти + reset_password.check_email_sent_text_1 + Изпратен е имейл, който съдържа връзка, върху която можете да кликнете, за да нулирате паролата си. Тази връзка ще изтече след %hours% часа. - + + + templates/reset_password/check_email.html.twig:36 + - caption.file_uploader - Прикачване на файлове + reset_password.check_email_sent_text_2 + Ако не получите имейл, моля, проверете папката със спам или %tryagain%. - + + + templates/reset_password/reset.html.twig:37 + - caption.file_upload.upload_text - Пусни файлове тук, за да прикачиш + reset_password.reset_btn + Нулиране на паролата - + + + templates/reset_password/email.html.twig:1 + - caption.folders - Папки + reset_password.email_title + Здравейте! - + + + templates/reset_password/email.html.twig:3 + - directoryname - Име на директорията + reset_password.email_description + За да нулирате паролата си, моля, посетете следната връзка - + + + templates/reset_password/email.html.twig:7 + - actions - Действия + reset_password.email_expire + Тази връзка ще изтече след %hours% часа. - + + + templates/reset_password/email.html.twig:9 + - filename - Име на файла + reset_password.email_thanks + Благодарим! - + + + src/Form/ChangePasswordFormType.php:31 + - thumbnail - Миниатюра + reset_password.enter_pwd + Моля, въведете парола - + + + src/Form/ChangePasswordFormType.php:43 + - size - Размер + label.repeat_password + Повторете паролата - + + + src/Form/ChangePasswordFormType.php:45 + - date - Дата + reset_password.not_matching_pwds + Полетата за парола трябва да съвпадат. - + + + src/Form/ChangePasswordFormType.php:35 + - files_cards.button_toggle - Превключи падащото меню + reset_password.minimum_length + Вашата парола трябва да е поне %s символа - + + + src/Controller/Backend/ResetPasswordController.php:99 + - files_cards.action_edit_image_info - Промени информацията на снимката + reset_password.no_token + Не е намерен токен за нулиране на паролата в URL адреса или в сесията. - + + + src/Controller/Backend/ResetPasswordController.php:134 + - files_cards.action_view_original - Виж оригинала + reset_password.reset_successful + Вашата парола беше нулирана успешно. - + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + - files_cards.action_duplicate - Копирай + reset_password.problem_with_request + Възникна проблем при обработката на вашата заявка за нулиране на паролата - %s - + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + - file.delete_confirm - Сигурен/а ли си, че искаш да изтриеш този файл? + label.filtered_by + филтрирано по - + + + templates/content/_buttons.html.twig:34 + - files_cards.action_delete - Изтрий + action.preview_secure_share + Споделяне на защитена връзка за преглед - + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + - files_cards.label_filename - Име на файла: + action.stop_impersonating + Спри симулация на роля - + + + templates/users/listing.html.twig:82 + - files_cards.label_title - Заглавие: + action.impersonate + Представяне като друг потребител - + + + templates/widget/maintenance_mode.twig:25 + - files_cards.label_dimensions - Размери: + maintenance.activated_warning + Режимът на поддръжка е активиран - + + + templates/_partials/fields/embed.html.twig:28 + - files_cards.label_filesize - Размер на файла: + action.refresh + Опресняване - + + + templates/content/listing.html.twig:148 + - files_cards.label_created_on - Създаден на + listing_details_box.showing_records + Показва записи %current% от общо %total% - + + + templates/content/listing.html.twig:154 + - files_cards.action_edit_file - Редактирай файла в редактора + listing_details_box.name + Име: %name% (единично: %singularName%) - + + + templates/content/listing.html.twig:160 + - files_list.remark - Няма файлове в настоящата папка. Избери папка. + listing_details_box.slug + Слъг: %slug% (единичен: %singularSlug%) - + + + templates/content/listing.html.twig:166 + - listing_select_box.card_header.selected - Избран(и) + listing_details_box.record_template + Единичен шаблон: %template% - + + + templates/content/listing.html.twig:172 + - action.update_all - Приложи за всички + listing_details_box.listing_template + Шаблон за списък: %template% (%listingRecords% записа) - + + + templates/content/listing.html.twig:186 + - title.contentlisting - Списък на записи + listing_details_box.locales + Локали: %locales% - + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + - action.create_new - Създай нов + action.edit_permissions + Редактиране на разрешенията - + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + - listing.title_sortby - Сортирай по + general.label.search + Търсене - + + + templates/_partials/fields/image.html.twig:25 + - listing.option_select_sortby - Избери поле за сортиране + image.image_preview + Преглед на изображението - + + + templates/_partials/_content_listing.html.twig:15 + - listing.title_filterby - Търси / филтрирай по + listing_table.actions.select_all + Избери всички - + + + src/Form/LoginType.php:58 + - listing.placeholder_filter - Дума за търсене + label.remembermeduration + Запомни ме? (%duration% дни) - + + + templates/users/listing.html.twig:117 + - listing.button_filter - Търсене + listing.current_sessions_header + Текущи сесии - + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + - title.contentType - Тип съдържание + image.button_upload_options + Опции за качване - + + + templates/content/_taxonomies.html.twig:27 + - listing_details_box.showing_records - Показва записи %current% от общо %total% + Order + Подредба - + + + src/Form/ResetPasswordRequestFormType.php:32 + - listing_details_box.name - Име: %name% (единично: %singularName%) + placeholder.email + вашият имейл - + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + - listing_details_box.slug - Слъг: %slug% (единичен: %singularSlug%) + modal.title.file_field + Изберете файл - + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + - listing_details_box.record_template - Единичен шаблон: %template% + modal.title.image_field + Изберете изображение - + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + - listing_details_box.listing_template - Шаблон за списък: %template% + modal.title.upload_from_url + Качване от URL - + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + - listing_details_box.locales - Локали: %locales% + modal.text.loading + Зареждане... - + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + - action.stop_impersonating - Спри симулация на роля + modal.button_save + Запази - + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + - listing.title_overview - Общ преглед на + modal.button_deny + Затвори diff --git a/translations/messages.cs.xlf b/translations/messages.cs.xlf index a49098688..264d08acd 100644 --- a/translations/messages.cs.xlf +++ b/translations/messages.cs.xlf @@ -1,254 +1,120 @@ - - - templates/debug/source_code.twig:26 - - - not_available - Nedostupný - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Chyba %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - Objevila se neznámá chyba (HTTP %status_code%), která zabránila v dokončení požadavku. - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - přejděte na domovskou stránku.]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - K tomuto prostředku nemáte přístup. - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - Požádejte svého manažera či systémového administrátora, aby vám přiřadil potřebná práva. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - Nepodařilo se nám najít požadovanou stránku. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - přejděte na domovskou stránku.]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - Došlo k interní chybě serveru. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - Zkuste tuto stránku načíst znovu během několika minut nebo <a href="%url%">přejděte na domovskou stránku</a>. - - - - - templates/debug/source_code.twig:17 - - - title.source_code - Zdrojový kód použit pro vykreslení této stránky - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - Kód controlleru - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Kód Twig šablony - - - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 - + title.edit_user Upravit uživatele - - - templates/debug/source_code.twig:7 - - - action.show_code - Zobraz kód - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 - + action.save Uložit změny - - action.do_something - Zmáčkni mě - - - - templates/users/change_password.twig:26 + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 - - action.edit_user - Upravit uživatele + + action.do_something + Udělej něco - + + templates/users/listing.html.twig:64 + + action.edit Upravit - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 - + label.username Uživatelské jméno - - - templates/debug/source_code.twig:3 - - - help.show_code - controlleru a šablony použité pro vykreslení této stránky.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - Po změně hesla budete odhlášeni. - - - templates/security/login.twig:4 + templates/security/login.html.twig:4 - + title.login Přihlášení - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 - + label.password Heslo - templates/security/login.twig:84 + templates/security/login.html.twig:60 - + action.log_in Přihlásit se - templates/content/listing.twig:9 + templates/content/listing.html.twig:58 title.contentlisting - Contentlisting - - - - - templates/users/edit.twig:24 - - - action.change_password - Změnit heslo + Výpis obsahu - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -257,2447 +123,3312 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 - + field.status Stav - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 - + field.createdAt Vytvořeno - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 - + field.modifiedAt Upraveno - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 - + field.publishedAt Zveřejněno - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 - + field.depublishedAt - Ztáhnuto + Staženo - templates/editcontent/media_edit.twig:47 + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 - + field.title Titulek - templates/editcontent/media_edit.twig:53 + templates/media/edit.html.twig:45 - + field.description Popis - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 - + field.copyright Autorská práva - templates/editcontent/media_edit.twig:66 + templates/media/edit.html.twig:58 - + field.originalFilename Původní název souboru - templates/editcontent/media_edit.twig:105 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 - + field.width - šířka + Šířka - templates/editcontent/media_edit.twig:112 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 - + field.height - výška + Výška - templates/editcontent/media_edit.twig:119 + templates/media/edit.html.twig:142 - + field.filesize Velikost souboru - templates/security/login.twig:61 + src/Form/LoginType.php:31 - + label.username_or_email - Uživatelské jméno nebo heslo + Uživatelské jméno nebo e-mail - templates/security/login.twig:80 + src/Form/LoginType.php:58 - + label.rememberme Zapamatuj si mě? - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 - + about.visit_bolt Navštivte Boltcms.io - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 - + about.bolt_documentation Dokumentace Bolt - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 - + about.bolt_on_github Bolt na Githubu - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 - + about.used_libraries - Uživatelské knihovny / komponenty + Použité knihovny / komponenty - templates/pages/about.twig:37 + templates/pages/about.html.twig:66 - + about.list_of_used_libraries Níže jsou uvedeny knihovny třetích stran, které Bolt používá. - + - src/Form/UserType.php:35 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 - - label.fullname - Celé jméno + + label.email + Emailová adresa - + - src/Form/UserType.php:38 - new + templates/users/_form.html.twig:185 - - label.email - Emailová adresa + + label.about + O uživateli - src/Controller/Backend/UserController.php:33 - new + src/Controller/Backend/UserEditController.php:129 - + user.updated_successfully Aktualizace proběhla úspěšně - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 - + content.updated_successfully Obsah byl úspěšně upraven - src/Controller/Backend/EditMediaController.php:157 - new + src/Controller/Backend/MediaEditController.php:88 - + content.created_successfully Médium bylo úspěšně vytvořeno - src/Controller/Backend/EditFileController.php:101 - new + src/Controller/Backend/FileEditController.php:106 - + editfile.could_not_write Médium se nepodařilo zapsat - + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + + label.locale Jazyk - - - label.backend_theme - Šablona administrace - - - + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + + The Default theme Výchozí šablona - + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + + The Default Dark theme Výchozí tmavá šablona - + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + + WoordPers: Kinda looks like that other CMS WoordPers: Vypadá tak trochu jako jiné CMS - + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + + caption.dashboard Nástěnka Bolt - - - caption.translations: messages - caption.translations: messages - - - + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + + caption.clear_cache Vyčistit cache - - - caption.check_database - Zkontrolovat databázi - - - - - caption.routing set up - caption.routing set up - - - + + src/Menu/BackendMenuBuilder.php:145 + + caption.menu_setup Nastavení menu - + + src/Menu/BackendMenuBuilder.php:134 + + caption.taxonomies Taxonomie - + + src/Menu/BackendMenuBuilder.php:123 + + caption.contenttypes Typy obsahu - + + src/Menu/BackendMenuBuilder.php:112 + + caption.main_configuration Hlavní konfigurace - + + src/Menu/BackendMenuBuilder.php:99 + + caption.users_permissions - + + src/Menu/BackendMenuBuilder.php:89 + + caption.configuration Konfigurace - + + src/Menu/BackendMenuBuilder.php:77 + + caption.settings Nastavení - + + src/Menu/BackendMenuBuilder.php:61 + + caption.content Obsah - + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + + caption.file_management Správa souborů - + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + + caption.extensions Rozšíření - + + src/Menu/BackendMenuBuilder.php:280 + + caption.view_edit_templates - + + src/Menu/BackendMenuBuilder.php:270 + + caption.uploaded_files Nahrané soubory - + + src/Menu/BackendMenuBuilder.php:157 + + caption.routing_setup Konfigurace routingu - + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + + caption.translations - Překlady / značky + Překlady / popisky - + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + + caption.about_bolt O Boltu - + + templates/pages/about.html.twig:11 + + caption.bolt_payoff - + + templates/content/edit.html.twig:22 + + caption.edit Upravit - + + templates/finder/_uploader.html.twig:8 + + caption.file_uploader Nahrávač souborů - + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + + caption.meta_information Meta informace - + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + + date Datum - + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + + size Velikost - + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + + thumbnail Miniatura - + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + + filename - Název soubru + Název souboru - + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + + actions Akce - + + templates/finder/_folders.html.twig:6 + + directoryname Název složky - - - action.go - Přejít - - - + + templates/finder/_quickselect.html.twig:9 + + form.quick_select_file Rychle zvolit soubor k editaci… - - - label.quick_select - Rychlý výběr - - - + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + + caption.path Cesta - + + templates/media/edit.html.twig:30 + + caption.filename Název souboru - - - action.visit_site - Navštívit stránky - - - + + templates/content/listing.html.twig:63 + + action.create_new Vytvořit nové - + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + + general.greeting Ahoj, %name%! - + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + + action.logout Odhlásit se - + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + + action.edit_profile Upravit profil - + + templates/_partials/_flash_messages.html.twig:1 + + action.close_alert zavřít + + src/Menu/BackendMenuBuilder.php:207 + caption.api API - + + src/Menu/BackendMenuBuilder.php:165 + + caption.all_configuration_files Všechny konfigurační soubory - + + src/Menu/BackendMenuBuilder.php:177 + + caption.maintenance Údržba - - - caption.fixtures_dummy_content - Fixtures (Dummy Content) - - - + + templates/finder/editfile.html.twig:21 + + caption.edit_file Upravit soubor - - - caption.installation_checks - Kontroly instalace - - - - - form.select_language - Vybrat jazyk - - - - - field.locale - Jazyk - - - + + templates/content/_localeswitcher.html.twig:7 + + field.current_locale Aktuální jazyk - + + templates/content/_localeswitcher.html.twig:14 + + field.switch_to_locale Přepnout na jazyk - + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + + field.author Autor - + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + + general.phrase.edit Upravit - + + public/theme/skeleton/partials/_recordfooter.twig:7 + + Unknown Neznámé - + + public/theme/skeleton/partials/_recordfooter.twig:6 + + general.phrase.written-by-on Napsal(a) %name% dne %date%. - + + public/theme/skeleton/partials/_aside.twig:33 + + general.phrase.missing-about-page Stránka "O nás" chybí - + + public/theme/skeleton/partials/_aside.twig:35 + + general.phrase.missing-about-page-block Blok "O nás" chybí - + + public/theme/skeleton/partials/_aside.twig:53 + + contenttypes.generic.recent Nedávné %contenttypes% + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + general.phrase.search-ellipsis - + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + + general.phrase.search Vyhledávání - - - 9fb3e6e - Tyto stránky jsou <a href='%url%' target='_blank' title='Sofistikovaný, lehký & jednoduchý CMS'>postaveny na Boltu</a>. - - - + + public/theme/skeleton/partials/_aside.twig:60 + + contenttypes.generic.overview Přehled %contenttypes% - + + public/theme/skeleton/partials/_aside.twig:62 + + contenttypes.generic.no-recent Žádný nedávný %contenttype% nebyl nalezen - + + public/theme/skeleton/partials/_footer.twig:4 + + Menu Menu - + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + + Search Hledat - + + public/theme/skeleton/partials/_recordfooter.twig:14 + + general.phrase.permalink Trvalý odkaz - - - label.displayname - Zobrazované jméno - - - + + src/Controller/Backend/ClearCacheController.php:24 + + label.cache_cleared Cache byla úspěšně vyčištěna! - - caption.kitchensink - The Kitchensink - - - - parameters: - '%search%': consequatur + src/Menu/BackendMenuBuilder.php:238 - - general.phrase.search-results-for-variable - Výsledky hledání pro '%search%'. + + caption.kitchensink + Všehochuť (Kitchensink) - parameters: - '%search%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:11 - + general.phrase.search-results-for Výsledky hledání pro '%search%'. - parameters: - '%SEARCHTERM%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:51 - + general.phrase.no-search-results-for Pro '%search%' nebyly nalezeny žádné výsledky. - + + public/theme/skeleton/search.twig:53 + + general.phrase.no-search-term-provided Pro zobrazení relevantních výsledků, prosím zadejte termín pro hledání. - + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + + general.phrase.read-more Číst dále - + + public/theme/skeleton/partials/_footer.twig:17 + + general.phrase.built-with-bolt postaveny na Boltu.]]> - + + vendor/bolt/newswidget/templates/news.html.twig:3 + + general.latest_bolt_news Novinky Boltu - + + templates/content/_buttons.html.twig:19 + + action.preview Náhled - + + templates/content/_buttons.html.twig:58 + + action.view_saved Zobrazit uloženou verzi - + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + + label.display_name Zobrazované jméno - + + templates/content/edit.html.twig:22 + + caption.duplicate - Kopie - - - - - label.current_password - Aktuální heslo + Duplikovat - + + src/Form/ChangePasswordFormType.php:40 + + label.new_password Nové heslo - - - label.new_password_confirm - Nové heslo (znovu) - - - + + src/Controller/Backend/FileEditController.php:104 + + editfile.updated_successfully Soubor byl úspěšně aktualizován! - + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + + action.add_user Přidat uživatele - + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + + success Úspěch! - + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + + user.updated_profile Uživatelský profil byl aktualizován! - + + templates/users/_form.html.twig:124 + + label.roles Role - + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + + user.new_user Nový uživatel - + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + + action.view Zobrazit - - - caption.folders - Složky - - - + + templates/_partials/fields/slug.html.twig:18 + + slug.button_locked Uzamčeno - + + templates/_partials/fields/slug.html.twig:19 + + slug.button_edit Upravit - + + templates/_partials/fields/slug.html.twig:20 + + slug.generate_from Vygenerovat z: - + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + + image.button_upload Nahrát - + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + + image.button_from_library Z knihovny - + + templates/_partials/_content_listing.html.twig:23 + + listing_table.actions.view_on_site Zobrazit na stránkách - + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + listing_table.actions.status_to_publish Změnit stav na 'zveřejněno' - + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + listing_table.actions.status_to_held Změnit stav na 'pozdrženo' - + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + listing_table.actions.status_to_draft Změnit stav na 'koncept' - + + templates/_partials/_content_listing.html.twig:28 + + listing_table.actions.duplicate Duplikovat - + + templates/_partials/_content_listing.html.twig:29 + + listing_table.actions.delete Smazat + + templates/_partials/_content_listing.html.twig:30 + listing_table.actions.slug Slug - + + templates/_partials/_content_listing.html.twig:31 + + listing_table.actions.created_on Vytvořeno - + + templates/_partials/_content_listing.html.twig:32 + + listing_table.actions.published_on Zveřejněno - + + templates/_partials/_content_listing.html.twig:33 + + listing_table.actions.last_modified_on Naposledy upraveno - + + templates/content/listing.html.twig:40 + + listing_select_box.card_header.selected Vybráno - - - listing_select_box.card_body.records_passed - vybrané id předaných položek - - - - - listing_select_box.card_body.remark - (tyto mohou být použity s něčím jako axios pro hromadnou úpravu/mazání) - - - + + templates/_partials/fields/embed.html.twig:20 + + editor_embed.content_url URL adresa obsahu pro vložení - + + templates/_partials/fields/embed.html.twig:21 + + editor_embed.placeholder_content_url URL adresa obsahu na Facebook, Twitter, Soundcloud, Youtube, Vimeo… - + + templates/_partials/fields/embed.html.twig:22 + + editor_embed.label_height Výška - + + templates/_partials/fields/embed.html.twig:23 + + editor_embed.label_pixel pixel + + templates/_partials/fields/embed.html.twig:24 + editor_embed.label_matched_embed Přiřazená vložená položka - + + templates/_partials/fields/embed.html.twig:25 + + editor_embed.label_preview Náhled - + + templates/_partials/fields/embed.html.twig:26 + + editor_embed.label_size Velikost - + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + + image.placeholder_filename Název souboru (nahrajte nový soubor nebo vyberte existující) - + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + + image.placeholder_alt_text Alt atribut - + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + + image.placeholder_title Title atribut - + + templates/_base/layout.html.twig:91 + + admin_sidebar.toggler Přepnout šířku panelu - + + templates/_base/layout.html.twig:82 + + admin_sidebar_toggler.toggle Přepnout menu]]> - + + templates/_partials/fields/date.html.twig:39 + + editor_date.toggle Přepnout - - - file.label_filename - Název souboru - - - - - file.label_title - Titulek - - - - - file.button_view - Zobrazit obrázek - - - - - file.button_upload - Nahrát obrázek - - - - - file.remark - image.]]> - - - - - file.label_alt - Alt - - - - - filelist.remark - imagelist.]]> - - - - - geolocation.label_geolocation - Geolokace: - - - - - geolocation.label_address - Vyhledávání adresy - - - - - geolocation.placeholder_address - Ulice, PSČ, město nebo jiná lokace… - - - - - geolocation.label_lat - Zeměpisná šířka - - - - - geolocation.label_address_matched - Souhlasící adresa - - - - - geolocation.label_marker - Umístění popisovače - - - - - geolocation.label_control - Připnout k nejbližší adrese - - - - - geolocation.label_long - Zeměpisná délka - - - - - imagelist.remark - filelist.]]> - - - + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + + flash_messages.notification Oznámení - - - buttons.button_toggle - Zobrazit rozbalovací nabídku - - - + + templates/content/_localeswitcher.html.twig:19 + + localeswitcher.button_info Zobrazit informace o lokalizaci - + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + + listing.title_sortby Řadit dle - - - listing.option_select_item - Vybrat položku - - - - - listing.title_title - Titulek - - - + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + + listing.placeholder_filter Hledat podle klíčového slova… - + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + + listing.button_filter Filtrovat - + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + + listing.button_clear Vyčistit řazení/filtr - + + templates/content/view_locales.html.twig:99 + + view_locales.badge_default Výchozí + + templates/content/view_locales.html.twig:105 + view_locales.badge_ok OK - + + templates/content/view_locales.html.twig:101 + + view_locales.badge_missing Chybějící + + templates/finder/_files_actions.html.twig:10 + files_cards.button_toggle Přepnout rozbalovací seznam - + + templates/finder/_files_actions.html.twig:17 + + files_cards.action_edit_image_info Upravit informace o obrázku - + + templates/finder/_files_actions.html.twig:19 + + files_cards.action_edit_file Upravit soubor v editoru - + + templates/finder/_files_actions.html.twig:25 + + files_cards.action_view_original Zobrazit originál - + + templates/finder/_files_actions.html.twig:36 + + files_cards.action_duplicate Duplikovat - + + templates/finder/_files_actions.html.twig:49 + + files_cards.action_delete Smazat - + + templates/finder/_files_actions.html.twig:56 + + files_cards.label_filename Název souboru: - + + templates/finder/_files_actions.html.twig:63 + + files_cards.label_title Titulek: - + + templates/finder/_files_actions.html.twig:70 + + files_cards.label_dimensions Rozměry: - + + templates/finder/_files_actions.html.twig:76 + + files_cards.label_filesize - Název souboru: + Velikost souboru: - + + templates/finder/_files_actions.html.twig:81 + + files_cards.label_created_on Vytvořeno: + + templates/finder/_files_list.html.twig:75 + files_list.remark V této složce nejsou žádné soubory. Vyberte složku, do které chcete přejít. - + + templates/finder/_quickselect.html.twig:5 + + quickselect.title_select Vyberte soubor: - + + templates/finder/finder.html.twig:45 + + finder.button_list Seznam - + + templates/finder/finder.html.twig:49 + + finder.button_cards Karty - + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + + extensions.title_desc Popis: - + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + + extensions.title_author Autor: - + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + extensions.title_package Název balíčku / třídy - + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + + extensions.title_version Verze: - + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + extensions.info_not_installed Toto je místní balíček, není nainstalován pomocí Composeru - + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + + extensions.title_class Název třídy: - + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + + extensions.button_configuration Konfigurace - + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + + extensions.button_source Zdroj - + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + + extensions.button_remove Odebrat rozšíření - + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + + extensions.button_disable Zakázat rozšíření - + + templates/security/login.html.twig:40 + + login.header_login Bolt » Přihlášení - + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + extensions.message_not_implemented Dosud neimplementováno. Promiň! - + + templates/content/listing.html.twig:6 + + listing.title_overview Přehled + + templates/finder/_files_cards.html.twig:48 + files_cards.message_no_files V této složce nejsou žádné soubory. Vyberte složku, do které chcete přejít, na pravé straně. - + + templates/_partials/_content_listing.html.twig:13 + + listing_filter.button_compact Kompaktní - + + templates/_partials/_content_listing.html.twig:14 + + listing_filter.button_expanded Rozšířené - + + templates/finder/finder.html.twig:41 + + finder.label_view Zobrazení: - + + templates/_partials/_content_listing.html.twig:34 + + listing_table.actions.button_edit Upravit - + + src/Controller/Backend/UserController.php:50 + + controller.user.title - + + src/Controller/Backend/UserController.php:51 + + controller.user.subtitle Pro úpravu uživatelů a jejich oprávnění - - - controller.database.check_title - Zkontrolovat databázi - - - - - controller.database.check_subtitle - Pro kontrolu databáze - - - - - controller.database.update_title - Aktualizace databáze - - - - - controller.database.update_subtitle - Pro aktualizaci databáze - - - - - controller.omnisearch.title - Omnisearch - - - - - controller.omnisearch.subtitle - To search, in an omni-like fashion - - - + + templates/users/listing.html.twig:20 + + listing.title_display_name Zobrazované jméno - + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + + listing.title_username Uživatelské jméno + + templates/users/listing.html.twig:20 + listing.title_email - Email + E-mail - + + templates/users/listing.html.twig:21 + + listing.title_roles Role - + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + + listing.title_last_seen Délka relace - + + templates/users/listing.html.twig:23 + + listing.title_last_ip Poslední IP - + + templates/users/listing.html.twig:24 + + listing.title_actions Akce - - - user.not_valid_email - Chybný email - - - - - user.not_valid_password - Chybné heslo. Heslo by mělo obsahovat minimálně 6 znaků. - - - + + templates/users/profile.html.twig:11 + + user.unknown_user Neznámý uživatel - + + templates/media/edit.html.twig:114 + + label.predominant_colors__in_image Převládající barvy v obrázku - + + public/theme/skeleton/listing.twig:14 + + general.phrase.overview-for Přehled pro '%slug%' - + + public/theme/skeleton/partials/_recordfooter.twig:40 + + general.phrase.related-content Související obsah - + + public/theme/skeleton/partials/_footer.twig:13 + + action.search Hledat - + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + + caption.new_contenttype Nový %contenttype% - + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + + caption.untitled_contenttype Nepojmenovaný %contenttype% - + + templates/users/profile.html.twig:6 + + title.edit_user_profile Upravit uživatelský profil - + + templates/pages/menupage.html.twig:13 + + caption.redirection_page Stránka přesměrování - + + templates/media/edit.html.twig:6 + + caption.edit_image Upravit obrázek - - - general.phrase.select_language - Vyberte jazyk - - - + + templates/users/_form.html.twig:44 + + password.suggested %password%]]> - + + templates/media/edit.html.twig:70 + + field.cropX Oříznout X + + templates/media/edit.html.twig:73 + field.cropXPostfix Pozice ořezu na ose X, rozsah 0-100. + + templates/media/edit.html.twig:80 + field.cropYPostfix Pozice ořezu na ose Y, rozsah 0-100. - + + templates/media/edit.html.twig:77 + + field.cropY Oříznout Y + + templates/media/edit.html.twig:84 + field.cropZoom Faktor přiblížení oříznutí + + templates/media/edit.html.twig:87 + field.cropZoomPostfix Úroveň přiblížení ořezu, rozsah 1-10. - + + templates/content/listing.html.twig:136 + + title.contentType Typ obsahu - - - listing.title_taxonomy - Taxonomie - - + + templates/_partials/_content_listing.html.twig:44 + listing_table.no_results - No results found. Broaden the filtering criteria, or add some more content. + Nebyly nalezeny žádné výsledky. Rozšiřte kritéria vyhledávání nebo přidejte další obsah. + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + listing.option_select_sortby - Select Field to sort by… + Vyberte pole pro řazení… - + + templates/content/edit.html.twig:103 + + title.primary_actions Primární akce - + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + + title.options Možnosti - + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + + action.delete Smazat - + + templates/users/listing.html.twig:76 + + action.enable Povolit - + + templates/users/listing.html.twig:71 + + action.disable Zakázat - - - user.enabled_successfully - Uživatel byl úspěšně povolen! - - - - - user.disabled_successfully - Uživatel byl úspěšně zakázán! - - + + templates/users/listing.html.twig:124 + listing.title_session_expires - Session expires + Platnost relace vyprší - + + templates/users/listing.html.twig:125 + + listing.title_ip_address IP adresa - + + templates/users/listing.html.twig:126 + + listing.title_browser Prohlížeč / platforma - + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + + image.button_remove Odebrat - + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + + image.button_edit_attributes Upravit atributy - - - image.button_move_up - Posunout výše - - - - - image.button_move_down - Posunout níže - - - + + templates/_partials/fields/imagelist.html.twig:27 + + image.add_new_image Přidat nový obrázek - + + templates/_partials/fields/filelist.html.twig:25 + + file.add_new_file Přidat nový soubor - + + templates/_partials/fields/_collection_buttons.html.twig:20 + + collection.remove_item Odebrat položku - + + templates/_partials/fields/collection.html.twig:6 + + collection.add_item Přidat položku do %name% - + + templates/_partials/fields/_collection_buttons.html.twig:5 + + collection.move_item_up Posunout výše - + + templates/_partials/fields/_collection_buttons.html.twig:9 + + collection.move_item_down Posunout níže - + + templates/pages/extensions.html.twig:54 + + extensions.button_detailed_view Zobrazit detaily - + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + + extensions.title_configuration Konfigurační soubor - + + templates/finder/_uploader.html.twig:17 + + caption.file_upload.upload_text Přetáhněte sem soubory pro nahrání - + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + + pager.next Další - + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + + pager.previous Předchozí - + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + + image.button_up Nahoru - + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + + image.button_down Dolů - + + templates/helpers/_field_blocks.twig:28 + + general.phrase.download Stáhnout - + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + + caption.logviewer Prohlížeč protokolu - + + templates/pages/logviewer.html.twig:39 + + label.request Požadavek + + templates/pages/logviewer.html.twig:53 + label.trace - Trace + Trasování - + + templates/pages/logviewer.html.twig:71 + + label.context Kontext + + templates/pages/logviewer.html.twig:19 + label.id ID - + + templates/pages/logviewer.html.twig:20 + + label.level Úroveň - + + templates/pages/logviewer.html.twig:23 + + label.message Zpráva - + + templates/pages/logviewer.html.twig:25 + + label.timestamp Čas - + + templates/pages/logviewer.html.twig:86 + + label.user Uživatel - + + templates/users/listing.html.twig:33 + + listing.disabled Zakázáno - + + templates/_partials/fields/slug.html.twig:17 + + slug.button_unlocked Odemčeno - + + public/theme/skeleton/listing.twig:42 + + general.phrase.no-content-found Nebyl nalezen žádný obsah - - - general.phrase.empty-database - Vypadá to, že je databáze prázdná. Write some content in the Bolt backend, or run the command to add some fixtures (dummy content). + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + + + general.phrase.none + Žádné - + + templates/content/view_locales.html.twig:103 + + view_locales.badge_empty Prázdné - + + templates/content/listing.html.twig:45 + + action.update_all Použít na vše - + + templates/pages/about.html.twig:21 + + about.system_info Systémové informace - - - user.not_valid_display_name - Chybné zobrazované jméno - - - + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + + action.confirm_delete Opravdu si přejete smazat tento obsah? - + + src/Form/LoginType.php:38 + + placeholder.username_or_email vaše uživatelské jméno nebo email - + + src/Form/LoginType.php:52 + + placeholder.password vaše heslo - + + src/Menu/BackendMenuBuilder.php:336 + + caption.other_content Další obsah - + + templates/finder/editfile.html.twig:39 + + editfile.target_not_writable Ukládání je zakázáno, protože do cílového souboru nelze zapisovat. - + + templates/_partials/fields/_label.html.twig:6 + + label.translatable Toto pole je přeložitelné - + + templates/pages/logviewer.html.twig:92 + + label.content Obsah - + + src/Controller/Backend/FileEditController.php:148 + + file.delete_success Soubor byl úspěšně smazán! - + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + + file.delete_confirm Opravdu si přejete smazat tento soubor? - + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + + listing.title_filterby Hledat / filtrovat podle - + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + + content.status_changed_successfully Stav byl úspěšně změněn - + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + + content.deleted_successfully Obsah byl úspěšně smazán - + + templates/content/_buttons.html.twig:46 + + label.current_status Aktuální stav - + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + status.published Zveřejněno - + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + status.draft Koncept - + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + status.timed Naplánováno - + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + status.held Pozdrženo - + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + + collection.confirm_delete Opravdu si přejete smazat tuto položku kolekce? - + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + + upload.allow_file_types Typy souborů povolené pro nahrání - + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + + upload.max_size Maximální velikost souboru pro nahrání - + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + + listing.placeholder_search Hledat klíčové slovo … - + + templates/pages/dashboard.html.twig:12 + + title.filtered_by '%filter%'.]]> - + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + + action.view_site Zobrazit stránky - + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + + action.new Nové - + + templates/pages/extension_details.html.twig:39 + + extensions.no_dependencies Žádné závislosti - + + templates/pages/extension_details.html.twig:36 + + extensions.title_dependencies Závislosti + + templates/_partials/fields/collection.html.twig:7 + collection.expand_all Rozbalit všechny položky + + templates/_partials/fields/collection.html.twig:8 + collection.collapse_all Zabalit všechny položky + + templates/content/edit.html.twig:45 + content.edit_missing_definition Definice tohoto ContentType chybí! Úprava tohoto záznamu nebude fungovat podle očekávání. Zkontrolujte prosím svůj soubor contenttypes.yaml a ujistěte se, že obsahuje %contenttype%. + + templates/_partials/fields/collection.html.twig:10 + collection.select Vybrat … + + src/Form/LoginType.php:34 + form.empty_username_email Zadejte prosím své uživatelské jméno nebo e-mail + + src/Form/LoginType.php:46 + form.empty_password Zadejte prosím své heslo + + src/Form/ResetPasswordRequestFormType.php:28 + form.empty_email Zadejte prosím svůj e-mail + + templates/content/listing.html.twig:112 + listing.title_filterby_field Filtrovat podle pole + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + image.button_from_url Nahrát z URL + + templates/finder/_files_actions.html.twig:29 + files_cards.copy_to_clipboard Kopírovat odkaz na soubor + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + warning Varování + + src/Controller/Backend/FilemanagerController.php:150 + filemanager.create_folder_already_exists - Složka již existuje. + Složka již existuje + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + filemanager.create_folder_error - Nepodařilo se vytvořit složku. + Nepodařilo se vytvořit složku + + src/Controller/Backend/FilemanagerController.php:155 + filemanager.create_folder_success Složka byla úspěšně vytvořena. + + src/Controller/Backend/FilemanagerController.php:115 + filemanager.delete_folder_successful - Složka byla úspěšně odstraněna. + Složka byla úspěšně odstraněna + + templates/finder/_createfolder.html.twig:13 + folder.create_new Nová složka - - - title.add_user - Přidat uživatele - - + + templates/users/_form.html.twig:172 + label.avatar Obrázek uživatele + + templates/security/login.html.twig:64 + login.forgotpassword Zapomenuté heslo + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + reset_password.request_header Resetovat heslo + + templates/reset_password/request.html.twig:42 + reset_password.request_description Zadejte svou e-mailovou adresu a my Vám zašleme odkaz pro obnovení hesla. + + templates/reset_password/request.html.twig:44 + reset_password.request_send Zaslat e-mail na změnu hesla + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + Email E-mail + + templates/reset_password/request.html.twig:47 + reset_password.back-to-login Zpět k přihlášení + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + reset_password.reset_header Reset hesla + + templates/reset_password/check_email.html.twig:4 + reset_password.check_email_sent_header E-mail s žádostí o obnovení hesla byl odeslán + + templates/reset_password/check_email.html.twig:35 + reset_password.check_email_sent_text_1 - Byl Vám zaslán e-mail s odkazem, na který můžete kliknout a obnovit tak své heslo. Platnost tohoto odkazu vyprší za %hours% hodin. + Byl Vám zaslán e-mail s odkazem, na který můžete kliknout a obnovit tak své heslo. Platnost tohoto odkazu vyprší za %hours% hod. + + templates/reset_password/check_email.html.twig:36 + reset_password.check_email_sent_text_2 Pokud e-mail neobdržíte, zkontrolujte složku se spamem nebo %tryagain%. + + templates/reset_password/reset.html.twig:37 + reset_password.reset_btn Reset hesla + + templates/reset_password/email.html.twig:1 + reset_password.email_title - Požadavek na změnu hesla + Dobrý den! + + templates/reset_password/email.html.twig:3 + reset_password.email_description Chcete-li obnovit své heslo, navštivte následující odkaz. + + templates/reset_password/email.html.twig:7 + reset_password.email_expire - Platnost tohoto odkazu vyprší za %hours% hodin. + Platnost tohoto odkazu vyprší za %hours% hod. + + templates/reset_password/email.html.twig:9 + reset_password.email_thanks Děkujeme! + + src/Form/ChangePasswordFormType.php:31 + reset_password.enter_pwd Zadejte prosím heslo + + src/Form/ChangePasswordFormType.php:43 + label.repeat_password Zopakování hesla + + src/Form/ChangePasswordFormType.php:45 + reset_password.not_matching_pwds Hesla se musí shodovat! + + src/Form/ChangePasswordFormType.php:35 + reset_password.minimum_length Vaše heslo by mělo mít alespoň %s znaků + + src/Controller/Backend/ResetPasswordController.php:99 + reset_password.no_token V adrese URL ani v relaci nebyl nalezen token pro resetování hesla. + + src/Controller/Backend/ResetPasswordController.php:134 + reset_password.reset_successful Vaše heslo bylo úspěšně resetováno. + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + reset_password.problem_with_request Při zpracování Vašeho požadavku na reset hesla došlo k problému - %s + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + label.filtered_by Filtrováno podle + + templates/content/_buttons.html.twig:34 + action.preview_secure_share - Sdílet zabezpečený náhled odkazu + Sdílet zabezpečený odkaz na náhled + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + action.stop_impersonating - Zastavit napodobování + Přestat se vydávat za + + templates/users/listing.html.twig:82 + action.impersonate Vydávat se za + + templates/widget/maintenance_mode.twig:25 + maintenance.activated_warning Je aktivován režim údržby + + templates/_partials/fields/embed.html.twig:28 + action.refresh Obnovit + + templates/content/listing.html.twig:148 + listing_details_box.showing_records Zobrazeno záznamů %current% z %total% + + templates/content/listing.html.twig:154 + listing_details_box.name - Jméno: %name% (singular: %singularName%) + Jméno: %name% (jednotné číslo: %singularName%) + + templates/content/listing.html.twig:160 + listing_details_box.slug - Slug: %slug% (singular: %singularSlug%) + Slug: %slug% (jednotné číslo: %singularSlug%) + + templates/content/listing.html.twig:166 + listing_details_box.record_template - Record template: %template% + Šablona záznamu: %template% + + templates/content/listing.html.twig:172 + listing_details_box.listing_template - Listing template: %template% (%listingRecords% záznamů) + Šablona výpisu: %template% (%listingRecords% záznamů) + + templates/content/listing.html.twig:186 + listing_details_box.locales - Locales: %locales% + Lokalizace: %locales% + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + action.edit_permissions Upravit oprávnění + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + general.label.search Vyhledat + + templates/_partials/fields/image.html.twig:25 + image.image_preview Náhled obrázku + + templates/_partials/_content_listing.html.twig:15 + listing_table.actions.select_all Vybrat vše + + src/Form/LoginType.php:58 + label.remembermeduration Zapamatovat přihlášení? (%duration% dnů) + + templates/users/listing.html.twig:117 + listing.current_sessions_header Aktuální relace + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + image.button_upload_options Možnosti nahrávání - - - Share secure preview link - Sdílet zabezpečený náhled odkazu - - + + templates/content/_taxonomies.html.twig:27 + Order - Objednávka + Pořadí + + src/Form/ResetPasswordRequestFormType.php:32 + placeholder.email Váš e-mail - - - You have to login in order to access this page. - Pro přístup na tuto stránku se musíte přihlásit. - - + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + modal.title.file_field Výběr souboru + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + modal.title.image_field Výběr obrázku + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + modal.title.upload_from_url Nahrát z adresy URL + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + modal.text.loading Načítání... + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + modal.button_save Uložit + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + modal.button_deny Zavřít diff --git a/translations/messages.de.xlf b/translations/messages.de.xlf index 20ecb2327..0bbec11bd 100644 --- a/translations/messages.de.xlf +++ b/translations/messages.de.xlf @@ -1,1257 +1,1358 @@ - - - bolt-core/src/Controller/Backend/BulkOperationsController.php:63 - bolt-core/src/Controller/Backend/ContentEditController.php:298 - new - - - content.status_changed_successfully - Status erfolgreich geändert - - - + - bolt-core/src/Controller/Backend/BulkOperationsController.php:86 - bolt-core/src/Controller/Backend/ContentEditController.php:324 - new + templates/users/edit.html.twig:6 - content.deleted_successfully - Inhalt erfolgreich gelöscht + title.edit_user + Benutzer bearbeiten - + - bolt-core/src/Controller/Backend/ClearCacheController.php:28 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 - label.cache_cleared - Der Cache wurde erfolgreich geleert! + action.save + Speichern - + - bolt-core/src/Controller/Backend/ContentEditController.php:198 - new + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 - content.validation_errors - Fehler beim validieren + action.do_something + Beispieltext - + - bolt-core/src/Controller/Backend/ContentEditController.php:227 + templates/users/listing.html.twig:64 - success - Erfolg! + action.edit + Bearbeiten - + - bolt-core/src/Controller/Backend/ContentEditController.php:228 - bolt-core/src/Controller/Backend/ContentEditController.php:236 - bolt-core/src/Controller/Backend/MediaEditController.php:85 - new + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 - content.updated_successfully - Inhalt erfolgreich aktualisiert + label.username + Benutzername - + - bolt-core/src/Controller/Backend/ContentEditController.php:229 - bolt-core/templates/_partials/_flash_messages.html.twig:8 + templates/security/login.html.twig:4 - flash_messages.notification - Benachrichtigung + title.login + In Bolt anmelden - + - bolt-core/src/Controller/Backend/FileEditController.php:105 - new + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 - editfile.updated_successfully - Datei erfolgreich aktualisiert! + label.password + Passwort - + - bolt-core/src/Controller/Backend/FileEditController.php:107 - new + templates/security/login.html.twig:60 - editfile.could_not_write - Datei konnte nicht gespeichert werden + action.log_in + Einloggen - + - bolt-core/src/Controller/Backend/FileEditController.php:151 - new + templates/content/listing.html.twig:58 - file.delete_success - Datei erfolgreich gelöscht! + title.contentlisting + Inhaltsauflistung - + - bolt-core/src/Controller/Backend/FilemanagerController.php:128 - new + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 - filemanager.delete_folder_successful - Ordner erfolgreich gelöscht + field.id + ID - + - bolt-core/src/Controller/Backend/FilemanagerController.php:130 - new + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 - filemanager.delete_folder_error - Ordner konnte nicht gelöscht werden + field.status + Status - + - bolt-core/src/Controller/Backend/FilemanagerController.php:165 - new + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 - filemanager.create_folder_already_exists - Ordner existiert bereits + field.createdAt + Erstellt am - + - bolt-core/src/Controller/Backend/FilemanagerController.php:166 - bolt-core/src/Controller/Backend/FilemanagerController.php:172 - new + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 - filemanager.create_folder_error - Ordner konnte nicht erstellt werden + field.modifiedAt + Bearbeitet am - + - bolt-core/src/Controller/Backend/FilemanagerController.php:170 - new + templates/content/_fields_aside.html.twig:15 - filemanager.create_folder_success - Ordner wurde erfolgreich erstellt. + field.publishedAt + Veröffentlicht am - + - bolt-core/src/Controller/Backend/GeneralController.php:57 + templates/content/_fields_aside.html.twig:24 - <strong>Well done!</strong> You successfully read this important alert message. - Gut gemacht! Sie haben diese wichtige Meldung erfolgreich gelesen. ]]> + field.depublishedAt + Veröffentlichung zurückgezogen am - + - bolt-core/src/Controller/Backend/GeneralController.php:58 - new + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 - <strong>Heads up!</strong> This alert needs your attention, but it's not super important. - <strong>Achtung!</strong> Diese Benachrichtigung benötigt Ihre Aufmerksamkeit, aber es ist nciht super wichtig.. + field.title + Titel - + - bolt-core/src/Controller/Backend/GeneralController.php:59 + templates/media/edit.html.twig:45 - <strong>Warning!</strong> Better check yourself, you're not looking too good. - Warnung! Pass auf, etwas stimmt nicht.]]> + field.description + Beschreibung - + - bolt-core/src/Controller/Backend/GeneralController.php:60 + templates/media/edit.html.twig:51 - <strong>Oh snap!</strong> Change a few things up and try submitting again. - Ohje! Ändere ein paar Dinge und versuche es erneut.]]> + field.copyright + Copyright - + - bolt-core/src/Controller/Backend/MediaEditController.php:111 + templates/media/edit.html.twig:58 - content.created_successfully - Mediendatei wurde erfolgreich erstellt! + field.originalFilename + Originaler Dateiname - + - bolt-core/src/Controller/Backend/ResetPasswordController.php:106 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 - reset_password.no_token - In der URL oder in der Sitzung wurde kein Token zum Zurücksetzen des Passworts gefunden. + field.width + Breite - + - bolt-core/src/Controller/Backend/ResetPasswordController.php:113 - bolt-core/src/Controller/Backend/ResetPasswordController.php:179 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 - reset_password.problem_with_request - Es gab ein Problem bei der Bearbeitung Ihrer Anfrage zum Zurücksetzen des Passworts - %s + field.height + Höhe - + - bolt-core/src/Controller/Backend/ResetPasswordController.php:141 + templates/media/edit.html.twig:142 - reset_password.reset_successful - Passwort Reset war erfolgreich. + field.filesize + Dateigröße - + - bolt-core/src/Controller/Backend/UserEditController.php:157 - new + src/Form/LoginType.php:31 - user.updated_successfully - Erfolgreich aktualisiert + label.username_or_email + Username oder Email - + - bolt-core/src/Controller/Backend/UserEditController.php:191 - bolt-core/src/Controller/Backend/UserEditController.php:223 - new + src/Form/LoginType.php:58 - user.updated_profile - Benutzer erfolgreich aktualisiert! + label.rememberme + Angemeldet bleiben? - + - bolt-core/src/Form/ChangePasswordFormType.php:34 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 - reset_password.enter_pwd - Bitte ein Passwort eingeben + about.visit_bolt + Besucht Boltcms.io - + - bolt-core/src/Form/ChangePasswordFormType.php:38 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 - reset_password.minimum_length - Ihr Passwort sollte mindestens %s Zeichen lang sein + about.bolt_documentation + Bolt Dokumentation - + - bolt-core/src/Form/ChangePasswordFormType.php:48 + templates/pages/about.html.twig:60 - reset_password.not_matching_pwds - Die Passwortfelder stimmen nicht überein. + about.bolt_on_github + Bolt auf GitHub - + - bolt-core/src/Form/ChangePasswordFormType.php:31 - new + templates/pages/about.html.twig:64 - label.new_password - Neues Passwort + about.used_libraries + Benutzte Libraries - + - bolt-core/src/Form/ChangePasswordFormType.php:45 - new + templates/pages/about.html.twig:66 - label.repeat_password - Passwort wiederholen + about.list_of_used_libraries + Unten aufgelistetete Libraries werden von Bolt verwendet. - + - bolt-core/src/Form/ChangePasswordFormType.php:28 - bolt-core/src/Form/UserType.php:79 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 - Plain password - Klarpasswort + label.email + E-Mail-Adresse - + - bolt-core/src/Form/LoginType.php:45 + templates/users/_form.html.twig:185 - form.empty_username_email - Bitte Usernamen oder Email-Adresse eingeben + label.about + Über mich - + - bolt-core/src/Form/LoginType.php:57 + src/Controller/Backend/UserEditController.php:129 - form.empty_password - Bitte Passwort eingeben + user.updated_successfully + Erfolgreich aktualisiert - + - bolt-core/src/Form/LoginType.php:41 + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 - label.username_or_email - Username oder Email + content.updated_successfully + Inhalt erfolgreich aktualisiert - + - bolt-core/src/Form/LoginType.php:53 - bolt-core/templates/users/_form.html.twig:51 - bolt-core/templates/users/profile.html.twig:42 + src/Controller/Backend/MediaEditController.php:88 - label.password - Passwort + content.created_successfully + Mediendatei wurde erfolgreich erstellt! - + - bolt-core/src/Form/LoginType.php:68 + src/Controller/Backend/FileEditController.php:106 - label.remembermeduration - Angemeldet bleiben? (%duration% Tage) + editfile.could_not_write + Datei konnte nicht gespeichert werden - + - bolt-core/src/Form/LoginType.php:49 + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 - placeholder.username_or_email - Usernamen oder Email eingeben + label.locale + Sprache - + - bolt-core/src/Form/LoginType.php:63 - new + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 - placeholder.password - Ihr Passwort + The Default theme + Das Standard-Theme - + - bolt-core/src/Form/ResetPasswordRequestFormType.php:31 + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 - form.empty_email - Bitte Email-Adresse eingeben + The Default Dark theme + Das dunkle Standard-Theme - + - bolt-core/src/Form/ResetPasswordRequestFormType.php:35 + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 - placeholder.email - Ihre Email-Adresse + WoordPers: Kinda looks like that other CMS + WoordPers: Sieht irgendwie aus wie dieses andere CMS - + - bolt-core/src/Form/ResetPasswordRequestFormType.php:27 - bolt-core/templates/users/_form.html.twig:68 - bolt-core/templates/users/profile.html.twig:51 + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 - label.email - E-Mail-Adresse + caption.dashboard + Bolt-Dashboard - + - bolt-core/src/Form/UserType.php:79 - new + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 - Avatar - Profilbild + caption.clear_cache + Cache leeren - + - bolt-core/src/Form/UserType.php:79 - new + src/Menu/BackendMenuBuilder.php:145 - Locale - Sprache + caption.menu_setup + Menü - + - bolt-core/src/Form/UserType.php:79 - new + src/Menu/BackendMenuBuilder.php:134 - Email - E-Mail + caption.taxonomies + Taxonomien - + - bolt-core/src/Form/UserType.php:79 - new + src/Menu/BackendMenuBuilder.php:123 - Display name - Anzeigename + caption.contenttypes + Inhaltstypen - + - bolt-core/src/Form/UserType.php:79 - new + src/Menu/BackendMenuBuilder.php:112 - Username - Benutzername + caption.main_configuration + Hauptkonfiguration - + - bolt-core/src/Form/UserType.php:121 - new + src/Menu/BackendMenuBuilder.php:99 - Status - Status + caption.users_permissions + - + - bolt-core/src/Form/UserType.php:121 - new + src/Menu/BackendMenuBuilder.php:89 - Roles - Rollen + caption.configuration + Konfiguration - + - bolt-core/src/Menu/BackendMenuBuilder.php:83 - bolt-core/templates/pages/dashboard.html.twig:6 + src/Menu/BackendMenuBuilder.php:77 - caption.dashboard - Bolt Dashboard + caption.settings + Einstellungen - bolt-core/src/Menu/BackendMenuBuilder.php:91 + src/Menu/BackendMenuBuilder.php:61 caption.content Inhalte - + - bolt-core/src/Menu/BackendMenuBuilder.php:107 + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 - caption.settings - Einstellungen + caption.file_management + Dateiverwaltung - + - bolt-core/src/Menu/BackendMenuBuilder.php:119 + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 - caption.configuration - Konfiguration - + caption.extensions + Erweiterungen + - + - bolt-core/src/Menu/BackendMenuBuilder.php:129 + src/Menu/BackendMenuBuilder.php:280 - caption.users_permissions - + caption.view_edit_templates + Templates verwalten - + - bolt-core/src/Menu/BackendMenuBuilder.php:142 + src/Menu/BackendMenuBuilder.php:270 - caption.main_configuration - Hauptkonfiguration + caption.uploaded_files + Hochgeladene Dateien - + - bolt-core/src/Menu/BackendMenuBuilder.php:153 + src/Menu/BackendMenuBuilder.php:157 - caption.contenttypes - Inhaltstypen + caption.routing_setup + Routen - + - bolt-core/src/Menu/BackendMenuBuilder.php:164 + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 - caption.taxonomies - Taxonomien + caption.translations + Übersetzungen - + - bolt-core/src/Menu/BackendMenuBuilder.php:175 + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 - caption.menu_setup - Menü + caption.about_bolt + Über Bolt - + - bolt-core/src/Menu/BackendMenuBuilder.php:187 + templates/pages/about.html.twig:11 - caption.routing_setup - Routen + caption.bolt_payoff + Anspruchsvolles, leichtes und einfaches CMS - + - bolt-core/src/Menu/BackendMenuBuilder.php:195 + templates/content/edit.html.twig:22 - caption.all_configuration_files - Konfigurationsdateien + caption.edit + Bearbeiten - + - bolt-core/src/Menu/BackendMenuBuilder.php:207 + templates/finder/_uploader.html.twig:8 - caption.maintenance - Wartung + caption.file_uploader + Datei hochladen - + - bolt-core/src/Menu/BackendMenuBuilder.php:217 - bolt-core/templates/pages/extension_details.html.twig:6 - bolt-core/templates/pages/extensions.html.twig:6 + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 - caption.extensions - Erweiterungen + caption.meta_information + Metadaten - + - bolt-core/src/Menu/BackendMenuBuilder.php:227 - bolt-core/templates/pages/logviewer.html.twig:6 + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 - caption.logviewer - Protokolle + date + Datum - + - bolt-core/src/Menu/BackendMenuBuilder.php:237 + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 - caption.api - API + size + Größe - + - bolt-core/src/Menu/BackendMenuBuilder.php:247 - bolt-core/templates/pages/clearcache.html.twig:6 - bolt-core/templates/pages/clearcache.html.twig:18 + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 - caption.clear_cache - Cache leeren + thumbnail + Vorschaubild - + - bolt-core/src/Menu/BackendMenuBuilder.php:257 - bolt-core/templates/content/view_locales.html.twig:15 + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 - caption.translations - Übersetzungen + filename + Dateiname - + - bolt-core/src/Menu/BackendMenuBuilder.php:268 + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 - caption.kitchensink - Testumgebung + actions + Optionen - + - bolt-core/src/Menu/BackendMenuBuilder.php:278 - bolt-core/templates/pages/about.html.twig:6 + templates/finder/_folders.html.twig:6 - caption.about_bolt - Über Bolt + directoryname + Verzeichnisname - + - bolt-core/src/Menu/BackendMenuBuilder.php:290 - bolt-core/templates/finder/finder.html.twig:6 + templates/finder/_quickselect.html.twig:9 - caption.file_management - Dateiverwaltung + form.quick_select_file + Datei Schnellauswahl - + - bolt-core/src/Menu/BackendMenuBuilder.php:300 + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 - caption.uploaded_files - Hochgeladene Dateien + caption.path + Pfad - + - bolt-core/src/Menu/BackendMenuBuilder.php:310 + templates/media/edit.html.twig:30 - caption.view_edit_templates - Templates verwalten + caption.filename + Dateiname - + - bolt-core/src/Menu/BackendMenuBuilder.php:366 + templates/content/listing.html.twig:63 - caption.other_content - Andere Inhalte + action.create_new + Anlegen - + - bolt-core/src/Menu/BackendMenuBuilder.php:80 - new + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 - Dashboard - Dashboard + general.greeting + Hallo, %name%! - + - bolt-core/src/Menu/BackendMenuBuilder.php:89 - new + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 - Content - Inhalt + action.logout + Ausloggen - + - bolt-core/src/Menu/BackendMenuBuilder.php:105 - new + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 - Settings - Einstellungen + action.edit_profile + Profil bearbeiten - + - bolt-core/src/Menu/BackendMenuBuilder.php:114 - new + templates/_partials/_flash_messages.html.twig:1 - Configuration - Einrichtung + action.close_alert + Schließen - + - bolt-core/src/Menu/BackendMenuBuilder.php:126 - new + src/Menu/BackendMenuBuilder.php:207 - Users &amp; Permissions - Benutzer & Rechte + caption.api + API - + - bolt-core/src/Menu/BackendMenuBuilder.php:136 - new + src/Menu/BackendMenuBuilder.php:165 - Main configuration - Haupt + caption.all_configuration_files + Konfigurationsdateien - + - bolt-core/src/Menu/BackendMenuBuilder.php:147 - new + src/Menu/BackendMenuBuilder.php:177 - ContentTypes - Inhaltstypen + caption.maintenance + Wartung - + - bolt-core/src/Menu/BackendMenuBuilder.php:158 - new + templates/finder/editfile.html.twig:21 - Taxonomies - Taxonomie + caption.edit_file + Datei bearbeiten - + - bolt-core/src/Menu/BackendMenuBuilder.php:169 - new + templates/content/_localeswitcher.html.twig:7 - Menu set up - Menü-Einrichtung + field.current_locale + Aktuelle Sprache - + - bolt-core/src/Menu/BackendMenuBuilder.php:181 - new + templates/content/_localeswitcher.html.twig:14 - Routing set up - Routen-Einrichtung + field.switch_to_locale + Sprache wechseln zu - + - bolt-core/src/Menu/BackendMenuBuilder.php:192 - new + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 - All configuration files - Alle Konfigurationsdateien + field.author + Autor - + - bolt-core/src/Menu/BackendMenuBuilder.php:202 - new + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 - Maintenance - Wartung + general.phrase.edit + Bearbeiten - + - bolt-core/src/Menu/BackendMenuBuilder.php:214 - new + public/theme/skeleton/partials/_recordfooter.twig:7 - Extensions - Erweiterungen + Unknown + Unbekannt - + - bolt-core/src/Menu/BackendMenuBuilder.php:224 - new + public/theme/skeleton/partials/_recordfooter.twig:6 - Log viewer - Log-Ansicht + general.phrase.written-by-on + Geschrieben von %name% am %date%. - + - bolt-core/src/Menu/BackendMenuBuilder.php:234 - new + public/theme/skeleton/partials/_aside.twig:33 - Bolt API - Bolt API + general.phrase.missing-about-page + Die Seite „Über“ fehlt - + - bolt-core/src/Menu/BackendMenuBuilder.php:244 - new + public/theme/skeleton/partials/_aside.twig:35 - Clear the cache - Cache leeren + general.phrase.missing-about-page-block + Der Block „Über“ fehlt - + - bolt-core/src/Menu/BackendMenuBuilder.php:254 - new + public/theme/skeleton/partials/_aside.twig:53 - Translations - Übersetzungen + contenttypes.generic.recent + Neueste %contenttypes% - + - bolt-core/src/Menu/BackendMenuBuilder.php:265 - new + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 - The Kitchensink - Die Küchenspüle + general.phrase.search-ellipsis + ... - + - bolt-core/src/Menu/BackendMenuBuilder.php:275 - new + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 - About Bolt - Über Bolt + general.phrase.search + Suche - + - bolt-core/src/Menu/BackendMenuBuilder.php:285 - new + public/theme/skeleton/partials/_aside.twig:60 - File Management - Dateiverwaltung + contenttypes.generic.overview + Übersicht von %contenttypes% - + - bolt-core/src/Menu/BackendMenuBuilder.php:297 - new + public/theme/skeleton/partials/_aside.twig:62 - Uploaded files - Datei hochladen + contenttypes.generic.no-recent + Keine aktuellen %contenttype% gefunden - + - bolt-core/src/Menu/BackendMenuBuilder.php:307 - new + public/theme/skeleton/partials/_footer.twig:4 - View/edit Templates - Templates anzeigen/bearbeiten + Menu + Menü - + - bolt-core/templates/_base/layout.html.twig:37 - bolt-core/templates/pages/about.html.twig:66 + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 - about.bolt_documentation - Bolt Dokumentation + Search + Suche - + - bolt-core/templates/_base/layout.html.twig:39 + public/theme/skeleton/partials/_recordfooter.twig:14 - general.greeting - Hallo, %name%! + general.phrase.permalink + Permalink - + - bolt-core/templates/_base/layout.html.twig:40 + src/Controller/Backend/ClearCacheController.php:24 - action.logout - Ausloggen + label.cache_cleared + Der Cache wurde erfolgreich geleert! - + - bolt-core/templates/_base/layout.html.twig:41 + src/Menu/BackendMenuBuilder.php:238 - action.stop_impersonating - Impersonierung beenden + caption.kitchensink + Testumgebung - + - bolt-core/templates/_base/layout.html.twig:42 + public/theme/skeleton/search.twig:11 - action.edit_profile - Profil bearbeiten + general.phrase.search-results-for + Suchergebnisse für „%search%“. - + - bolt-core/templates/_base/layout.html.twig:43 - bolt-core/templates/pages/about.html.twig:63 + public/theme/skeleton/search.twig:51 - about.visit_bolt - Besucht Boltcms.io + general.phrase.no-search-results-for + Keine Suchergebnisse für „%search%“ gefunden. - + - bolt-core/templates/_base/layout.html.twig:44 + public/theme/skeleton/search.twig:53 - general.phrase.search - Suche + general.phrase.no-search-term-provided + Bitte geben Sie einen Suchbegriff ein, um relevante Ergebnisse anzuzeigen. - + - bolt-core/templates/_base/layout.html.twig:45 + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 - listing.placeholder_search - Nach Schlüsselwörtern suchen ... + general.phrase.read-more + Mehr anzeigen - + - bolt-core/templates/_base/layout.html.twig:46 + public/theme/skeleton/partials/_footer.twig:17 - general.label.search - Suche + general.phrase.built-with-bolt + Bolt. ]]> - + - bolt-core/templates/_base/layout.html.twig:82 + vendor/bolt/newswidget/templates/news.html.twig:3 - admin_sidebar_toggler.toggle - umschalten]]> + general.latest_bolt_news + Neueste Bolt Neuigkeiten - + - bolt-core/templates/_base/layout.html.twig:91 + templates/content/_buttons.html.twig:19 - admin_sidebar.toggler - Menü umschalten + action.preview + Vorschau - + - bolt-core/templates/_base/layout.html.twig:92 - bolt-core/templates/finder/_createfolder.html.twig:9 + templates/content/_buttons.html.twig:58 - action.new - Neu + action.view_saved + Gespeicherte Version anschauen - + - bolt-core/templates/_base/layout.html.twig:93 + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 - action.view - Ansehen + label.display_name + Anzeigename - + - bolt-core/templates/_partials/_content_listing.html.twig:13 + templates/content/edit.html.twig:22 - listing_filter.button_compact - Kompakteansicht + caption.duplicate + Kopieren - + - bolt-core/templates/_partials/_content_listing.html.twig:14 + src/Form/ChangePasswordFormType.php:40 - listing_filter.button_expanded - Detailansicht + label.new_password + Neues Passwort - + - bolt-core/templates/_partials/_content_listing.html.twig:15 + src/Controller/Backend/FileEditController.php:104 - listing_table.actions.select_all - Alle auswählen + editfile.updated_successfully + Datei erfolgreich aktualisiert! - + - bolt-core/templates/_partials/_content_listing.html.twig:23 + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 - listing_table.actions.view_on_site - Anzeigen + action.add_user + Benutzer hinzufügen - + - bolt-core/templates/_partials/_content_listing.html.twig:24 - bolt-core/templates/_partials/_content_listing.html.twig:27 - bolt-core/templates/content/listing.html.twig:43 + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 - listing_table.actions.status_to_publish - Veröffentlichen + success + Erfolg! - + - bolt-core/templates/_partials/_content_listing.html.twig:25 - bolt-core/templates/content/listing.html.twig:42 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 - listing_table.actions.status_to_held - Festhalten + user.updated_profile + Benutzer erfolgreich aktualisiert! - + - bolt-core/templates/_partials/_content_listing.html.twig:26 - bolt-core/templates/content/listing.html.twig:41 + templates/users/_form.html.twig:124 - listing_table.actions.status_to_draft - Als Vorlage markieren + label.roles + Rollen - + - bolt-core/templates/_partials/_content_listing.html.twig:28 + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 - listing_table.actions.duplicate - Duplizieren + user.new_user + Neuen Benutzer anlegen - + - bolt-core/templates/_partials/_content_listing.html.twig:29 + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 - listing_table.actions.delete - Löschen + action.view + Ansehen - + - bolt-core/templates/_partials/_content_listing.html.twig:30 + templates/_partials/fields/slug.html.twig:18 - listing_table.actions.slug - Slug + slug.button_locked + Deaktiviert - + - bolt-core/templates/_partials/_content_listing.html.twig:31 + templates/_partials/fields/slug.html.twig:19 - listing_table.actions.created_on - Erstellt am + slug.button_edit + Bearbeiten - + - bolt-core/templates/_partials/_content_listing.html.twig:32 + templates/_partials/fields/slug.html.twig:20 - listing_table.actions.published_on - Veröffentlicht am + slug.generate_from + Erzeugt aus: - + - bolt-core/templates/_partials/_content_listing.html.twig:33 + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 - listing_table.actions.last_modified_on - Zuletzt bearbeitet am + image.button_upload + Hochladen - + - bolt-core/templates/_partials/_content_listing.html.twig:34 + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 - listing_table.actions.button_edit - Bearbeiten + image.button_from_library + Aus der Bibliothek - + - bolt-core/templates/_partials/_flash_messages.html.twig:1 + templates/_partials/_content_listing.html.twig:23 - action.close_alert - Schließen + listing_table.actions.view_on_site + Anzeigen - + - bolt-core/templates/_partials/fields/_collection_buttons.html.twig:5 + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 - collection.move_item_up - Hoch bewegen + listing_table.actions.status_to_publish + Veröffentlichen - + - bolt-core/templates/_partials/fields/_collection_buttons.html.twig:9 + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 - collection.move_item_down - Runter bewegen + listing_table.actions.status_to_held + Festhalten - + - bolt-core/templates/_partials/fields/_collection_buttons.html.twig:13 - bolt-core/templates/_partials/fields/_collection_buttons.html.twig:14 + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 - collection.confirm_delete - Sind Sie sicher, dass Sie dieses Kollektionsobjekt löschen möchten? + listing_table.actions.status_to_draft + Als Vorlage markieren - + - bolt-core/templates/_partials/fields/_collection_buttons.html.twig:20 + templates/_partials/_content_listing.html.twig:28 - collection.remove_item - Objekt entfernen + listing_table.actions.duplicate + Duplizieren - + - bolt-core/templates/_partials/fields/collection.html.twig:6 + templates/_partials/_content_listing.html.twig:29 - collection.add_item - Objekt zu %name% hinzufügen + listing_table.actions.delete + Löschen - + - bolt-core/templates/_partials/fields/collection.html.twig:7 + templates/_partials/_content_listing.html.twig:30 - collection.expand_all - Alles einblenden + listing_table.actions.slug + Slug - + - bolt-core/templates/_partials/fields/collection.html.twig:8 + templates/_partials/_content_listing.html.twig:31 - collection.collapse_all - Alles ausblenden + listing_table.actions.created_on + Erstellt am - + - bolt-core/templates/_partials/fields/collection.html.twig:10 + templates/_partials/_content_listing.html.twig:32 - collection.select - Auswählen ... + listing_table.actions.published_on + Veröffentlicht am - + - bolt-core/templates/_partials/fields/date.html.twig:39 + templates/_partials/_content_listing.html.twig:33 - editor_date.toggle - Umschalten + listing_table.actions.last_modified_on + Zuletzt bearbeitet am + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Ausgewählt - bolt-core/templates/_partials/fields/embed.html.twig:20 + templates/_partials/fields/embed.html.twig:20 editor_embed.content_url @@ -1260,7 +1361,7 @@ - bolt-core/templates/_partials/fields/embed.html.twig:21 + templates/_partials/fields/embed.html.twig:21 editor_embed.placeholder_content_url @@ -1269,7 +1370,7 @@ - bolt-core/templates/_partials/fields/embed.html.twig:22 + templates/_partials/fields/embed.html.twig:22 editor_embed.label_height @@ -1278,7 +1379,7 @@ - bolt-core/templates/_partials/fields/embed.html.twig:23 + templates/_partials/fields/embed.html.twig:23 editor_embed.label_pixel @@ -1287,7 +1388,7 @@ - bolt-core/templates/_partials/fields/embed.html.twig:24 + templates/_partials/fields/embed.html.twig:24 editor_embed.label_matched_embed @@ -1296,7 +1397,7 @@ - bolt-core/templates/_partials/fields/embed.html.twig:25 + templates/_partials/fields/embed.html.twig:25 editor_embed.label_preview @@ -1305,2111 +1406,2033 @@ - bolt-core/templates/_partials/fields/embed.html.twig:26 + templates/_partials/fields/embed.html.twig:26 editor_embed.label_size Größe - + - bolt-core/templates/_partials/fields/embed.html.twig:27 - bolt-core/templates/content/_buttons.html.twig:69 - bolt-core/templates/content/listing.html.twig:44 + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 - action.delete - Löschen + image.placeholder_filename + Dateiname (neue Datei hochladen oder vorhandene auswählen) - + - bolt-core/templates/_partials/fields/embed.html.twig:28 + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 - action.refresh - Neu laden + image.placeholder_alt_text + Alternativer Text - + - bolt-core/templates/_partials/fields/embed.html.twig:29 - bolt-core/templates/media/edit.html.twig:128 + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 - field.width - Breite + image.placeholder_title + Titel - + - bolt-core/templates/_partials/fields/embed.html.twig:30 - bolt-core/templates/media/edit.html.twig:135 + templates/_base/layout.html.twig:91 - field.height - Höhe + admin_sidebar.toggler + Menü umschalten - + - bolt-core/templates/_partials/fields/embed.html.twig:31 - bolt-core/templates/media/edit.html.twig:39 + templates/_base/layout.html.twig:82 - field.title - Title + admin_sidebar_toggler.toggle + umschalten]]> - + - bolt-core/templates/_partials/fields/embed.html.twig:32 - bolt-core/templates/content/_fields_aside.html.twig:33 + templates/_partials/fields/date.html.twig:39 - field.author - Autor + editor_date.toggle + Umschalten - + - bolt-core/templates/_partials/fields/file.html.twig:5 - bolt-core/templates/_partials/fields/filelist.html.twig:5 - bolt-core/templates/_partials/fields/image.html.twig:5 - bolt-core/templates/_partials/fields/imagelist.html.twig:5 - bolt-core/templates/_partials/fields/simple_image.html.twig:49 - bolt-core/templates/finder/_uploader.html.twig:3 + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 - upload.allow_file_types - Erlaubte Dateiformate + flash_messages.notification + Benachrichtigung - + - bolt-core/templates/_partials/fields/file.html.twig:6 - bolt-core/templates/_partials/fields/filelist.html.twig:6 - bolt-core/templates/_partials/fields/image.html.twig:6 - bolt-core/templates/_partials/fields/imagelist.html.twig:6 - bolt-core/templates/_partials/fields/simple_image.html.twig:50 - bolt-core/templates/finder/_uploader.html.twig:4 + templates/content/_localeswitcher.html.twig:19 - upload.max_size - Maximale Dateigröße + localeswitcher.button_info + Übersetzungsstatus - + - bolt-core/templates/_partials/fields/file.html.twig:16 - bolt-core/templates/_partials/fields/filelist.html.twig:16 - bolt-core/templates/_partials/fields/image.html.twig:17 - bolt-core/templates/_partials/fields/imagelist.html.twig:16 - bolt-core/templates/_partials/fields/simple_image.html.twig:58 + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 - image.button_upload - Hochladen + listing.title_sortby + Sortieren nach - + - bolt-core/templates/_partials/fields/file.html.twig:17 - bolt-core/templates/_partials/fields/filelist.html.twig:17 - bolt-core/templates/_partials/fields/image.html.twig:18 - bolt-core/templates/_partials/fields/imagelist.html.twig:17 + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 - image.button_upload_options - Upload Optionen + listing.placeholder_filter + Schlüsselwort zum Filtern ... - + - bolt-core/templates/_partials/fields/file.html.twig:18 - bolt-core/templates/_partials/fields/filelist.html.twig:18 - bolt-core/templates/_partials/fields/image.html.twig:19 - bolt-core/templates/_partials/fields/imagelist.html.twig:18 - bolt-core/templates/_partials/fields/simple_image.html.twig:59 + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 - image.button_from_library - Aus der Bibliothek + listing.button_filter + Filtern - + - bolt-core/templates/_partials/fields/file.html.twig:19 - bolt-core/templates/_partials/fields/filelist.html.twig:22 - bolt-core/templates/_partials/fields/image.html.twig:20 - bolt-core/templates/_partials/fields/imagelist.html.twig:22 - bolt-core/templates/_partials/fields/simple_image.html.twig:60 + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 - image.button_remove - Entfernen + listing.button_clear + Sortierung/Filter zurücksetzen - + - bolt-core/templates/_partials/fields/file.html.twig:20 - bolt-core/templates/_partials/fields/filelist.html.twig:19 - bolt-core/templates/_partials/fields/image.html.twig:21 - bolt-core/templates/_partials/fields/imagelist.html.twig:19 - bolt-core/templates/_partials/fields/simple_image.html.twig:61 + templates/content/view_locales.html.twig:99 - image.placeholder_filename - Dateiname + view_locales.badge_default + Standard - + - bolt-core/templates/_partials/fields/file.html.twig:21 - bolt-core/templates/_partials/fields/filelist.html.twig:20 - bolt-core/templates/_partials/fields/image.html.twig:22 - bolt-core/templates/_partials/fields/imagelist.html.twig:20 - bolt-core/templates/_partials/fields/simple_image.html.twig:62 + templates/content/view_locales.html.twig:105 - image.placeholder_alt_text - Alternativer Text + view_locales.badge_ok + Ok - + - bolt-core/templates/_partials/fields/file.html.twig:22 - bolt-core/templates/_partials/fields/filelist.html.twig:21 - bolt-core/templates/_partials/fields/imagelist.html.twig:21 + templates/content/view_locales.html.twig:101 - image.placeholder_title - Titel + view_locales.badge_missing + Fehlt - + - bolt-core/templates/_partials/fields/file.html.twig:23 - bolt-core/templates/_partials/fields/filelist.html.twig:26 - bolt-core/templates/_partials/fields/image.html.twig:23 - bolt-core/templates/_partials/fields/imagelist.html.twig:23 - bolt-core/templates/_partials/fields/simple_image.html.twig:63 + templates/finder/_files_actions.html.twig:10 - image.button_edit_attributes - Attribute bearbeiten + files_cards.button_toggle + Dropdown umschalten - + - bolt-core/templates/_partials/fields/file.html.twig:24 - bolt-core/templates/_partials/fields/filelist.html.twig:27 - new + templates/finder/_files_actions.html.twig:17 - modal.title.file_field - Datei auswählen + files_cards.action_edit_image_info + Bild Metadaten bearbeiten - + - bolt-core/templates/_partials/fields/file.html.twig:25 - bolt-core/templates/_partials/fields/filelist.html.twig:28 - bolt-core/templates/_partials/fields/image.html.twig:28 - bolt-core/templates/_partials/fields/imagelist.html.twig:30 - new + templates/finder/_files_actions.html.twig:19 - modal.button_save - Speichern + files_cards.action_edit_file + Datei im Editor bearbeiten - + - bolt-core/templates/_partials/fields/file.html.twig:26 - bolt-core/templates/_partials/fields/filelist.html.twig:29 - bolt-core/templates/_partials/fields/image.html.twig:29 - bolt-core/templates/_partials/fields/imagelist.html.twig:31 - new + templates/finder/_files_actions.html.twig:25 - modal.button_deny - Schließen + files_cards.action_view_original + Original ansehen - + - bolt-core/templates/_partials/fields/filelist.html.twig:23 - bolt-core/templates/_partials/fields/imagelist.html.twig:25 + templates/finder/_files_actions.html.twig:36 - image.button_up - Hoch + files_cards.action_duplicate + Duplizieren - + - bolt-core/templates/_partials/fields/filelist.html.twig:24 - bolt-core/templates/_partials/fields/imagelist.html.twig:26 + templates/finder/_files_actions.html.twig:49 - image.button_down - Runter + files_cards.action_delete + Löschen - - - bolt-core/templates/_partials/fields/filelist.html.twig:25 - - - file.add_new_file - Neue Datei hinzufügen - - - - - bolt-core/templates/_partials/fields/image.html.twig:24 - bolt-core/templates/_partials/fields/imagelist.html.twig:24 - bolt-core/templates/_partials/fields/simple_image.html.twig:64 - - - image.button_from_url - Von einer URL - - - - - bolt-core/templates/_partials/fields/image.html.twig:25 - - - image.image_preview - Bildvorschau anzeigen - - - - - bolt-core/templates/_partials/fields/image.html.twig:26 - bolt-core/templates/_partials/fields/imagelist.html.twig:28 - new - - - modal.title.image_field - Bild auswählen - - - - - bolt-core/templates/_partials/fields/image.html.twig:27 - bolt-core/templates/_partials/fields/imagelist.html.twig:29 - new - - - modal.title.upload_from_url - Von URL hochladen - - - + - bolt-core/templates/_partials/fields/imagelist.html.twig:27 + templates/finder/_files_actions.html.twig:56 - image.add_new_image - Neues Bild hinzufügen + files_cards.label_filename + Dateiname: - + - bolt-core/templates/_partials/fields/slug.html.twig:17 + templates/finder/_files_actions.html.twig:63 - slug.button_unlocked - Entsperrt + files_cards.label_title + Titel: - + - bolt-core/templates/_partials/fields/slug.html.twig:18 + templates/finder/_files_actions.html.twig:70 - slug.button_locked - Deaktiviert + files_cards.label_dimensions + Abmessungen: - + - bolt-core/templates/_partials/fields/slug.html.twig:19 + templates/finder/_files_actions.html.twig:76 - slug.button_edit - Bearbeiten + files_cards.label_filesize + Dateigröße: - + - bolt-core/templates/_partials/fields/slug.html.twig:20 + templates/finder/_files_actions.html.twig:81 - slug.generate_from - Erzeugt aus: + files_cards.label_created_on + Erstellt am: - + - bolt-core/templates/content/_buttons.html.twig:34 + templates/finder/_files_list.html.twig:75 - action.preview_secure_share - Sicheren Vorschau-Link teilen + files_list.remark + Keine Dateien im Ordner vorhanden, bitte wählen Sie ein Verzeichnis aus! - + - bolt-core/templates/content/_buttons.html.twig:50 - bolt-core/templates/content/_fields_aside_summary.html.twig:16 - bolt-core/templates/media/edit.html.twig:159 + templates/finder/_quickselect.html.twig:5 - field.modifiedAt - Bearbeitet am + quickselect.title_select + Datei auswählen - + - bolt-core/templates/content/_buttons.html.twig:63 - bolt-core/templates/finder/_folders.html.twig:40 - bolt-core/templates/finder/_folders.html.twig:41 - bolt-core/templates/users/listing.html.twig:89 - bolt-core/templates/users/listing.html.twig:90 + templates/finder/finder.html.twig:45 - action.confirm_delete - Sind Sie sicher, dass Sie diesen Inhalt löschen möchten? - + finder.button_list + Listenansicht - + - bolt-core/templates/content/_fields_aside.html.twig:5 - bolt-core/templates/users/_form.html.twig:153 + templates/finder/finder.html.twig:49 - field.status - Status + finder.button_cards + Kartenansicht - + - bolt-core/templates/content/_fields_aside.html.twig:15 + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 - field.publishedAt - Veröffentlicht am + extensions.title_desc + Beschreibung: - + - bolt-core/templates/content/_fields_aside.html.twig:24 + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 - field.depublishedAt - Veröffentlichung zurückgezogen am + extensions.title_author + Autor: - + - bolt-core/templates/content/_fields_aside_summary.html.twig:6 - bolt-core/templates/media/edit.html.twig:151 + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 - field.createdAt - Erstellt am + extensions.title_package + Paket-/Klassenname: - + - bolt-core/templates/content/_fields_aside_summary.html.twig:26 - bolt-core/templates/media/edit.html.twig:121 + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 - field.id - ID + extensions.title_version + Version: - + - bolt-core/templates/content/_localeswitcher.html.twig:7 + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 - field.current_locale - Aktuelle Sprache + extensions.info_not_installed + Dies ist ein lokales Paket, das nicht über Composer installiert ist. - + - bolt-core/templates/content/_localeswitcher.html.twig:14 + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 - field.switch_to_locale - Sprache wechseln zu + extensions.title_class + Klassenname: - + - bolt-core/templates/content/_taxonomies.html.twig:27 + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 - Order - Bestellung + extensions.button_configuration + Konfiguration - + - bolt-core/templates/content/edit.html.twig:22 + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 - caption.duplicate - Kopieren + extensions.button_source + Quelle - + - bolt-core/templates/content/edit.html.twig:22 + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 - caption.edit - Bearbeiten + extensions.button_remove + Erweiterung entfernen - + - bolt-core/templates/content/edit.html.twig:45 + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 - content.edit_missing_definition - Die Definition für diesen ContentType fehlt! Die Bearbeitung dieses Datensatzes wird nicht wie erwartet funktionieren. Bitte überprüfen Sie Ihre contenttypes.yaml, um sicherzustellen, dass sie %contenttype% enthält. + extensions.button_disable + Erweiterung deaktivieren - + - bolt-core/templates/content/edit.html.twig:103 + templates/security/login.html.twig:40 - title.primary_actions - Primäre Aktionen + login.header_login + Bolt » Anmeldung - + - bolt-core/templates/content/edit.html.twig:115 + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 - title.options - Optionen + extensions.message_not_implemented + Entschuldigung! Noch nicht implementiert! - bolt-core/templates/content/listing.html.twig:6 + templates/content/listing.html.twig:6 listing.title_overview Übersicht für - - - bolt-core/templates/content/listing.html.twig:40 - - - listing_select_box.card_header.selected - Ausgewählt - - - - - bolt-core/templates/content/listing.html.twig:45 - - - action.update_all - auf alle anwenden - - - - - bolt-core/templates/content/listing.html.twig:58 - - - title.contentlisting - Inhaltsauflistung - - - - - bolt-core/templates/content/listing.html.twig:69 - bolt-core/templates/content/listing.html.twig:70 - bolt-core/templates/users/listing.html.twig:190 - bolt-core/templates/users/listing.html.twig:191 - - - listing.title_sortby - Sortieren nach - - - - - bolt-core/templates/content/listing.html.twig:72 - bolt-core/templates/users/listing.html.twig:193 - - - listing.option_select_sortby - Feld zum Sortieren auswählen - - - - - bolt-core/templates/content/listing.html.twig:104 - bolt-core/templates/users/listing.html.twig:207 - - - listing.title_filterby - Filtern nach - - - + - bolt-core/templates/content/listing.html.twig:106 - bolt-core/templates/content/listing.html.twig:106 - bolt-core/templates/users/listing.html.twig:214 - bolt-core/templates/users/listing.html.twig:215 + templates/finder/_files_cards.html.twig:48 - listing.placeholder_filter - Schlüsselwort zum Filtern ... + files_cards.message_no_files + In diesem Ordner sind keine Dateien vorhanden. Wählen Sie auf der rechten Seite einen Ordner aus, zu dem Sie navigieren möchten. - + - bolt-core/templates/content/listing.html.twig:136 + templates/_partials/_content_listing.html.twig:13 - title.contentType - Inhaltstyp + listing_filter.button_compact + Kompakteansicht - + - bolt-core/templates/content/listing.html.twig:149 + templates/_partials/_content_listing.html.twig:14 - listing_details_box.showing_records - Anzeige Records %current% von %total% + listing_filter.button_expanded + Detailansicht - + - bolt-core/templates/content/listing.html.twig:155 + templates/finder/finder.html.twig:41 - listing_details_box.name - Name: %name% (singular: %singularName%) + finder.label_view + Ansicht: - + - bolt-core/templates/content/listing.html.twig:161 + templates/_partials/_content_listing.html.twig:34 - listing_details_box.slug - Slug: %slug% (Singular: %singularSlug%) + listing_table.actions.button_edit + Bearbeiten - + - bolt-core/templates/content/listing.html.twig:167 + src/Controller/Backend/UserController.php:50 - listing_details_box.record_template - Record template: %template% + controller.user.title + - + - bolt-core/templates/content/listing.html.twig:173 + src/Controller/Backend/UserController.php:51 - listing_details_box.listing_template - Listing template: %template% (%listingRecords% Einträge) + controller.user.subtitle + Benutzer und Rechte bearbeiten - + - bolt-core/templates/content/listing.html.twig:187 + templates/users/listing.html.twig:20 - listing_details_box.locales - Lokalisierungen: %locales% + listing.title_display_name + Anzeigename - + - bolt-core/templates/content/view_locales.html.twig:60 + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 - general.phrase.edit - Bearbeiten + listing.title_username + Benutzername - + - bolt-core/templates/content/view_locales.html.twig:99 + templates/users/listing.html.twig:20 - view_locales.badge_default - Standard + listing.title_email + E-Mail-Adresse - + - bolt-core/templates/content/view_locales.html.twig:101 + templates/users/listing.html.twig:21 - view_locales.badge_missing - Fehlt + listing.title_roles + Rollen - + - bolt-core/templates/content/view_locales.html.twig:103 + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 - view_locales.badge_empty - Leer + listing.title_last_seen + Zuletzt gesehen - + - bolt-core/templates/content/view_locales.html.twig:105 + templates/users/listing.html.twig:23 - view_locales.badge_ok - Ok + listing.title_last_ip + Letzte Ip - + - bolt-core/templates/finder/_createfolder.html.twig:13 + templates/users/listing.html.twig:24 - folder.create_new - Neuer Ordner + listing.title_actions + Optionen - + - bolt-core/templates/finder/_files_actions.html.twig:10 + templates/users/profile.html.twig:11 - files_cards.button_toggle - Dropdown umschalten + user.unknown_user + Unbekannter Benutzer - + - bolt-core/templates/finder/_files_actions.html.twig:17 + templates/media/edit.html.twig:114 - files_cards.action_edit_image_info - Bild Metadaten bearbeiten + label.predominant_colors__in_image + Vorherrschende Farben - + - bolt-core/templates/finder/_files_actions.html.twig:19 + public/theme/skeleton/listing.twig:14 - files_cards.action_edit_file - Datei im Editor bearbeiten + general.phrase.overview-for + Übersicht für „%slug%“ - + - bolt-core/templates/finder/_files_actions.html.twig:25 + public/theme/skeleton/partials/_recordfooter.twig:40 - files_cards.action_view_original - Original ansehen + general.phrase.related-content + Verwandte Inhalte - + - bolt-core/templates/finder/_files_actions.html.twig:29 + public/theme/skeleton/partials/_footer.twig:13 - files_cards.copy_to_clipboard - Link zu Datei kopieren + action.search + Suchen - + - bolt-core/templates/finder/_files_actions.html.twig:36 + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 - files_cards.action_duplicate - Duplizieren + caption.new_contenttype + %contenttype% anlegen - + - bolt-core/templates/finder/_files_actions.html.twig:42 - bolt-core/templates/finder/_files_actions.html.twig:43 + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 - file.delete_confirm - Sind Sie sicher, dass Sie diese Datei löschen möchten? + caption.untitled_contenttype + Unbenannte(r) %contenttype% - + - bolt-core/templates/finder/_files_actions.html.twig:49 + templates/users/profile.html.twig:6 - files_cards.action_delete - Löschen + title.edit_user_profile + Benutzerprofil bearbeiten - + - bolt-core/templates/finder/_files_actions.html.twig:56 + templates/pages/menupage.html.twig:13 - files_cards.label_filename - Dateiname: + caption.redirection_page + Weiterleitungsseite - + - bolt-core/templates/finder/_files_actions.html.twig:63 + templates/media/edit.html.twig:6 - files_cards.label_title - Titel: + caption.edit_image + Bild bearbeiten - + - bolt-core/templates/finder/_files_actions.html.twig:70 + templates/users/_form.html.twig:44 - files_cards.label_dimensions - Abmessungen: + password.suggested + %password%]]> - + - bolt-core/templates/finder/_files_actions.html.twig:76 + templates/media/edit.html.twig:70 - files_cards.label_filesize - Dateigröße: + field.cropX + Breite zuschneiden - + - bolt-core/templates/finder/_files_actions.html.twig:81 + templates/media/edit.html.twig:73 - files_cards.label_created_on - Erstellt am: + field.cropXPostfix + Mögliche Positionen der X-Achse sind 0-100. - + - bolt-core/templates/finder/_files_cards.html.twig:48 + templates/media/edit.html.twig:80 - files_cards.message_no_files - In diesem Ordner sind keine Dateien vorhanden. Wählen Sie auf der rechten Seite einen Ordner aus, zu dem Sie navigieren möchten. + field.cropYPostfix + Mögliche Positionen der Y-Achse sind 0-100. - + - bolt-core/templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:77 - filename - Dateiname + field.cropY + Höhe zuschneiden - + - bolt-core/templates/finder/_files_list.html.twig:7 + templates/media/edit.html.twig:84 - thumbnail - Vorschaubild + field.cropZoom + Zoomfaktor - + - bolt-core/templates/finder/_files_list.html.twig:8 + templates/media/edit.html.twig:87 - size - Größe + field.cropZoomPostfix + Möglicher Zoomfaktor ist 0-10. - + - bolt-core/templates/finder/_files_list.html.twig:9 + templates/content/listing.html.twig:136 - date - Datum + title.contentType + Inhaltstyp - + - bolt-core/templates/finder/_files_list.html.twig:10 - bolt-core/templates/finder/_folders.html.twig:7 + templates/_partials/_content_listing.html.twig:44 - actions - Optionen + listing_table.no_results + Keine Ergebnisse gefunden. Erweitern Sie die Filterkriterien oder fügen Sie weitere Inhalte hinzu. - + - bolt-core/templates/finder/_files_list.html.twig:75 + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 - files_list.remark - Keine Dateien im Ordner vorhanden, bitte wählen Sie ein Verzeichnis aus! + listing.option_select_sortby + Feld zum Sortieren auswählen - + - bolt-core/templates/finder/_folders.html.twig:6 + templates/content/edit.html.twig:103 - directoryname - Verzeichnisname + title.primary_actions + Primäre Aktionen - + - bolt-core/templates/finder/_quickselect.html.twig:5 + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 - quickselect.title_select - Datei auswählen + title.options + Optionen - + - bolt-core/templates/finder/_quickselect.html.twig:9 + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 - form.quick_select_file - Datei Schnellauswahl + action.delete + Löschen - + - bolt-core/templates/finder/_uploader.html.twig:8 + templates/users/listing.html.twig:76 - caption.file_uploader - Datei hochladen + action.enable + Aktivieren - + - bolt-core/templates/finder/_uploader.html.twig:17 + templates/users/listing.html.twig:71 - caption.file_upload.upload_text - Legen Sie Dateien hier ab, um sie hochzuladen + action.disable + Deaktivieren - + - bolt-core/templates/finder/editfile.html.twig:21 + templates/users/listing.html.twig:124 - caption.edit_file - Datei bearbeiten + listing.title_session_expires + Session endet - + - bolt-core/templates/finder/editfile.html.twig:26 - bolt-core/templates/finder/finder.html.twig:40 + templates/users/listing.html.twig:125 - caption.path - Pfad + listing.title_ip_address + IP-Adresse - + - bolt-core/templates/finder/editfile.html.twig:38 - bolt-core/templates/media/edit.html.twig:111 + templates/users/listing.html.twig:126 - action.save - Speichern + listing.title_browser + Browser / Betriebssystem - + - bolt-core/templates/finder/finder.html.twig:38 - bolt-core/templates/media/edit.html.twig:105 + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 - caption.meta_information - Metadaten + image.button_remove + Entfernen - + - bolt-core/templates/finder/finder.html.twig:41 + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 - finder.label_view - Ansicht: + image.button_edit_attributes + Attribute bearbeiten - + - bolt-core/templates/finder/finder.html.twig:45 + templates/_partials/fields/imagelist.html.twig:27 - finder.button_list - Listenansicht + image.add_new_image + Neues Bild hinzufügen - + - bolt-core/templates/finder/finder.html.twig:49 + templates/_partials/fields/filelist.html.twig:25 - finder.button_cards - Kartenansicht + file.add_new_file + Neue Datei hinzufügen - + - bolt-core/templates/helpers/_pager_basic.html.twig:30 - bolt-core/templates/helpers/_pager_bootstrap.html.twig:33 - bolt-core/templates/helpers/_pager_bulma.html.twig:28 - bolt-core/templates/helpers/_pager_tailwind.html.twig:29 + templates/_partials/fields/_collection_buttons.html.twig:20 - pager.previous - Zurück + collection.remove_item + Objekt entfernen - + - bolt-core/templates/helpers/_pager_basic.html.twig:66 - bolt-core/templates/helpers/_pager_bootstrap.html.twig:74 - bolt-core/templates/helpers/_pager_bulma.html.twig:34 - bolt-core/templates/helpers/_pager_tailwind.html.twig:69 + templates/_partials/fields/collection.html.twig:6 - pager.next - Vor + collection.add_item + Objekt zu %name% hinzufügen - + - bolt-core/templates/media/edit.html.twig:6 + templates/_partials/fields/_collection_buttons.html.twig:5 - caption.edit_image - Bild bearbeiten + collection.move_item_up + Hoch bewegen - + - bolt-core/templates/media/edit.html.twig:30 + templates/_partials/fields/_collection_buttons.html.twig:9 - caption.filename - Dateiname + collection.move_item_down + Runter bewegen - + - bolt-core/templates/media/edit.html.twig:45 + templates/pages/extensions.html.twig:54 - field.description - Beschreibung + extensions.button_detailed_view + Details ansehen - + - bolt-core/templates/media/edit.html.twig:51 + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 - field.copyright - Copyright + extensions.title_configuration + Konfigurationsdatei - + - bolt-core/templates/media/edit.html.twig:58 + templates/finder/_uploader.html.twig:17 - field.originalFilename - Originaler Dateiname + caption.file_upload.upload_text + Legen Sie Dateien hier ab, um sie hochzuladen - + - bolt-core/templates/media/edit.html.twig:70 + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 - field.cropX - Breite zuschneiden + pager.next + Vor - + - bolt-core/templates/media/edit.html.twig:73 + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 - field.cropXPostfix - Mögliche Positionen der X-Achse sind 0-100. + pager.previous + Zurück - + - bolt-core/templates/media/edit.html.twig:77 + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 - field.cropY - Höhe zuschneiden + image.button_up + Hoch - + - bolt-core/templates/media/edit.html.twig:80 + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 - field.cropYPostfix - Mögliche Positionen der Y-Achse sind 0-100. + image.button_down + Runter - + - bolt-core/templates/media/edit.html.twig:84 + templates/helpers/_field_blocks.twig:28 - field.cropZoom - Zoomfaktor + general.phrase.download + Herunterladen - + - bolt-core/templates/media/edit.html.twig:87 + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 - field.cropZoomPostfix - Möglicher Zoomfaktor ist 0-10. + caption.logviewer + Protokolle - + - bolt-core/templates/media/edit.html.twig:114 + templates/pages/logviewer.html.twig:39 - label.predominant_colors__in_image - Vorherrschende Farben + label.request + Anfrage - + - bolt-core/templates/media/edit.html.twig:142 + templates/pages/logviewer.html.twig:53 - field.filesize - Dateigröße + label.trace + Spur - + - bolt-core/templates/pages/about.html.twig:11 + templates/pages/logviewer.html.twig:71 - caption.bolt_payoff - Anspruchsvolles, leichtes und einfaches CMS + label.context + Kontext - + - bolt-core/templates/pages/about.html.twig:21 + templates/pages/logviewer.html.twig:19 - about.system_info - Systeminformationen + label.id + ID - + - bolt-core/templates/pages/about.html.twig:69 + templates/pages/logviewer.html.twig:20 - about.bolt_on_github - Bolt auf GitHub + label.level + Stufe - + - bolt-core/templates/pages/about.html.twig:73 + templates/pages/logviewer.html.twig:23 - about.used_libraries - Benutzte Libraries + label.message + Nachricht - + - bolt-core/templates/pages/about.html.twig:75 + templates/pages/logviewer.html.twig:25 - about.list_of_used_libraries - Unten aufgelistetete Libraries werden von Bolt verwendet. + label.timestamp + Zeit - + - bolt-core/templates/pages/dashboard.html.twig:12 + templates/pages/logviewer.html.twig:86 - title.filtered_by - '%filter%'.]]> + label.user + Benutzer - + - bolt-core/templates/pages/extension_details.html.twig:24 - bolt-core/templates/pages/extension_details.html.twig:51 - bolt-core/templates/pages/extensions.html.twig:27 - bolt-core/templates/pages/extensions.html.twig:44 + templates/users/listing.html.twig:33 - extensions.title_desc - Beschreibung: + listing.disabled + Deaktiviert - + - bolt-core/templates/pages/extension_details.html.twig:26 - bolt-core/templates/pages/extensions.html.twig:29 + templates/_partials/fields/slug.html.twig:17 - extensions.title_author - Autor: + slug.button_unlocked + Entsperrt - + - bolt-core/templates/pages/extension_details.html.twig:28 - bolt-core/templates/pages/extensions.html.twig:31 + public/theme/skeleton/listing.twig:42 - extensions.title_package - Package / Class name: + general.phrase.no-content-found + Kein Inhalt gefunden - + - bolt-core/templates/pages/extension_details.html.twig:31 - bolt-core/templates/pages/extensions.html.twig:34 + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 - - extensions.title_configuration - Konfigurationsdatei + + general.phrase.none + Keine - + - bolt-core/templates/pages/extension_details.html.twig:34 - bolt-core/templates/pages/extensions.html.twig:37 + templates/content/view_locales.html.twig:103 - extensions.title_version - Version: + view_locales.badge_empty + Leer - + - bolt-core/templates/pages/extension_details.html.twig:36 + templates/content/listing.html.twig:45 - extensions.title_dependencies - Abhängigkeiten + action.update_all + auf alle anwenden - + - bolt-core/templates/pages/extension_details.html.twig:39 + templates/pages/about.html.twig:21 - extensions.no_dependencies - Keine bekannten Abhängigkeiten + about.system_info + Systeminformationen - + - bolt-core/templates/pages/extension_details.html.twig:52 - bolt-core/templates/pages/extensions.html.twig:45 + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 - extensions.info_not_installed - Dies ist ein lokales Paket, das nicht über Composer installiert ist. + action.confirm_delete + Sind Sie sicher, dass Sie diesen Inhalt löschen möchten? + - + - bolt-core/templates/pages/extension_details.html.twig:53 - bolt-core/templates/pages/extensions.html.twig:46 + src/Form/LoginType.php:38 - extensions.title_class - Klassenname: + placeholder.username_or_email + Usernamen oder Email eingeben - + - bolt-core/templates/pages/extension_details.html.twig:62 - bolt-core/templates/pages/extensions.html.twig:58 + src/Form/LoginType.php:52 - extensions.button_configuration - Konfiguration + placeholder.password + Ihr Passwort - + - bolt-core/templates/pages/extension_details.html.twig:67 - bolt-core/templates/pages/extensions.html.twig:63 + src/Menu/BackendMenuBuilder.php:336 - extensions.button_source - Source + caption.other_content + Andere Inhalte - + - bolt-core/templates/pages/extension_details.html.twig:72 - bolt-core/templates/pages/extension_details.html.twig:73 - bolt-core/templates/pages/extension_details.html.twig:84 - bolt-core/templates/pages/extension_details.html.twig:85 - bolt-core/templates/pages/extensions.html.twig:68 - bolt-core/templates/pages/extensions.html.twig:69 - bolt-core/templates/pages/extensions.html.twig:79 - bolt-core/templates/pages/extensions.html.twig:80 + templates/finder/editfile.html.twig:39 - extensions.message_not_implemented - Entschuldigung! Noch nicht implementiert! + editfile.target_not_writable + Das Speichern ist deaktiviert, da die Zieldatei nicht beschreibbar ist. - + - bolt-core/templates/pages/extension_details.html.twig:79 - bolt-core/templates/pages/extensions.html.twig:74 + templates/_partials/fields/_label.html.twig:6 - extensions.button_remove - Erweiterung entfernen + label.translatable + Dieses Feld ist übersetzbar - + - bolt-core/templates/pages/extension_details.html.twig:91 - bolt-core/templates/pages/extensions.html.twig:86 + templates/pages/logviewer.html.twig:92 - extensions.button_disable - Erweiterung deaktivieren + label.content + Inhalt - + - bolt-core/templates/pages/extensions.html.twig:54 + src/Controller/Backend/FileEditController.php:148 - extensions.button_detailed_view - Details ansehen + file.delete_success + Datei erfolgreich gelöscht! - + - bolt-core/templates/pages/menupage.html.twig:13 + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 - caption.redirection_page - Weiterleitungsseite + file.delete_confirm + Sind Sie sicher, dass Sie diese Datei löschen möchten? - + - bolt-core/templates/reset_password/check_email.html.twig:4 + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 - reset_password.check_email_sent_header - Passwort Reset Email versendet + listing.title_filterby + Filtern nach - + - bolt-core/templates/reset_password/check_email.html.twig:32 - bolt-core/templates/reset_password/request.html.twig:4 - bolt-core/templates/reset_password/request.html.twig:36 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 - reset_password.request_header - Passwort zurücksetzen + content.status_changed_successfully + Status erfolgreich geändert - + - bolt-core/templates/reset_password/check_email.html.twig:35 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 - reset_password.check_email_sent_text_1 - Es wurde eine Email versandt, die einen Link enthält, auf den Sie klicken können, um Ihr Passwort zurückzusetzen. Dieser Link wird in %Stunden% Stunde(n) ablaufen. + content.deleted_successfully + Inhalt erfolgreich gelöscht - + - bolt-core/templates/reset_password/check_email.html.twig:36 + templates/content/_buttons.html.twig:46 - reset_password.check_email_sent_text_2 - Wenn Sie keine E-Mail erhalten, überprüfen Sie bitte Ihren Spam-Ordner oder versuchen Sie es erneut. + label.current_status + Aktueller Status - + - bolt-core/templates/reset_password/email.html.twig:1 + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 - reset_password.email_title - Hallo! + status.published + Veröffentlicht - + - bolt-core/templates/reset_password/email.html.twig:3 + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 - reset_password.email_description - Um Ihr Passwort zurückzusetzen, besuchen Sie bitte den folgenden Link + status.draft + Entwurf - + - bolt-core/templates/reset_password/email.html.twig:7 + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 - reset_password.email_expire - Dieser Link wird in %hours% Stunde(n) ablaufen. + status.timed + Terminiert - + - bolt-core/templates/reset_password/email.html.twig:9 + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 - reset_password.email_thanks - Danke! + status.held + Gehalten - + - bolt-core/templates/reset_password/request.html.twig:42 + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 - reset_password.request_description - Geben Sie Ihre E-Mail-Adresse ein und wir senden Ihnen einen Link zum Zurücksetzen Ihres Passworts. + collection.confirm_delete + Sind Sie sicher, dass Sie dieses Kollektionsobjekt löschen möchten? - + - bolt-core/templates/reset_password/request.html.twig:44 + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 - reset_password.request_send - Absenden + upload.allow_file_types + Erlaubte Dateiformate - + - bolt-core/templates/reset_password/request.html.twig:47 + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 - reset_password.back-to-login - Zurück zum Login + upload.max_size + Maximale Dateigröße - + - bolt-core/templates/reset_password/reset.html.twig:4 - bolt-core/templates/reset_password/reset.html.twig:32 + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 - reset_password.reset_header - Setze dein Passwort zurück + listing.placeholder_search + Nach Schlüsselwörtern suchen ... - + - bolt-core/templates/reset_password/reset.html.twig:37 + templates/pages/dashboard.html.twig:12 - reset_password.reset_btn - Passwort zurücksetzen + title.filtered_by + '%filter%'.]]> - + - bolt-core/templates/security/login.html.twig:4 + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 - title.login - In Bolt anmelden + action.view_site + Website ansehen - + - bolt-core/templates/security/login.html.twig:40 + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 - login.header_login - Bolt » Login + action.new + Neu - + - bolt-core/templates/security/login.html.twig:60 + templates/pages/extension_details.html.twig:39 - action.log_in - Einloggen + extensions.no_dependencies + Keine bekannten Abhängigkeiten - + - bolt-core/templates/security/login.html.twig:64 + templates/pages/extension_details.html.twig:36 - login.forgotpassword - Passwort vergessen + extensions.title_dependencies + Abhängigkeiten - + - bolt-core/templates/users/_form.html.twig:10 - bolt-core/templates/users/profile.html.twig:24 + templates/_partials/fields/collection.html.twig:7 - label.username - Benutzername + collection.expand_all + Alles einblenden - + - bolt-core/templates/users/_form.html.twig:26 - bolt-core/templates/users/profile.html.twig:33 + templates/_partials/fields/collection.html.twig:8 - label.display_name - Anzeigename + collection.collapse_all + Alles ausblenden - + - bolt-core/templates/users/_form.html.twig:44 + templates/content/edit.html.twig:45 - password.suggested - %password%]]]]>]]> + content.edit_missing_definition + Die Definition für diesen ContentType fehlt! Die Bearbeitung dieses Datensatzes wird nicht wie erwartet funktionieren. Bitte überprüfen Sie Ihre contenttypes.yaml, um sicherzustellen, dass sie %contenttype% enthält. - + - bolt-core/templates/users/_form.html.twig:95 - bolt-core/templates/users/profile.html.twig:72 + templates/_partials/fields/collection.html.twig:10 - label.locale - Sprache + collection.select + Auswählen ... - + - bolt-core/templates/users/_form.html.twig:124 + src/Form/LoginType.php:34 - label.roles - Rollen + form.empty_username_email + Bitte Usernamen oder Email-Adresse eingeben - + - bolt-core/templates/users/_form.html.twig:172 + src/Form/LoginType.php:46 - label.avatar - Avatar + form.empty_password + Bitte Passwort eingeben - + - bolt-core/templates/users/add.html.twig:6 + src/Form/ResetPasswordRequestFormType.php:28 - action.add_user - Benutzer hinzufügen + form.empty_email + Bitte Email-Adresse eingeben - + - bolt-core/templates/users/edit.html.twig:6 + templates/content/listing.html.twig:112 - title.edit_user - Benutzer bearbeiten + listing.title_filterby_field + Nach Feld filtern - + - bolt-core/templates/users/listing.html.twig:19 - bolt-core/templates/users/listing.html.twig:122 + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 - listing.title_username - Benutzername + image.button_from_url + Von einer URL - + - bolt-core/templates/users/listing.html.twig:20 + templates/finder/_files_actions.html.twig:29 - listing.title_display_name - Anzeigename + files_cards.copy_to_clipboard + Link zu Datei kopieren - + - bolt-core/templates/users/listing.html.twig:20 + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 - listing.title_email - E-Mail-Adresse + warning + Warnung - + - bolt-core/templates/users/listing.html.twig:21 + src/Controller/Backend/FilemanagerController.php:150 - listing.title_roles - Rollen + filemanager.create_folder_already_exists + Ordner existiert bereits - + - bolt-core/templates/users/listing.html.twig:22 - bolt-core/templates/users/listing.html.twig:123 + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 - listing.title_last_seen - Zuletzt gesehen + filemanager.create_folder_error + Ordner konnte nicht erstellt werden - + - bolt-core/templates/users/listing.html.twig:23 + src/Controller/Backend/FilemanagerController.php:155 - listing.title_last_ip - Letzte Ip + filemanager.create_folder_success + Ordner wurde erfolgreich erstellt. - + - bolt-core/templates/users/listing.html.twig:24 + src/Controller/Backend/FilemanagerController.php:115 - listing.title_actions - Optionen + filemanager.delete_folder_successful + Ordner erfolgreich gelöscht - + - bolt-core/templates/users/listing.html.twig:117 + templates/finder/_createfolder.html.twig:13 - listing.current_sessions_header - Aktuelle Sitzungen + folder.create_new + Neuer Ordner - + - bolt-core/templates/users/listing.html.twig:124 + templates/users/_form.html.twig:172 - listing.title_session_expires - Session endet + label.avatar + Avatar - + - bolt-core/templates/users/listing.html.twig:125 + templates/security/login.html.twig:64 - listing.title_ip_address - IP-Adresse + login.forgotpassword + Passwort vergessen - + - bolt-core/templates/users/listing.html.twig:126 + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 - listing.title_browser - Browser / Betriebssystem + reset_password.request_header + Passwort zurücksetzen - + - bolt-core/templates/users/profile.html.twig:6 + templates/reset_password/request.html.twig:42 - title.edit_user_profile - Benutzerprofil bearbeiten + reset_password.request_description + Geben Sie Ihre E-Mail-Adresse ein und wir senden Ihnen einen Link zum Zurücksetzen Ihres Passworts. - + - bolt-core/templates/widget/maintenance_mode.twig:25 + templates/reset_password/request.html.twig:44 - maintenance.activated_warning - Maintenance Modus ist aktiviert + reset_password.request_send + Absenden - + - obsolete + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 - user.unknown_user - Unbekannter Benutzer + Email + E-Mail - + - obsolete + templates/reset_password/request.html.twig:47 - caption.installation_checks - Installation prüfen + reset_password.back-to-login + Zurück zum Login - + - obsolete + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 - caption.fixtures_dummy_content - Beispielinhalte + reset_password.reset_header + Setze dein Passwort zurück - + - obsolete + templates/reset_password/check_email.html.twig:4 - action.create_new - Anlegen + reset_password.check_email_sent_header + Passwort Reset Email versendet - + - obsolete + templates/reset_password/check_email.html.twig:35 - action.preview - Vorschau + reset_password.check_email_sent_text_1 + Es wurde eine Email versandt, die einen Link enthält, auf den Sie klicken können, um Ihr Passwort zurückzusetzen. Dieser Link wird in %hours% Stunde(n) ablaufen. - + - obsolete + templates/reset_password/check_email.html.twig:36 - buttons.button_toggle - Dropdown anzeigen + reset_password.check_email_sent_text_2 + Wenn Sie keine E-Mail erhalten, überprüfen Sie bitte Ihren Spam-Ordner oder %tryagain%. - + - obsolete + templates/reset_password/reset.html.twig:37 - action.view_saved - Gespeicherte Version anschauen + reset_password.reset_btn + Passwort zurücksetzen - + - obsolete + templates/reset_password/email.html.twig:1 - action.search - Suchen + reset_password.email_title + Hallo! - + - obsolete + templates/reset_password/email.html.twig:3 - general.phrase.read-more - Mehr anzeigen + reset_password.email_description + Um Ihr Passwort zurückzusetzen, besuchen Sie bitte den folgenden Link - + - obsolete + templates/reset_password/email.html.twig:7 - contenttypes.generic.overview - Seitenübersicht + reset_password.email_expire + Dieser Link wird in %hours% Stunde(n) ablaufen. - + - obsolete + templates/reset_password/email.html.twig:9 - general.phrase.built-with-bolt - Bolt. ]]> + reset_password.email_thanks + Danke! - + - obsolete + src/Form/ChangePasswordFormType.php:31 - contenttypes.generic.recent - Neueste Seiten + reset_password.enter_pwd + Bitte ein Passwort eingeben - + - obsolete + src/Form/ChangePasswordFormType.php:43 - general.phrase.search-ellipsis - ... + label.repeat_password + Passwort wiederholen - + - obsolete + src/Form/ChangePasswordFormType.php:45 - action.do_something - Beispieltext + reset_password.not_matching_pwds + Die Passwortfelder stimmen nicht überein. - + - obsolete + src/Form/ChangePasswordFormType.php:35 - Button - Button + reset_password.minimum_length + Ihr Passwort sollte mindestens %s Zeichen lang sein - + - obsolete + src/Controller/Backend/ResetPasswordController.php:99 - 57d589f - Achtung! Diese Warnung benötigt Ihre Aufmerksamkeit, ist aber nicht besonders wichtig.]]> + reset_password.no_token + In der URL oder in der Sitzung wurde kein Token zum Zurücksetzen des Passworts gefunden. - + - obsolete + src/Controller/Backend/ResetPasswordController.php:134 - info - Information + reset_password.reset_successful + Passwort Reset war erfolgreich. - + - obsolete + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 - warning - Warnung + reset_password.problem_with_request + Es gab ein Problem bei der Bearbeitung Ihrer Anfrage zum Zurücksetzen des Passworts - %s - + - obsolete + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 - danger - Achtung + label.filtered_by + gefiltert nach - + - obsolete + templates/content/_buttons.html.twig:34 - localeswitcher.button_info - Übersetzungsstatus + action.preview_secure_share + Sicheren Vorschau-Link teilen - + - obsolete + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 - caption.untitled_contenttype - Unbenannte(r) %contenttype% + action.stop_impersonating + Impersonierung beenden - + - obsolete + templates/users/listing.html.twig:82 - caption.new_contenttype - %contenttype% anlegen + action.impersonate + Identität annehmen - + - obsolete + templates/widget/maintenance_mode.twig:25 - controller.user.title - + maintenance.activated_warning + Maintenance Modus ist aktiviert - + - obsolete + templates/_partials/fields/embed.html.twig:28 - action.edit - Bearbeiten + action.refresh + Neu laden - + - obsolete + templates/content/listing.html.twig:148 - action.disable - Deaktivieren + listing_details_box.showing_records + Anzeige Records %current% von %total% - + - obsolete + templates/content/listing.html.twig:154 - controller.user.subtitle - Benutzer und Rechte bearbeiten + listing_details_box.name + Name: %name% (Singular: %singularName%) - + - obsolete + templates/content/listing.html.twig:160 - user.new_user - Neuen Benutzer anlegen + listing_details_box.slug + Slug: %slug% (Singular: %singularSlug%) - + - obsolete + templates/content/listing.html.twig:166 - caption.folders - Ordner + listing_details_box.record_template + Datensatz-Vorlage: %template% - + - obsolete + templates/content/listing.html.twig:172 - general.latest_bolt_news - Neueste Bolt Neuigkeiten + listing_details_box.listing_template + Listing template: %template% (%listingRecords% Einträge) - + - obsolete + templates/content/listing.html.twig:186 - label.current_status - Aktueller Status + listing_details_box.locales + Lokalisierungen: %locales% - + - obsolete + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 - status.published - Veröffentlicht + action.edit_permissions + Berechtigungen bearbeiten - + - obsolete + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 - status.held - Gehalten + general.label.search + Suche - + - obsolete + templates/_partials/fields/image.html.twig:25 - status.timed - Terminiert + image.image_preview + Bildvorschau anzeigen - + - obsolete + templates/_partials/_content_listing.html.twig:15 - status.draft - Entwurf + listing_table.actions.select_all + Alle auswählen - + - obsolete + src/Form/LoginType.php:58 - label.translatable - Dieses Feld ist übersetzbar + label.remembermeduration + Angemeldet bleiben? (%duration% Tage) - + - obsolete + templates/users/listing.html.twig:117 - listing.button_filter - Filtern + listing.current_sessions_header + Aktuelle Sitzungen - + - obsolete + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 - label.id - ID + image.button_upload_options + Upload Optionen - + - obsolete + templates/content/_taxonomies.html.twig:27 - label.level - Level + Order + Reihenfolge - + - obsolete + src/Form/ResetPasswordRequestFormType.php:32 - label.message - Nachricht + placeholder.email + Ihre Email-Adresse - + - obsolete + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 - label.timestamp - Zeit + modal.title.file_field + Datei auswählen - + - obsolete + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 - label.request - Anfrage + modal.title.image_field + Bild auswählen - + - obsolete + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 - label.trace - Spur + modal.title.upload_from_url + Von URL hochladen - + - obsolete + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 - label.context - Kontext + modal.text.loading + Wird geladen … - + - obsolete + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 - label.user - Benutzer + modal.button_save + Speichern - + - obsolete + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 - listing_table.no_results - Keine Ergebnisse gefunden. Erweitern Sie die Filterkriterien oder fügen Sie weitere Inhalte hinzu. + modal.button_deny + Schließen diff --git a/translations/messages.el.xlf b/translations/messages.el.xlf index 2a92f4dd5..8e6f70e5f 100644 --- a/translations/messages.el.xlf +++ b/translations/messages.el.xlf @@ -1,149 +1,27 @@ - - - - - templates/debug/source_code.twig:26 - - - not_available - Μη διαθέσιμο - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Σφάλμα %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - Παρουσιάστηκε άγνωστο σφάλμα (HTTP %status_code%) που εμπόδισε την ολοκλήρωση του αιτήματός σας. - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - επιστρέψτε στην αρχική σελίδα.]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - Δεν έχετε άδεια πρόσβασης σε αυτόν τον πόρο. - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - Ζητήστε από τον διαχειριστή του συστήματος να σας παραχωρήσει πρόσβαση σε αυτόν τον πόρο. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - Δεν ήταν δυνατή η εύρεση της σελίδας που ζητήσατε. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - επιστρέψτε στην αρχική σελίδα.]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - Παρουσιάστηκε εσωτερικό σφάλμα. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - επιστρέψτε στην αρχική σελίδα.]]> - - - - - templates/debug/source_code.twig:17 - - - title.source_code - Ο πηγαίος κώδικας χρησιμοποιείται για την απόδοση αυτής της σελίδας - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - Controller code - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Twig template code - - + + - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Επεξεργασία χρήστη - - - templates/debug/source_code.twig:7 - - - action.show_code - Εμφάνιση κωδικα - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 action.save @@ -151,21 +29,35 @@ + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + action.do_something Κάνε κάτι - + - templates/users/change_password.twig:26 + templates/users/listing.html.twig:64 - - action.edit_user - Επεξεργασία χρήστη - - - action.edit Επεξεργασία @@ -173,35 +65,17 @@ - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 label.username Όνομα χρήστη - - - templates/debug/source_code.twig:3 - - - help.show_code - Controller and template used to render this page.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - Αφού αλλάξετε τον κωδικό πρόσβασής σας, θα αποσυνδεθείτε από την εφαρμογή. - - - templates/security/login.twig:4 + templates/security/login.html.twig:4 title.login @@ -210,8 +84,9 @@ - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 label.password @@ -220,7 +95,7 @@ - templates/security/login.twig:84 + templates/security/login.html.twig:60 action.log_in @@ -229,26 +104,17 @@ - templates/content/listing.twig:9 + templates/content/listing.html.twig:58 title.contentlisting - Contentlisting - - - - - templates/users/edit.twig:24 - - - action.change_password - Αλλαξε κωδικό πρόσβασης + Λίστα περιεχομένου - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -257,7 +123,8 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 field.status @@ -266,8 +133,8 @@ - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 field.createdAt @@ -276,8 +143,10 @@ - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 field.modifiedAt @@ -286,7 +155,7 @@ - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 field.publishedAt @@ -295,7 +164,7 @@ - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 field.depublishedAt @@ -304,7 +173,8 @@ - templates/editcontent/media_edit.twig:47 + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 field.title @@ -313,7 +183,7 @@ - templates/editcontent/media_edit.twig:53 + templates/media/edit.html.twig:45 field.description @@ -322,7 +192,7 @@ - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 field.copyright @@ -331,7 +201,7 @@ - templates/editcontent/media_edit.twig:66 + templates/media/edit.html.twig:58 field.originalFilename @@ -340,7 +210,8 @@ - templates/editcontent/media_edit.twig:105 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 field.width @@ -349,7 +220,8 @@ - templates/editcontent/media_edit.twig:112 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 field.height @@ -358,7 +230,7 @@ - templates/editcontent/media_edit.twig:119 + templates/media/edit.html.twig:142 field.filesize @@ -367,7 +239,7 @@ - templates/security/login.twig:61 + src/Form/LoginType.php:31 label.username_or_email @@ -376,7 +248,7 @@ - templates/security/login.twig:80 + src/Form/LoginType.php:58 label.rememberme @@ -385,7 +257,9 @@ - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 about.visit_bolt @@ -394,25 +268,27 @@ - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 about.bolt_documentation - Bolt Documentation + Τεκμηρίωση Bolt - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 about.bolt_on_github - Bolt on Github + Το Bolt στο Github - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 about.used_libraries @@ -421,37 +297,36 @@ - templates/pages/about.twig:37 + templates/pages/about.html.twig:66 about.list_of_used_libraries Ακολουθούν οι βιβλιοθήκες τρίτων που χρησιμοποιούνται απο το Bolt. - + - src/Form/UserType.php:35 - Νεο + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 - label.fullname - Πλήρες όνομα + label.email + Ήλ. Διέυθυνση - + - src/Form/UserType.php:38 - Νεο + templates/users/_form.html.twig:185 - label.email - Ήλ. Διέυθυνση + label.about + Σχετικά - src/Controller/Backend/UserController.php:33 - Νεο + src/Controller/Backend/UserEditController.php:129 user.updated_successfully @@ -460,9 +335,9 @@ - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - Νεο + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 content.updated_successfully @@ -471,8 +346,7 @@ - src/Controller/Backend/EditMediaController.php:157 - Νεο + src/Controller/Backend/MediaEditController.php:88 content.created_successfully @@ -481,8 +355,7 @@ - src/Controller/Backend/EditFileController.php:101 - Νεο + src/Controller/Backend/FileEditController.php:106 editfile.could_not_write @@ -490,512 +363,645 @@ + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + label.locale Γλώσσα - - - label.backend_theme - Θέμα - - - - - English (en) - English (en) - - - - - Nederlands (dutch, nl) - Nederlands (dutch, nl) - - - - - Español (Spanish, es) - Español (Spanish, es) - - - - - français (French, fr) - français (French, fr) - - - - - Deutsch (German, de) - Deutsch (German, de) - - - - - Język Polski (Polish, pl) - Język Polski (Polish, pl) - - - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - - - - - Italiano (Italian, it) - Italiano (Italian, it) - - + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + The Default theme Προεπιλεγμένο θέμα + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + The Default Dark theme Προεπιλεγμένο θέμα Σκοτεινό + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + WoordPers: Kinda looks like that other CMS - WoordPers: Kinda looks like that other CMS + WoordPers: Μοιάζει λιγάκι με εκείνο το άλλο CMS + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + caption.dashboard Πίνακας Διαχείρισης - - - caption.translations: messages - μεταφράσεις: μηνύματα - - + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + caption.clear_cache Εκκαθαρίστε την προσωρινή μνήμη - - - caption.check_database - Ελέγξτε τη βάση δεδομένων - - - - - caption.routing set up - caption.routing Διαχείριση - - + + src/Menu/BackendMenuBuilder.php:145 + caption.menu_setup Διαχείριση Μενου + + src/Menu/BackendMenuBuilder.php:134 + caption.taxonomies Ταξινομίες + + src/Menu/BackendMenuBuilder.php:123 + caption.contenttypes Τύποι περιεχομένου + + src/Menu/BackendMenuBuilder.php:112 + caption.main_configuration Κύρια διαμόρφωση + + src/Menu/BackendMenuBuilder.php:99 + caption.users_permissions - + Χρήστες και δικαιώματα + + src/Menu/BackendMenuBuilder.php:89 + caption.configuration Διαμόρφωση + + src/Menu/BackendMenuBuilder.php:77 + caption.settings Ρυθμίσεις + + src/Menu/BackendMenuBuilder.php:61 + caption.content Περιεχομένο + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + caption.file_management Διαχείριση Πολυμέσων + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + caption.extensions Επεκτάσεις + + src/Menu/BackendMenuBuilder.php:280 + caption.view_edit_templates - + Προβολή και επεξεργασία προτύπων + + src/Menu/BackendMenuBuilder.php:270 + caption.uploaded_files Μεταφορτωμένα αρχεία + + src/Menu/BackendMenuBuilder.php:157 + caption.routing_setup Διαμόρφωση δρομολόγησης + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + caption.translations Μεταφράσεις / Ετικέτες + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + caption.about_bolt Σχετικά με Bolt + + templates/pages/about.html.twig:11 + caption.bolt_payoff + + templates/content/edit.html.twig:22 + caption.edit Επεξεργασία + + templates/finder/_uploader.html.twig:8 + caption.file_uploader Μεταφόρτωση αρχείων + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + caption.meta_information Μετα-πληροφορίες + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + date Ημερομηνία + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + size Μέγεθος + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + thumbnail Mικρή εικόνα + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + filename Ονομα αρχείου + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + actions Ενέργειες + + templates/finder/_folders.html.twig:6 + directoryname Όνομα καταλόγου - - - action.go - Go - - + + templates/finder/_quickselect.html.twig:9 + form.quick_select_file Γρήγορη Επεξεργασία Αρχειου… - - - label.quick_select - Γρήγορη επιλογή - - + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + caption.path Μονοπάτι + + templates/media/edit.html.twig:30 + caption.filename Ονομα αρχείου - - - action.visit_site - Επισκέψου την ιστοσελίδα - - + + templates/content/listing.html.twig:63 + action.create_new Δημιούργησε ένα νέο + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + general.greeting Γειά, %name%! + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + action.logout Αποσύνδεση + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + action.edit_profile Επεξεργασία προφίλ + + templates/_partials/_flash_messages.html.twig:1 + action.close_alert Κλείσιμο + + src/Menu/BackendMenuBuilder.php:207 + caption.api API + + src/Menu/BackendMenuBuilder.php:165 + caption.all_configuration_files Όλα τα αρχεία διαμόρφωσης + + src/Menu/BackendMenuBuilder.php:177 + caption.maintenance Συντήρηση - - - caption.fixtures_dummy_content - Προεπιλεγμενο (Περιεχομένο για επίδειξη) - - + + templates/finder/editfile.html.twig:21 + caption.edit_file Επεξεργασία αρχείου - - - caption.installation_checks - Έλεγχοι εγκατάστασης - - - - - form.select_language - Επιλέξτε γλώσσα - - - - - field.locale - Γλώσσα - - + + templates/content/_localeswitcher.html.twig:7 + field.current_locale Επιλεγμένη Γλώσσα + + templates/content/_localeswitcher.html.twig:14 + field.switch_to_locale Επιλογή Γλώσσας + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author Συντάκτης + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + general.phrase.edit Επεξεργασία + + public/theme/skeleton/partials/_recordfooter.twig:7 + Unknown Αγνωστο + + public/theme/skeleton/partials/_recordfooter.twig:6 + general.phrase.written-by-on Γραμμένο από %name% στις %date%. - + + public/theme/skeleton/partials/_aside.twig:33 + + general.phrase.missing-about-page Λείπει η σελίδα "About" + + public/theme/skeleton/partials/_aside.twig:35 + general.phrase.missing-about-page-block Το "About" μπλοκ λείπει. + + public/theme/skeleton/partials/_aside.twig:53 + contenttypes.generic.recent Πρόσφατα %contenttypes% + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + general.phrase.search-ellipsis + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + general.phrase.search Αναζήτηση - - - 9fb3e6e - Χτισμένο με Bolt.]]> - - + + public/theme/skeleton/partials/_aside.twig:60 + contenttypes.generic.overview Επισκόπηση %contenttypes% + + public/theme/skeleton/partials/_aside.twig:62 + contenttypes.generic.no-recent Δεν βρέθηκαν πρόσφατα %contenttype% + + public/theme/skeleton/partials/_footer.twig:4 + Menu Μενού + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + Search Αναζήτηση + + public/theme/skeleton/partials/_recordfooter.twig:14 + general.phrase.permalink Μόνιμος σύνδεσμος - - - label.displayname - Όνομα εμφάνισης - - + + src/Controller/Backend/ClearCacheController.php:24 + label.cache_cleared Η προσωρινή μνήμη εκκαθαρίστηκε με επιτυχία! - - caption.kitchensink - Νεροχύτης - - - - parameters: - '%search%': παραμέτροι + src/Menu/BackendMenuBuilder.php:238 - general.phrase.search-results-for-variable - Αποτελέσματα αναζήτησης για '%search%'. + caption.kitchensink + Νεροχύτης - parameters: - '%search%': παραμέτροι + public/theme/skeleton/search.twig:11 general.phrase.search-results-for @@ -1004,8 +1010,7 @@ - parameters: - '%SEARCHTERM%': παραμέτροι + public/theme/skeleton/search.twig:51 general.phrase.no-search-results-for @@ -1013,1360 +1018,2421 @@ + + public/theme/skeleton/search.twig:53 + general.phrase.no-search-term-provided Καταχωρίστε έναν όρο αναζήτησης, για να εμφανίσετε σχετικά αποτελέσματα. + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + general.phrase.read-more Περισσότερα + + public/theme/skeleton/partials/_footer.twig:17 + general.phrase.built-with-bolt - Χτισμένο με Bolt.]]> + Χτισμένο με Bolt.]]> + + vendor/bolt/newswidget/templates/news.html.twig:3 + general.latest_bolt_news Τελευταία Νέα + + templates/content/_buttons.html.twig:19 + action.preview Προεπισκόπηση + + templates/content/_buttons.html.twig:58 + action.view_saved Προβολή αποθηκευμένης έκδοσης + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + label.display_name Εμφανιζόμενο όνομα + + templates/content/edit.html.twig:22 + caption.duplicate Αντίγραφη - - - label.current_password - κωδικός πρόσβασης - - + + src/Form/ChangePasswordFormType.php:40 + label.new_password Νέος κωδικός πρόσβασης - - - label.new_password_confirm - Νέος κωδικός πρόσβασης (επιβεβαίωση) - - + + src/Controller/Backend/FileEditController.php:104 + editfile.updated_successfully Το αρχείο ενημερώθηκε με επιτυχία! + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + action.add_user Πρόσθεσε χρήστη + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + success Επιτυχία! + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + user.updated_profile Το προφίλ χρήστη ενημερώθηκε! + + templates/users/_form.html.twig:124 + label.roles Ρόλοι + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + user.new_user Πρόσθεσε χρήστη + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + action.view Προβολή - - - caption.folders - Φάκελοι - - + + templates/_partials/fields/slug.html.twig:18 + slug.button_locked Κλειδωμένο + + templates/_partials/fields/slug.html.twig:19 + slug.button_edit Επεξεργασία + + templates/_partials/fields/slug.html.twig:20 + slug.generate_from Δημιουργία από: + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + image.button_upload Μεταφόρτωση + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + image.button_from_library Από βιβλιοθήκη + + templates/_partials/_content_listing.html.twig:23 + listing_table.actions.view_on_site Προβολή στον ιστότοπο + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + listing_table.actions.status_to_publish Αλλαγή κατάστασης σε "δημοσίευση" + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + listing_table.actions.status_to_held Αλλαγή κατάστασης σε "σε αναμονή" + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + listing_table.actions.status_to_draft Αλλαγή κατάστασης σε "πρόχειρο" + + templates/_partials/_content_listing.html.twig:28 + listing_table.actions.duplicate Αντίγραφο + + templates/_partials/_content_listing.html.twig:29 + listing_table.actions.delete Διαγράφη + + templates/_partials/_content_listing.html.twig:30 + listing_table.actions.slug Slug + + templates/_partials/_content_listing.html.twig:31 + listing_table.actions.created_on Δημιουργήθηκε στις + + templates/_partials/_content_listing.html.twig:32 + listing_table.actions.published_on Δημοσιεύτηκε στις + + templates/_partials/_content_listing.html.twig:33 + listing_table.actions.last_modified_on Τελευταία τροποποίηση στις + + templates/content/listing.html.twig:40 + listing_select_box.card_header.selected Επιλεγμένο - - - listing_select_box.card_body.records_passed - Ταυτότητες Επιλεγμένης εγγραφής - - - - - listing_select_box.card_body.remark - (these can be used with something like axios to bulk modify/delete) - - + + templates/_partials/fields/embed.html.twig:20 + editor_embed.content_url Διεύθυνση URL περιεχομένου προς ενσωμάτωση + + templates/_partials/fields/embed.html.twig:21 + editor_embed.placeholder_content_url URL περιεχομένου στο Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + templates/_partials/fields/embed.html.twig:22 + editor_embed.label_height Ύψος + + templates/_partials/fields/embed.html.twig:23 + editor_embed.label_pixel pixel + + templates/_partials/fields/embed.html.twig:24 + editor_embed.label_matched_embed Ενσωμάτωση + + templates/_partials/fields/embed.html.twig:25 + editor_embed.label_preview Προεπισκόπηση + + templates/_partials/fields/embed.html.twig:26 + editor_embed.label_size Μέγεθος + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + image.placeholder_filename Όνομα αρχείου (ανεβάστε ένα νέο αρχείο ή επιλέξτε ένα υπάρχον) + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + image.placeholder_alt_text Χαρακτηριστικό Alt + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + image.placeholder_title Χαρακτηριστικό τίτλου + + templates/_base/layout.html.twig:91 + admin_sidebar.toggler Εναλλαγή πλάτους Μενου + + templates/_base/layout.html.twig:82 + admin_sidebar_toggler.toggle - Toggle menu]]> + Εναλλαγή μενού]]> + + templates/_partials/fields/date.html.twig:39 + editor_date.toggle Εναλλαγή - - - file.label_filename - Ονομα αρχείου - - - - - file.label_title - Τίτλος - - - - - file.button_view - Προβολή εικόνας - - - - - file.button_upload - Ανεβάστε μια εικόνα - - - - - file.remark - image-field.]]> - - - - - file.label_alt - Alt - - - - - filelist.remark - imagelist-field.]]> - - - - - geolocation.label_geolocation - Γεωγραφική τοποθεσία: - - - - - geolocation.label_address - Αναζήτηση διευθύνσεων - - - - - geolocation.placeholder_address - Οδός, ταχυδρομικός κώδικας, πόλη ή άλλη τοποθεσία… - - - - - geolocation.label_lat - Γεωγραφικό πλάτος - - - - - geolocation.label_address_matched - Αντιστοιχισμένη διεύθυνση - - - - - geolocation.label_marker - Τοποθέτηση δείκτη - - - - - geolocation.label_control - Τραβήξτε στην πλησιέστερη διεύθυνση - - - - - geolocation.label_long - Γεωγραφικό μήκος - - - - - imagelist.remark - filelist-field.]]> - - + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + flash_messages.notification Γνωστοποίηση - - - buttons.button_toggle - Εναλλαγή αναπτυσσόμενου μενού - - + + templates/content/_localeswitcher.html.twig:19 + localeswitcher.button_info Δείτε πληροφορίες τοπικής προσαρμογής + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + listing.title_sortby Ταξινόμηση κατά - - - listing.option_select_item - Επιλέξτε αντικείμενο - - - - - listing.title_title - Τίτλος - - + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + listing.placeholder_filter Λέξη-κλειδί για φιλτράρισμα… + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + listing.button_filter Φίλτρο + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + listing.button_clear Εκκαθάριση ταξινόμησης / φίλτρου + + templates/content/view_locales.html.twig:99 + view_locales.badge_default Προκαθορισμένο + + templates/content/view_locales.html.twig:105 + view_locales.badge_ok OK + + templates/content/view_locales.html.twig:101 + view_locales.badge_missing Λείπει + + templates/finder/_files_actions.html.twig:10 + files_cards.button_toggle Εναλλαγή αναπτυσσόμενου μενού + + templates/finder/_files_actions.html.twig:17 + files_cards.action_edit_image_info Επεξεργασία πληροφοριών εικόνας + + templates/finder/_files_actions.html.twig:19 + files_cards.action_edit_file Επεξεργασία αρχείου + + templates/finder/_files_actions.html.twig:25 + files_cards.action_view_original Προβολή πρωτότυπου + + templates/finder/_files_actions.html.twig:36 + files_cards.action_duplicate Αντίγραφη + + templates/finder/_files_actions.html.twig:49 + files_cards.action_delete Διαγραφή + + templates/finder/_files_actions.html.twig:56 + files_cards.label_filename Ονομα αρχείου: + + templates/finder/_files_actions.html.twig:63 + files_cards.label_title Τίτλος: + + templates/finder/_files_actions.html.twig:70 + files_cards.label_dimensions Διαστάσεις: + + templates/finder/_files_actions.html.twig:76 + files_cards.label_filesize Μέγεθος αρχείου: + + templates/finder/_files_actions.html.twig:81 + files_cards.label_created_on Δημιουργήθηκε: + + templates/finder/_files_list.html.twig:75 + files_list.remark Δεν υπάρχουν αρχεία σε αυτόν τον φάκελο. Επιλέξτε ένα φάκελο για πλοήγηση στο. + + templates/finder/_quickselect.html.twig:5 + quickselect.title_select Επιλέξτε ένα αρχείο: + + templates/finder/finder.html.twig:45 + finder.button_list Λίστα + + templates/finder/finder.html.twig:49 + finder.button_cards Καρτέλες + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + extensions.title_desc Περιγραφή: + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + extensions.title_author Συντάκτης: - + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + extensions.title_package Όνομα πακέτου / κλάσης: + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + extensions.title_version Εκδοχή: + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + extensions.info_not_installed Αυτό είναι ένα τοπικό πακέτο, δεν εγκαθίσταται μέσω του Composer + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + extensions.title_class Όνομα κλάσης: + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + extensions.button_configuration Διαμόρφωση + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + extensions.button_source Πηγή + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + extensions.button_remove Κατάργηση επέκτασης + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + extensions.button_disable Απενεργοποίηση επέκτασης + + templates/security/login.html.twig:40 + login.header_login - Bolt » Login + Bolt » Σύνδεση + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + extensions.message_not_implemented Δεν έχει ακόμη εφαρμοστεί. Συγνώμη! + + templates/content/listing.html.twig:6 + listing.title_overview Επισκόπηση για + + templates/finder/_files_cards.html.twig:48 + files_cards.message_no_files Δεν υπάρχουν αρχεία σε αυτόν τον φάκελο. Επιλέξτε έναν φάκελο για πλοήγηση προς, στη δεξιά πλευρά. + + templates/_partials/_content_listing.html.twig:13 + listing_filter.button_compact Συμπαγής + + templates/_partials/_content_listing.html.twig:14 + listing_filter.button_expanded Αναπτυγμένο + + templates/finder/finder.html.twig:41 + finder.label_view Προβολή: + + templates/_partials/_content_listing.html.twig:34 + listing_table.actions.button_edit Επεξεργασία + + src/Controller/Backend/UserController.php:50 + controller.user.title - + Χρήστες και δικαιώματα + + src/Controller/Backend/UserController.php:51 + controller.user.subtitle Για να επεξεργαστείτε τους χρήστες και τα δικαιώματά τους - - - controller.database.check_title - Έλεγχος βάσης δεδομένων - - - - - controller.database.check_subtitle - Για να ελέγξετε τη βάση δεδομένων - - - - - controller.database.update_title - Ενημέρωση βάσης δεδομένων - - - - - controller.database.update_subtitle - Για να ενημερώσετε τη βάση δεδομένων - - - - - controller.omnisearch.title - Omnisearch - - - - - controller.omnisearch.subtitle - Για να κάνετε αναζήτηση, με ολοκλήρωτικο τρόπο - - + + templates/users/listing.html.twig:20 + listing.title_display_name Εμφανιζόμενο όνομα + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + listing.title_username Όνομα χρήστη + + templates/users/listing.html.twig:20 + listing.title_email Ηλ. Διευθηνση + + templates/users/listing.html.twig:21 + listing.title_roles Ρόλοι + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + listing.title_last_seen - Session age + Διάρκεια συνεδρίας + + templates/users/listing.html.twig:23 + listing.title_last_ip Τελευταία IP + + templates/users/listing.html.twig:24 + listing.title_actions Ενέργειες - - - user.not_valid_email - Ακυρο ηλ. ταχυδρομείο - - - - - user.not_valid_password - Λανθασμένος κωδικός. Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον 6 χαρακτήρες. - - + + templates/users/profile.html.twig:11 + user.unknown_user Αγνωστος χρήστης + + templates/media/edit.html.twig:114 + label.predominant_colors__in_image Κυρίαρχα χρώματα στην εικόνα + + public/theme/skeleton/listing.twig:14 + general.phrase.overview-for Επισκόπηση για '%slug%' + + public/theme/skeleton/partials/_recordfooter.twig:40 + general.phrase.related-content Σχετικό περιεχόμενο + + public/theme/skeleton/partials/_footer.twig:13 + action.search Αναζήτηση + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + caption.new_contenttype Νέο %contenttype% + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + caption.untitled_contenttype %contenttype% Χωρίς τίτλο + + templates/users/profile.html.twig:6 + title.edit_user_profile Επεξεργασία προφίλ χρήστη + + templates/pages/menupage.html.twig:13 + caption.redirection_page Σελίδα ανακατεύθυνσης + + templates/media/edit.html.twig:6 + caption.edit_image Επεξεργασία εικόνας - - - general.phrase.select_language - Επιλέξτε γλώσσα - - + + templates/users/_form.html.twig:44 + password.suggested %password%]]> + + templates/media/edit.html.twig:70 + field.cropX - Crop X + Περικοπή X + + templates/media/edit.html.twig:73 + field.cropXPostfix Θεση για κοψιμο στο X-axis, εύρος 0-100. + + templates/media/edit.html.twig:80 + field.cropYPostfix Θεση για κοψιμο στο Y-axis, εύρος 0-100. + + templates/media/edit.html.twig:77 + field.cropY κοψιμο Y + + templates/media/edit.html.twig:84 + field.cropZoom κοψιμο συντελεστής μεγενθυνσης + + templates/media/edit.html.twig:87 + field.cropZoomPostfix συντελεστής κοψιματος, εύρος 1-10. + + templates/content/listing.html.twig:136 + title.contentType Τύπος περιεχομένου - - - listing.title_taxonomy - Ταξινόμηση - - + + templates/_partials/_content_listing.html.twig:44 + listing_table.no_results Δεν βρέθηκαν αποτελέσματα. Διευρύνετε τα κριτήρια φιλτραρίσματος ή προσθέστε λίγο περισσότερο περιεχόμενο. + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + listing.option_select_sortby Επιλέξτε Πεδίο για ταξινόμηση κατά… + + templates/content/edit.html.twig:103 + title.primary_actions Πρωτογενείς δράσεις + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + title.options Επιλογές + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + action.delete Διαγραφή + + templates/users/listing.html.twig:76 + action.enable Ενεργοποιηση + + templates/users/listing.html.twig:71 + action.disable Απενεργοποίηση - - - user.enabled_successfully - Ο χρήστης έχει ενεργοποιηθεί με επιτυχία! - - - - - user.disabled_successfully - Ο χρήστης απενεργοποιήθηκε με επιτυχία! - - + + templates/users/listing.html.twig:124 + listing.title_session_expires Το Session Ληγει + + templates/users/listing.html.twig:125 + listing.title_ip_address IP διεύθυνση + + templates/users/listing.html.twig:126 + listing.title_browser Πρόγραμμα περιήγησης / πλατφόρμα + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + image.button_remove Αφαιρεση + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + image.button_edit_attributes Επεξεργασία χαρακτηριστικών - - - image.button_move_up - Μετακινηση Πανω - - - - - image.button_move_down - Μετακινηση Κατω - - + + templates/_partials/fields/imagelist.html.twig:27 + image.add_new_image Προσθήκη νέας εικόνας + + templates/_partials/fields/filelist.html.twig:25 + file.add_new_file Προσθήκη νέου αρχείου + + templates/_partials/fields/_collection_buttons.html.twig:20 + collection.remove_item Κατάργηση στοιχείου + + templates/_partials/fields/collection.html.twig:6 + collection.add_item Προσθέστε ένα νέο στοιχείο στο '%name%' + + templates/_partials/fields/_collection_buttons.html.twig:5 + collection.move_item_up Μετακινηση Πανω + + templates/_partials/fields/_collection_buttons.html.twig:9 + collection.move_item_down Μετακινηση Κατω + + templates/pages/extensions.html.twig:54 + extensions.button_detailed_view Δείτε λεπτομέρειες + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + extensions.title_configuration Αρχείο διαμόρφωσης + + templates/finder/_uploader.html.twig:17 + caption.file_upload.upload_text Αποθέστε αρχεία εδώ για μεταφόρτωση + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + pager.next Επόμενο + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + pager.previous Προηγούμενο + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + image.button_up Πάνω + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + image.button_down Κάτω + + templates/helpers/_field_blocks.twig:28 + general.phrase.download Κατεβάστε + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + caption.logviewer προβολή αρχείων καταγραφής + + templates/pages/logviewer.html.twig:39 + label.request Αίτηση + + templates/pages/logviewer.html.twig:53 + label.trace Ιχνος + + templates/pages/logviewer.html.twig:71 + label.context πλαίσιο + + templates/pages/logviewer.html.twig:19 + label.id ID + + templates/pages/logviewer.html.twig:20 + label.level Επίπεδο + + templates/pages/logviewer.html.twig:23 + label.message Μήνυμα + + templates/pages/logviewer.html.twig:25 + label.timestamp Χρονική σήμανση + + templates/pages/logviewer.html.twig:86 + label.user Χρήστης + + templates/users/listing.html.twig:33 + listing.disabled Απενεργοποίημενο + + templates/_partials/fields/slug.html.twig:17 + slug.button_unlocked Ξεκλειδωτο + + public/theme/skeleton/listing.twig:42 + general.phrase.no-content-found Δεν βρέθηκε περιεχόμενο - + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + - general.phrase.empty-database - Φαίνεται ότι η βάση δεδομένων είναι κενή. Γράψτε κάποιο περιεχόμενο στο Bolt backend ή εκτελέστε την εντολή για να προσθέσετε κάποια στοιχεία (dummy content). + general.phrase.none + Κανένα + + templates/content/view_locales.html.twig:103 + view_locales.badge_empty Αδειο + + templates/content/listing.html.twig:45 + action.update_all Εφαρμόστε σε όλα + + templates/pages/about.html.twig:21 + about.system_info Πληροφορίες συστήματος - - - user.not_valid_display_name - Μη έγκυρο εμφανιζόμενο όνομα - - + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + action.confirm_delete Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το περιεχόμενο; + + src/Form/LoginType.php:38 + placeholder.username_or_email το όνομα χρήστη ή το email σας + + src/Form/LoginType.php:52 + placeholder.password ο κωδικός σας + + src/Menu/BackendMenuBuilder.php:336 + caption.other_content Άλλο περιεχόμενο + + templates/finder/editfile.html.twig:39 + editfile.target_not_writable Η αποθήκευση είναι απενεργοποιημένη, επειδή το αρχείο προορισμού δεν είναι εγγράψιμο. + + templates/_partials/fields/_label.html.twig:6 + label.translatable Αυτό το πεδίο είναι μεταφράσιμο + + templates/pages/logviewer.html.twig:92 + label.content Περιεχόμενο + + src/Controller/Backend/FileEditController.php:148 + file.delete_success Το αρχείο διαγράφηκε με επιτυχία! + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + file.delete_confirm Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το αρχείο? + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + listing.title_filterby Αναζήτηση / Φιλτράρισμα κατά + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + content.status_changed_successfully Η κατάσταση άλλαξε με επιτυχία + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + content.deleted_successfully Το περιεχόμενο διαγράφηκε με επιτυχία + + templates/content/_buttons.html.twig:46 + label.current_status Τρέχουσα κατάσταση + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.published Δημοσιεύτηκε + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.draft Προσχέδιο + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.timed Χρονισμένο + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.held Κατακρατηση + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + collection.confirm_delete Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το στοιχείο συλλογής? + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + upload.allow_file_types Επιτρέπομενοι τύποι αρχείων για μεταφόρτωση + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + upload.max_size Μέγιστο μέγεθος μεταφόρτωσης + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + listing.placeholder_search Αναζήτηση για λέξη-κλειδί… + + templates/pages/dashboard.html.twig:12 + title.filtered_by '%filter%'.]]> + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + action.view_site Δείτε τον ιστότοπο + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + action.new Νέο + + templates/pages/extension_details.html.twig:39 + extensions.no_dependencies Δεν υπάρχουν γνωστές εξαρτήσεις + + templates/pages/extension_details.html.twig:36 + extensions.title_dependencies εξαρτήσεις + + templates/_partials/fields/collection.html.twig:7 + collection.expand_all Ανάπτυξη όλων + + templates/_partials/fields/collection.html.twig:8 + collection.collapse_all Σύμπτυξη όλων + + templates/content/edit.html.twig:45 + content.edit_missing_definition Λείπει ο ορισμός για αυτόν τον τύπο περιεχομένου! Η επεξεργασία αυτής της εγγραφής δεν θα λειτουργήσει όπως αναμενόταν. Ελέγξτε το contenttypes.yaml για να βεβαιωθείτε ότι περιέχει %contenttype%. + + templates/_partials/fields/collection.html.twig:10 + collection.select Επιλογή … + + + src/Form/LoginType.php:34 + + + form.empty_username_email + Παρακαλώ εισάγετε το όνομα χρήστη ή το email σας + + + + + src/Form/LoginType.php:46 + + + form.empty_password + Παρακαλώ εισάγετε τον κωδικό πρόσβασής σας + + + + + src/Form/ResetPasswordRequestFormType.php:28 + + + form.empty_email + Παρακαλώ εισάγετε το email σας + + + + templates/content/listing.html.twig:112 + listing.title_filterby_field Φιλτράρισμα ανά πεδίο + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + + + image.button_from_url + Από URL + + + + + templates/finder/_files_actions.html.twig:29 + + + files_cards.copy_to_clipboard + Αντιγραφή συνδέσμου αρχείου + + + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + + + warning + Προειδοποίηση + + + + + src/Controller/Backend/FilemanagerController.php:150 + + + filemanager.create_folder_already_exists + Ο φάκελος υπάρχει ήδη + + + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + + + filemanager.create_folder_error + Δεν ήταν δυνατή η δημιουργία του φακέλου + + + + + src/Controller/Backend/FilemanagerController.php:155 + + + filemanager.create_folder_success + Ο φάκελος δημιουργήθηκε με επιτυχία. + + + + + src/Controller/Backend/FilemanagerController.php:115 + + + filemanager.delete_folder_successful + Ο φάκελος διαγράφηκε με επιτυχία + + + + + templates/finder/_createfolder.html.twig:13 + + + folder.create_new + Νέος φάκελος + + + + + templates/users/_form.html.twig:172 + + + label.avatar + Άβαταρ + + + + + templates/security/login.html.twig:64 + + + login.forgotpassword + Ξεχάσατε τον κωδικό; + + + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + + + reset_password.request_header + Επαναφορά κωδικού + + + + + templates/reset_password/request.html.twig:42 + + + reset_password.request_description + Εισάγετε τη διεύθυνση email σας και θα σας στείλουμε έναν σύνδεσμο για την επαναφορά του κωδικού σας. + + + + + templates/reset_password/request.html.twig:44 + + + reset_password.request_send + Υποβολή + + + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + + + Email + Email + + + + + templates/reset_password/request.html.twig:47 + + + reset_password.back-to-login + Επιστροφή στη σύνδεση + + + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + + + reset_password.reset_header + Επαναφορά του κωδικού σας + + + + + templates/reset_password/check_email.html.twig:4 + + + reset_password.check_email_sent_header + Το email επαναφοράς κωδικού στάλθηκε + + + + + templates/reset_password/check_email.html.twig:35 + + + reset_password.check_email_sent_text_1 + Στάλθηκε ένα email που περιέχει έναν σύνδεσμο στον οποίο μπορείτε να κάνετε κλικ για να επαναφέρετε τον κωδικό σας. Αυτός ο σύνδεσμος θα λήξει σε %hours% ώρες. + + + + + templates/reset_password/check_email.html.twig:36 + + + reset_password.check_email_sent_text_2 + Αν δεν λάβετε email, ελέγξτε τον φάκελο ανεπιθύμητης αλληλογραφίας ή %tryagain%. + + + + + templates/reset_password/reset.html.twig:37 + + + reset_password.reset_btn + Επαναφορά κωδικού + + + + + templates/reset_password/email.html.twig:1 + + + reset_password.email_title + Γεια σας! + + + + + templates/reset_password/email.html.twig:3 + + + reset_password.email_description + Για να επαναφέρετε τον κωδικό σας, επισκεφθείτε τον παρακάτω σύνδεσμο + + + + + templates/reset_password/email.html.twig:7 + + + reset_password.email_expire + Αυτός ο σύνδεσμος θα λήξει σε %hours% ώρες. + + + + + templates/reset_password/email.html.twig:9 + + + reset_password.email_thanks + Ευχαριστούμε! + + + + + src/Form/ChangePasswordFormType.php:31 + + + reset_password.enter_pwd + Παρακαλώ εισάγετε έναν κωδικό + + + + + src/Form/ChangePasswordFormType.php:43 + + + label.repeat_password + Επανάληψη κωδικού + + + + + src/Form/ChangePasswordFormType.php:45 + + + reset_password.not_matching_pwds + Τα πεδία κωδικού πρέπει να ταιριάζουν. + + + + + src/Form/ChangePasswordFormType.php:35 + + + reset_password.minimum_length + Ο κωδικός σας πρέπει να έχει τουλάχιστον %s χαρακτήρες + + + + + src/Controller/Backend/ResetPasswordController.php:99 + + + reset_password.no_token + Δεν βρέθηκε διακριτικό επαναφοράς κωδικού στη διεύθυνση URL ή στη συνεδρία. + + + + + src/Controller/Backend/ResetPasswordController.php:134 + + + reset_password.reset_successful + Ο κωδικός σας επαναφέρθηκε με επιτυχία. + + + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + + + reset_password.problem_with_request + Παρουσιάστηκε πρόβλημα κατά τον χειρισμό του αιτήματος επαναφοράς κωδικού - %s + + + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + + + label.filtered_by + Φιλτραρισμένο κατά + + + + + templates/content/_buttons.html.twig:34 + + + action.preview_secure_share + Κοινοποίηση ασφαλούς συνδέσμου προεπισκόπησης + + + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + + + action.stop_impersonating + Διακοπή υπόδυσης χρήστη + + + + + templates/users/listing.html.twig:82 + + + action.impersonate + Υπόδυση χρήστη + + + + + templates/widget/maintenance_mode.twig:25 + + + maintenance.activated_warning + Η λειτουργία συντήρησης είναι ενεργοποιημένη + + + + + templates/_partials/fields/embed.html.twig:28 + + + action.refresh + Ανανέωση + + + + + templates/content/listing.html.twig:148 + + + listing_details_box.showing_records + Εμφάνιση εγγραφών %current% από %total% + + + + + templates/content/listing.html.twig:154 + + + listing_details_box.name + Όνομα: %name% (ενικός: %singularName%) + + + + + templates/content/listing.html.twig:160 + + + listing_details_box.slug + Slug: %slug% (ενικός: %singularSlug%) + + + + + templates/content/listing.html.twig:166 + + + listing_details_box.record_template + Πρότυπο εγγραφής: %template% + + + + + templates/content/listing.html.twig:172 + + + listing_details_box.listing_template + Πρότυπο λίστας: %template% (%listingRecords% εγγραφές) + + + + + templates/content/listing.html.twig:186 + + + listing_details_box.locales + Τοπικές ρυθμίσεις: %locales% + + + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + + + action.edit_permissions + Επεξεργασία δικαιωμάτων + + + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + + + general.label.search + Αναζήτηση + + + + + templates/_partials/fields/image.html.twig:25 + + + image.image_preview + Προεπισκόπηση της εικόνας + + + + + templates/_partials/_content_listing.html.twig:15 + + + listing_table.actions.select_all + Επιλογή όλων + + + + + src/Form/LoginType.php:58 + + + label.remembermeduration + Να με θυμάσαι; (%duration% ημέρες) + + + + + templates/users/listing.html.twig:117 + + + listing.current_sessions_header + Τρέχουσες συνεδρίες + + + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + + + image.button_upload_options + Επιλογές μεταφόρτωσης + + + + + templates/content/_taxonomies.html.twig:27 + + + Order + Σειρά + + + + + src/Form/ResetPasswordRequestFormType.php:32 + + + placeholder.email + το email σας + + + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + + + modal.title.file_field + Επιλέξτε ένα αρχείο + + + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + + + modal.title.image_field + Επιλέξτε μια εικόνα + + + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + Μεταφόρτωση από URL + + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + Φόρτωση... + + + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + + + modal.button_save + Αποθήκευση + + + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + + + modal.button_deny + Κλείσιμο + + diff --git a/translations/messages.en.xlf b/translations/messages.en.xlf index f8decc4aa..14592fcb7 100644 --- a/translations/messages.en.xlf +++ b/translations/messages.en.xlf @@ -1,149 +1,27 @@ - - - templates/debug/source_code.twig:26 - - - not_available - Not available - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Error %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - There was an unknown error (HTTP %status_code%) that prevented your request being completed. - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - go back to the homepage.]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - You don't have permission to access this resource. - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - Ask your manager or system administrator to grant you access to this resource. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - We couldn't find the page you requested. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - go back to the homepage.]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - There was an internal server error. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - go back to the homepage.]]> - - - - - templates/debug/source_code.twig:17 - - - title.source_code - Source code used to render this page - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - Controller code - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Twig template code - - - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Edit user - - - templates/debug/source_code.twig:7 - - - action.show_code - Show code - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 action.save @@ -151,21 +29,35 @@ + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + action.do_something Do Something - + - templates/users/change_password.twig:26 + templates/users/listing.html.twig:64 - - action.edit_user - Edit user - - - action.edit Edit @@ -173,35 +65,17 @@ - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 label.username Username - - - templates/debug/source_code.twig:3 - - - help.show_code - Controller and template used to render this page.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - After changing your password, you will be logged out of the application. - - - templates/security/login.twig:4 + templates/security/login.html.twig:4 title.login @@ -210,8 +84,9 @@ - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 label.password @@ -220,7 +95,7 @@ - templates/security/login.twig:84 + templates/security/login.html.twig:60 action.log_in @@ -229,26 +104,17 @@ - templates/content/listing.twig:9 + templates/content/listing.html.twig:58 title.contentlisting Contentlisting - - - templates/users/edit.twig:24 - - - action.change_password - Change password - - - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -257,7 +123,8 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 field.status @@ -266,8 +133,8 @@ - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 field.createdAt @@ -276,8 +143,10 @@ - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 field.modifiedAt @@ -286,7 +155,7 @@ - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 field.publishedAt @@ -295,7 +164,7 @@ - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 field.depublishedAt @@ -304,7 +173,8 @@ - templates/editcontent/media_edit.twig:47 + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 field.title @@ -313,7 +183,7 @@ - templates/editcontent/media_edit.twig:53 + templates/media/edit.html.twig:45 field.description @@ -322,7 +192,7 @@ - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 field.copyright @@ -331,7 +201,7 @@ - templates/editcontent/media_edit.twig:66 + templates/media/edit.html.twig:58 field.originalFilename @@ -340,7 +210,8 @@ - templates/editcontent/media_edit.twig:105 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 field.width @@ -349,7 +220,8 @@ - templates/editcontent/media_edit.twig:112 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 field.height @@ -358,7 +230,7 @@ - templates/editcontent/media_edit.twig:119 + templates/media/edit.html.twig:142 field.filesize @@ -367,7 +239,7 @@ - templates/security/login.twig:61 + src/Form/LoginType.php:31 label.username_or_email @@ -376,7 +248,7 @@ - templates/security/login.twig:80 + src/Form/LoginType.php:58 label.rememberme @@ -385,7 +257,9 @@ - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 about.visit_bolt @@ -394,7 +268,9 @@ - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 about.bolt_documentation @@ -403,7 +279,7 @@ - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 about.bolt_on_github @@ -412,7 +288,7 @@ - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 about.used_libraries @@ -421,27 +297,18 @@ - templates/pages/about.twig:37 + templates/pages/about.html.twig:66 about.list_of_used_libraries Below are the third party libraries that are used by Bolt. - - - src/Form/UserType.php:35 - new - - - label.fullname - Full name - - - src/Form/UserType.php:38 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 label.email @@ -450,8 +317,7 @@ - src/Form/UserType.php:38 - new + templates/users/_form.html.twig:185 label.about @@ -460,8 +326,7 @@ - src/Controller/Backend/UserController.php:33 - new + src/Controller/Backend/UserEditController.php:129 user.updated_successfully @@ -470,9 +335,9 @@ - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 content.updated_successfully @@ -481,8 +346,7 @@ - src/Controller/Backend/EditMediaController.php:157 - new + src/Controller/Backend/MediaEditController.php:88 content.created_successfully @@ -491,8 +355,7 @@ - src/Controller/Backend/EditFileController.php:101 - new + src/Controller/Backend/FileEditController.php:106 editfile.could_not_write @@ -500,505 +363,645 @@ + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + label.locale Locale - - - label.backend_theme - Backend theme - - - - - English (en) - English (en) - - - - - Nederlands (dutch, nl) - Nederlands (dutch, nl) - - - - - Español (Spanish, es) - Español (Spanish, es) - - - - - français (French, fr) - français (French, fr) - - - - - Deutsch (German, de) - Deutsch (German, de) - - - - - Język Polski (Polish, pl) - Język Polski (Polish, pl) - - - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - - - - - Italiano (Italian, it) - Italiano (Italian, it) - - + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + The Default theme The Default theme + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + The Default Dark theme The Default Dark theme + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + WoordPers: Kinda looks like that other CMS WoordPers: Kinda looks like that other CMS + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + caption.dashboard Bolt Dashboard - - - caption.translations: messages - caption.translations: messages - - + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + caption.clear_cache Clear the cache - - - caption.check_database - Check Database - - - - - caption.routing set up - caption.routing set up - - + + src/Menu/BackendMenuBuilder.php:145 + caption.menu_setup Menu set up + + src/Menu/BackendMenuBuilder.php:134 + caption.taxonomies Taxonomies + + src/Menu/BackendMenuBuilder.php:123 + caption.contenttypes Content Types + + src/Menu/BackendMenuBuilder.php:112 + caption.main_configuration Main Configuration + + src/Menu/BackendMenuBuilder.php:99 + caption.users_permissions + + src/Menu/BackendMenuBuilder.php:89 + caption.configuration Configuration + + src/Menu/BackendMenuBuilder.php:77 + caption.settings Settings + + src/Menu/BackendMenuBuilder.php:61 + caption.content Content + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + caption.file_management File management + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + caption.extensions Extensions + + src/Menu/BackendMenuBuilder.php:280 + caption.view_edit_templates + + src/Menu/BackendMenuBuilder.php:270 + caption.uploaded_files Uploaded files + + src/Menu/BackendMenuBuilder.php:157 + caption.routing_setup Routing configuration + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + caption.translations Translations / Labels + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + caption.about_bolt About Bolt + + templates/pages/about.html.twig:11 + caption.bolt_payoff + + templates/content/edit.html.twig:22 + caption.edit Edit + + templates/finder/_uploader.html.twig:8 + caption.file_uploader File uploader + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + caption.meta_information Meta information + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + date Date + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + size Size + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + thumbnail Thumbnail + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + filename Filename + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + actions Actions + + templates/finder/_folders.html.twig:6 + directoryname Directory name - - - action.go - Go - - + + templates/finder/_quickselect.html.twig:9 + form.quick_select_file Quickly select a file to edit… - - - label.quick_select - Quick select - - + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + caption.path Path + + templates/media/edit.html.twig:30 + caption.filename Filename - - - action.visit_site - Visit website - - + + templates/content/listing.html.twig:63 + action.create_new Create a new + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + general.greeting Hey, %name%! + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + action.logout Logout + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + action.edit_profile Edit Profile + + templates/_partials/_flash_messages.html.twig:1 + action.close_alert Close + + src/Menu/BackendMenuBuilder.php:207 + caption.api API + + src/Menu/BackendMenuBuilder.php:165 + caption.all_configuration_files All configuration files + + src/Menu/BackendMenuBuilder.php:177 + caption.maintenance Maintenance - - - caption.fixtures_dummy_content - Fixtures (Dummy Content) - - + + templates/finder/editfile.html.twig:21 + caption.edit_file Edit File - - - caption.installation_checks - Installation checks - - - - - form.select_language - Select language - - - - - field.locale - Locale - - + + templates/content/_localeswitcher.html.twig:7 + field.current_locale Current locale + + templates/content/_localeswitcher.html.twig:14 + field.switch_to_locale Switch to locale + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author Author + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + general.phrase.edit Edit + + public/theme/skeleton/partials/_recordfooter.twig:7 + Unknown Unknown + + public/theme/skeleton/partials/_recordfooter.twig:6 + general.phrase.written-by-on Written by %name% on %date%. + + public/theme/skeleton/partials/_aside.twig:33 + general.phrase.missing-about-page The "About" page is missing + + public/theme/skeleton/partials/_aside.twig:35 + general.phrase.missing-about-page-block The "About" block is missing + + public/theme/skeleton/partials/_aside.twig:53 + contenttypes.generic.recent Recent %contenttypes% + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + general.phrase.search-ellipsis + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + general.phrase.search Search + + public/theme/skeleton/partials/_aside.twig:60 + contenttypes.generic.overview Overview of %contenttypes% + + public/theme/skeleton/partials/_aside.twig:62 + contenttypes.generic.no-recent No recent %contenttype% found + + public/theme/skeleton/partials/_footer.twig:4 + Menu Menu + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + Search Search + + public/theme/skeleton/partials/_recordfooter.twig:14 + general.phrase.permalink Permalink - - - label.displayname - Displayname - - + + src/Controller/Backend/ClearCacheController.php:24 + label.cache_cleared Cache cleared successfully! - - caption.kitchensink - The Kitchensink - - - - parameters: - '%search%': consequatur + src/Menu/BackendMenuBuilder.php:238 - general.phrase.search-results-for-variable - Search results for '%search%'. + caption.kitchensink + The Kitchensink - parameters: - '%search%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:11 general.phrase.search-results-for @@ -1007,8 +1010,7 @@ - parameters: - '%SEARCHTERM%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:51 general.phrase.no-search-results-for @@ -1016,1740 +1018,2417 @@ + + public/theme/skeleton/search.twig:53 + general.phrase.no-search-term-provided Please provide a search term, in order to display relevant results. + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + general.phrase.read-more Read More + + public/theme/skeleton/partials/_footer.twig:17 + general.phrase.built-with-bolt Built with Bolt.]]> + + vendor/bolt/newswidget/templates/news.html.twig:3 + general.latest_bolt_news Latest Bolt News + + templates/content/_buttons.html.twig:19 + action.preview Preview + + templates/content/_buttons.html.twig:58 + action.view_saved View saved version + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + label.display_name Display Name + + templates/content/edit.html.twig:22 + caption.duplicate Duplicate - - - label.current_password - Current Password - - + + src/Form/ChangePasswordFormType.php:40 + label.new_password New Password - - - label.new_password_confirm - New Password (confirm) - - + + src/Controller/Backend/FileEditController.php:104 + editfile.updated_successfully File updated successfully! + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + action.add_user Add User + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + success Success! + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + user.updated_profile User Profile has been updated! + + templates/users/_form.html.twig:124 + label.roles Roles + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + user.new_user New User + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + action.view View - - - caption.folders - Folders - - + + templates/_partials/fields/slug.html.twig:18 + slug.button_locked Locked + + templates/_partials/fields/slug.html.twig:19 + slug.button_edit Edit + + templates/_partials/fields/slug.html.twig:20 + slug.generate_from Generate from: + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + image.button_upload Upload + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + image.button_from_library From library + + templates/_partials/_content_listing.html.twig:23 + listing_table.actions.view_on_site View on Site + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + listing_table.actions.status_to_publish Change status to 'publish' + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + listing_table.actions.status_to_held Change status to 'held' + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + listing_table.actions.status_to_draft Change status to 'draft' + + templates/_partials/_content_listing.html.twig:28 + listing_table.actions.duplicate Duplicate + + templates/_partials/_content_listing.html.twig:29 + listing_table.actions.delete Delete + + templates/_partials/_content_listing.html.twig:30 + listing_table.actions.slug Slug + + templates/_partials/_content_listing.html.twig:31 + listing_table.actions.created_on Created on + + templates/_partials/_content_listing.html.twig:32 + listing_table.actions.published_on Published on + + templates/_partials/_content_listing.html.twig:33 + listing_table.actions.last_modified_on Last modified on + + templates/content/listing.html.twig:40 + listing_select_box.card_header.selected Selected - - - listing_select_box.card_body.records_passed - selected record ids passed - - - - - listing_select_box.card_body.remark - (these can be used with something like axios to bulk modify/delete) - - + + templates/_partials/fields/embed.html.twig:20 + editor_embed.content_url URL of content to embed + + templates/_partials/fields/embed.html.twig:21 + editor_embed.placeholder_content_url URL of content on Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + templates/_partials/fields/embed.html.twig:22 + editor_embed.label_height Height + + templates/_partials/fields/embed.html.twig:23 + editor_embed.label_pixel pixel + + templates/_partials/fields/embed.html.twig:24 + editor_embed.label_matched_embed Matched Embed + + templates/_partials/fields/embed.html.twig:25 + editor_embed.label_preview Preview + + templates/_partials/fields/embed.html.twig:26 + editor_embed.label_size Size + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + image.placeholder_filename Filename (upload a new file, or select an existing one) + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + image.placeholder_alt_text Alt attribute + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + image.placeholder_title Title attribute + + templates/_base/layout.html.twig:91 + admin_sidebar.toggler Toggle sidebar width + + templates/_base/layout.html.twig:82 + admin_sidebar_toggler.toggle Toggle menu]]> + + templates/_partials/fields/date.html.twig:39 + editor_date.toggle Toggle - - - file.label_filename - Filename - - - - - file.label_title - Title - - - - - file.button_view - View image - - - - - file.button_upload - Upload an image - - - - - file.remark - image-field.]]> - - - - - file.label_alt - Alt - - - - - filelist.remark - imagelist-field.]]> - - - - - geolocation.label_geolocation - Geolocation: - - - - - geolocation.label_address - Address lookup - - - - - geolocation.placeholder_address - Street, ZIP code, city or other location… - - - - - geolocation.label_lat - Latitude - - - - - geolocation.label_address_matched - Matched address - - - - - geolocation.label_marker - Marker placement - - - - - geolocation.label_control - Snap to nearest address - - - - - geolocation.label_long - Longitude - - - - - imagelist.remark - filelist-field.]]> - - + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + flash_messages.notification Notification - - - buttons.button_toggle - Toggle Dropdown - - + + templates/content/_localeswitcher.html.twig:19 + localeswitcher.button_info See Localization info + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + listing.title_sortby Sort by - - - listing.option_select_item - Select item - - - - - listing.title_title - Title - - + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + listing.placeholder_filter Keyword to filter on… + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + listing.button_filter Filter + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + listing.button_clear Clear sort/filter + + templates/content/view_locales.html.twig:99 + view_locales.badge_default Default + + templates/content/view_locales.html.twig:105 + view_locales.badge_ok OK + + templates/content/view_locales.html.twig:101 + view_locales.badge_missing Missing + + templates/finder/_files_actions.html.twig:10 + files_cards.button_toggle Toggle Dropdown + + templates/finder/_files_actions.html.twig:17 + files_cards.action_edit_image_info Edit image information + + templates/finder/_files_actions.html.twig:19 + files_cards.action_edit_file Edit file in editor + + templates/finder/_files_actions.html.twig:25 + files_cards.action_view_original View original + + templates/finder/_files_actions.html.twig:36 + files_cards.action_duplicate Duplicate + + templates/finder/_files_actions.html.twig:49 + files_cards.action_delete Delete + + templates/finder/_files_actions.html.twig:56 + files_cards.label_filename Filename: + + templates/finder/_files_actions.html.twig:63 + files_cards.label_title Title: + + templates/finder/_files_actions.html.twig:70 + files_cards.label_dimensions Dimensions: + + templates/finder/_files_actions.html.twig:76 + files_cards.label_filesize Filesize: + + templates/finder/_files_actions.html.twig:81 + files_cards.label_created_on Created on: + + templates/finder/_files_list.html.twig:75 + files_list.remark No files are present in this folder. Select a folder to navigate to. + + templates/finder/_quickselect.html.twig:5 + quickselect.title_select Select a file: + + templates/finder/finder.html.twig:45 + finder.button_list List + + templates/finder/finder.html.twig:49 + finder.button_cards Cards + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + extensions.title_desc Description: + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + extensions.title_author Author: + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + extensions.title_package Package / Class name: + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + extensions.title_version Version: + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + extensions.info_not_installed This is a local package, not installed through Composer + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + extensions.title_class Class name: + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + extensions.button_configuration Configuration + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + extensions.button_source Source + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + extensions.button_remove Remove extension + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + extensions.button_disable Disable extension + + templates/security/login.html.twig:40 + login.header_login Bolt » Login + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + extensions.message_not_implemented Not yet implemented. Sorry! + + templates/content/listing.html.twig:6 + listing.title_overview Overview for + + templates/finder/_files_cards.html.twig:48 + files_cards.message_no_files No files are present in this folder. Select a folder to navigate to, on the right-hand side. + + templates/_partials/_content_listing.html.twig:13 + listing_filter.button_compact Compact + + templates/_partials/_content_listing.html.twig:14 + listing_filter.button_expanded Expanded + + templates/finder/finder.html.twig:41 + finder.label_view View: + + templates/_partials/_content_listing.html.twig:34 + listing_table.actions.button_edit Edit + + src/Controller/Backend/UserController.php:50 + controller.user.title + + src/Controller/Backend/UserController.php:51 + controller.user.subtitle To edit users and their permissions - - - controller.database.check_title - Database Check - - - - - controller.database.check_subtitle - To check the Database - - - - - controller.database.update_title - Database Update - - - - - controller.database.update_subtitle - To update the Database - - - - - controller.omnisearch.title - Omnisearch - - - - - controller.omnisearch.subtitle - To search, in an omni-like fashion - - + + templates/users/listing.html.twig:20 + listing.title_display_name Display name + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + listing.title_username Username + + templates/users/listing.html.twig:20 + listing.title_email Email + + templates/users/listing.html.twig:21 + listing.title_roles Roles + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + listing.title_last_seen Session age + + templates/users/listing.html.twig:23 + listing.title_last_ip Last IP + + templates/users/listing.html.twig:24 + listing.title_actions Actions - - - user.not_valid_email - Invalid email - - - - - user.not_valid_password - Invalid password. The password should contain at least 6 characters. - - + + templates/users/profile.html.twig:11 + user.unknown_user Unknown user + + templates/media/edit.html.twig:114 + label.predominant_colors__in_image Predominant colors in image + + public/theme/skeleton/listing.twig:14 + general.phrase.overview-for Overview for '%slug%' + + public/theme/skeleton/partials/_recordfooter.twig:40 + general.phrase.related-content Related content + + public/theme/skeleton/partials/_footer.twig:13 + action.search Search + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + caption.new_contenttype New %contenttype% + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + caption.untitled_contenttype Untitled %contenttype% + + templates/users/profile.html.twig:6 + title.edit_user_profile Edit user profile + + templates/pages/menupage.html.twig:13 + caption.redirection_page Redirection page + + templates/media/edit.html.twig:6 + caption.edit_image Edit Image - - - general.phrase.select_language - Select Language - - + + templates/users/_form.html.twig:44 + password.suggested %password%]]> + + templates/media/edit.html.twig:70 + field.cropX Crop X + + templates/media/edit.html.twig:73 + field.cropXPostfix Position of crop on X-axis, range 0-100. + + templates/media/edit.html.twig:80 + field.cropYPostfix Position of crop on Y-axis, range 0-100. + + templates/media/edit.html.twig:77 + field.cropY Crop Y + + templates/media/edit.html.twig:84 + field.cropZoom Crop zoomfactor + + templates/media/edit.html.twig:87 + field.cropZoomPostfix Zoom-level of crop, range 1-10. + + templates/content/listing.html.twig:136 + title.contentType Content Type - - - listing.title_taxonomy - Taxonomy - - + + templates/_partials/_content_listing.html.twig:44 + listing_table.no_results No results found. Broaden the filtering criteria, or add some more content. + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + listing.option_select_sortby Select Field to sort by… + + templates/content/edit.html.twig:103 + title.primary_actions Primary Actions + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + title.options Options + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + action.delete Delete + + templates/users/listing.html.twig:76 + action.enable Enable + + templates/users/listing.html.twig:71 + action.disable Disable - - - user.enabled_successfully - User has been enabled successfully! - - - - - user.disabled_successfully - User has been disabled successfully! - - + + templates/users/listing.html.twig:124 + listing.title_session_expires Session expires + + templates/users/listing.html.twig:125 + listing.title_ip_address IP address + + templates/users/listing.html.twig:126 + listing.title_browser Browser / platform + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + image.button_remove Remove + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + image.button_edit_attributes Edit attributes - - - image.button_move_up - Move up - - - - - image.button_move_down - Move down - - + + templates/_partials/fields/imagelist.html.twig:27 + image.add_new_image Add new image + + templates/_partials/fields/filelist.html.twig:25 + file.add_new_file Add new file + + templates/_partials/fields/_collection_buttons.html.twig:20 + collection.remove_item Remove item + + templates/_partials/fields/collection.html.twig:6 + collection.add_item Add a new item to '%name%' + + templates/_partials/fields/_collection_buttons.html.twig:5 + collection.move_item_up Move up + + templates/_partials/fields/_collection_buttons.html.twig:9 + collection.move_item_down Move down + + templates/pages/extensions.html.twig:54 + extensions.button_detailed_view View details + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + extensions.title_configuration Configuration file + + templates/finder/_uploader.html.twig:17 + caption.file_upload.upload_text Drop files here to upload + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + pager.next Next + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + pager.previous Previous + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + image.button_up Up + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + image.button_down Down + + templates/helpers/_field_blocks.twig:28 + general.phrase.download Download + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + caption.logviewer Log Viewer + + templates/pages/logviewer.html.twig:39 + label.request Request + + templates/pages/logviewer.html.twig:53 + label.trace Trace + + templates/pages/logviewer.html.twig:71 + label.context Context + + templates/pages/logviewer.html.twig:19 + label.id ID + + templates/pages/logviewer.html.twig:20 + label.level Level + + templates/pages/logviewer.html.twig:23 + label.message Message + + templates/pages/logviewer.html.twig:25 + label.timestamp Timestamp + + templates/pages/logviewer.html.twig:86 + label.user User + + templates/users/listing.html.twig:33 + listing.disabled Disabled + + templates/_partials/fields/slug.html.twig:17 + slug.button_unlocked Unlocked + + public/theme/skeleton/listing.twig:42 + general.phrase.no-content-found No content found - + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + - general.phrase.empty-database - It looks like the database is empty. Write some content in the Bolt backend, or run the command to add some fixtures (dummy content). + general.phrase.none + None + + templates/content/view_locales.html.twig:103 + view_locales.badge_empty Empty + + templates/content/listing.html.twig:45 + action.update_all Apply to all + + templates/pages/about.html.twig:21 + about.system_info System Information - - - user.not_valid_display_name - Invalid display name - - + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + action.confirm_delete Are you sure you wish to delete this content? + + src/Form/LoginType.php:38 + placeholder.username_or_email your username or email + + src/Form/LoginType.php:52 + placeholder.password your password + + src/Menu/BackendMenuBuilder.php:336 + caption.other_content Other Content + + templates/finder/editfile.html.twig:39 + editfile.target_not_writable Saving is disabled, because the target file is not writable. + + templates/_partials/fields/_label.html.twig:6 + label.translatable This field is translatable + + templates/pages/logviewer.html.twig:92 + label.content Content + + src/Controller/Backend/FileEditController.php:148 + file.delete_success File deleted successfully! + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + file.delete_confirm Are you sure you wish to delete this file? + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + listing.title_filterby Search / Filter by + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + content.status_changed_successfully Status changed successfully + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + content.deleted_successfully Content deleted successfully + + templates/content/_buttons.html.twig:46 + label.current_status Current status + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.published Published + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.draft Draft + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.timed Timed + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.held Held + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + collection.confirm_delete Are you sure you wish to delete this collection item? + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + upload.allow_file_types File types allowed for upload + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + upload.max_size Maximum upload size + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + listing.placeholder_search Search for keyword … + + templates/pages/dashboard.html.twig:12 + title.filtered_by '%filter%'.]]> + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + action.view_site View website + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + action.new New + + templates/pages/extension_details.html.twig:39 + extensions.no_dependencies No known dependencies + + templates/pages/extension_details.html.twig:36 + extensions.title_dependencies Dependencies + + templates/_partials/fields/collection.html.twig:7 + collection.expand_all Expand all + + templates/_partials/fields/collection.html.twig:8 + collection.collapse_all Collapse all + + templates/content/edit.html.twig:45 + content.edit_missing_definition The definition for this ContentType is missing! Editing this record will not work as expected. Please check your contenttypes.yaml to make sure that it contains %contenttype%. + + templates/_partials/fields/collection.html.twig:10 + collection.select Select … + + src/Form/LoginType.php:34 + form.empty_username_email Please enter your username or email + + src/Form/LoginType.php:46 + form.empty_password Please enter your password + + src/Form/ResetPasswordRequestFormType.php:28 + form.empty_email Please enter your email + + templates/content/listing.html.twig:112 + listing.title_filterby_field Filter by field + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + image.button_from_url From URL + + templates/finder/_files_actions.html.twig:29 + files_cards.copy_to_clipboard Copy link to file + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + warning Warning + + src/Controller/Backend/FilemanagerController.php:150 + filemanager.create_folder_already_exists Folder already exists + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + filemanager.create_folder_error Could not create folder + + src/Controller/Backend/FilemanagerController.php:155 + filemanager.create_folder_success Folder created successfully. + + src/Controller/Backend/FilemanagerController.php:115 + filemanager.delete_folder_successful Folder deleted successfully + + templates/finder/_createfolder.html.twig:13 + folder.create_new New folder - - - title.add_user - Add User - - + + templates/users/_form.html.twig:172 + label.avatar Avatar + + templates/security/login.html.twig:64 + login.forgotpassword Forgot Password + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + reset_password.request_header Reset Password + + templates/reset_password/request.html.twig:42 + reset_password.request_description Enter your email address and we will send you a link to reset your password. + + templates/reset_password/request.html.twig:44 + reset_password.request_send Submit + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + Email Email + + templates/reset_password/request.html.twig:47 + reset_password.back-to-login Back to Login + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + reset_password.reset_header Reset your password + + templates/reset_password/check_email.html.twig:4 + reset_password.check_email_sent_header Password Reset Email Sent + + templates/reset_password/check_email.html.twig:35 + reset_password.check_email_sent_text_1 An email has been sent that contains a link you can click to reset your password. This link will expire in %hours% hour(s). + + templates/reset_password/check_email.html.twig:36 + reset_password.check_email_sent_text_2 If you don't receive an email please check your spam folder or %tryagain%. + + templates/reset_password/reset.html.twig:37 + reset_password.reset_btn Reset Password + + templates/reset_password/email.html.twig:1 + reset_password.email_title Hi! + + templates/reset_password/email.html.twig:3 + reset_password.email_description To reset your password, please visit the following link + + templates/reset_password/email.html.twig:7 + reset_password.email_expire This link will expire in %hours% hour(s). + + templates/reset_password/email.html.twig:9 + reset_password.email_thanks Cheers! + + src/Form/ChangePasswordFormType.php:31 + reset_password.enter_pwd Please enter a password + + src/Form/ChangePasswordFormType.php:43 + label.repeat_password Repeat Password + + src/Form/ChangePasswordFormType.php:45 + reset_password.not_matching_pwds The password fields must match. + + src/Form/ChangePasswordFormType.php:35 + reset_password.minimum_length Your password should be at least %s characters + + src/Controller/Backend/ResetPasswordController.php:99 + reset_password.no_token No reset password token found in the URL or in the session. + + src/Controller/Backend/ResetPasswordController.php:134 + reset_password.reset_successful Your password has been reset successfully. + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + reset_password.problem_with_request There was a problem handling your password reset request - %s + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + label.filtered_by filtered by + + templates/content/_buttons.html.twig:34 + action.preview_secure_share Share secure preview link + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + action.stop_impersonating stop impersonating + + templates/users/listing.html.twig:82 + action.impersonate impersonate + + templates/widget/maintenance_mode.twig:25 + maintenance.activated_warning Maintenance mode is activated + + templates/_partials/fields/embed.html.twig:28 + action.refresh Refresh + + templates/content/listing.html.twig:148 + listing_details_box.showing_records Showing records %current% of %total% + + templates/content/listing.html.twig:154 + listing_details_box.name Name: %name% (singular: %singularName%) + + templates/content/listing.html.twig:160 + listing_details_box.slug Slug: %slug% (singular: %singularSlug%) + + templates/content/listing.html.twig:166 + listing_details_box.record_template Record template: %template% + + templates/content/listing.html.twig:172 + listing_details_box.listing_template Listing template: %template% (%listingRecords% records) + + templates/content/listing.html.twig:186 + listing_details_box.locales Locales: %locales% + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + action.edit_permissions Edit Permissions + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + general.label.search Search + + templates/_partials/fields/image.html.twig:25 + image.image_preview Preview the image + + templates/_partials/_content_listing.html.twig:15 + listing_table.actions.select_all Select all + + src/Form/LoginType.php:58 + label.remembermeduration Remember me? (%duration% days) + + templates/users/listing.html.twig:117 + listing.current_sessions_header Current sessions + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + image.button_upload_options Upload Options - - - Share secure preview link - Share secure preview link - - + + templates/content/_taxonomies.html.twig:27 + Order Order + + src/Form/ResetPasswordRequestFormType.php:32 + placeholder.email your email - - - You have to login in order to access this page. - You have to login in order to access this page. - - + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + modal.title.file_field Select a file + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + modal.title.image_field Select an image + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + modal.title.upload_from_url Upload from URL + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + modal.text.loading Loading... + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + modal.button_save Save + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + modal.button_deny Close diff --git a/translations/messages.es.xlf b/translations/messages.es.xlf index 24e594609..d8d49ed80 100644 --- a/translations/messages.es.xlf +++ b/translations/messages.es.xlf @@ -3,1508 +3,3432 @@ - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Editar Usuario - + - templates/pages/about.twig:25 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 - about.visit_bolt - Visita Boltcms.io + action.save + Guardar - + - templates/pages/about.twig:28 + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 - about.bolt_documentation - Documentación de Bolt + action.do_something + Haz algo - + + + templates/users/listing.html.twig:64 + - action.visit_site - Visitar Sitio + action.edit + Editar - + + + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 + - action.create_new - Crear Nuevo + label.username + Nombre de usuario - + + + templates/security/login.html.twig:4 + - general.greeting - Hola %name% + title.login + Inicio de sesión - + + + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 + - action.logout - Cerrar Sesión + label.password + Contraseña - + + + templates/security/login.html.twig:60 + - action.edit_profile - Editar Perfil + action.log_in + Iniciar sesión - + + + templates/content/listing.html.twig:58 + - action.close_alert - Cerrar + title.contentlisting + Listado de contenido - + + + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 + - user.unknown_user - Usuario desconocido + field.id + ID - + + + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 + - general.latest_bolt_news - Últimas noticias de Bolt + field.status + Estado - + + + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 + - general.phrase.read-more - Leer más + field.createdAt + Fecha de creación - + + + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 + - caption.content - Contenido + field.modifiedAt + Fecha de modificación - + + + templates/content/_fields_aside.html.twig:15 + - caption.settings - Opciones + field.publishedAt + Fecha de publicación - + + + templates/content/_fields_aside.html.twig:24 + - caption.configuration - Configuración + field.depublishedAt + Fecha de retirada de la publicación - + + + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 + - caption.users_permissions - Usuarios y permisos + field.title + Título - + + + templates/media/edit.html.twig:45 + - caption.main_configuration - Configuración principal + field.description + Descripción - + + + templates/media/edit.html.twig:51 + - caption.contenttypes - Tipos de Contenido + field.copyright + Derechos de autor - + + + templates/media/edit.html.twig:58 + - caption.taxonomies - Taxonomías + field.originalFilename + Nombre original del archivo - + + + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 + - caption.menu_setup - Configurar menú + field.width + Ancho - + + + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 + - caption.routing_setup - Configurar enrutamiento + field.height + Alto - + + + templates/media/edit.html.twig:142 + - caption.all_configuration_files - Archivos de configuración + field.filesize + Tamaño del archivo - + + + src/Form/LoginType.php:31 + - caption.maintenance - Mantenimiento + label.username_or_email + Usuario o correo electrónico - + + + src/Form/LoginType.php:58 + - caption.extensions - Extensiones + label.rememberme + Recordarme - + + + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 + - caption.logviewer - Registro + about.visit_bolt + Visita Boltcms.io - + + + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 + - caption.api - API + about.bolt_documentation + Documentación de Bolt - + + + templates/pages/about.html.twig:60 + - caption.clear_cache - Borrar caché + about.bolt_on_github + Bolt en Github - + + + templates/pages/about.html.twig:64 + - caption.kitchensink - Demonstración + about.used_libraries + Librerías / Componentes utilizados - + + + templates/pages/about.html.twig:66 + - caption.about_bolt - Sobre Bolt + about.list_of_used_libraries + A continuación se muestran las bibliotecas de terceros que utiliza Bolt. - + + + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 + - caption.file_management - Gestión de archivos + label.email + Correo electrónico - + + + templates/users/_form.html.twig:185 + - caption.uploaded_files - Archivos subidos + label.about + Acerca de - + + + src/Controller/Backend/UserEditController.php:129 + - caption.view_edit_templates - Ver y editar plantillas + user.updated_successfully + Actualizado correctamente - + + + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 + - action.view - Ver sitio web + content.updated_successfully + Contenido actualizado correctamente - + + + src/Controller/Backend/MediaEditController.php:88 + - general.phrase.search - Buscar + content.created_successfully + Contenido multimedia creado correctamente - + + + src/Controller/Backend/FileEditController.php:106 + - listing.placeholder_search - Buscar por palabra clave... + editfile.could_not_write + No se pudo escribir el elemento multimedia - - - admin_sidebar_toggler.toggle - Menú - - - + + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + - admin_sidebar.toggler - Alternar el ancho de la barra lateral + label.locale + Región - + + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + - listing_filter.button_compact - Ampliado + The Default theme + El tema predeterminado - + + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + - listing_filter.button_expanded - Reducido + The Default Dark theme + El tema oscuro predeterminado - + + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + - listing_table.actions.view_on_site - Ver en sitio web + WoordPers: Kinda looks like that other CMS + WoordPers: Se parece un poco a ese otro CMS - + + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + - listing_table.actions.status_to_publish - Cambiar estado a 'publicado' + caption.dashboard + Panel de Bolt - + + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + - listing_table.actions.status_to_held - Cambiar estado a 'pendiente' + caption.clear_cache + Borrar caché - + + + src/Menu/BackendMenuBuilder.php:145 + - listing_table.actions.status_to_draft - Cambiar estado a 'borrador' + caption.menu_setup + Configurar menú - + + + src/Menu/BackendMenuBuilder.php:134 + - listing_table.actions.duplicate - Duplicar + caption.taxonomies + Taxonomías - + + + src/Menu/BackendMenuBuilder.php:123 + - listing_table.actions.delete - Eliminar + caption.contenttypes + Tipos de Contenido - + + + src/Menu/BackendMenuBuilder.php:112 + - listing_table.actions.slug - Slug + caption.main_configuration + Configuración principal - + + + src/Menu/BackendMenuBuilder.php:99 + - listing_table.actions.created_on - Fecha de creación + caption.users_permissions + Usuarios y permisos - + + + src/Menu/BackendMenuBuilder.php:89 + - listing_table.actions.published_on - Fecha de publicación + caption.configuration + Configuración - + + + src/Menu/BackendMenuBuilder.php:77 + - listing_table.actions.last_modified_on - Fecha de modificación + caption.settings + Opciones - + + + src/Menu/BackendMenuBuilder.php:61 + - listing_table.actions.button_edit - Editar + caption.content + Contenido - + + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + - pager.previous - Anterior + caption.file_management + Gestión de archivos - + + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + - pager.next - Siguiente + caption.extensions + Extensiones - + + + src/Menu/BackendMenuBuilder.php:280 + - caption.translations - Traducciones/ Etiquetas + caption.view_edit_templates + Ver y editar plantillas - + + + src/Menu/BackendMenuBuilder.php:270 + - caption.dashboard - Bolt Dashboard + caption.uploaded_files + Archivos subidos - + + + src/Menu/BackendMenuBuilder.php:157 + - title.primary_actions - Acciones principales + caption.routing_setup + Configurar enrutamiento - + + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + - action.save - Guardar + caption.translations + Traducciones/ Etiquetas - + + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + - action.preview - Vista previa + caption.about_bolt + Sobre Bolt - + + + templates/pages/about.html.twig:11 + - label.current_status - Estado actual + caption.bolt_payoff + CMS sofisticado, ligero y simple - + + + templates/content/edit.html.twig:22 + - status.published - Publicado + caption.edit + Editar - + + + templates/finder/_uploader.html.twig:8 + - field.modifiedAt - Fecha de modificación + caption.file_uploader + Cargador de archivos - + + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + - caption.untitled_contenttype - %contenttype% sin título + caption.meta_information + Información de metadatos - + + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + - action.view_saved - Ver versión guardada + date + Fecha de creación - + + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + - action.confirm_delete - ¿Está seguro de que desea eliminar este contenido? + size + Tamaño - + + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + - action.delete - Eliminar + thumbnail + Miniatura - + + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + - field.current_locale - Idioma seleccionado + filename + Nombre del archivo - + + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + - field.switch_to_locale - Cambiar idioma + actions + Acciones - + + + templates/finder/_folders.html.twig:6 + - localeswitcher.button_info - Ver información de localización de idiomas + directoryname + Directorio - + + + templates/finder/_quickselect.html.twig:9 + - title.options - Opciones + form.quick_select_file + Seleccione rápidamente un archivo para editar... - + + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + - field.status - Estado + caption.path + Ruta - + + + templates/media/edit.html.twig:30 + - status.held - Pendiente + caption.filename + Nombre del archivo - + + + templates/content/listing.html.twig:63 + - status.timed - Programado + action.create_new + Crear Nuevo - + + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + - status.draft - Borrador + general.greeting + Hola %name% - + + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + - field.publishedAt - Fecha de publicación + action.logout + Cerrar Sesión - + + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + - field.depublishedAt - Fecha de retirada de la publicación + action.edit_profile + Editar Perfil + + + + + templates/_partials/_flash_messages.html.twig:1 + + + action.close_alert + Cerrar + + + + + src/Menu/BackendMenuBuilder.php:207 + + + caption.api + API + + + + + src/Menu/BackendMenuBuilder.php:165 + + + caption.all_configuration_files + Archivos de configuración + + + + + src/Menu/BackendMenuBuilder.php:177 + + + caption.maintenance + Mantenimiento + + + + + templates/finder/editfile.html.twig:21 + + + caption.edit_file + Editar archivo + + + + + templates/content/_localeswitcher.html.twig:7 + + + field.current_locale + Idioma seleccionado + + + + + templates/content/_localeswitcher.html.twig:14 + + + field.switch_to_locale + Cambiar idioma + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author Autor - + + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + - field.createdAt - Fecha de creación + general.phrase.edit + Editar - + + + public/theme/skeleton/partials/_recordfooter.twig:7 + - field.id - ID + Unknown + Desconocido - + + + public/theme/skeleton/partials/_recordfooter.twig:6 + - caption.edit - Editar + general.phrase.written-by-on + Escrito por %name% el %date%. - + + + public/theme/skeleton/partials/_aside.twig:33 + - label.translatable - Este campo es traducible + general.phrase.missing-about-page + Falta la página «Acerca de» - + + + public/theme/skeleton/partials/_aside.twig:35 + - upload.max_size - Tamaño máximo de subida + general.phrase.missing-about-page-block + Falta el bloque «Acerca de» - + + + public/theme/skeleton/partials/_aside.twig:53 + - upload.allow_file_types - Tipos de archivos permitidos para subir + contenttypes.generic.recent + %contenttypes% recientes - + + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + - image.button_upload - Subir + general.phrase.search-ellipsis + - + + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + - image.button_remove - Eliminar + general.phrase.search + Buscar - + + + public/theme/skeleton/partials/_aside.twig:60 + - image.button_from_library - De la librería + contenttypes.generic.overview + Resumen de %contenttypes% - + + + public/theme/skeleton/partials/_aside.twig:62 + - image.placeholder_filename - Nombre de archivo (cargar un archivo nuevo o seleccionar uno existente) + contenttypes.generic.no-recent + No se encontraron %contenttype% recientes - + + + public/theme/skeleton/partials/_footer.twig:4 + - image.placeholder_alt_text - Atributo Alt + Menu + Menú - + + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + - image.button_edit_attributes - Editar atributos + Search + Buscar - + + + public/theme/skeleton/partials/_recordfooter.twig:14 + - slug.button_unlocked - Desbloqueado + general.phrase.permalink + Enlace permanente + + + + + src/Controller/Backend/ClearCacheController.php:24 + + + label.cache_cleared + ¡Caché borrada correctamente! + + + + + src/Menu/BackendMenuBuilder.php:238 + + + caption.kitchensink + Demonstración + + + + + public/theme/skeleton/search.twig:11 + + + general.phrase.search-results-for + Resultados de búsqueda para «%search%». + + + + + public/theme/skeleton/search.twig:51 + + + general.phrase.no-search-results-for + No se encontraron resultados de búsqueda para «%search%». + + + + + public/theme/skeleton/search.twig:53 + + + general.phrase.no-search-term-provided + Introduzca un término de búsqueda para mostrar resultados relevantes. + + + + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + + + general.phrase.read-more + Leer más + + + + + public/theme/skeleton/partials/_footer.twig:17 + + + general.phrase.built-with-bolt + construido con Bolt.]]> + + + + + vendor/bolt/newswidget/templates/news.html.twig:3 + + + general.latest_bolt_news + Últimas noticias de Bolt + + + + + templates/content/_buttons.html.twig:19 + + + action.preview + Vista previa + + + + + templates/content/_buttons.html.twig:58 + + + action.view_saved + Ver versión guardada + + + + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + + + label.display_name + Nombre a mostrar + + + + + templates/content/edit.html.twig:22 + + + caption.duplicate + Duplicar + + + + + src/Form/ChangePasswordFormType.php:40 + + + label.new_password + Nueva contraseña + + + + + src/Controller/Backend/FileEditController.php:104 + + + editfile.updated_successfully + ¡Archivo actualizado correctamente! + + + + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + + + action.add_user + Añadir usuario + + + + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + + + success + Con éxito + + + + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + + + user.updated_profile + ¡El perfil de usuario se ha actualizado! + + + + + templates/users/_form.html.twig:124 + + + label.roles + Roles + + + + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + + + user.new_user + Usuario nuevo + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + + + action.view + Ver sitio web + + + + + templates/_partials/fields/slug.html.twig:18 + + + slug.button_locked + Bloqueado + + + + + templates/_partials/fields/slug.html.twig:19 + + + slug.button_edit + Editar + + + + + templates/_partials/fields/slug.html.twig:20 + + + slug.generate_from + Generar a partir de + + + + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + + + image.button_upload + Subir + + + + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + + + image.button_from_library + De la librería + + + + + templates/_partials/_content_listing.html.twig:23 + + + listing_table.actions.view_on_site + Ver en sitio web + + + + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + + listing_table.actions.status_to_publish + Cambiar estado a 'publicado' + + + + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + + listing_table.actions.status_to_held + Cambiar estado a 'pendiente' + + + + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + + listing_table.actions.status_to_draft + Cambiar estado a 'borrador' + + + + + templates/_partials/_content_listing.html.twig:28 + + + listing_table.actions.duplicate + Duplicar + + + + + templates/_partials/_content_listing.html.twig:29 + + + listing_table.actions.delete + Eliminar + + + + + templates/_partials/_content_listing.html.twig:30 + + + listing_table.actions.slug + Slug + + + + + templates/_partials/_content_listing.html.twig:31 + + + listing_table.actions.created_on + Fecha de creación + + + + + templates/_partials/_content_listing.html.twig:32 + + + listing_table.actions.published_on + Fecha de publicación + + + + + templates/_partials/_content_listing.html.twig:33 + + + listing_table.actions.last_modified_on + Fecha de modificación + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Seleccionado + + + + + templates/_partials/fields/embed.html.twig:20 + + + editor_embed.content_url + URL del contenido a insertar + + + + + templates/_partials/fields/embed.html.twig:21 + + + editor_embed.placeholder_content_url + URL del contenido en Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + + + + templates/_partials/fields/embed.html.twig:22 + + + editor_embed.label_height + Alto + + + + + templates/_partials/fields/embed.html.twig:23 + + + editor_embed.label_pixel + píxeles + + + + + templates/_partials/fields/embed.html.twig:24 + + + editor_embed.label_matched_embed + Contenido encontrado + + + + + templates/_partials/fields/embed.html.twig:25 + + + editor_embed.label_preview + Vista previa + + + + + templates/_partials/fields/embed.html.twig:26 + + + editor_embed.label_size + Dimensiones + + + + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + + + image.placeholder_filename + Nombre de archivo (cargar un archivo nuevo o seleccionar uno existente) + + + + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + + + image.placeholder_alt_text + Atributo Alt + + + + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + + + image.placeholder_title + Atributo title + + + + + templates/_base/layout.html.twig:91 + + + admin_sidebar.toggler + Alternar el ancho de la barra lateral + + + + + templates/_base/layout.html.twig:82 + + + admin_sidebar_toggler.toggle + Alternar menú]]> + + + + + templates/_partials/fields/date.html.twig:39 + + + editor_date.toggle + Alternar + + + + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + + + flash_messages.notification + Notificación + + + + + templates/content/_localeswitcher.html.twig:19 + + + localeswitcher.button_info + Ver información de localización de idiomas + + + + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + + + listing.title_sortby + Ordenar por + + + + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + + + listing.placeholder_filter + Palabra clave para filtrar... + + + + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + + + listing.button_filter + Filtrar + + + + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + + + listing.button_clear + Limpiar orden/filtro + + + + + templates/content/view_locales.html.twig:99 + + + view_locales.badge_default + Predeterminado + + + + + templates/content/view_locales.html.twig:105 + + + view_locales.badge_ok + Bien + + + + + templates/content/view_locales.html.twig:101 + + + view_locales.badge_missing + Falta + + + + + templates/finder/_files_actions.html.twig:10 + + + files_cards.button_toggle + Alternar lista desplegable + + + + + templates/finder/_files_actions.html.twig:17 + + + files_cards.action_edit_image_info + Editar la información de la imagen + + + + + templates/finder/_files_actions.html.twig:19 + + + files_cards.action_edit_file + Editar archivo + + + + + templates/finder/_files_actions.html.twig:25 + + + files_cards.action_view_original + Ver original + + + + + templates/finder/_files_actions.html.twig:36 + + + files_cards.action_duplicate + Duplicar + + + + + templates/finder/_files_actions.html.twig:49 + + + files_cards.action_delete + Eliminar + + + + + templates/finder/_files_actions.html.twig:56 + + + files_cards.label_filename + Nombre del archivo + + + + + templates/finder/_files_actions.html.twig:63 + + + files_cards.label_title + Título + + + + + templates/finder/_files_actions.html.twig:70 + + + files_cards.label_dimensions + Dimensiones + + + + + templates/finder/_files_actions.html.twig:76 + + + files_cards.label_filesize + Tamaño del archivo + + + + + templates/finder/_files_actions.html.twig:81 + + + files_cards.label_created_on + Fecha de creación + + + + + templates/finder/_files_list.html.twig:75 + + + files_list.remark + No hay archivos presentes en esta carpeta. Seleccione una carpeta a la que navegar. + + + + + templates/finder/_quickselect.html.twig:5 + + + quickselect.title_select + Seleccione un archivo + + + + + templates/finder/finder.html.twig:45 + + + finder.button_list + Lista + + + + + templates/finder/finder.html.twig:49 + + + finder.button_cards + Tarjetas + + + + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + + + extensions.title_desc + Descripción + + + + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + + + extensions.title_author + Autor + + + + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + + extensions.title_package + Paquete / Nombre de la Clase + + + + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + + + extensions.title_version + Versión: + + + + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + + extensions.info_not_installed + Este es un paquete local, instalado sin utilizar Composer + + + + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + + + extensions.title_class + Nombre de la Clase: + + + + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + + + extensions.button_configuration + Configuración + + + + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + + + extensions.button_source + Origen + + + + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + + + extensions.button_remove + Eliminar Extensión + + + + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + + + extensions.button_disable + Desactivar Extensión + + + + + templates/security/login.html.twig:40 + + + login.header_login + Bolt » Inicio de sesión + + + + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + + extensions.message_not_implemented + Aún no se ha implementado. ¡Lo siento! + + + + + templates/content/listing.html.twig:6 + + + listing.title_overview + Vista general + + + + + templates/finder/_files_cards.html.twig:48 + + + files_cards.message_no_files + No hay archivos en esta carpeta. Seleccione una carpeta a la que navegar en la parte derecha. + + + + + templates/_partials/_content_listing.html.twig:13 + + + listing_filter.button_compact + Ampliado - + + + templates/_partials/_content_listing.html.twig:14 + - slug.button_locked - Bloqueado + listing_filter.button_expanded + Reducido - + + + templates/finder/finder.html.twig:41 + - slug.button_edit - Editar + finder.label_view + Tipo de vista - + + + templates/_partials/_content_listing.html.twig:34 + - slug.generate_from - Generar a partir de + listing_table.actions.button_edit + Editar - + + + src/Controller/Backend/UserController.php:50 + - editor_date.toggle - Alternar + controller.user.title + Usuarios y permisos - + + + src/Controller/Backend/UserController.php:51 + - listing_select_box.card_header.selected - Seleccionado + controller.user.subtitle + Gestionar usuarios y permisos - + + + templates/users/listing.html.twig:20 + - action.update_all - Aplicar a todo + listing.title_display_name + Nombre a mostrar - + + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + - title.contentlisting - Listado de contenido + listing.title_username + Nombre de usuario - + + + templates/users/listing.html.twig:20 + - listing.title_sortby - Ordenar por + listing.title_email + Correo electrónico - + + + templates/users/listing.html.twig:21 + - listing.title_filterby - Buscar / Filtrar por + listing.title_roles + Roles - + + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + - listing.option_select_sortby - Seleccione el campo de ordenación... + listing.title_last_seen + Sesión creada - + + + templates/users/listing.html.twig:23 + - listing.placeholder_filter - Palabra clave para filtrar... + listing.title_last_ip + Última dirección IP - + + + templates/users/listing.html.twig:24 + - listing.button_filter - Filtrar + listing.title_actions + Acciones - + + + templates/users/profile.html.twig:11 + - listing.title_overview - Vista general + user.unknown_user + Usuario desconocido - + + + templates/media/edit.html.twig:114 + - title.contentType - Tipo de Contenido + label.predominant_colors__in_image + Colores predominantes en la imagen - + + + public/theme/skeleton/listing.twig:14 + - view_locales.badge_missing - Falta + general.phrase.overview-for + Resumen de «%slug%» - + + + public/theme/skeleton/partials/_recordfooter.twig:40 + - view_locales.badge_ok - Bien + general.phrase.related-content + Contenido relacionado - + + + public/theme/skeleton/partials/_footer.twig:13 + - view_locales.badge_default - Predeterminado + action.search + Buscar - + + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + - general.phrase.edit - Editar + caption.new_contenttype + Nuevo %contenttype% - + + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + - editor_embed.content_url - URL del contenido a insertar + caption.untitled_contenttype + %contenttype% sin título - + + + templates/users/profile.html.twig:6 + - editor_embed.placeholder_content_url - URL del contenido en Facebook, Twitter, Soundcloud, Youtube, Vimeo… + title.edit_user_profile + Editar perfil de usuario - + + + templates/pages/menupage.html.twig:13 + - editor_embed.label_height - Alto + caption.redirection_page + Página de redirección - + + + templates/media/edit.html.twig:6 + - editor_embed.label_pixel - píxeles + caption.edit_image + Editar imagen - + + + templates/users/_form.html.twig:44 + - editor_embed.label_matched_embed - Contenido encontrado + password.suggested + %password%]]> - + + + templates/media/edit.html.twig:70 + - editor_embed.label_preview - Vista previa + field.cropX + Recortar ancho de la imagen - + + + templates/media/edit.html.twig:73 + - editor_embed.label_size - Dimensiones + field.cropXPostfix + Posición de recorte en el eje horizontal, rango 0-100 - + + + templates/media/edit.html.twig:80 + - image.button_up - Arriba + field.cropYPostfix + Posición de recorte en el eje vertical, rango 0-100 - + + + templates/media/edit.html.twig:77 + - image.button_down - Abajo + field.cropY + Recortar alto de la imagen - + + + templates/media/edit.html.twig:84 + - image.add_new_image - Añadir nueva imagen + field.cropZoom + Enfoque para el recorte - + + + templates/media/edit.html.twig:87 + - image.placeholder_title - Atributo title + field.cropZoomPostfix + Nivel de enfoque para el recorte, rango 1-10. - + + + templates/content/listing.html.twig:136 + - file.add_new_file - Añadir nuevo archivo + title.contentType + Tipo de Contenido - + + + templates/_partials/_content_listing.html.twig:44 + - collection.add_item - Añadir elemento + listing_table.no_results + No se encontraron resultados. Amplíe los criterios de filtrado o añada más contenido. - + + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + - collection.move_item_up - Subir + listing.option_select_sortby + Seleccione el campo de ordenación... - + + + templates/content/edit.html.twig:103 + - collection.move_item_down - Bajar + title.primary_actions + Acciones principales - + + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + - collection.remove_item - Eliminar + title.options + Opciones - + + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + - collection.confirm_delete - ¿Está seguro de que desea eliminar este elemento de la Colección? + action.delete + Eliminar - + + + templates/users/listing.html.twig:76 + - controller.user.title - Usuarios y permisos + action.enable + Activar - + + + templates/users/listing.html.twig:71 + - listing.title_display_name - Nombre a mostrar + action.disable + Desactivar - + + + templates/users/listing.html.twig:124 + - listing.title_username - Nombre de usuario + listing.title_session_expires + Sesión expira - + + + templates/users/listing.html.twig:125 + - listing.title_email - Correo electrónico + listing.title_ip_address + Dirección IP - + + + templates/users/listing.html.twig:126 + - controller.user.subtitle - Gestionar usuarios y permisos + listing.title_browser + Navegador / Sistema Operativo - + + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + - listing.title_roles - Roles + image.button_remove + Eliminar - + + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + - listing.title_last_seen - Sesión creada + image.button_edit_attributes + Editar atributos - + + + templates/_partials/fields/imagelist.html.twig:27 + - listing.title_last_ip - Última dirección IP + image.add_new_image + Añadir nueva imagen - + + + templates/_partials/fields/filelist.html.twig:25 + - listing.title_actions - Acciones + file.add_new_file + Añadir nuevo archivo - + + + templates/_partials/fields/_collection_buttons.html.twig:20 + - action.edit - Editar + collection.remove_item + Eliminar - + + + templates/_partials/fields/collection.html.twig:6 + - action.disable - Desactivar + collection.add_item + Añadir un elemento nuevo a '%name%' - + + + templates/_partials/fields/_collection_buttons.html.twig:5 + - action.add_user - Añadir usuario + collection.move_item_up + Subir - + + + templates/_partials/fields/_collection_buttons.html.twig:9 + - listing.title_session_expires - Sesión expira + collection.move_item_down + Bajar - + + + templates/pages/extensions.html.twig:54 + - listing.title_ip_address - Dirección IP + extensions.button_detailed_view + Vista detallada - + + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + - listing.title_browser - Navegador / Sistema Operativo + extensions.title_configuration + Archivo de configuración: - + + + templates/finder/_uploader.html.twig:17 + - caption.path - Ruta + caption.file_upload.upload_text + Arrastrar y soltar archivos para subir - + + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + - caption.edit_file - Editar archivo + pager.next + Siguiente - + + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + - caption.meta_information - Información de metadatos + pager.previous + Anterior - + + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + - finder.label_view - Tipo de vista + image.button_up + Arriba - + + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + - finder.button_list - Lista + image.button_down + Abajo - + + + templates/helpers/_field_blocks.twig:28 + - finder.button_cards - Tarjetas + general.phrase.download + Descargar - + + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + - caption.file_uploader - Cargador de archivos + caption.logviewer + Registro - + + + templates/pages/logviewer.html.twig:39 + - caption.file_upload.upload_text - Arrastrar y soltar archivos para subir + label.request + Petición - + + + templates/pages/logviewer.html.twig:53 + - quickselect.title_select - Seleccione un archivo + label.trace + Rastro - + + + templates/pages/logviewer.html.twig:71 + - form.quick_select_file - Seleccione rápidamente un archivo para editar... + label.context + Contexto - + + + templates/pages/logviewer.html.twig:19 + - caption.folders - Carpetas + label.id + ID - + + + templates/pages/logviewer.html.twig:20 + - directoryname - Directorio + label.level + Nivel - + + + templates/pages/logviewer.html.twig:23 + - actions - Acciones + label.message + Mensaje - + + + templates/pages/logviewer.html.twig:25 + - filename - Nombre del archivo + label.timestamp + Marca temporal - + + + templates/pages/logviewer.html.twig:86 + - thumbnail - Miniatura + label.user + Usuario - + + + templates/users/listing.html.twig:33 + - size - Tamaño + listing.disabled + Desactivado - + + + templates/_partials/fields/slug.html.twig:17 + - date - Fecha de creación + slug.button_unlocked + Desbloqueado - + + + public/theme/skeleton/listing.twig:42 + - files_cards.button_toggle - Alternar lista desplegable + general.phrase.no-content-found + No se encontró contenido - + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + - files_cards.action_edit_file - Editar archivo + general.phrase.none + Ninguno - + + + templates/content/view_locales.html.twig:103 + - files_cards.action_view_original - Ver original + view_locales.badge_empty + Vacío - + + + templates/content/listing.html.twig:45 + - files_cards.action_duplicate - Duplicar + action.update_all + Aplicar a todo - + + + templates/pages/about.html.twig:21 + - file.delete_confirm - ¿Está seguro de que desea eliminar este archivo? + about.system_info + Información del sistema - + + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + - files_cards.action_delete - Eliminar + action.confirm_delete + ¿Está seguro de que desea eliminar este contenido? - + + + src/Form/LoginType.php:38 + - files_cards.label_filename - Nombre del archivo + placeholder.username_or_email + Usuario o correo electrónico de su cuenta - + + + src/Form/LoginType.php:52 + - files_cards.label_filesize - Tamaño del archivo + placeholder.password + Introduzca contraseña de su cuenta - + + + src/Menu/BackendMenuBuilder.php:336 + - files_cards.label_created_on - Fecha de creación + caption.other_content + Otro Contenido - + + + templates/finder/editfile.html.twig:39 + - extensions.title_desc - Descripción + editfile.target_not_writable + El guardado está deshabilitado porque el archivo de destino no admite escritura. - + + + templates/_partials/fields/_label.html.twig:6 + - extensions.title_author - Autor + label.translatable + Este campo es traducible - + + + templates/pages/logviewer.html.twig:92 + - extensions.title_package - Paquete / Nombre de la Clase + label.content + Contenido - + + + src/Controller/Backend/FileEditController.php:148 + - extensions.title_configuration - Archivo de configuración: + file.delete_success + ¡Archivo eliminado correctamente! - + + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + - extensions.title_version - Version + file.delete_confirm + ¿Está seguro de que desea eliminar este archivo? - + + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + - extensions.button_detailed_view - Vista detallada + listing.title_filterby + Buscar / Filtrar por - + + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + - extensions.button_configuration - Configuración + content.status_changed_successfully + Estado cambiado correctamente - + + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + - extensions.button_source - Origen + content.deleted_successfully + Contenido eliminado correctamente - + + + templates/content/_buttons.html.twig:46 + - extensions.button_remove - Eliminar Extensión + label.current_status + Estado actual - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - extensions.button_disable - Desactivar Extensión + status.published + Publicado - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - extensions.message_not_implemented - Aún no se ha implementado. ¡Lo siento! + status.draft + Borrador - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - label.id - ID + status.timed + Programado - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - label.message - Mensaje + status.held + Pendiente - + + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + - label.timestamp - Marca temporal + collection.confirm_delete + ¿Está seguro de que desea eliminar este elemento de la Colección? - + + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + - label.level - Nivel + upload.allow_file_types + Tipos de archivos permitidos para subir - + + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + - label.request - Petición + upload.max_size + Tamaño máximo de subida - + + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + - label.trace - Rastro + listing.placeholder_search + Buscar por palabra clave... - + + + templates/pages/dashboard.html.twig:12 + - label.context - Contexto + title.filtered_by + '%filter%'.]]> - + + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + - label.user - Usuario + action.view_site + Ver sitio web - + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + - flash_messages.notification - Notificación + action.new + Nuevo - + + + templates/pages/extension_details.html.twig:39 + - label.cache_cleared - ¡Caché borrada correctamente! + extensions.no_dependencies + Sin dependencias conocidas - + + + templates/pages/extension_details.html.twig:36 + - success - Con éxito + extensions.title_dependencies + Dependencias - + + + templates/_partials/fields/collection.html.twig:7 + - Button - Botón + collection.expand_all + Expandir todo - + + + templates/_partials/fields/collection.html.twig:8 + - <strong>Well done!</strong> You successfully read this important alert message. - ¡Bien hecho! Ha leído correctamente este importante mensaje de alerta.]]> + collection.collapse_all + Contraer todo - + + + templates/content/edit.html.twig:45 + - info - Información + content.edit_missing_definition + ¡Falta la definición de este ContentType! La edición de este registro no funcionará como se espera. Compruebe su archivo contenttypes.yaml para asegurarse de que contiene %contenttype%. - + + + templates/_partials/fields/collection.html.twig:10 + - warning - Advertencia + collection.select + Seleccionar … - + + + src/Form/LoginType.php:34 + - danger - Peligro + form.empty_username_email + Introduzca su nombre de usuario o correo electrónico - + + + src/Form/LoginType.php:46 + - 57d589f - ¡Atención! Esta alerta necesita su atención, pero no es muy importante.]]> + form.empty_password + Introduzca su contraseña - + + + src/Form/ResetPasswordRequestFormType.php:28 + - <strong>Warning!</strong> Better check yourself, you're not looking too good. - ¡Atención! Compruebe que todo está en orden, algo ha podido ir mal.]]> + form.empty_email + Introduzca su correo electrónico - + + + templates/content/listing.html.twig:112 + - action.do_something - Haz algo + listing.title_filterby_field + Filtrar por campo - + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + - <strong>Oh snap!</strong> Change a few things up and try submitting again. - ¡Vaya! Haga algunos cambios e inténtelo de nuevo.]]> + image.button_from_url + Desde URL - + + + templates/finder/_files_actions.html.twig:29 + - caption.bolt_payoff - CMS sofisticado, ligero y simple + files_cards.copy_to_clipboard + Copiar enlace al archivo - + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + - about.system_info - Información del sistema + warning + Advertencia - - - about.bolt_on_github - Bolt en Github + + + src/Controller/Backend/FilemanagerController.php:150 + + + filemanager.create_folder_already_exists + La carpeta ya existe - + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + - about.used_libraries - Librerías / Componentes utilizados + filemanager.create_folder_error + No se pudo crear la carpeta - + + + src/Controller/Backend/FilemanagerController.php:155 + - about.list_of_used_libraries - A continuación se muestran las bibliotecas de terceros que utiliza Bolt. + filemanager.create_folder_success + Carpeta creada correctamente. - + + + src/Controller/Backend/FilemanagerController.php:115 + - caption.redirection_page - Página de redirección + filemanager.delete_folder_successful + Carpeta eliminada correctamente - + + + templates/finder/_createfolder.html.twig:13 + - files_cards.label_dimensions - Dimensiones + folder.create_new + Nueva carpeta - + + + templates/users/_form.html.twig:172 + - files_cards.label_title - Título + label.avatar + Avatar - + + + templates/security/login.html.twig:64 + - files_cards.action_edit_image_info - Editar la información de la imagen + login.forgotpassword + Contraseña olvidada - + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + - files_list.remark - No hay archivos presentes en esta carpeta. Seleccione una carpeta a la que navegar. + reset_password.request_header + Restablecer contraseña - + + + templates/reset_password/request.html.twig:42 + - label.predominant_colors__in_image - Colores predominantes en la imagen + reset_password.request_description + Introduzca su dirección de correo electrónico y le enviaremos un enlace para restablecer su contraseña. - + + + templates/reset_password/request.html.twig:44 + - field.width - Ancho + reset_password.request_send + Enviar - + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + - field.height - Alto + Email + Correo electrónico - + + + templates/reset_password/request.html.twig:47 + - field.filesize - Tamaño del archivo + reset_password.back-to-login + Volver al inicio de sesión - + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + - caption.edit_image - Editar imagen + reset_password.reset_header + Restablezca su contraseña - + + + templates/reset_password/check_email.html.twig:4 + - caption.filename - Nombre del archivo + reset_password.check_email_sent_header + Correo de restablecimiento de contraseña enviado - + + + templates/reset_password/check_email.html.twig:35 + - field.title - Título + reset_password.check_email_sent_text_1 + Se ha enviado un correo electrónico que contiene un enlace en el que puede hacer clic para restablecer su contraseña. Este enlace caducará en %hours% hora(s). - + + + templates/reset_password/check_email.html.twig:36 + - field.description - Descripción + reset_password.check_email_sent_text_2 + Si no recibe el correo electrónico, compruebe su carpeta de spam o %tryagain%. - + + + templates/reset_password/reset.html.twig:37 + - field.copyright - Derechos de autor + reset_password.reset_btn + Restablecer contraseña - + + + templates/reset_password/email.html.twig:1 + - field.originalFilename - Nombre original del archivo + reset_password.email_title + ¡Hola! - + + + templates/reset_password/email.html.twig:3 + - field.cropX - Recortar ancho de la imagen + reset_password.email_description + Para restablecer su contraseña, visite el siguiente enlace - + + + templates/reset_password/email.html.twig:7 + - field.cropXPostfix - Posición de recorte en el eje horizontal, rango 0-100 + reset_password.email_expire + Este enlace caducará en %hours% hora(s). - + + + templates/reset_password/email.html.twig:9 + - field.cropY - Recortar alto de la imagen + reset_password.email_thanks + ¡Saludos! - + + + src/Form/ChangePasswordFormType.php:31 + - field.cropYPostfix - Posición de recorte en el eje vertical, rango 0-100 + reset_password.enter_pwd + Introduzca una contraseña - + + + src/Form/ChangePasswordFormType.php:43 + - field.cropZoom - Enfoque para el recorte + label.repeat_password + Repita la contraseña - + + + src/Form/ChangePasswordFormType.php:45 + - field.cropZoomPostfix - Nivel de enfoque para el recorte, rango 1-10. + reset_password.not_matching_pwds + Los campos de contraseña deben coincidir. - + + + src/Form/ChangePasswordFormType.php:35 + - content.created_successfully - Contenido multimedia creado correctamente + reset_password.minimum_length + Su contraseña debe tener al menos %s caracteres - + + + src/Controller/Backend/ResetPasswordController.php:99 + - title.edit_user_profile - title.edit_user_profile + reset_password.no_token + No se encontró ningún token de restablecimiento de contraseña en la URL ni en la sesión. - + + + src/Controller/Backend/ResetPasswordController.php:134 + - label.username - Nombre de usuario + reset_password.reset_successful + Su contraseña se ha restablecido correctamente. - + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + - label.display_name - Nombre a mostrar + reset_password.problem_with_request + Hubo un problema al procesar su solicitud de restablecimiento de contraseña - %s - + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + - label.password - Contraseña + label.filtered_by + filtrado por - + + + templates/content/_buttons.html.twig:34 + - label.email - Correo electrónico + action.preview_secure_share + Compartir enlace de vista previa seguro - + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + - label.locale - Región + action.stop_impersonating + dejar de suplantar - + + + templates/users/listing.html.twig:82 + - user.new_user - Usuario nuevo + action.impersonate + suplantar - + + + templates/widget/maintenance_mode.twig:25 + - label.roles - Roles + maintenance.activated_warning + El modo de mantenimiento está activado - + + + templates/_partials/fields/embed.html.twig:28 + - password.suggested - %password% ]]> + action.refresh + Actualizar - + + + templates/content/listing.html.twig:148 + - title.login - Inicio de sesión + listing_details_box.showing_records + Mostrando registros %current% de %total% - + + + templates/content/listing.html.twig:154 + - login.header_login - Bolt » Inicio de sesión + listing_details_box.name + Nombre: %name% (singular: %singularName%) - + + + templates/content/listing.html.twig:160 + - label.username_or_email - Usuario o correo electrónico + listing_details_box.slug + Slug: %slug% (singular: %singularSlug%) - + + + templates/content/listing.html.twig:166 + - placeholder.username_or_email - Usuario o correo electrónico de su cuenta + listing_details_box.record_template + Plantilla de registro: %template% - + + + templates/content/listing.html.twig:172 + - placeholder.password - Introduzca contraseña de su cuenta + listing_details_box.listing_template + Plantilla de listado: %template% (%listingRecords% registros) - + + + templates/content/listing.html.twig:186 + - action.log_in - Iniciar sesión + listing_details_box.locales + Idiomas: %locales% - + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + - label.rememberme - Recordarme + action.edit_permissions + Editar permisos - + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + - caption.duplicate - Duplicar + general.label.search + Buscar - + + + templates/_partials/fields/image.html.twig:25 + - view_locales.badge_empty - Vacío + image.image_preview + Vista previa de la imagen - + + + templates/_partials/_content_listing.html.twig:15 + - files_cards.message_no_files - No hay archivos en esta carpeta. Seleccione una carpeta a la que navegar en la parte derecha. + listing_table.actions.select_all + Seleccionar todo - + + + src/Form/LoginType.php:58 + - title.filtered_by - '%filter%'.]]> + label.remembermeduration + ¿Recordarme? (%duration% días) - + + + templates/users/listing.html.twig:117 + - extensions.info_not_installed - Este es un paquete local, instalado sin utilizar Composer + listing.current_sessions_header + Sesiones actuales - + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + - extensions.title_class - Nombre de la Clase: + image.button_upload_options + Opciones de subida - + + + templates/content/_taxonomies.html.twig:27 + - caption.other_content - Otro Contenido + Order + Orden - + + + src/Form/ResetPasswordRequestFormType.php:32 + - status. - Estado. + placeholder.email + su correo electrónico + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + modal.title.file_field Elige un archivo + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + modal.title.image_field Elige una imagen + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + Subir desde URL + + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + Cargando… + + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + modal.button_save Guardar + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + modal.button_deny Cerrar diff --git a/translations/messages.fr.xlf b/translations/messages.fr.xlf index 77fe0bbce..dd10f2fae 100644 --- a/translations/messages.fr.xlf +++ b/translations/messages.fr.xlf @@ -1,149 +1,27 @@ - - - templates/debug/source_code.twig:26 - - - not_available - Non disponible - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Erreur %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - Une erreur inconnue (HTTP %status_code%) a empêché de terminer votre demande. - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - retournez à la page d'acceuil.]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - Vous n'êtes pas autorisé à accéder à cette ressource. - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - Demandez à votre responsable ou à votre administrateur système de vous accorder l'accès à cette ressource. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - Nous n'avons pas trouvé la page que vous avez demandée. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - revenez à la page d'accueil.]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - Une erreur du serveur interne s'est produite. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - retournez à la page d'acceuil.]]> - - - - - templates/debug/source_code.twig:17 - - - title.source_code - Code source utilisé pour afficher cette page - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - Code controller - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Modèle du code Twig - - - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Modifier l'utilisateur - - - templates/debug/source_code.twig:7 - - - action.show_code - Montrer le code - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 action.save @@ -151,21 +29,35 @@ + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + action.do_something Faire quelque chose - + - templates/users/change_password.twig:26 + templates/users/listing.html.twig:64 - - action.edit_user - Modifier l'utilisateur - - - action.edit Modifier @@ -173,35 +65,17 @@ - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 label.username Nom d'utilisateur - - - templates/debug/source_code.twig:3 - - - help.show_code - Contrôleur et du Modèle utilisés pour afficher cette page.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - Après avoir changé votre mot de passe, vous serez déconnecté de l'application. - - - templates/security/login.twig:4 + templates/security/login.html.twig:4 title.login @@ -210,8 +84,9 @@ - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 label.password @@ -220,7 +95,7 @@ - templates/security/login.twig:84 + templates/security/login.html.twig:60 action.log_in @@ -229,26 +104,17 @@ - templates/content/listing.twig:9 + templates/content/listing.html.twig:58 title.contentlisting Liste de contenu - - - templates/users/edit.twig:24 - - - action.change_password - Changer le mot de passe - - - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -257,7 +123,8 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 field.status @@ -266,8 +133,8 @@ - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 field.createdAt @@ -276,8 +143,10 @@ - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 field.modifiedAt @@ -286,7 +155,7 @@ - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 field.publishedAt @@ -295,7 +164,7 @@ - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 field.depublishedAt @@ -304,7 +173,8 @@ - templates/editcontent/media_edit.twig:47 + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 field.title @@ -313,7 +183,7 @@ - templates/editcontent/media_edit.twig:53 + templates/media/edit.html.twig:45 field.description @@ -322,7 +192,7 @@ - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 field.copyright @@ -331,7 +201,7 @@ - templates/editcontent/media_edit.twig:66 + templates/media/edit.html.twig:58 field.originalFilename @@ -340,7 +210,8 @@ - templates/editcontent/media_edit.twig:105 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 field.width @@ -349,7 +220,8 @@ - templates/editcontent/media_edit.twig:112 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 field.height @@ -358,7 +230,7 @@ - templates/editcontent/media_edit.twig:119 + templates/media/edit.html.twig:142 field.filesize @@ -367,7 +239,7 @@ - templates/security/login.twig:61 + src/Form/LoginType.php:31 label.username_or_email @@ -376,7 +248,7 @@ - templates/security/login.twig:80 + src/Form/LoginType.php:58 label.rememberme @@ -385,7 +257,9 @@ - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 about.visit_bolt @@ -394,7 +268,9 @@ - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 about.bolt_documentation @@ -403,7 +279,7 @@ - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 about.bolt_on_github @@ -412,7 +288,7 @@ - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 about.used_libraries @@ -421,37 +297,27 @@ - templates/pages/about.twig:37 + templates/pages/about.html.twig:66 about.list_of_used_libraries Vous trouverez ci-dessous les bibliothèques tierces utilisées par Bolt. - - - src/Form/UserType.php:35 - new - - - label.fullname - Nom complet - - - src/Form/UserType.php:38 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 label.email Adresse Email - + - src/Form/UserType.php:38 - new + templates/users/_form.html.twig:185 label.about @@ -460,8 +326,7 @@ - src/Controller/Backend/UserController.php:33 - new + src/Controller/Backend/UserEditController.php:129 user.updated_successfully @@ -470,9 +335,9 @@ - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 content.updated_successfully @@ -481,8 +346,7 @@ - src/Controller/Backend/EditMediaController.php:157 - new + src/Controller/Backend/MediaEditController.php:88 content.created_successfully @@ -491,8 +355,7 @@ - src/Controller/Backend/EditFileController.php:101 - new + src/Controller/Backend/FileEditController.php:106 editfile.could_not_write @@ -500,511 +363,645 @@ + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + label.locale - Locale - - - - - label.backend_theme - Theme de l'administration - - - - - English (en) - Anglais (en) - - - - - Nederlands (dutch, nl) - Néerlandais (dutch, nl) - - - - - Español (Spanish, es) - Espagnole (Spanish, es) - - - - - français (French, fr) - Français (French, fr) - - - - - Deutsch (German, de) - Allemand (German, de) - - - - - Język Polski (Polish, pl) - Polonais (Polish, pl) - - - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Portuguais Brésilien (Brasilian Portuguese, pt_BR) - - - - - Italiano (Italian, it) - Italien (Italian, it) + Langue + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + The Default theme Le thème par défaut + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + The Default Dark theme Le thème sombre par défaut + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + WoordPers: Kinda looks like that other CMS WoordPers : Kinda ressemble à cet autre CMS + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + caption.dashboard Tableau de bord - - - caption.translations: messages - caption.translations : messages - - + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + caption.clear_cache Vider le cache - - - caption.check_database - Vérifier la base de données - - - - - caption.routing set up - Configuration du routage - - + + src/Menu/BackendMenuBuilder.php:145 + caption.menu_setup Paramètres du menu + + src/Menu/BackendMenuBuilder.php:134 + caption.taxonomies Taxonomies + + src/Menu/BackendMenuBuilder.php:123 + caption.contenttypes Type de contenu + + src/Menu/BackendMenuBuilder.php:112 + caption.main_configuration Configuration principale + + src/Menu/BackendMenuBuilder.php:99 + caption.users_permissions + + src/Menu/BackendMenuBuilder.php:89 + caption.configuration Configuration + + src/Menu/BackendMenuBuilder.php:77 + caption.settings Paramètres + + src/Menu/BackendMenuBuilder.php:61 + caption.content Contenu + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + caption.file_management Gestion de fichiers + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + caption.extensions Extensions + + src/Menu/BackendMenuBuilder.php:280 + caption.view_edit_templates - + Afficher et modifier les modèles + + src/Menu/BackendMenuBuilder.php:270 + caption.uploaded_files Fichiers téléchargés + + src/Menu/BackendMenuBuilder.php:157 + caption.routing_setup Configuration du routage + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + caption.translations Traductions + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + caption.about_bolt À propos de Bolt + + templates/pages/about.html.twig:11 + caption.bolt_payoff - + Un CMS sophistiqué, léger et simple + + templates/content/edit.html.twig:22 + caption.edit Modifier + + templates/finder/_uploader.html.twig:8 + caption.file_uploader Téléchargeur de fichiers + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + caption.meta_information Méta-information + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + date Date + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + size Taille + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + thumbnail Vignette + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + filename Nom du fichier + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + actions Actions + + templates/finder/_folders.html.twig:6 + directoryname Nom du répertoire - - - action.go - Aller - - + + templates/finder/_quickselect.html.twig:9 + form.quick_select_file Sélectionnez rapidement un fichier à modifier… - - - label.quick_select - Selection rapide - - + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + caption.path Chemin + + templates/media/edit.html.twig:30 + caption.filename Nom du fichier - - - action.visit_site - Visitez le site Web - - + + templates/content/listing.html.twig:63 + action.create_new Créer un nouveau + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + general.greeting Salut, %name% ! + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + action.logout Se déconnecter + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + action.edit_profile Editer le profil + + templates/_partials/_flash_messages.html.twig:1 + action.close_alert Fermer + + src/Menu/BackendMenuBuilder.php:207 + caption.api API + + src/Menu/BackendMenuBuilder.php:165 + caption.all_configuration_files Tous les fichiers de configuration + + src/Menu/BackendMenuBuilder.php:177 + caption.maintenance Maintenance - - - caption.fixtures_dummy_content - Agencement (Contenu factice) - - + + templates/finder/editfile.html.twig:21 + caption.edit_file Modifier le fichier - - - caption.installation_checks - Contrôles de l'installation - - - - - form.select_language - Choisir la langue - - - - - field.locale - Locale - - + + templates/content/_localeswitcher.html.twig:7 + field.current_locale Paramètres locale actuels + + templates/content/_localeswitcher.html.twig:14 + field.switch_to_locale Passer aux paramètres locale + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author Auteur + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + general.phrase.edit Éditer + + public/theme/skeleton/partials/_recordfooter.twig:7 + Unknown Inconnu + + public/theme/skeleton/partials/_recordfooter.twig:6 + general.phrase.written-by-on Écrit par %name% le %date%. + + public/theme/skeleton/partials/_aside.twig:33 + general.phrase.missing-about-page La page "À propos" est manquante + + public/theme/skeleton/partials/_aside.twig:35 + general.phrase.missing-about-page-block Le bloc "À propos" est manquant + + public/theme/skeleton/partials/_aside.twig:53 + contenttypes.generic.recent Récent %contenttypes% + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + general.phrase.search-ellipsis + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + general.phrase.search Recherche - - - 9fb3e6e - Construit avec Bolt.]]> - - + + public/theme/skeleton/partials/_aside.twig:60 + contenttypes.generic.overview Vue générale de %contenttypes% + + public/theme/skeleton/partials/_aside.twig:62 + contenttypes.generic.no-recent Aucun %contenttype% récent trouvé + + public/theme/skeleton/partials/_footer.twig:4 + Menu Menu + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + Search Rechercher + + public/theme/skeleton/partials/_recordfooter.twig:14 + general.phrase.permalink Permalien - - - label.displayname - Afficher le nom - - + + src/Controller/Backend/ClearCacheController.php:24 + label.cache_cleared Cache effacé avec succès ! - - caption.kitchensink - L'évier de la cuisine - - - - parameters: - '%search%': consequatur + src/Menu/BackendMenuBuilder.php:238 - general.phrase.search-results-for-variable - Résultats de la recherche pour'%search%'. + caption.kitchensink + L'évier de la cuisine - parameters: - '%search%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:11 general.phrase.search-results-for @@ -1013,8 +1010,7 @@ - parameters: - '%SEARCHTERM%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:51 general.phrase.no-search-results-for @@ -1022,1740 +1018,2417 @@ + + public/theme/skeleton/search.twig:53 + general.phrase.no-search-term-provided Veuillez fournir un terme de recherche afin d'afficher des résultats pertinents. + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + general.phrase.read-more Lire la suite + + public/theme/skeleton/partials/_footer.twig:17 + general.phrase.built-with-bolt Construit avec Bolt.]]> + + vendor/bolt/newswidget/templates/news.html.twig:3 + general.latest_bolt_news Dernières nouvelles de Bolt + + templates/content/_buttons.html.twig:19 + action.preview Aperçu + + templates/content/_buttons.html.twig:58 + action.view_saved Afficher la version enregistrée + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + label.display_name Afficher le nom + + templates/content/edit.html.twig:22 + caption.duplicate Dupliquer - - - label.current_password - Mot de passe actuel - - + + src/Form/ChangePasswordFormType.php:40 + label.new_password Nouveau mot de passe - - - label.new_password_confirm - Nouveau mot de passe (confirmer) - - + + src/Controller/Backend/FileEditController.php:104 + editfile.updated_successfully Fichier mis à jour avec succès ! + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + action.add_user Ajouter un utilisateur + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + success Succès ! + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + user.updated_profile Le profil utilisateur a été mis à jour ! + + templates/users/_form.html.twig:124 + label.roles Rôles + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + user.new_user Nouvel utilisateur + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + action.view Vue - - - caption.folders - Dossiers - - + + templates/_partials/fields/slug.html.twig:18 + slug.button_locked Fermé + + templates/_partials/fields/slug.html.twig:19 + slug.button_edit Éditer + + templates/_partials/fields/slug.html.twig:20 + slug.generate_from Générer à partir de : + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + image.button_upload Télécharger + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + image.button_from_library De la bibliothèque + + templates/_partials/_content_listing.html.twig:23 + listing_table.actions.view_on_site Voir sur le site + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + listing_table.actions.status_to_publish Changer le statut en "publier" + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + listing_table.actions.status_to_held Changer le statut en "en attente" + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + listing_table.actions.status_to_draft Changer le statut en "brouillon" + + templates/_partials/_content_listing.html.twig:28 + listing_table.actions.duplicate Dupliquer + + templates/_partials/_content_listing.html.twig:29 + listing_table.actions.delete Supprimer + + templates/_partials/_content_listing.html.twig:30 + listing_table.actions.slug Slug + + templates/_partials/_content_listing.html.twig:31 + listing_table.actions.created_on Créé sur + + templates/_partials/_content_listing.html.twig:32 + listing_table.actions.published_on Publié le + + templates/_partials/_content_listing.html.twig:33 + listing_table.actions.last_modified_on Dernière modification le + + templates/content/listing.html.twig:40 + listing_select_box.card_header.selected Sélectionné - - - listing_select_box.card_body.records_passed - ID d'enregistrement sélectionné transmis - - - - - listing_select_box.card_body.remark - (ceux-ci peuvent être utilisés avec, entre autre, axios pour modifier / supprimer en bloc) - - + + templates/_partials/fields/embed.html.twig:20 + editor_embed.content_url URL du contenu à intégrer + + templates/_partials/fields/embed.html.twig:21 + editor_embed.placeholder_content_url URL du contenu sur Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + templates/_partials/fields/embed.html.twig:22 + editor_embed.label_height Hauteur + + templates/_partials/fields/embed.html.twig:23 + editor_embed.label_pixel pixel + + templates/_partials/fields/embed.html.twig:24 + editor_embed.label_matched_embed Intégration correspondante + + templates/_partials/fields/embed.html.twig:25 + editor_embed.label_preview Aperçu + + templates/_partials/fields/embed.html.twig:26 + editor_embed.label_size Taille + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + image.placeholder_filename Nom du fichier (téléchargez un nouveau fichier ou sélectionnez-en un existant) + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + image.placeholder_alt_text Attribut Alt + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + image.placeholder_title Attribut Titre + + templates/_base/layout.html.twig:91 + admin_sidebar.toggler Basculer la largeur de la barre latérale + + templates/_base/layout.html.twig:82 + admin_sidebar_toggler.toggle Montrer le menu]]> + + templates/_partials/fields/date.html.twig:39 + editor_date.toggle Basculer - - - file.label_filename - Nom du fichier - - - - - file.label_title - Titre - - - - - file.button_view - Voir l'image - - - - - file.button_upload - Télécharger une image - - - - - file.remark - image.]]> - - - - - file.label_alt - Alt - - - - - filelist.remark - imagelist.]]> - - - - - geolocation.label_geolocation - Geolocalisation : - - - - - geolocation.label_address - Recherche d'adresse - - - - - geolocation.placeholder_address - Rue, code postal, ville ou autre emplacement… - - - - - geolocation.label_lat - Latitude - - - - - geolocation.label_address_matched - Adresse correspondante - - - - - geolocation.label_marker - Placement des marqueurs - - - - - geolocation.label_control - S'aligner sur l'adresse la plus proche - - - - - geolocation.label_long - Longitude - - - - - imagelist.remark - filelist.]]> - - + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + flash_messages.notification Notification - - - buttons.button_toggle - Basculer la liste déroulante - - + + templates/content/_localeswitcher.html.twig:19 + localeswitcher.button_info Voir les informations de localisation + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + listing.title_sortby Trier par - - - listing.option_select_item - Sélectionner l'article - - - - - listing.title_title - Titre - - + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + listing.placeholder_filter Mot clé avec lequel filtrer… + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + listing.button_filter Filtrer + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + listing.button_clear Effacer le tri / filtre + + templates/content/view_locales.html.twig:99 + view_locales.badge_default Défaut + + templates/content/view_locales.html.twig:105 + view_locales.badge_ok OK + + templates/content/view_locales.html.twig:101 + view_locales.badge_missing Manquant + + templates/finder/_files_actions.html.twig:10 + files_cards.button_toggle Basculer la liste déroulante + + templates/finder/_files_actions.html.twig:17 + files_cards.action_edit_image_info Modifier les informations sur l'image + + templates/finder/_files_actions.html.twig:19 + files_cards.action_edit_file Modifier le fichier dans l'éditeur + + templates/finder/_files_actions.html.twig:25 + files_cards.action_view_original Voir l'original + + templates/finder/_files_actions.html.twig:36 + files_cards.action_duplicate Dupliquer + + templates/finder/_files_actions.html.twig:49 + files_cards.action_delete Supprimer + + templates/finder/_files_actions.html.twig:56 + files_cards.label_filename Nom du fichier : + + templates/finder/_files_actions.html.twig:63 + files_cards.label_title Titre : + + templates/finder/_files_actions.html.twig:70 + files_cards.label_dimensions Dimensions : + + templates/finder/_files_actions.html.twig:76 + files_cards.label_filesize Taille du fichier : + + templates/finder/_files_actions.html.twig:81 + files_cards.label_created_on Créé le : + + templates/finder/_files_list.html.twig:75 + files_list.remark Aucun fichier n'est présent dans ce dossier. Sélectionnez un dossier vers lequel naviguer. + + templates/finder/_quickselect.html.twig:5 + quickselect.title_select Sélectionner un fichier : + + templates/finder/finder.html.twig:45 + finder.button_list Liste + + templates/finder/finder.html.twig:49 + finder.button_cards Cartes + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + extensions.title_desc Description : + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + extensions.title_author Auteur : + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + extensions.title_package Nom du package / classe : + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + extensions.title_version Version : + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + extensions.info_not_installed Ceci est un package local, non installé via Composer + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + extensions.title_class Nom de la classe : + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + extensions.button_configuration Configuration + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + extensions.button_source Source + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + extensions.button_remove Supprimer l'extension + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + extensions.button_disable Désactiver l'extension + + templates/security/login.html.twig:40 + login.header_login Bolt » Connexion + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + extensions.message_not_implemented Pas encore implémenté. Désolé ! + + templates/content/listing.html.twig:6 + listing.title_overview Aperçu pour + + templates/finder/_files_cards.html.twig:48 + files_cards.message_no_files Aucun fichier n'est présent dans ce dossier. Sélectionnez un dossier, sur le côté droit, vers lequel naviguer. + + templates/_partials/_content_listing.html.twig:13 + listing_filter.button_compact Compact + + templates/_partials/_content_listing.html.twig:14 + listing_filter.button_expanded Étendu + + templates/finder/finder.html.twig:41 + finder.label_view Vue : + + templates/_partials/_content_listing.html.twig:34 + listing_table.actions.button_edit Éditer + + src/Controller/Backend/UserController.php:50 + controller.user.title + + src/Controller/Backend/UserController.php:51 + controller.user.subtitle Pour modifier les utilisateurs et leurs autorisations - - - controller.database.check_title - Vérification de la base de données - - - - - controller.database.check_subtitle - Pour vérifier la base de données - - - - - controller.database.update_title - Mise à jour de la base de données - - - - - controller.database.update_subtitle - Pour mettre à jour la base de données - - - - - controller.omnisearch.title - Omnisearch - - - - - controller.omnisearch.subtitle - Rechercher, de manière omniprésente - - + + templates/users/listing.html.twig:20 + listing.title_display_name - Afficher le nom + Nom affiché + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + listing.title_username Nom d'utilisateur + + templates/users/listing.html.twig:20 + listing.title_email Email + + templates/users/listing.html.twig:21 + listing.title_roles Rôles + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + listing.title_last_seen Âge de la session + + templates/users/listing.html.twig:23 + listing.title_last_ip Dernière IP + + templates/users/listing.html.twig:24 + listing.title_actions Actions - - - user.not_valid_email - Email invalide - - - - - user.not_valid_password - Mot de passe incorrect. Le mot de passe doit contenir au moins 6 caractères. - - + + templates/users/profile.html.twig:11 + user.unknown_user Utilisateur inconnu + + templates/media/edit.html.twig:114 + label.predominant_colors__in_image Couleurs prédominantes dans l'image + + public/theme/skeleton/listing.twig:14 + general.phrase.overview-for Aperçu pour '%slug%' + + public/theme/skeleton/partials/_recordfooter.twig:40 + general.phrase.related-content Contenus associés + + public/theme/skeleton/partials/_footer.twig:13 + action.search Recherche + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + caption.new_contenttype Nouveau %contenttype% + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + caption.untitled_contenttype Sans titre %contenttype% + + templates/users/profile.html.twig:6 + title.edit_user_profile Modifier le profil utilisateur + + templates/pages/menupage.html.twig:13 + caption.redirection_page Page de redirection + + templates/media/edit.html.twig:6 + caption.edit_image Éditer l'image - - - general.phrase.select_language - Choisir la langue - - + + templates/users/_form.html.twig:44 + password.suggested %password%]]> + + templates/media/edit.html.twig:70 + field.cropX Recadrer X + + templates/media/edit.html.twig:73 + field.cropXPostfix Position du cadrage sur l'axe X, plage 0-100. + + templates/media/edit.html.twig:80 + field.cropYPostfix Position du cadrage sur l'axe Y, plage de 0 à 100. + + templates/media/edit.html.twig:77 + field.cropY Recadrer Y + + templates/media/edit.html.twig:84 + field.cropZoom Recadrer zoomfactor + + templates/media/edit.html.twig:87 + field.cropZoomPostfix Niveau de zoom du recadrage, plage 1-10. + + templates/content/listing.html.twig:136 + title.contentType Type de contenus - - - listing.title_taxonomy - Taxonomie - - + + templates/_partials/_content_listing.html.twig:44 + listing_table.no_results Aucun résultat trouvé. Élargissez les critères de filtrage ou ajoutez du contenu supplémentaire. + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + listing.option_select_sortby Sélectionnez un champ pour trier par… + + templates/content/edit.html.twig:103 + title.primary_actions Actions principales + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + title.options Options + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + action.delete Supprimer + + templates/users/listing.html.twig:76 + action.enable Activer + + templates/users/listing.html.twig:71 + action.disable Désactiver - - - user.enabled_successfully - L'utilisateur a été activé avec succès ! - - - - - user.disabled_successfully - L'utilisateur a été désactivé avec succès ! - - + + templates/users/listing.html.twig:124 + listing.title_session_expires La session a expiré + + templates/users/listing.html.twig:125 + listing.title_ip_address Adresse IP + + templates/users/listing.html.twig:126 + listing.title_browser Navigateur / plateforme + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + image.button_remove Retirer + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + image.button_edit_attributes Modifier les attributs - - - image.button_move_up - Déplacer vers le haut - - - - - image.button_move_down - Déplacer vers le bas - - + + templates/_partials/fields/imagelist.html.twig:27 + image.add_new_image Ajouter une nouvelle image + + templates/_partials/fields/filelist.html.twig:25 + file.add_new_file Ajouter un nouveaux fichier + + templates/_partials/fields/_collection_buttons.html.twig:20 + collection.remove_item Retirer l'élément + + templates/_partials/fields/collection.html.twig:6 + collection.add_item Ajouter un nouvel élément à '%name%' + + templates/_partials/fields/_collection_buttons.html.twig:5 + collection.move_item_up Déplacer vers le haut + + templates/_partials/fields/_collection_buttons.html.twig:9 + collection.move_item_down Déplacer vers le bas + + templates/pages/extensions.html.twig:54 + extensions.button_detailed_view Voir les détails + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + extensions.title_configuration Fichier de configuration + + templates/finder/_uploader.html.twig:17 + caption.file_upload.upload_text Déposer des fichiers ici pour les télécharger + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + pager.next Suivant + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + pager.previous Précédent + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + image.button_up Haut + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + image.button_down Bas + + templates/helpers/_field_blocks.twig:28 + general.phrase.download Télécharger + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + caption.logviewer Logs + + templates/pages/logviewer.html.twig:39 + label.request Demande + + templates/pages/logviewer.html.twig:53 + label.trace Trace + + templates/pages/logviewer.html.twig:71 + label.context Contexte + + templates/pages/logviewer.html.twig:19 + label.id ID + + templates/pages/logviewer.html.twig:20 + label.level Niveau + + templates/pages/logviewer.html.twig:23 + label.message Message + + templates/pages/logviewer.html.twig:25 + label.timestamp Horodatage + + templates/pages/logviewer.html.twig:86 + label.user Utilisateur + + templates/users/listing.html.twig:33 + listing.disabled Désactiver + + templates/_partials/fields/slug.html.twig:17 + slug.button_unlocked Débloquer + + public/theme/skeleton/listing.twig:42 + general.phrase.no-content-found Aucun contenu trouvé - + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + - general.phrase.empty-database - Il semble que la base de données soit vide. Écrivez du contenu dans le backend Bolt ou exécutez la commande pour ajouter des données (contenu factice). + general.phrase.none + Aucun + + templates/content/view_locales.html.twig:103 + view_locales.badge_empty Vide + + templates/content/listing.html.twig:45 + action.update_all Appliquer à tous + + templates/pages/about.html.twig:21 + about.system_info Informations système - - - user.not_valid_display_name - Nom d'affichage non valide - - + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + action.confirm_delete Voulez-vous vraiment supprimer ce contenu ? + + src/Form/LoginType.php:38 + placeholder.username_or_email Votre nom d'utilisateur ou email + + src/Form/LoginType.php:52 + placeholder.password Votre mot de passe + + src/Menu/BackendMenuBuilder.php:336 + caption.other_content Autre contenu + + templates/finder/editfile.html.twig:39 + editfile.target_not_writable L'enregistrement est désactivé, car le fichier cible n'est pas accessible en écriture. + + templates/_partials/fields/_label.html.twig:6 + label.translatable Ce champ est traduisible + + templates/pages/logviewer.html.twig:92 + label.content Contenu + + src/Controller/Backend/FileEditController.php:148 + file.delete_success Fichier supprimé avec succès ! + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + file.delete_confirm Êtes-vous sûr de vouloir supprimer ce fichier ? + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + listing.title_filterby Rechercher / Filtrer par + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + content.status_changed_successfully Statut changé avec succès + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + content.deleted_successfully Contenu supprimé avec succès + + templates/content/_buttons.html.twig:46 + label.current_status Statut actuel + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.published Publié + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.draft Brouillon + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.timed Publication planifiée + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.held Non publié + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + collection.confirm_delete Êtes-vous sûr de vouloir supprimer cet élément de la collection ? + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + upload.allow_file_types Types de fichiers autorisés pour le téléchargement + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + upload.max_size Taille maximale de téléchargement + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + listing.placeholder_search Rechercher un mot-clé … + + templates/pages/dashboard.html.twig:12 + title.filtered_by '%filter%'.]]> + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + action.view_site Voir le site Web + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + action.new Nouveau + + templates/pages/extension_details.html.twig:39 + extensions.no_dependencies Aucune dépendance connue + + templates/pages/extension_details.html.twig:36 + extensions.title_dependencies Dépendance + + templates/_partials/fields/collection.html.twig:7 + collection.expand_all Tout développer + + templates/_partials/fields/collection.html.twig:8 + collection.collapse_all Tout réduire + + templates/content/edit.html.twig:45 + content.edit_missing_definition La définition de ce ContentType est manquante ! La modification de cet enregistrement ne fonctionnera pas comme prévu. Veuillez vérifier votre contenttypes.yaml pour vous assurer qu'il contient %contenttype%. + + templates/_partials/fields/collection.html.twig:10 + collection.select Sélectionnez… + + src/Form/LoginType.php:34 + form.empty_username_email Veuillez saisir votre nom d'utilisateur ou votre email + + src/Form/LoginType.php:46 + form.empty_password Veuillez saisir votre mot de passe - + + + src/Form/ResetPasswordRequestFormType.php:28 + form.empty_email Veuillez saisir votre email + + templates/content/listing.html.twig:112 + listing.title_filterby_field Filtrer par champ + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + image.button_from_url De l'URL + + templates/finder/_files_actions.html.twig:29 + files_cards.copy_to_clipboard Copier le lien dans le fichier + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + warning Attention + + src/Controller/Backend/FilemanagerController.php:150 + filemanager.create_folder_already_exists Le dossier existe déjà + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + filemanager.create_folder_error Impossible de créer le dossier + + src/Controller/Backend/FilemanagerController.php:155 + filemanager.create_folder_success Dossier créé avec succès. + + src/Controller/Backend/FilemanagerController.php:115 + filemanager.delete_folder_successful Dossier supprimé avec succès + + templates/finder/_createfolder.html.twig:13 + folder.create_new Nouveau dossier - - - title.add_user - Ajouter un utilisateur - - + + templates/users/_form.html.twig:172 + label.avatar Avatar + + templates/security/login.html.twig:64 + login.forgotpassword Mot de passe oublié + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + reset_password.request_header Réinitialiser le mot de passe + + templates/reset_password/request.html.twig:42 + reset_password.request_description Entrez votre adresse e-mail et nous vous enverrons un lien pour réinitialiser votre mot de passe. + + templates/reset_password/request.html.twig:44 + reset_password.request_send Soumettre + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + Email Email + + templates/reset_password/request.html.twig:47 + reset_password.back-to-login Retour à la page de connexion + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + reset_password.reset_header Réinitialisez votre mot de passe + + templates/reset_password/check_email.html.twig:4 + reset_password.check_email_sent_header Email de réinitialisation du mot de passe envoyé + + templates/reset_password/check_email.html.twig:35 + reset_password.check_email_sent_text_1 Un e-mail a été envoyé contenant un lien sur lequel vous pouvez cliquer pour réinitialiser votre mot de passe. Ce lien expirera dans %hours% heure(s). + + templates/reset_password/check_email.html.twig:36 + reset_password.check_email_sent_text_2 Si vous ne recevez pas d'e-mail, veuillez vérifier votre dossier spam ou %tryagain%. + + templates/reset_password/reset.html.twig:37 + reset_password.reset_btn Réinitialiser le mot de passe - + + + templates/reset_password/email.html.twig:1 + reset_password.email_title Bonjour ! - + + + templates/reset_password/email.html.twig:3 + reset_password.email_description Pour réinitialiser votre mot de passe, veuillez visiter le lien suivant - + + + templates/reset_password/email.html.twig:7 + reset_password.email_expire Ce lien expirera dans %hours% heure(s). - + + + templates/reset_password/email.html.twig:9 + reset_password.email_thanks Merci ! - + + + src/Form/ChangePasswordFormType.php:31 + reset_password.enter_pwd Veuillez saisir un mot de passe - + + + src/Form/ChangePasswordFormType.php:43 + label.repeat_password Répéter le mot de passe - + + + src/Form/ChangePasswordFormType.php:45 + reset_password.not_matching_pwds Les champs mot de passe doivent correspondre. - + + + src/Form/ChangePasswordFormType.php:35 + reset_password.minimum_length Votre mot de passe doit contenir au moins %s caractères - + + + src/Controller/Backend/ResetPasswordController.php:99 + reset_password.no_token Aucun jeton de réinitialisation du mot de passe trouvé dans l'URL ou dans la session. - + + + src/Controller/Backend/ResetPasswordController.php:134 + reset_password.reset_successful Votre mot de passe a été réinitialisé avec succès. - + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + reset_password.problem_with_request Un problème est survenu lors du traitement de votre demande de réinitialisation de mot de passe - %s + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + label.filtered_by filtré par + + templates/content/_buttons.html.twig:34 + action.preview_secure_share Partager un lien d'aperçu sécurisé + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + action.stop_impersonating arreter l'usurpation + + templates/users/listing.html.twig:82 + action.impersonate usurper + + templates/widget/maintenance_mode.twig:25 + maintenance.activated_warning Le mode maintenance est activé + + templates/_partials/fields/embed.html.twig:28 + action.refresh Actualiser + + templates/content/listing.html.twig:148 + listing_details_box.showing_records Affichage des enregistrements %current% de %total% + + templates/content/listing.html.twig:154 + listing_details_box.name Nom : %name% (singulier : %singularName%) + + templates/content/listing.html.twig:160 + listing_details_box.slug Slug : %slug% (singulier : %singularSlug%) + + templates/content/listing.html.twig:166 + listing_details_box.record_template Modèle de l'enregistrement : %template% + + templates/content/listing.html.twig:172 + listing_details_box.listing_template Modèle de liste : %template% (%listingRecords% enregistrements) + + templates/content/listing.html.twig:186 + listing_details_box.locales - Locales: %locales% + Langues : %locales% + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + action.edit_permissions Modifier les permissions + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + general.label.search Rechercher + + templates/_partials/fields/image.html.twig:25 + image.image_preview Prévisualiser l'image + + templates/_partials/_content_listing.html.twig:15 + listing_table.actions.select_all Tout sélectionner + + src/Form/LoginType.php:58 + label.remembermeduration Se souvenir de moi ? (%duration% days) + + templates/users/listing.html.twig:117 + listing.current_sessions_header Sessions en cours + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + image.button_upload_options Option de téléversement - - - Share secure preview link - Partager un lien d'aperçu sécurisé - - + + templates/content/_taxonomies.html.twig:27 + Order Ordre + + src/Form/ResetPasswordRequestFormType.php:32 + placeholder.email votre email - - - You have to login in order to access this page. - Vous devez vous connecter pour accéder à cette page. - - + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + modal.title.file_field Sélectionner un fichier + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + modal.title.image_field Sélectionner une image + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + modal.title.upload_from_url Téléverser à partir d'une URL + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + modal.text.loading Chargement... + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + modal.button_save Enregistrer + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + modal.button_deny Fermer diff --git a/translations/messages.hu.xlf b/translations/messages.hu.xlf index e72a4b1b1..89d7cf652 100644 --- a/translations/messages.hu.xlf +++ b/translations/messages.hu.xlf @@ -1,1384 +1,3438 @@ - - -
- -
- - - not_available - Nem elérhető - templates/debug/source_code.twig:26 - - - http_error.name - Hiba %status_code% - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.description - Ismeretlen (HTTP %status_code%) hiba miatt a kérés nem teljesíthető - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.suggestion - vissza a kezdőoldalra.]]> - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error_403.description - Nincs jogosultságod a hozzáféréshez. - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.suggestion - Fordulj a rendszergazdához vagy üzemeltetőhöz engedélyért. - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_404.description - A hivatkozott oldal nem található. - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.suggestion - vissza a kezdőoldalra.]]> - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_500.description - Hiba a szerveren. - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.suggestion - vissza a kezdőoldalra.]]> - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - title.source_code - Az oldal előállításához használt forráskód - templates/debug/source_code.twig:17 - - - title.controller_code - Kontroller kód - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.twig_template_code - Twig sablon kód - templates/debug/source_code.twig:29 - - + + + + + templates/users/edit.html.twig:6 + + title.edit_user Felhasználó szerkesztés - templates/users/edit.twig:4 - - - action.show_code - Kód megtekintése - templates/debug/source_code.twig:7 - - +
+
+ + + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 + + action.save Mentés - templates/users/change_password.twig:18 - templates/users/edit.twig:15 - - + + + + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + + action.do_something Katt ide... - - - action.edit_user - Felhasználó szerkesztése - templates/users/change_password.twig:26 - - + + + + + templates/users/listing.html.twig:64 + + action.edit Szerkesztés - - + + + + + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 + + label.username Felhasználónév - templates/security/login.twig:66 - src/Form/UserType.php:31 - - - help.show_code - Kontroller és sablon kódját a gombra kattintva tekintheted meg.]]> - templates/debug/source_code.twig:3 - - - info.change_password - A jelszó megváltoztatása után az alkalmazásból ki kell lépni. - templates/users/change_password.twig:12 - - + + + + + templates/security/login.html.twig:4 + + title.login Bejelentkezés - templates/security/login.twig:4 - - + + + + + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 + + label.password Jelszó - templates/security/login.twig:70 - templates/security/login.twig:75 - - + + + + + templates/security/login.html.twig:60 + + action.log_in Bejelentkezés - templates/security/login.twig:84 - - + + + + + templates/content/listing.html.twig:58 + + title.contentlisting Tartalom - templates/content/listing.twig:9 - - - action.change_password - Jelszó változtatás - templates/users/edit.twig:24 - - + + + + + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 + + field.id ID - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 - - + + + + + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 + + field.status Státusz - templates/editcontent/edit.twig:76 - - + + + + + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 + + field.createdAt Létrehozva - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 - - + + + + + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 + + field.modifiedAt Módosítva - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 - - + + + + + templates/content/_fields_aside.html.twig:15 + + field.publishedAt Publikáva - templates/editcontent/edit.twig:102 - - + + + + + templates/content/_fields_aside.html.twig:24 + + field.depublishedAt Visszavonva - templates/editcontent/edit.twig:110 - - + + + + + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 + + field.title Cím - templates/editcontent/media_edit.twig:47 - - + + + + + templates/media/edit.html.twig:45 + + field.description Leírás - templates/editcontent/media_edit.twig:53 - - + + + + + templates/media/edit.html.twig:51 + + field.copyright - Copyright - templates/editcontent/media_edit.twig:59 - - + Szerzői jog + + + + + templates/media/edit.html.twig:58 + + field.originalFilename Eredeti fájlnév - templates/editcontent/media_edit.twig:66 - - + + + + + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 + + field.width szélesség - templates/editcontent/media_edit.twig:105 - - + + + + + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 + + field.height magasság - templates/editcontent/media_edit.twig:112 - - + + + + + templates/media/edit.html.twig:142 + + field.filesize Fájlméret - templates/editcontent/media_edit.twig:119 - - + + + + + src/Form/LoginType.php:31 + + label.username_or_email Felhasználónév vagy email - templates/security/login.twig:61 - - + + + + + src/Form/LoginType.php:58 + + label.rememberme Emlékezz rám - templates/security/login.twig:80 - - + + + + + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 + + about.visit_bolt Boltcms.io megnyitása - templates/pages/about.twig:33 - - + + + + + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 + + about.bolt_documentation Bolt dokumentációja - templates/pages/about.twig:28 - - + + + + + templates/pages/about.html.twig:60 + + about.bolt_on_github Bolt a Githubon - templates/pages/about.twig:31 - - + + + + + templates/pages/about.html.twig:64 + + about.used_libraries A felhasznált modulok / komponensek - templates/pages/about.twig:35 - - + + + + + templates/pages/about.html.twig:66 + + about.list_of_used_libraries Alábbiakban a Bolt által használt szoftver összetevők. - templates/pages/about.twig:37 - - - label.fullname - Teljes név - src/Form/UserType.php:35 - new - - + + + + + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 + + label.email Email cím - src/Form/UserType.php:38 - new - - + + + + + templates/users/_form.html.twig:185 + + + label.about + Névjegy + + + + + src/Controller/Backend/UserEditController.php:129 + + user.updated_successfully Sikeres frissítés - src/Controller/Backend/UserController.php:33 - new - - + + + + + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 + + content.updated_successfully Sikeres média tartalom frissítés - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new - - + + + + + src/Controller/Backend/MediaEditController.php:88 + + content.created_successfully Sikeres média tartalom létrehozás - src/Controller/Backend/EditMediaController.php:157 - new - - + + + + + src/Controller/Backend/FileEditController.php:106 + + editfile.could_not_write A média tartalom nem hozható létre - src/Controller/Backend/EditFileController.php:101 - new - - + + + + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + + label.locale - Locale - - - label.backend_theme - Admin téma - - - English (en) - English (en) - - - Nederlands (dutch, nl) - Nederlands (dutch, nl) - - - Español (Spanish, es) - Español (Spanish, es) - - - français (French, fr) - français (French, fr) - - - Deutsch (German, de) - Deutsch (German, de) - - - Język Polski (Polish, pl) - Język Polski (Polish, pl) - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - - - Italiano (Italian, it) - Italiano (Italian, it) - - + Területi beállítás + + + + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + + The Default theme Az alapértelmezett téma - - + + + + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + + The Default Dark theme Az alapértelmezett sötét téma - - + + + + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + + WoordPers: Kinda looks like that other CMS WoordPers: Olyan mint az a másik CMS - - + + + + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + + caption.dashboard Botl Vezérlőpanel - - - caption.translations: messages - caption.translations: üzenetek - - + + + + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + + caption.clear_cache Gyorsítótár törlése - - - caption.check_database - Adatbázis ellenőrzés - - - caption.routing set up - Útvonal beállítások - - + + + + + src/Menu/BackendMenuBuilder.php:145 + + caption.menu_setup Menü beállítás - - + + + + + src/Menu/BackendMenuBuilder.php:134 + + caption.taxonomies Taxonómiák - - + + + + + src/Menu/BackendMenuBuilder.php:123 + + caption.contenttypes Tartalomtípusok - - + + + + + src/Menu/BackendMenuBuilder.php:112 + + caption.main_configuration Általános beállítások - - + + + + + src/Menu/BackendMenuBuilder.php:99 + + caption.users_permissions Felhasznlók és jogosultságok - - + + + + + src/Menu/BackendMenuBuilder.php:89 + + caption.configuration Konfiguráció - - + + + + + src/Menu/BackendMenuBuilder.php:77 + + caption.settings Beállítások - - + + + + + src/Menu/BackendMenuBuilder.php:61 + + caption.content Tartalom - - + + + + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + + caption.file_management Fájlkezelés - - + + + + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + + caption.extensions Bővítmények - - + + + + + src/Menu/BackendMenuBuilder.php:280 + + caption.view_edit_templates Sablonok kezelése - - + + + + + src/Menu/BackendMenuBuilder.php:270 + + caption.uploaded_files Feltöltött fájlok - - + + + + + src/Menu/BackendMenuBuilder.php:157 + + caption.routing_setup Útvonal beállítások - - + + + + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + + caption.translations Fordítások / Cimkék - - + + + + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + + caption.about_bolt A Bolt - - + + + + + templates/pages/about.html.twig:11 + + caption.bolt_payoff Az ésszerű és egyszerű CMS - - + + + + + templates/content/edit.html.twig:22 + + caption.edit Szerkesztés - - + + + + + templates/finder/_uploader.html.twig:8 + + caption.file_uploader Fájl feltöltő - - + + + + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + + caption.meta_information Meta információk - - + + + + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + + date Dátum - - + + + + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + + size Méret - - + + + + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + + thumbnail Nézőkép - - + + + + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + + filename Fájlnév - - + + + + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + + actions Események - - + + + + + templates/finder/_folders.html.twig:6 + + directoryname Könyvtárnév - - - action.go - Hajrá - - + + + + + templates/finder/_quickselect.html.twig:9 + + form.quick_select_file Fájl választás… - - - label.quick_select - Gyorskezelő - - + + + + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + + caption.path Útvonal - - + + + + + templates/media/edit.html.twig:30 + + caption.filename Fájlnév - - - action.visit_site - Oldal megtekintése - - + + + + + templates/content/listing.html.twig:63 + + action.create_new Új... - - + + + + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + + general.greeting Szia %name%! - - + + + + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + + action.logout Kijelentkezés - - + + + + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + + action.edit_profile Profil szerkesztés - - + + + + + templates/_partials/_flash_messages.html.twig:1 + + action.close_alert Bezárás - - + + + + + src/Menu/BackendMenuBuilder.php:207 + + caption.api API - - + + + + + src/Menu/BackendMenuBuilder.php:165 + + caption.all_configuration_files Minden konfigurációs fájl - - + + + + + src/Menu/BackendMenuBuilder.php:177 + + caption.maintenance Karbantartás - - - caption.fixtures_dummy_content - Kitöltés (Minta tartalom) - - + + + + + templates/finder/editfile.html.twig:21 + + caption.edit_file Fájl szerkesztés - - - caption.installation_checks - Ellenőrzés - - - form.select_language - Nyelv kiválasztás - - - field.locale - Lokalizáció - - + + + + + templates/content/_localeswitcher.html.twig:7 + + field.current_locale Aktuális lokalizáció - - + + + + + templates/content/_localeswitcher.html.twig:14 + + field.switch_to_locale Lokalizáció megváltoztatása - - + + + + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + + field.author Szerző - - + + + + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + + general.phrase.edit Szerkesztés - - + + + + + public/theme/skeleton/partials/_recordfooter.twig:7 + + Unknown Ismeretlen - - + + + + + public/theme/skeleton/partials/_recordfooter.twig:6 + + general.phrase.written-by-on %name% készítette %date%-n. - - + + + + + public/theme/skeleton/partials/_aside.twig:33 + + general.phrase.missing-about-page A "Rólunk" oldal hiányzik - - + + + + + public/theme/skeleton/partials/_aside.twig:35 + + general.phrase.missing-about-page-block A "Rólunk" blokk hiányzik - - + + + + + public/theme/skeleton/partials/_aside.twig:53 + + contenttypes.generic.recent Legutóbbi %contenttypes% - - + + + + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + + general.phrase.search-ellipsis - - + + + + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + + general.phrase.search Keresés - - - 9fb3e6e - -sel készült.]]> - - + + + + + public/theme/skeleton/partials/_aside.twig:60 + + contenttypes.generic.overview %contenttypes% áttekintő - - + + + + + public/theme/skeleton/partials/_aside.twig:62 + + contenttypes.generic.no-recent Nincs aktuális %contenttype% - - + + + + + public/theme/skeleton/partials/_footer.twig:4 + + Menu Menü - - + + + + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + + Search Keresés - - + + + + + public/theme/skeleton/partials/_recordfooter.twig:14 + + general.phrase.permalink - Permalink - - - label.displayname - Név - - + Állandó hivatkozás + + + + + src/Controller/Backend/ClearCacheController.php:24 + + label.cache_cleared A gyorsítótár törölve! - - + + + + + src/Menu/BackendMenuBuilder.php:238 + + caption.kitchensink Eszközkészlet - - - general.phrase.search-results-for-variable - '%search%' találatok. - parameters: -  '%search%': találatok - - + + + + + public/theme/skeleton/search.twig:11 + + general.phrase.search-results-for '%search%' találatok. - parameters: -  '%search%': ymnrubeyrvwearsytevsf - - + + + + + public/theme/skeleton/search.twig:51 + + general.phrase.no-search-results-for Nincsenek '%search%' találatok. - parameters: -  '%SEARCHTERM%': ymnrubeyrvwearsytevsf - - + + + + + public/theme/skeleton/search.twig:53 + + general.phrase.no-search-term-provided Kérlek adj meg érvényes kifejezést. - - + + + + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + + general.phrase.read-more Tovább - - + + + + + public/theme/skeleton/partials/_footer.twig:17 + + general.phrase.built-with-bolt - -sel készült.]]> - - + Bolt CMS-sel készült.]]> + + + + + vendor/bolt/newswidget/templates/news.html.twig:3 + + general.latest_bolt_news Legfrissebb Bolt hírek - - + + + + + templates/content/_buttons.html.twig:19 + + action.preview Előnézet - - + + + + + templates/content/_buttons.html.twig:58 + + action.view_saved Mentett változat megtekintése - - + + + + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + + label.display_name Név - - + + + + + templates/content/edit.html.twig:22 + + caption.duplicate Duplikáció - - - label.current_password - Aktuális jelszó - - + + + + + src/Form/ChangePasswordFormType.php:40 + + label.new_password Új jelszó - - - label.new_password_confirm - Új jelszó (ismét) - - + + + + + src/Controller/Backend/FileEditController.php:104 + + editfile.updated_successfully Sikeres frissítés! - - - This website is <a href='%url%' target='_blank' title='Sophisticated, lightweight & simple CMS'>Built with Bolt</a>. - -sel készült.]]> - - + + + + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + + action.add_user Felhasználó hozzáadása - - + + + + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + + success Siker! - - + + + + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + + user.updated_profile A felhasználói profil frissítve! - - + + + + + templates/users/_form.html.twig:124 + + label.roles Szerepkörök - - + + + + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + + user.new_user Új felhasználói - - + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + + action.view Megtekintés: - - - Uploaded files - Feltöltött fájlok - - - caption.folders - Mappák - - - image.upload - Feltöltés - - - extensions.title_desc - Meghatározás: - - - extensions.title_author - Szerző: - - - extensions.title_package - Csomag / Osztály név: - - - extensions.title_version - Verzió: - - - extensions.info_not_installed - Ez a csomag lokális, nem Composerrel lett telepítve - - - extensions.title_class - Osztálynév: - - - extensions.button_configuration - Konfiguráció - - - extensions.button_source - Forrás - - - extensions.message_not_implemented - Sajnos még nincs implementálva! - - - extensions.button_remove - Bővítmény törlése - - - extensions.button_disable - Bővítmény tiltása - - - flash_messages.notification - Értesítés - - - listing_filter.button_compact - Becsuk - - - listing_filter.button_expanded - Kinyit - - + + + + + templates/_partials/fields/slug.html.twig:18 + + + slug.button_locked + Zárolt + + + + + templates/_partials/fields/slug.html.twig:19 + + + slug.button_edit + Szerkesztés + + + + + templates/_partials/fields/slug.html.twig:20 + + + slug.generate_from + Generálás… + + + + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + + + image.button_upload + Kép feltöltése + + + + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + + + image.button_from_library + Képtárból + + + + + templates/_partials/_content_listing.html.twig:23 + + listing_table.actions.view_on_site Megtekintés az Oldalon - - + + + + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + listing_table.actions.status_to_publish 'publikált' státusz beállítása - - + + + + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + listing_table.actions.status_to_held 'visszavont' státusz beállítása - - + + + + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + listing_table.actions.status_to_draft 'vázlat' státusz beállítása - - + + + + + templates/_partials/_content_listing.html.twig:28 + + listing_table.actions.duplicate Duplikálás - - + + + + + templates/_partials/_content_listing.html.twig:29 + + listing_table.actions.delete Törlés - - + + + + + templates/_partials/_content_listing.html.twig:30 + + listing_table.actions.slug Slug - - + + + + + templates/_partials/_content_listing.html.twig:31 + + listing_table.actions.created_on Létrehozva: - - + + + + + templates/_partials/_content_listing.html.twig:32 + + listing_table.actions.published_on Publikálva: - - + + + + + templates/_partials/_content_listing.html.twig:33 + + listing_table.actions.last_modified_on Módosítva: - - - geolocation.label_geolocation - Geolokáció - - - geolocation.label_address - Cím keresés - - - geolocation.placeholder_address - Utca, irányítószám, város vagy helyszín… - - - geolocation.label_lat - Szélesség - - - geolocation.label_long - Hosszúság - - - geolocation.label_address_matched - A pontos cím - - - geolocation.label_marker - Megjelölés - - - geolocation.label_control - A legközelebbi címhez igazítás - - - file.label_filename - Fájlnév - - - file.label_alt - Alt - - - file.label_title - Cím - - - file.button_view - Kép megtekintés - - - file.button_upload - Feltöltés - - - file.remark - image mező.]]> - - + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Kijelölve + + + + + templates/_partials/fields/embed.html.twig:20 + + editor_embed.content_url A beágyazott tartalom URL - - + + + + + templates/_partials/fields/embed.html.twig:21 + + editor_embed.placeholder_content_url Facebook, Twitter, Soundcloud, Youtube, stb. tartalom URL-je - - + + + + + templates/_partials/fields/embed.html.twig:22 + + editor_embed.label_height Magasság - - + + + + + templates/_partials/fields/embed.html.twig:23 + + editor_embed.label_pixel képpont - - + + + + + templates/_partials/fields/embed.html.twig:24 + + editor_embed.label_matched_embed Egyező beágyazás - - + + + + + templates/_partials/fields/embed.html.twig:25 + + editor_embed.label_preview Előnézet - - + + + + + templates/_partials/fields/embed.html.twig:26 + + editor_embed.label_size Méret - - - editor_date.toggle - Átváltás - - - filelist.remark - imagelist mező.]]> - - - image.button_upload - Kép feltöltése - - - image.button_from_library - Képtárból - - + + + + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + + image.placeholder_filename - Filename - - + Fájlnév (töltsön fel új fájlt, vagy válasszon egy meglévőt) + + + + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + + image.placeholder_alt_text Alt text - - + + + + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + + image.placeholder_title Cím - - - slug.button_locked - Zárolt - - - slug.button_edit - Szerkesztés - - - slug.generate_from - Generálás… - - - imagelist.remark - __imagelist.remark - - - quickselect.title_select - __quickselect.title_select - - - files_list.remark - filelist mezővel.]]> - - - finder.button_list - Lista - - - finder.button_cards - Mátrix - - + + + + + templates/_base/layout.html.twig:91 + + + admin_sidebar.toggler + Oldalpanel szélesség átkapcsolás + + + + + templates/_base/layout.html.twig:82 + + + admin_sidebar_toggler.toggle + Váltás menü]]> + + + + + templates/_partials/fields/date.html.twig:39 + + + editor_date.toggle + Átváltás + + + + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + + + flash_messages.notification + Értesítés + + + + + templates/content/_localeswitcher.html.twig:19 + + + localeswitcher.button_info + Lokalizáció megtekintése + + + + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + + + listing.title_sortby + Rendezés + + + + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + + + listing.placeholder_filter + Kulcsszó… + + + + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + + + listing.button_filter + Szűrő + + + + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + + + listing.button_clear + Szűrés/Rendezés törlése + + + + + templates/content/view_locales.html.twig:99 + + + view_locales.badge_default + Alapértelmezett + + + + + templates/content/view_locales.html.twig:105 + + + view_locales.badge_ok + OK + + + + + templates/content/view_locales.html.twig:101 + + + view_locales.badge_missing + Hiányzó + + + + + templates/finder/_files_actions.html.twig:10 + + files_cards.button_toggle Legördülő átkapcsolása - - + + + + + templates/finder/_files_actions.html.twig:17 + + files_cards.action_edit_image_info Kép infó szerkesztés - - + + + + + templates/finder/_files_actions.html.twig:19 + + files_cards.action_edit_file Fájl szerkesztése editorban - - + + + + + templates/finder/_files_actions.html.twig:25 + + files_cards.action_view_original Eredeti megtekintése - - + + + + + templates/finder/_files_actions.html.twig:36 + + files_cards.action_duplicate Duplikáció - - + + + + + templates/finder/_files_actions.html.twig:49 + + files_cards.action_delete Törlés - - + + + + + templates/finder/_files_actions.html.twig:56 + + files_cards.label_filename Fájlnév: - - + + + + + templates/finder/_files_actions.html.twig:63 + + files_cards.label_title Cím: - - + + + + + templates/finder/_files_actions.html.twig:70 + + files_cards.label_dimensions Dimenziók: - - + + + + + templates/finder/_files_actions.html.twig:76 + + files_cards.label_filesize Méret: - - + + + + + templates/finder/_files_actions.html.twig:81 + + files_cards.label_created_on Létrehozva: - - - files_cards.message_no_files - Nincs fájl ebben a mappában. Jobboldalon válassz ki egy mappát! - - + + + + + templates/finder/_files_list.html.twig:75 + + + files_list.remark + Ebben a mappában nincsenek fájlok. Válasszon egy mappát a navigáláshoz. + + + + + templates/finder/_quickselect.html.twig:5 + + + quickselect.title_select + __quickselect.title_select + + + + + templates/finder/finder.html.twig:45 + + + finder.button_list + Lista + + + + + templates/finder/finder.html.twig:49 + + + finder.button_cards + Mátrix + + + + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + + + extensions.title_desc + Meghatározás: + + + + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + + + extensions.title_author + Szerző: + + + + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + + extensions.title_package + Csomag / Osztály név: + + + + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + + + extensions.title_version + Verzió: + + + + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + + extensions.info_not_installed + Ez a csomag lokális, nem Composerrel lett telepítve + + + + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + + + extensions.title_class + Osztálynév: + + + + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + + + extensions.button_configuration + Konfiguráció + + + + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + + + extensions.button_source + Forrás + + + + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + + + extensions.button_remove + Bővítmény törlése + + + + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + + + extensions.button_disable + Bővítmény tiltása + + + + + templates/security/login.html.twig:40 + + login.header_login Bejelentkezés - - - view_locales.badge_default - Alapértelmezett - - - view_locales.badge_ok - OK - - - view_locales.badge_missing - Hiányzó - - - localeswitcher.button_info - Lokalizáció megtekintése - - - buttons.button_toggle - Átkapcsolás - - + + + + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + + extensions.message_not_implemented + Sajnos még nincs implementálva! + + + + + templates/content/listing.html.twig:6 + + listing.title_overview Áttekintő - - - listing_select_box.card_header.selected - Kijelölve - - - listing_select_box.card_body.records_passed - a kijelölt rekord ID-ken végrehajtva - - - listing_select_box.card_body.remark - (ezek egyfajta "Axion" tömeges törlés/módosítással dolgozhatók fel) - - - listing.title_sortby - Rendezés - - - listing.option_select_item - Elem kiválasztás - - - listing.title_title - Cím - - - listing.placeholder_filter - Kulcsszó… - - - listing.button_filter - Szűrő - - - listing.button_clear - Szűrés/Rendezés törlése - - - admin_sidebar_toggler.toggle - Menü átkapcsolás - - - admin_sidebar.toggler - Oldalpanel szélesség átkapcsolás - - + + + + + templates/finder/_files_cards.html.twig:48 + + + files_cards.message_no_files + Nincs fájl ebben a mappában. Jobboldalon válassz ki egy mappát! + + + + + templates/_partials/_content_listing.html.twig:13 + + + listing_filter.button_compact + Becsuk + + + + + templates/_partials/_content_listing.html.twig:14 + + + listing_filter.button_expanded + Kinyit + + + + + templates/finder/finder.html.twig:41 + + finder.label_view Elrendezés: - - + + + + + templates/_partials/_content_listing.html.twig:34 + + listing_table.actions.button_edit Szerkesztés - - + + + + + src/Controller/Backend/UserController.php:50 + + controller.user.title Felhasznlók és engedélyek - - + + + + + src/Controller/Backend/UserController.php:51 + + controller.user.subtitle Felhasználók és engedélyeik szerkesztése - - - controller.database.check_title - Adatbázis ellenőrzése - - - controller.database.check_subtitle - Az adatbázis vizsgálata - - - controller.database.update_title - Adatbázis frissítés - - - controller.database.update_subtitle - Változás esetén történő frissítés - - - controller.omnisearch.title - Omnisearch - - - controller.omnisearch.subtitle - Keresés mélytartalomban, részletekben - - + + + + + templates/users/listing.html.twig:20 + + listing.title_display_name Megjelenített név - - + + + + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + + listing.title_username Felhasználónév - - + + + + + templates/users/listing.html.twig:20 + + listing.title_email - Email - - + E-mail + + + + + templates/users/listing.html.twig:21 + + listing.title_roles Szerepkörök - - + + + + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + + listing.title_last_seen Utolsó bejelentkezés - - + + + + + templates/users/listing.html.twig:23 + + listing.title_last_ip Utolsó IP - - + + + + + templates/users/listing.html.twig:24 + + listing.title_actions Műveletek - - - user.not_valid_email - Érvénytelen email cím - - - user.not_valid_password - Érvénytelen jelszó - - + + + + + templates/users/profile.html.twig:11 + + + user.unknown_user + Ismeretlen felhasználó + + + + + templates/media/edit.html.twig:114 + + + label.predominant_colors__in_image + A kép meghatározó színei + + + + + public/theme/skeleton/listing.twig:14 + + + general.phrase.overview-for + Áttekintés a következőhöz: '%slug%' + + + + + public/theme/skeleton/partials/_recordfooter.twig:40 + + + general.phrase.related-content + Kapcsolódó tartalom + + + + + public/theme/skeleton/partials/_footer.twig:13 + + + action.search + Keresés + + + + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + + + caption.new_contenttype + Új %contenttype% + + + + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + + + caption.untitled_contenttype + Névtelen %contenttype% + + + + + templates/users/profile.html.twig:6 + + + title.edit_user_profile + Profil szerkesztés + + + + + templates/pages/menupage.html.twig:13 + + caption.redirection_page Átirányítási oldal - - - about.system_info - Rendszer információ - - - title.filtered_by - '%szűrő%'-vel szűrt tartalom.]]> - - - extensions.title_configuration - Konfigurációs fájl - - - extensions.title_dependencies - Függőségek - - - extensions.no_dependencies - Nincsenek ismert függőségek - - - caption.logviewer - Napló - - - extensions.button_detailed_view - Részletek - - - upload.allow_file_types - Feltöltéshez engedélyezett fájlok - - - upload.max_size - Feltölthető méret - - + + + + + templates/media/edit.html.twig:6 + + + caption.edit_image + Kép szerkesztése + + + + + templates/users/_form.html.twig:44 + + + password.suggested + %password%]]> + + + + + templates/media/edit.html.twig:70 + + + field.cropX + Kivágás (X) + + + + + templates/media/edit.html.twig:73 + + + field.cropXPostfix + A kivágás pozíciója X tengelyen (0-100) + + + + + templates/media/edit.html.twig:80 + + + field.cropYPostfix + A kivágás pozíciója Y tengelyen (0-100) + + + + + templates/media/edit.html.twig:77 + + + field.cropY + Kivágás (Y) + + + + + templates/media/edit.html.twig:84 + + + field.cropZoom + Kivágás nagyítás + + + + + templates/media/edit.html.twig:87 + + + field.cropZoomPostfix + A kivágás nagyításának mértéke (1-10) + + + + + templates/content/listing.html.twig:136 + + + title.contentType + Tartalomtípus + + + + + templates/_partials/_content_listing.html.twig:44 + + + listing_table.no_results + Nincs találat. Bővítse a szűrési feltételeket, vagy adjon hozzá további tartalmat. + + + + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + + + listing.option_select_sortby + Rendezés mezőre… + + + + + templates/content/edit.html.twig:103 + + + title.primary_actions + Elsődleges műveletek + + + + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + + + title.options + Opciók + + + + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + + + action.delete + Törlés + + + + + templates/users/listing.html.twig:76 + + + action.enable + Engedélyezés + + + + + templates/users/listing.html.twig:71 + + + action.disable + Letiltás + + + + + templates/users/listing.html.twig:124 + + + listing.title_session_expires + A munkafolyamat lejár + + + + + templates/users/listing.html.twig:125 + + + listing.title_ip_address + IP cím + + + + + templates/users/listing.html.twig:126 + + + listing.title_browser + Böngésző / platform + + + + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + + image.button_remove Eltávolítás - - + + + + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + + image.button_edit_attributes Attributumok szerkesztése - - + + + + + templates/_partials/fields/imagelist.html.twig:27 + + + image.add_new_image + Új kép hozzáadása + + + + + templates/_partials/fields/filelist.html.twig:25 + + + file.add_new_file + Új fájl hozzáadás + + + + + templates/_partials/fields/_collection_buttons.html.twig:20 + + + collection.remove_item + Tétel eltávolítása + + + + + templates/_partials/fields/collection.html.twig:6 + + + collection.add_item + Új elem hozzáadása ehhez: '%name%' + + + + + templates/_partials/fields/_collection_buttons.html.twig:5 + + collection.move_item_up Mozgatás felfelé - - + + + + + templates/_partials/fields/_collection_buttons.html.twig:9 + + collection.move_item_down Mozgatás lefelé - - - collection.confirm_delete - Biztos hogy törölni kívánod ezt az tételt? - - - collection.remove_item - Tétel eltávolítása - - - collection.add_item - Tétel hozzáadása - - - collection.expand_all - Összes kibontása - - - collection.collapse_all - Összes becsukása - - - collection.select - Kijelölés… - - + + + + + templates/pages/extensions.html.twig:54 + + + extensions.button_detailed_view + Részletek + + + + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + + + extensions.title_configuration + Konfigurációs fájl + + + + + templates/finder/_uploader.html.twig:17 + + + caption.file_upload.upload_text + Húzd ide a feltölteni kívánt fájlt + + + + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + + + pager.next + Következő + + + + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + + + pager.previous + Előző + + + + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + + image.button_up Fel - - + + + + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + + image.button_down Le - - - file.add_new_file - Új fájl hozzáadás - - + + + + + templates/helpers/_field_blocks.twig:28 + + + general.phrase.download + Letöltés + + + + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + + + caption.logviewer + Napló + + + + + templates/pages/logviewer.html.twig:39 + + + label.request + Kérés + + + + + templates/pages/logviewer.html.twig:53 + + + label.trace + Nyomkövetés + + + + + templates/pages/logviewer.html.twig:71 + + + label.context + Kontextus + + + + + templates/pages/logviewer.html.twig:19 + + + label.id + ID + + + + + templates/pages/logviewer.html.twig:20 + + + label.level + Szint + + + + + templates/pages/logviewer.html.twig:23 + + + label.message + Üzenet + + + + + templates/pages/logviewer.html.twig:25 + + + label.timestamp + Időbélyeg + + + + + templates/pages/logviewer.html.twig:86 + + + label.user + Felhasználó + + + + + templates/users/listing.html.twig:33 + + + listing.disabled + Letiltva + + + + + templates/_partials/fields/slug.html.twig:17 + + slug.button_unlocked Feloldva - - - image.add_new_image - Új kép hozzáadása - - - caption.file_upload.upload_text - Húzd ide a feltölteni kívánt fájlt - - - file.delete_confirm - Biztos törölni szeretnéd ezt a fájlt? - - - placeholder.username_or_email - felhasználónév vagy email - - - placeholder.password - jelszó - - + + + + + public/theme/skeleton/listing.twig:42 + + + general.phrase.no-content-found + Nem található tartalom + + + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + + + general.phrase.none + Nincs + + + + + templates/content/view_locales.html.twig:103 + + view_locales.badge_empty Üres - - - content.edit_missing_definition - A Tartalom Típus definíciója hiányzik! A rekordot nem lehet majd megfelelően szerkeszteni. Kérlek ellenőrizd a contenttypes.yaml fájlt, hogy az tartalmazza-e a %contenttype%-t! - - - title.primary_actions - Elsődleges műveletek - - - title.options - Opciók - - - action.confirm_delete - Biztos törölni kívánod ezt a tartalmat? - - - action.delete - Törlés - - + + + + + templates/content/listing.html.twig:45 + + action.update_all Alkalmazás mindre - - - listing.option_select_sortby - Rendezés mezőre… - - + + + + + templates/pages/about.html.twig:21 + + + about.system_info + Rendszer információ + + + + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + + + action.confirm_delete + Biztos törölni kívánod ezt a tartalmat? + + + + + src/Form/LoginType.php:38 + + + placeholder.username_or_email + felhasználónév vagy email + + + + + src/Form/LoginType.php:52 + + + placeholder.password + jelszó + + + + + src/Menu/BackendMenuBuilder.php:336 + + + caption.other_content + Egyéb tartalom + + + + + templates/finder/editfile.html.twig:39 + + + editfile.target_not_writable + A mentés le van tiltva, mert a célfájl nem írható. + + + + + templates/_partials/fields/_label.html.twig:6 + + + label.translatable + Ez a mező lefordítható + + + + + templates/pages/logviewer.html.twig:92 + + + label.content + Tartalom + + + + + src/Controller/Backend/FileEditController.php:148 + + + file.delete_success + A fájl sikeresen törölve! + + + + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + + + file.delete_confirm + Biztos törölni szeretnéd ezt a fájlt? + + + + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + + listing.title_filterby Keresés / szűrés - - - title.contentType - Tartalomtípus - - - title.edit_user_profile - Profil szerkesztés - - - listing.title_session_expires - A munkafolyamat lejár - - - listing.title_ip_address - IP cím - - - listing.title_browser - Böngésző / platform - - - pager.previous - Előző - - - pager.next - Következő - - + + + + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + + + content.status_changed_successfully + Az állapot sikeresen megváltozott + + + + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + + + content.deleted_successfully + A tartalom sikeresen törölve + + + + + templates/content/_buttons.html.twig:46 + + + label.current_status + Jelenlegi állapot + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.published + Közzétéve + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.draft + Piszkozat + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.timed + Időzített + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.held + Visszatartva + + + + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + + + collection.confirm_delete + Biztos hogy törölni kívánod ezt az tételt? + + + + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + + + upload.allow_file_types + Feltöltéshez engedélyezett fájlok + + + + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + + + upload.max_size + Feltölthető méret + + + + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + + listing.placeholder_search Kulcsszó keresése… - - + + + + + templates/pages/dashboard.html.twig:12 + + + title.filtered_by + '%filter%' szerint szűrt tartalom.]]> + + + + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + + + action.view_site + Weboldal megtekintése + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + + action.new Új - - - caption.edit_image - Kép szerkesztése - - - field.cropX - Kivágás (X) - - - field.cropXPostfix - A kivágás pozíciója X tengelyen (0-100) - - - field.cropY - Kivágás (Y) - - - field.cropYPostfix - A kivágás pozíciója Y tengelyen (0-100) - - - field.cropZoom - Kivágás nagyítás - - - field.cropZoomPostfix - A kivágás nagyításának mértéke (1-10) - - - label.predominant_colors__in_image - A kép meghatározó színei - - - caption.other_content - Egyéb tartalom - - + + + + + templates/pages/extension_details.html.twig:39 + + + extensions.no_dependencies + Nincsenek ismert függőségek + + + + + templates/pages/extension_details.html.twig:36 + + + extensions.title_dependencies + Függőségek + + + + + templates/_partials/fields/collection.html.twig:7 + + + collection.expand_all + Összes kibontása + + + + + templates/_partials/fields/collection.html.twig:8 + + + collection.collapse_all + Összes becsukása + + + + + templates/content/edit.html.twig:45 + + + content.edit_missing_definition + A Tartalom Típus definíciója hiányzik! A rekordot nem lehet majd megfelelően szerkeszteni. Kérlek ellenőrizd a contenttypes.yaml fájlt, hogy az tartalmazza-e a %contenttype%-t! + + + + + templates/_partials/fields/collection.html.twig:10 + + + collection.select + Kijelölés… + + + + + src/Form/LoginType.php:34 + + + form.empty_username_email + Kérjük, adja meg felhasználónevét vagy e-mail-címét + + + + + src/Form/LoginType.php:46 + + + form.empty_password + Kérjük, adja meg jelszavát + + + + + src/Form/ResetPasswordRequestFormType.php:28 + + + form.empty_email + Kérjük, adja meg e-mail-címét + + + + + templates/content/listing.html.twig:112 + + + listing.title_filterby_field + Szűrés mező szerint + + + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + + + image.button_from_url + URL-ből + + + + + templates/finder/_files_actions.html.twig:29 + + + files_cards.copy_to_clipboard + Fájlhivatkozás másolása + + + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + + + warning + Figyelmeztetés + + + + + src/Controller/Backend/FilemanagerController.php:150 + + + filemanager.create_folder_already_exists + A mappa már létezik + + + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + + + filemanager.create_folder_error + Nem sikerült létrehozni a mappát + + + + + src/Controller/Backend/FilemanagerController.php:155 + + + filemanager.create_folder_success + A mappa sikeresen létrehozva. + + + + + src/Controller/Backend/FilemanagerController.php:115 + + + filemanager.delete_folder_successful + A mappa sikeresen törölve + + + + + templates/finder/_createfolder.html.twig:13 + + + folder.create_new + Új mappa + + + + + templates/users/_form.html.twig:172 + + + label.avatar + Avatár + + + + + templates/security/login.html.twig:64 + + + login.forgotpassword + Elfelejtett jelszó + + + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + + + reset_password.request_header + Jelszó visszaállítása + + + + + templates/reset_password/request.html.twig:42 + + + reset_password.request_description + Adja meg e-mail-címét, és küldünk egy hivatkozást a jelszava visszaállításához. + + + + + templates/reset_password/request.html.twig:44 + + + reset_password.request_send + Küldés + + + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + + + Email + E-mail + + + + + templates/reset_password/request.html.twig:47 + + + reset_password.back-to-login + Vissza a bejelentkezéshez + + + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + + + reset_password.reset_header + Jelszó visszaállítása + + + + + templates/reset_password/check_email.html.twig:4 + + + reset_password.check_email_sent_header + Jelszó-visszaállító e-mail elküldve + + + + + templates/reset_password/check_email.html.twig:35 + + + reset_password.check_email_sent_text_1 + Küldtünk egy e-mailt, amely tartalmaz egy hivatkozást, amelyre kattintva visszaállíthatja jelszavát. Ez a hivatkozás %hours% óra múlva lejár. + + + + + templates/reset_password/check_email.html.twig:36 + + + reset_password.check_email_sent_text_2 + Ha nem kap e-mailt, ellenőrizze a levélszemét mappát, vagy %tryagain%. + + + + + templates/reset_password/reset.html.twig:37 + + + reset_password.reset_btn + Jelszó visszaállítása + + + + + templates/reset_password/email.html.twig:1 + + + reset_password.email_title + Üdvözöljük! + + + + + templates/reset_password/email.html.twig:3 + + + reset_password.email_description + Jelszava visszaállításához látogasson el a következő hivatkozásra + + + + + templates/reset_password/email.html.twig:7 + + + reset_password.email_expire + Ez a hivatkozás %hours% óra múlva lejár. + + + + + templates/reset_password/email.html.twig:9 + + + reset_password.email_thanks + Köszönjük! + + + + + src/Form/ChangePasswordFormType.php:31 + + + reset_password.enter_pwd + Kérjük, adjon meg egy jelszót + + + + + src/Form/ChangePasswordFormType.php:43 + + + label.repeat_password + Jelszó megismétlése + + + + + src/Form/ChangePasswordFormType.php:45 + + + reset_password.not_matching_pwds + A jelszómezőknek egyezniük kell. + + + + + src/Form/ChangePasswordFormType.php:35 + + + reset_password.minimum_length + Jelszavának legalább %s karakter hosszúnak kell lennie + + + + + src/Controller/Backend/ResetPasswordController.php:99 + + + reset_password.no_token + Nem található jelszó-visszaállító token az URL-ben vagy a munkamenetben. + + + + + src/Controller/Backend/ResetPasswordController.php:134 + + + reset_password.reset_successful + Jelszava sikeresen visszaállítva. + + + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + + + reset_password.problem_with_request + Hiba történt a jelszó-visszaállítási kérés feldolgozása során - %s + + + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + + + label.filtered_by + Szűrve a következő szerint + + + + + templates/content/_buttons.html.twig:34 + + + action.preview_secure_share + Biztonságos előnézeti hivatkozás megosztása + + + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + + + action.stop_impersonating + Megszemélyesítés leállítása + + + + + templates/users/listing.html.twig:82 + + + action.impersonate + Megszemélyesítés + + + + + templates/widget/maintenance_mode.twig:25 + + + maintenance.activated_warning + A karbantartási mód aktiválva van + + + + + templates/_partials/fields/embed.html.twig:28 + + + action.refresh + Frissítés + + + + + templates/content/listing.html.twig:148 + + + listing_details_box.showing_records + %total% rekordból %current% megjelenítése + + + + + templates/content/listing.html.twig:154 + + + listing_details_box.name + Név: %name% (egyes szám: %singularName%) + + + + + templates/content/listing.html.twig:160 + + + listing_details_box.slug + Slug: %slug% (egyes szám: %singularSlug%) + + + + + templates/content/listing.html.twig:166 + + + listing_details_box.record_template + Rekordsablon: %template% + + + + + templates/content/listing.html.twig:172 + + + listing_details_box.listing_template + Listasablon: %template% (%listingRecords% rekord) + + + + + templates/content/listing.html.twig:186 + + + listing_details_box.locales + Nyelvek: %locales% + + + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + + + action.edit_permissions + Jogosultságok szerkesztése + + + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + + + general.label.search + Keresés + + + + + templates/_partials/fields/image.html.twig:25 + + + image.image_preview + Kép előnézete + + + + + templates/_partials/_content_listing.html.twig:15 + + + listing_table.actions.select_all + Összes kijelölése + + + + + src/Form/LoginType.php:58 + + + label.remembermeduration + Emlékezzen rám? (%duration% nap) + + + + + templates/users/listing.html.twig:117 + + + listing.current_sessions_header + Aktuális munkamenetek + + + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + + + image.button_upload_options + Feltöltési beállítások + + + + + templates/content/_taxonomies.html.twig:27 + + + Order + Sorrend + + + + + src/Form/ResetPasswordRequestFormType.php:32 + + + placeholder.email + az Ön e-mail-címe + + + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + + + modal.title.file_field + Válasszon egy fájlt + + + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + + + modal.title.image_field + Válasszon egy képet + + + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + Feltöltés URL-ből + + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + Betöltés... + + + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + + + modal.button_save + Mentés + + + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + + + modal.button_deny + Bezárás + +
diff --git a/translations/messages.it.xlf b/translations/messages.it.xlf index 948c93487..0cef76dc0 100644 --- a/translations/messages.it.xlf +++ b/translations/messages.it.xlf @@ -1,149 +1,27 @@ - - - templates/debug/source_code.twig:26 - - - not_available - Non disponibile - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Errore %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - Si è verificato un errore sconosciuto (HTTP %status_code%) che ha impedito il completamento della vostra richiesta. - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - tornare all'homepage.]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - Non si dispone dei permessi per accedere a questa risorsa. - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - Rivolgersi all'amministratore di sistema per ottenere l'accesso a questa risorsa. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - Impossibile trovare la pagina richiesta. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - tornare all'homepage.]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - Si è verificato un errore di sistema. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - tornare all'homepage.]]> - - - - - templates/debug/source_code.twig:17 - - - title.source_code - Codice sorgente della pagina - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - Codice del Controller - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Codice del template Twig - - - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Modifica Utente - - - templates/debug/source_code.twig:7 - - - action.show_code - Mostra sorgente - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 action.save @@ -151,21 +29,35 @@ + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + action.do_something Fai qualcosa - + - templates/users/change_password.twig:26 + templates/users/listing.html.twig:64 - - action.edit_user - Modifica Utente - - - action.edit Modifica @@ -173,45 +65,28 @@ - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 label.username - Username - - - - - templates/debug/source_code.twig:3 - - - help.show_code - Controller e del template utilizzati in questa pagina.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - Dopo la modifica della password dovrete effettuare nuovamente il login. + Nome utente - templates/security/login.twig:4 + templates/security/login.html.twig:4 title.login - Login + Accesso - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 label.password @@ -220,7 +95,7 @@ - templates/security/login.twig:84 + templates/security/login.html.twig:60 action.log_in @@ -229,26 +104,17 @@ - templates/content/listing.twig:9 + templates/content/listing.html.twig:58 title.contentlisting Lista dei contenuti - - - templates/users/edit.twig:24 - - - action.change_password - Cambia la password - - - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -257,7 +123,8 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 field.status @@ -266,8 +133,8 @@ - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 field.createdAt @@ -276,8 +143,10 @@ - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 field.modifiedAt @@ -286,7 +155,7 @@ - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 field.publishedAt @@ -295,7 +164,7 @@ - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 field.depublishedAt @@ -304,7 +173,8 @@ - templates/editcontent/media_edit.twig:47 + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 field.title @@ -313,7 +183,7 @@ - templates/editcontent/media_edit.twig:53 + templates/media/edit.html.twig:45 field.description @@ -322,7 +192,7 @@ - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 field.copyright @@ -331,7 +201,7 @@ - templates/editcontent/media_edit.twig:66 + templates/media/edit.html.twig:58 field.originalFilename @@ -340,7 +210,8 @@ - templates/editcontent/media_edit.twig:105 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 field.width @@ -349,7 +220,8 @@ - templates/editcontent/media_edit.twig:112 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 field.height @@ -358,7 +230,7 @@ - templates/editcontent/media_edit.twig:119 + templates/media/edit.html.twig:142 field.filesize @@ -367,7 +239,7 @@ - templates/security/login.twig:61 + src/Form/LoginType.php:31 label.username_or_email @@ -376,7 +248,7 @@ - templates/security/login.twig:80 + src/Form/LoginType.php:58 label.rememberme @@ -385,7 +257,9 @@ - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 about.visit_bolt @@ -394,7 +268,9 @@ - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 about.bolt_documentation @@ -403,7 +279,7 @@ - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 about.bolt_on_github @@ -412,7 +288,7 @@ - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 about.used_libraries @@ -421,37 +297,36 @@ - templates/pages/about.twig:37 + templates/pages/about.html.twig:66 about.list_of_used_libraries Di seguito l'elenco delle librerie di terze parti utilizzate da Bolt. - + - src/Form/UserType.php:35 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 - label.fullname - Nome completo + label.email + Indirizzo Email - + - src/Form/UserType.php:38 - new + templates/users/_form.html.twig:185 - label.email - Indirizzo Email + label.about + Su di me - src/Controller/Backend/UserController.php:33 - new + src/Controller/Backend/UserEditController.php:129 user.updated_successfully @@ -460,9 +335,9 @@ - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 content.updated_successfully @@ -471,8 +346,7 @@ - src/Controller/Backend/EditMediaController.php:157 - new + src/Controller/Backend/MediaEditController.php:88 content.created_successfully @@ -481,8 +355,7 @@ - src/Controller/Backend/EditFileController.php:101 - new + src/Controller/Backend/FileEditController.php:106 editfile.could_not_write @@ -490,517 +363,645 @@ + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + label.locale - Locale - - - - - label.backend_theme - Tema del Backend - - - - - English (en) - English (en) - - - - - Nederlands (dutch, nl) - Nederlands (dutch, nl) - - - - - Español (Spanish, es) - Español (Spanish, es) - - - - - français (French, fr) - Français (French, fr) - - - - - Deutsch (German, de) - Deutsch (German, de) - - - - - Język Polski (Polish, pl) - Język Polski (Polish, pl) - - - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - - - - - Italiano (Italian, it) - Italiano (Italian, it) + Lingua + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + The Default theme Il tema di default + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + The Default Dark theme Il tema scuro di default + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + WoordPers: Kinda looks like that other CMS WoordPers: sembra un po' come quell'altro CMS + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + caption.dashboard Dashboard - - - caption.translations: messages - caption.translations: messages - - + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + caption.clear_cache Cancella la cache - - - caption.check_database - Verifica del Database - - - - - caption.routing set up - caption.routing set up - - + + src/Menu/BackendMenuBuilder.php:145 + caption.menu_setup Impostazioni del Menu + + src/Menu/BackendMenuBuilder.php:134 + caption.taxonomies Tassonomie + + src/Menu/BackendMenuBuilder.php:123 + caption.contenttypes Tipi di contenuto + + src/Menu/BackendMenuBuilder.php:112 + caption.main_configuration Configurazione principale + + src/Menu/BackendMenuBuilder.php:99 + caption.users_permissions + + src/Menu/BackendMenuBuilder.php:89 + caption.configuration Configurazione + + src/Menu/BackendMenuBuilder.php:77 + caption.settings Impostazioni + + src/Menu/BackendMenuBuilder.php:61 + caption.content Contenuto + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + caption.file_management Gestione File + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + caption.extensions Estensioni + + src/Menu/BackendMenuBuilder.php:280 + caption.view_edit_templates + + src/Menu/BackendMenuBuilder.php:270 + caption.uploaded_files Files caricati + + src/Menu/BackendMenuBuilder.php:157 + caption.routing_setup Impostazioni di Routing + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + caption.translations Traduzioni / Etichette + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + caption.about_bolt Info su Bolt + + templates/pages/about.html.twig:11 + caption.bolt_payoff Un CMS sofisticato, semplice e leggero + + templates/content/edit.html.twig:22 + caption.edit Modifica - - - caption.finder - Finder - - + + templates/finder/_uploader.html.twig:8 + caption.file_uploader Caricamento File + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + caption.meta_information Meta informazioni + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + date Data + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + size Dimensioni + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + thumbnail - Thumbnail + Miniatura + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + filename Nome file + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + actions Azioni + + templates/finder/_folders.html.twig:6 + directoryname Nome Directory - - - action.go - Vai - - + + templates/finder/_quickselect.html.twig:9 + form.quick_select_file Selezione veloce di un file da modificare… - - - label.quick_select - Selezione veloce - - + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + caption.path Percorso + + templates/media/edit.html.twig:30 + caption.filename Nome File - - - action.visit_site - Visita il sito - - + + templates/content/listing.html.twig:63 + action.create_new Crea nuovo + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + general.greeting - Hey, %name%! + Ciao, %name%! + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + action.logout - Logout + Esci + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + action.edit_profile Modifica Profilo + + templates/_partials/_flash_messages.html.twig:1 + action.close_alert chiudi + + src/Menu/BackendMenuBuilder.php:207 + caption.api API + + src/Menu/BackendMenuBuilder.php:165 + caption.all_configuration_files Tutti i files di configurazione + + src/Menu/BackendMenuBuilder.php:177 + caption.maintenance Manutenzione - - - caption.fixtures_dummy_content - Fixtures (Contenti fittizi) - - + + templates/finder/editfile.html.twig:21 + caption.edit_file Modifica File - - - caption.installation_checks - Verifica dell'installazione - - - - - form.select_language - Seleziona Lingua - - - - - field.locale - Locale - - + + templates/content/_localeswitcher.html.twig:7 + field.current_locale Locale corrente + + templates/content/_localeswitcher.html.twig:14 + field.switch_to_locale Cambia locale + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author Autore + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + general.phrase.edit Modifica + + public/theme/skeleton/partials/_recordfooter.twig:7 + Unknown Sconosciuto + + public/theme/skeleton/partials/_recordfooter.twig:6 + general.phrase.written-by-on Scritto da %name% il %date%. + + public/theme/skeleton/partials/_aside.twig:33 + general.phrase.missing-about-page Manca la pagina "About" + + public/theme/skeleton/partials/_aside.twig:35 + general.phrase.missing-about-page-block Manca il blocco "About" + + public/theme/skeleton/partials/_aside.twig:53 + contenttypes.generic.recent %contenttypes% recenti + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + general.phrase.search-ellipsis + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + general.phrase.search Cerca - - - 9fb3e6e - realizzato con Bolt.]]> - - + + public/theme/skeleton/partials/_aside.twig:60 + contenttypes.generic.overview Panoramica dei %contenttypes% + + public/theme/skeleton/partials/_aside.twig:62 + contenttypes.generic.no-recent Non è stato trovato alcun %contenttype% + + public/theme/skeleton/partials/_footer.twig:4 + Menu Menu + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + Search Cerca + + public/theme/skeleton/partials/_recordfooter.twig:14 + general.phrase.permalink Permalink - - - label.displayname - Displayname - - + + src/Controller/Backend/ClearCacheController.php:24 + label.cache_cleared La Cache è stata svuotata correttamente! - - caption.kitchensink - La Discarica - - - - parameters: -  '%search%': consequatur + src/Menu/BackendMenuBuilder.php:238 - general.phrase.search-results-for-variable - Risultati della ricerca di '%search%'. + caption.kitchensink + La Discarica - parameters: -  '%search%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:11 general.phrase.search-results-for @@ -1009,8 +1010,7 @@ - parameters: -  '%SEARCHTERM%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:51 general.phrase.no-search-results-for @@ -1018,117 +1018,2420 @@ + + public/theme/skeleton/search.twig:53 + general.phrase.no-search-term-provided Inserire un termine di ricerca per ottenere risultati rilevanti. + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + general.phrase.read-more Altre informazioni + + public/theme/skeleton/partials/_footer.twig:17 + general.phrase.built-with-bolt - realizzato con Bolt.]]> + realizzato con Bolt.]]> + + vendor/bolt/newswidget/templates/news.html.twig:3 + general.latest_bolt_news Ultime notizie su Bolt + + templates/content/_buttons.html.twig:19 + action.preview Anteprima + + templates/content/_buttons.html.twig:58 + action.view_saved Mostra sul sito la versione salvata + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + label.display_name Nome Display + + templates/content/edit.html.twig:22 + caption.duplicate Duplica - - - label.current_password - Password corrente - - + + src/Form/ChangePasswordFormType.php:40 + label.new_password Nuova Password - - - label.new_password_confirm - Nuova Password (conferma) - - + + src/Controller/Backend/FileEditController.php:104 + editfile.updated_successfully Il File è stato modificato con successo! - - - This website is <a href='%url%' target='_blank' title='Sophisticated, lightweight & simple CMS'>Built with Bolt</a>. - realizzato con Bolt.]]> - - + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + action.add_user Aggiungi Utente + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + success Successo! + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + user.updated_profile Il Profilo Utente è stato aggiornato! + + templates/users/_form.html.twig:124 + label.roles Ruoli + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + user.new_user Nuovo Utente - + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + + + action.view + Visualizza + + + + + templates/_partials/fields/slug.html.twig:18 + + + slug.button_locked + Bloccato + + + + + templates/_partials/fields/slug.html.twig:19 + + + slug.button_edit + Modifica + + + + + templates/_partials/fields/slug.html.twig:20 + + + slug.generate_from + Genera da: + + + + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + + + image.button_upload + Carica + + + + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + + + image.button_from_library + Dalla libreria + + + + + templates/_partials/_content_listing.html.twig:23 + + + listing_table.actions.view_on_site + Visualizza sul sito + + + + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + + listing_table.actions.status_to_publish + Cambia stato in "pubblicato" + + + + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + + listing_table.actions.status_to_held + Cambia stato in "in attesa" + + + + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + + listing_table.actions.status_to_draft + Cambia stato in "bozza" + + + + + templates/_partials/_content_listing.html.twig:28 + + + listing_table.actions.duplicate + Duplica + + + + + templates/_partials/_content_listing.html.twig:29 + + + listing_table.actions.delete + Elimina + + + + + templates/_partials/_content_listing.html.twig:30 + + + listing_table.actions.slug + Slug + + + + + templates/_partials/_content_listing.html.twig:31 + + + listing_table.actions.created_on + Creato il + + + + + templates/_partials/_content_listing.html.twig:32 + + + listing_table.actions.published_on + Pubblicato il + + + + + templates/_partials/_content_listing.html.twig:33 + + + listing_table.actions.last_modified_on + Ultima modifica il + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Selezionato + + + + + templates/_partials/fields/embed.html.twig:20 + + + editor_embed.content_url + URL del contenuto da incorporare + + + + + templates/_partials/fields/embed.html.twig:21 + + + editor_embed.placeholder_content_url + URL del contenuto su Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + + + + templates/_partials/fields/embed.html.twig:22 + + + editor_embed.label_height + Altezza + + + + + templates/_partials/fields/embed.html.twig:23 + + + editor_embed.label_pixel + pixel + + + + + templates/_partials/fields/embed.html.twig:24 + + + editor_embed.label_matched_embed + Incorporamento corrispondente + + + + + templates/_partials/fields/embed.html.twig:25 + + + editor_embed.label_preview + Anteprima + + + + + templates/_partials/fields/embed.html.twig:26 + + + editor_embed.label_size + Dimensione + + + + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + + + image.placeholder_filename + Nome file (carica un nuovo file o selezionane uno esistente) + + + + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + + + image.placeholder_alt_text + Attributo alt + + + + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + + + image.placeholder_title + Attributo title + + + + + templates/_base/layout.html.twig:91 + + + admin_sidebar.toggler + Attiva/disattiva larghezza barra laterale + + + + + templates/_base/layout.html.twig:82 + + + admin_sidebar_toggler.toggle + Attiva/disattiva menu]]> + + + + + templates/_partials/fields/date.html.twig:39 + + + editor_date.toggle + Attiva/disattiva + + + + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + + + flash_messages.notification + Notifica + + + + + templates/content/_localeswitcher.html.twig:19 + + + localeswitcher.button_info + Visualizza informazioni sulla localizzazione + + + + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + + + listing.title_sortby + Ordina per + + + + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + + + listing.placeholder_filter + Parola chiave per filtrare… + + + + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + + + listing.button_filter + Filtra + + + + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + + + listing.button_clear + Cancella ordinamento/filtro + + + + + templates/content/view_locales.html.twig:99 + + + view_locales.badge_default + Predefinito + + + + + templates/content/view_locales.html.twig:105 + + + view_locales.badge_ok + OK + + + + + templates/content/view_locales.html.twig:101 + + + view_locales.badge_missing + Mancante + + + + + templates/finder/_files_actions.html.twig:10 + + + files_cards.button_toggle + Attiva/disattiva menu a discesa + + + + + templates/finder/_files_actions.html.twig:17 + + + files_cards.action_edit_image_info + Modifica informazioni immagine + + + + + templates/finder/_files_actions.html.twig:19 + + + files_cards.action_edit_file + Modifica file nell’editor + + + + + templates/finder/_files_actions.html.twig:25 + + + files_cards.action_view_original + Visualizza originale + + + + + templates/finder/_files_actions.html.twig:36 + + + files_cards.action_duplicate + Duplica + + + + + templates/finder/_files_actions.html.twig:49 + + + files_cards.action_delete + Elimina + + + + + templates/finder/_files_actions.html.twig:56 + + + files_cards.label_filename + Nome file: + + + + + templates/finder/_files_actions.html.twig:63 + + + files_cards.label_title + Titolo: + + + + + templates/finder/_files_actions.html.twig:70 + + + files_cards.label_dimensions + Dimensioni: + + + + + templates/finder/_files_actions.html.twig:76 + + + files_cards.label_filesize + Dimensione file: + + + + + templates/finder/_files_actions.html.twig:81 + + + files_cards.label_created_on + Creato il: + + + + + templates/finder/_files_list.html.twig:75 + + + files_list.remark + Non sono presenti file in questa cartella. Seleziona una cartella in cui navigare. + + + + + templates/finder/_quickselect.html.twig:5 + + + quickselect.title_select + Seleziona un file: + + + + + templates/finder/finder.html.twig:45 + + + finder.button_list + Elenco + + + + + templates/finder/finder.html.twig:49 + + + finder.button_cards + Schede + + + + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + + + extensions.title_desc + Descrizione: + + + + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + + + extensions.title_author + Autore: + + + + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + + extensions.title_package + Nome pacchetto / classe: + + + + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + + + extensions.title_version + Versione: + + + + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + + extensions.info_not_installed + Questo è un pacchetto locale, non installato tramite Composer + + + + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + + + extensions.title_class + Nome classe: + + + + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + + + extensions.button_configuration + Configurazione + + + + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + + + extensions.button_source + Sorgente + + + + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + + + extensions.button_remove + Rimuovi estensione + + + + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + + + extensions.button_disable + Disabilita estensione + + + + + templates/security/login.html.twig:40 + + + login.header_login + Bolt » Accesso + + + + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + + extensions.message_not_implemented + Non ancora implementato. Spiacenti! + + + + + templates/content/listing.html.twig:6 + + + listing.title_overview + Panoramica per + + + + + templates/finder/_files_cards.html.twig:48 + + + files_cards.message_no_files + Non sono presenti file in questa cartella. Seleziona una cartella in cui navigare, sul lato destro. + + + + + templates/_partials/_content_listing.html.twig:13 + + + listing_filter.button_compact + Compatto + + + + + templates/_partials/_content_listing.html.twig:14 + + + listing_filter.button_expanded + Espanso + + + + + templates/finder/finder.html.twig:41 + + + finder.label_view + Visualizzazione: + + + + + templates/_partials/_content_listing.html.twig:34 + + + listing_table.actions.button_edit + Modifica + + + + + src/Controller/Backend/UserController.php:50 + + + controller.user.title + + + + + + src/Controller/Backend/UserController.php:51 + + + controller.user.subtitle + Per modificare gli utenti e i loro permessi + + + + + templates/users/listing.html.twig:20 + + + listing.title_display_name + Nome visualizzato + + + + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + + + listing.title_username + Nome utente + + + + + templates/users/listing.html.twig:20 + + + listing.title_email + Email + + + + + templates/users/listing.html.twig:21 + + + listing.title_roles + Ruoli + + + + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + + + listing.title_last_seen + Durata della sessione + + + + + templates/users/listing.html.twig:23 + + + listing.title_last_ip + Ultimo IP + + + + + templates/users/listing.html.twig:24 + + + listing.title_actions + Azioni + + + + + templates/users/profile.html.twig:11 + + + user.unknown_user + Utente sconosciuto + + + + + templates/media/edit.html.twig:114 + + + label.predominant_colors__in_image + Colori predominanti nell’immagine + + + + + public/theme/skeleton/listing.twig:14 + + + general.phrase.overview-for + Panoramica per "%slug%" + + + + + public/theme/skeleton/partials/_recordfooter.twig:40 + + + general.phrase.related-content + Contenuti correlati + + + + + public/theme/skeleton/partials/_footer.twig:13 + + + action.search + Cerca + + + + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + + + caption.new_contenttype + Nuovo %contenttype% + + + + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + + + caption.untitled_contenttype + %contenttype% senza titolo + + + + + templates/users/profile.html.twig:6 + + + title.edit_user_profile + Modifica profilo utente + + + + + templates/pages/menupage.html.twig:13 + + + caption.redirection_page + Pagina di reindirizzamento + + + + + templates/media/edit.html.twig:6 + + + caption.edit_image + Modifica immagine + + + + + templates/users/_form.html.twig:44 + + + password.suggested + %password%]]> + + + + + templates/media/edit.html.twig:70 + + + field.cropX + Ritaglio X + + + + + templates/media/edit.html.twig:73 + + + field.cropXPostfix + Posizione del ritaglio sull’asse X, intervallo 0-100. + + + + + templates/media/edit.html.twig:80 + + + field.cropYPostfix + Posizione del ritaglio sull’asse Y, intervallo 0-100. + + + + + templates/media/edit.html.twig:77 + + + field.cropY + Ritaglio Y + + + + + templates/media/edit.html.twig:84 + + + field.cropZoom + Fattore di zoom del ritaglio + + + + + templates/media/edit.html.twig:87 + + + field.cropZoomPostfix + Livello di zoom del ritaglio, intervallo 1-10. + + + + + templates/content/listing.html.twig:136 + + + title.contentType + Tipo di contenuto + + + + + templates/_partials/_content_listing.html.twig:44 + + + listing_table.no_results + Nessun risultato trovato. Amplia i criteri di filtraggio o aggiungi altri contenuti. + + + + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + + + listing.option_select_sortby + Seleziona il campo per l’ordinamento… + + + + + templates/content/edit.html.twig:103 + + + title.primary_actions + Azioni principali + + + + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + + + title.options + Opzioni + + + + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + + + action.delete + Elimina + + + + + templates/users/listing.html.twig:76 + + + action.enable + Abilita + + + + + templates/users/listing.html.twig:71 + + + action.disable + Disabilita + + + + + templates/users/listing.html.twig:124 + + + listing.title_session_expires + La sessione scade + + + + + templates/users/listing.html.twig:125 + + + listing.title_ip_address + Indirizzo IP + + + + + templates/users/listing.html.twig:126 + + + listing.title_browser + Browser / piattaforma + + + + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + + + image.button_remove + Rimuovi + + + + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + + + image.button_edit_attributes + Modifica attributi + + + + + templates/_partials/fields/imagelist.html.twig:27 + + + image.add_new_image + Aggiungi nuova immagine + + + + + templates/_partials/fields/filelist.html.twig:25 + + + file.add_new_file + Aggiungi nuovo file + + + + + templates/_partials/fields/_collection_buttons.html.twig:20 + + + collection.remove_item + Rimuovi elemento + + + + + templates/_partials/fields/collection.html.twig:6 + + + collection.add_item + Aggiungi un nuovo elemento a "%name%" + + + + + templates/_partials/fields/_collection_buttons.html.twig:5 + + + collection.move_item_up + Sposta su + + + + + templates/_partials/fields/_collection_buttons.html.twig:9 + + + collection.move_item_down + Sposta giù + + + + + templates/pages/extensions.html.twig:54 + + + extensions.button_detailed_view + Visualizza dettagli + + + + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + + + extensions.title_configuration + File di configurazione + + + + + templates/finder/_uploader.html.twig:17 + + + caption.file_upload.upload_text + Trascina qui i file da caricare + + + + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + + + pager.next + Successivo + + + + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + + + pager.previous + Precedente + + + + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + + + image.button_up + Su + + + + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + + + image.button_down + Giù + + + + + templates/helpers/_field_blocks.twig:28 + + + general.phrase.download + Scarica + + + + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + + + caption.logviewer + Visualizzatore log + + + + + templates/pages/logviewer.html.twig:39 + + + label.request + Richiesta + + + + + templates/pages/logviewer.html.twig:53 + + + label.trace + Trace + + + + + templates/pages/logviewer.html.twig:71 + + + label.context + Contesto + + + + + templates/pages/logviewer.html.twig:19 + + + label.id + ID + + + + + templates/pages/logviewer.html.twig:20 + + + label.level + Livello + + + + + templates/pages/logviewer.html.twig:23 + + + label.message + Messaggio + + + + + templates/pages/logviewer.html.twig:25 + + + label.timestamp + Timestamp + + + + + templates/pages/logviewer.html.twig:86 + + + label.user + Utente + + + + + templates/users/listing.html.twig:33 + + + listing.disabled + Disabilitato + + + + + templates/_partials/fields/slug.html.twig:17 + + + slug.button_unlocked + Sbloccato + + + + + public/theme/skeleton/listing.twig:42 + + + general.phrase.no-content-found + Nessun contenuto trovato + + + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + + + general.phrase.none + Nessuno + + + + + templates/content/view_locales.html.twig:103 + + + view_locales.badge_empty + Vuoto + + + + + templates/content/listing.html.twig:45 + + + action.update_all + Applica a tutti + + + + + templates/pages/about.html.twig:21 + + + about.system_info + Informazioni di sistema + + + + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + + + action.confirm_delete + Sei sicuro di voler eliminare questo contenuto? + + + + + src/Form/LoginType.php:38 + + + placeholder.username_or_email + il tuo nome utente o email + + + + + src/Form/LoginType.php:52 + + + placeholder.password + la tua password + + + + + src/Menu/BackendMenuBuilder.php:336 + + + caption.other_content + Altri contenuti + + + + + templates/finder/editfile.html.twig:39 + + + editfile.target_not_writable + Il salvataggio è disabilitato perché il file di destinazione non è scrivibile. + + + + + templates/_partials/fields/_label.html.twig:6 + + + label.translatable + Questo campo è traducibile + + + + + templates/pages/logviewer.html.twig:92 + + + label.content + Contenuto + + + + + src/Controller/Backend/FileEditController.php:148 + + + file.delete_success + File eliminato con successo! + + + + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + + + file.delete_confirm + Sei sicuro di voler eliminare questo file? + + + + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + + + listing.title_filterby + Cerca / Filtra per + + + + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + + + content.status_changed_successfully + Stato modificato con successo + + + + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + + + content.deleted_successfully + Contenuto eliminato con successo + + + + + templates/content/_buttons.html.twig:46 + + + label.current_status + Stato attuale + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.published + Pubblicato + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.draft + Bozza + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.timed + Programmato + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.held + In attesa + + + + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + + + collection.confirm_delete + Sei sicuro di voler eliminare questo elemento della raccolta? + + + + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + + + upload.allow_file_types + Tipi di file consentiti per il caricamento + + + + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + + + upload.max_size + Dimensione massima di caricamento + + + + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + + + listing.placeholder_search + Cerca per parola chiave … + + + + + templates/pages/dashboard.html.twig:12 + + + title.filtered_by + "%filter%".]]> + + + + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + + + action.view_site + Visualizza sito web + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + + + action.new + Nuovo + + + + + templates/pages/extension_details.html.twig:39 + + + extensions.no_dependencies + Nessuna dipendenza nota + + + + + templates/pages/extension_details.html.twig:36 + + + extensions.title_dependencies + Dipendenze + + + + + templates/_partials/fields/collection.html.twig:7 + + + collection.expand_all + Espandi tutto + + + + + templates/_partials/fields/collection.html.twig:8 + + + collection.collapse_all + Comprimi tutto + + + + + templates/content/edit.html.twig:45 + + + content.edit_missing_definition + La definizione per questo ContentType è mancante! La modifica di questo record non funzionerà come previsto. Controlla il tuo file contenttypes.yaml per assicurarti che contenga %contenttype%. + + + + + templates/_partials/fields/collection.html.twig:10 + + + collection.select + Seleziona … + + + + + src/Form/LoginType.php:34 + + + form.empty_username_email + Inserisci il tuo nome utente o email + + + + + src/Form/LoginType.php:46 + + + form.empty_password + Inserisci la tua password + + + + + src/Form/ResetPasswordRequestFormType.php:28 + + + form.empty_email + Inserisci la tua email + + + + + templates/content/listing.html.twig:112 + + + listing.title_filterby_field + Filtra per campo + + + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + + + image.button_from_url + Da URL + + + + + templates/finder/_files_actions.html.twig:29 + + + files_cards.copy_to_clipboard + Copia il link al file + + + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + + + warning + Avviso + + + + + src/Controller/Backend/FilemanagerController.php:150 + + + filemanager.create_folder_already_exists + La cartella esiste già + + + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + + + filemanager.create_folder_error + Impossibile creare la cartella + + + + + src/Controller/Backend/FilemanagerController.php:155 + + + filemanager.create_folder_success + Cartella creata con successo. + + + + + src/Controller/Backend/FilemanagerController.php:115 + + + filemanager.delete_folder_successful + Cartella eliminata con successo + + + + + templates/finder/_createfolder.html.twig:13 + + + folder.create_new + Nuova cartella + + + + + templates/users/_form.html.twig:172 + + + label.avatar + Avatar + + + + + templates/security/login.html.twig:64 + + + login.forgotpassword + Password dimenticata + + + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + + + reset_password.request_header + Reimposta password + + + + + templates/reset_password/request.html.twig:42 + + + reset_password.request_description + Inserisci il tuo indirizzo email e ti invieremo un link per reimpostare la password. + + + + + templates/reset_password/request.html.twig:44 + + + reset_password.request_send + Invia + + + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + + + Email + Email + + + + + templates/reset_password/request.html.twig:47 + + + reset_password.back-to-login + Torna all’accesso + + + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + + + reset_password.reset_header + Reimposta la tua password + + + + + templates/reset_password/check_email.html.twig:4 + + + reset_password.check_email_sent_header + Email di reimpostazione password inviata + + + + + templates/reset_password/check_email.html.twig:35 + + + reset_password.check_email_sent_text_1 + È stata inviata un’email contenente un link su cui puoi fare clic per reimpostare la password. Questo link scadrà tra %hours% ora/e. + + + + + templates/reset_password/check_email.html.twig:36 + + + reset_password.check_email_sent_text_2 + Se non ricevi l’email, controlla la cartella spam o %tryagain%. + + + + + templates/reset_password/reset.html.twig:37 + + + reset_password.reset_btn + Reimposta password + + + + + templates/reset_password/email.html.twig:1 + + + reset_password.email_title + Ciao! + + + + + templates/reset_password/email.html.twig:3 + + + reset_password.email_description + Per reimpostare la password, visita il seguente link + + + + + templates/reset_password/email.html.twig:7 + + + reset_password.email_expire + Questo link scadrà tra %hours% ora/e. + + + + + templates/reset_password/email.html.twig:9 + + + reset_password.email_thanks + Saluti! + + + + + src/Form/ChangePasswordFormType.php:31 + + + reset_password.enter_pwd + Inserisci una password + + + + + src/Form/ChangePasswordFormType.php:43 + + + label.repeat_password + Ripeti password + + + + + src/Form/ChangePasswordFormType.php:45 + + + reset_password.not_matching_pwds + I campi della password devono corrispondere. + + + + + src/Form/ChangePasswordFormType.php:35 + + + reset_password.minimum_length + La tua password deve contenere almeno %s caratteri + + + + + src/Controller/Backend/ResetPasswordController.php:99 + + + reset_password.no_token + Nessun token di reimpostazione password trovato nell’URL o nella sessione. + + + + + src/Controller/Backend/ResetPasswordController.php:134 + + + reset_password.reset_successful + La tua password è stata reimpostata con successo. + + + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + + + reset_password.problem_with_request + Si è verificato un problema durante la gestione della richiesta di reimpostazione della password - %s + + + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + + + label.filtered_by + filtrato per + + + + + templates/content/_buttons.html.twig:34 + + + action.preview_secure_share + Condividi link di anteprima sicuro + + + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + + + action.stop_impersonating + smetti di impersonare + + + + + templates/users/listing.html.twig:82 + + + action.impersonate + impersona + + + + + templates/widget/maintenance_mode.twig:25 + + + maintenance.activated_warning + La modalità di manutenzione è attivata + + + + + templates/_partials/fields/embed.html.twig:28 + + + action.refresh + Aggiorna + + + + + templates/content/listing.html.twig:148 + + + listing_details_box.showing_records + Visualizzazione dei record %current% di %total% + + + + + templates/content/listing.html.twig:154 + + + listing_details_box.name + Nome: %name% (singolare: %singularName%) + + + + + templates/content/listing.html.twig:160 + + + listing_details_box.slug + Slug: %slug% (singolare: %singularSlug%) + + + + + templates/content/listing.html.twig:166 + + + listing_details_box.record_template + Template del record: %template% + + + + + templates/content/listing.html.twig:172 + + + listing_details_box.listing_template + Template dell’elenco: %template% (%listingRecords% record) + + + + + templates/content/listing.html.twig:186 + + + listing_details_box.locales + Lingue: %locales% + + + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + + + action.edit_permissions + Modifica permessi + + + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + + + general.label.search + Cerca + + + + + templates/_partials/fields/image.html.twig:25 + + + image.image_preview + Anteprima dell’immagine + + + + + templates/_partials/_content_listing.html.twig:15 + + + listing_table.actions.select_all + Seleziona tutto + + + + + src/Form/LoginType.php:58 + + + label.remembermeduration + Ricordami? (%duration% giorni) + + + + + templates/users/listing.html.twig:117 + + + listing.current_sessions_header + Sessioni correnti + + + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + + + image.button_upload_options + Opzioni di caricamento + + + + + templates/content/_taxonomies.html.twig:27 + + + Order + Ordine + + + + + src/Form/ResetPasswordRequestFormType.php:32 + + + placeholder.email + la tua email + + + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + + + modal.title.file_field + Seleziona un file + + + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + + + modal.title.image_field + Seleziona un’immagine + + + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + Carica da URL + + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + Caricamento… + + + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + + + modal.button_save + Salva + + + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + - general.dashboard - general.dashboard + modal.button_deny + Chiudi diff --git a/translations/messages.nl.xlf b/translations/messages.nl.xlf index e9a135ea2..76b47a2bf 100644 --- a/translations/messages.nl.xlf +++ b/translations/messages.nl.xlf @@ -1,77 +1,72 @@ - - - templates/debug/source_code.twig:26 - - - not_available - Niet beschikbaar - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Fout %status_code% - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Twig template broncode - - - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Bewerk gebruiker - + - templates/debug/source_code.twig:7 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 - action.show_code - Toon broncode + action.save + Opslaan - + - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 - action.save - Opslaan + action.do_something + Doe iets - + - templates/users/change_password.twig:26 + templates/users/listing.html.twig:64 - action.edit_user - Bewerk gebruiker + action.edit + Bewerk - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 label.username @@ -80,17 +75,18 @@ - templates/security/login.twig:4 + templates/security/login.html.twig:4 title.login - Login + Inloggen - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 label.password @@ -99,26 +95,26 @@ - templates/security/login.twig:84 + templates/security/login.html.twig:60 action.log_in - Log in + Inloggen - + - templates/users/edit.twig:24 + templates/content/listing.html.twig:58 - action.change_password - Wijzig wachtwoord + title.contentlisting + Lijst van content - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -127,7 +123,8 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 field.status @@ -136,8 +133,8 @@ - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 field.createdAt @@ -146,8 +143,10 @@ - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 field.modifiedAt @@ -156,7 +155,7 @@ - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 field.publishedAt @@ -165,34 +164,102 @@ - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 field.depublishedAt Gedepubliceerd op + + + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 + + + field.title + Titel + + + + + templates/media/edit.html.twig:45 + + + field.description + Beschrijving + + - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 field.copyright Copyright - + - templates/security/login.twig:80 + templates/media/edit.html.twig:58 - label.remembermeduration - Onthoud me? (%duration% dagen) + field.originalFilename + Originele Bestandsnaam + + + + + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 + + + field.width + Breedte + + + + + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 + + + field.height + Hoogte + + + + + templates/media/edit.html.twig:142 + + + field.filesize + Bestandsgrootte + + + + + src/Form/LoginType.php:31 + + + label.username_or_email + Gebruikersnaam of e-mail + + + + + src/Form/LoginType.php:58 + + + label.rememberme + Onthoud mij? - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 about.visit_bolt @@ -201,7 +268,9 @@ - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 about.bolt_documentation @@ -210,7 +279,7 @@ - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 about.bolt_on_github @@ -219,1904 +288,3151 @@ - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 about.used_libraries Gebruikte Libraries / Componenten - + - src/Form/UserType.php:35 - new + templates/pages/about.html.twig:66 - label.fullname - Volledige naam + about.list_of_used_libraries + Hieronder staat een lijst met een deel van de gebruikte Libraries / Componenten in Bolt. - src/Form/UserType.php:38 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 label.email E-mail - - - label.locale - Locale - - - - - label.backend_theme - Backend thema - - - - - English (en) - English (en) - - - - - Nederlands (dutch, nl) - Nederlands (dutch, nl) - - - + + + templates/users/_form.html.twig:185 + - Español (Spanish, es) - Español (Spanish, es) + label.about + Over mij - + + + src/Controller/Backend/UserEditController.php:129 + - français (French, fr) - français (French, fr) + user.updated_successfully + Succesvol bijgewerkt - + + + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 + - Deutsch (German, de) - Deutsch (German, de) + content.updated_successfully + Inhoud succesvol bijgewerkt - + + + src/Controller/Backend/MediaEditController.php:88 + - Język Polski (Polish, pl) - Język Polski (Polish, pl) + content.created_successfully + Media-item succesvol aangemaakt - + + + src/Controller/Backend/FileEditController.php:106 + - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brasilian Portuguese (Brasilian Portuguese, pt_BR) + editfile.could_not_write + Kon media-item niet schrijven - + + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + - Italiano (Italian, it) - Italiano (Italian, it) + label.locale + Taal + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + The Default theme Het standaard thema + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + The Default Dark theme De standaard Dark Theme + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + WoordPers: Kinda looks like that other CMS WoordPers: Lijkt een beetje op dat andere CMS + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + caption.dashboard - Bolt Dashboard + Bolt-dashboard + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + caption.clear_cache Leeg de cache - - - caption.check_database - Controleer Database - - + + src/Menu/BackendMenuBuilder.php:145 + caption.menu_setup Menu instellingen + + src/Menu/BackendMenuBuilder.php:134 + caption.taxonomies Taxonomieën + + src/Menu/BackendMenuBuilder.php:123 + caption.contenttypes Contenttypen + + src/Menu/BackendMenuBuilder.php:112 + caption.main_configuration Hoofdconfiguratie + + src/Menu/BackendMenuBuilder.php:99 + caption.users_permissions + + src/Menu/BackendMenuBuilder.php:89 + caption.configuration Configuratie + + src/Menu/BackendMenuBuilder.php:77 + caption.settings Instellingen + + src/Menu/BackendMenuBuilder.php:61 + caption.content Inhoud + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + caption.file_management Bestandsbeheer + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + caption.extensions Extensies + + src/Menu/BackendMenuBuilder.php:280 + caption.view_edit_templates + + src/Menu/BackendMenuBuilder.php:270 + caption.uploaded_files Geüploade bestanden + + src/Menu/BackendMenuBuilder.php:157 + caption.routing_setup Routing instellingen + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + caption.translations Vertalingen / Labels + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + caption.about_bolt Over Bolt + + templates/pages/about.html.twig:11 + caption.bolt_payoff Weldoordacht, lichtgewicht en eenvoudig CMS + + templates/content/edit.html.twig:22 + caption.edit Bewerk + + templates/finder/_uploader.html.twig:8 + caption.file_uploader Bestandsuploader + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + caption.meta_information Meta informatie + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + date Datum + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + size Formaat + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + thumbnail - Thumbnail + Miniatuur + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + filename Bestandsnaam + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + actions Acties + + templates/finder/_folders.html.twig:6 + directoryname Directorynaam + + templates/finder/_quickselect.html.twig:9 + form.quick_select_file Selecteer een bestand om snel te bewerken… + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + caption.path Pad - + + + templates/media/edit.html.twig:30 + - action.visit_site - Bekijk site + caption.filename + Bestandsnaam + + templates/content/listing.html.twig:63 + action.create_new Maak nieuwe + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + general.greeting Hoi, %name% + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + action.logout Uitloggen + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + action.edit_profile Bewerk profiel + + templates/_partials/_flash_messages.html.twig:1 + action.close_alert Sluit + + src/Menu/BackendMenuBuilder.php:207 + caption.api API + + src/Menu/BackendMenuBuilder.php:165 + caption.all_configuration_files Alle configuratie bestanden + + src/Menu/BackendMenuBuilder.php:177 + caption.maintenance Onderhoud - - - caption.fixtures_dummy_content - Fixtures (loze inhoud) - - + + templates/finder/editfile.html.twig:21 + caption.edit_file Bewerk Bestand - - - caption.installation_checks - Installatie-controle - - - - - form.select_language - Kies een taal - - - - - field.locale - Locale - - + + templates/content/_localeswitcher.html.twig:7 + field.current_locale Huidige locale + + templates/content/_localeswitcher.html.twig:14 + field.switch_to_locale Wissel naar locale + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author Auteur - + + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + - general.phrase.search - Zoeken + general.phrase.edit + Bewerk - + + + public/theme/skeleton/partials/_recordfooter.twig:7 + - label.cache_cleared - De Cache is leeggemaakt! + Unknown + Onbekend - + + + public/theme/skeleton/partials/_recordfooter.twig:6 + - general.phrase.read-more - Lees meer + general.phrase.written-by-on + Geschreven door %name% op %date%. - + + + public/theme/skeleton/partials/_aside.twig:33 + - general.latest_bolt_news - Het laatste Bolt nieuws + general.phrase.missing-about-page + De pagina "Over" ontbreekt - + + + public/theme/skeleton/partials/_aside.twig:35 + - about.list_of_used_libraries - Hieronder staat een lijst met een deel van de gebruikte Libraries / Componenten in Bolt. + general.phrase.missing-about-page-block + Het blok "Over" ontbreekt - + + + public/theme/skeleton/partials/_aside.twig:53 + - extensions.title_desc - Beschrijving: + contenttypes.generic.recent + Recente %contenttypes% - + + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + - extensions.title_author - Auteur: + general.phrase.search-ellipsis + - + + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + - extensions.title_package - Package / Class naam: + general.phrase.search + Zoeken - + + + public/theme/skeleton/partials/_aside.twig:60 + - extensions.title_version - Versie: + contenttypes.generic.overview + Overzicht van %contenttypes% - + + + public/theme/skeleton/partials/_aside.twig:62 + - extensions.info_not_installed - Dit is een lokale package, niet geïnstalleerd met Composer + contenttypes.generic.no-recent + Geen recente %contenttype% gevonden - + + + public/theme/skeleton/partials/_footer.twig:4 + - extensions.title_class - Titel: + Menu + Menu - + + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + - extensions.button_configuration - Configuratie + Search + Zoeken - + + + public/theme/skeleton/partials/_recordfooter.twig:14 + - extensions.button_source - Broncode + general.phrase.permalink + Permalink - + + + src/Controller/Backend/ClearCacheController.php:24 + - extensions.message_not_implemented - Nog niet geïmplementeerd, sorry! + label.cache_cleared + De Cache is leeggemaakt! - + + + src/Menu/BackendMenuBuilder.php:238 + - extensions.button_remove - Verwijder + caption.kitchensink + Kitchensink - + + + public/theme/skeleton/search.twig:11 + - extensions.button_disable - Uitschakelen + general.phrase.search-results-for + Zoekresultaten voor %search%. - + + + public/theme/skeleton/search.twig:51 + - flash_messages.notification - Notificatie + general.phrase.no-search-results-for + Geen zoekresultaten voor '%search%'. - + + + public/theme/skeleton/search.twig:53 + - listing_filter.button_compact - compact + general.phrase.no-search-term-provided + Geef een zoekterm op om relevante resultaten te tonen. - + + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + - listing_filter.button_expanded - uitgebreid + general.phrase.read-more + Lees meer - + + + public/theme/skeleton/partials/_footer.twig:17 + - listing_table.actions.view_on_site - bekijk op site + general.phrase.built-with-bolt + gemaakt met Bolt. ]]> - + + + vendor/bolt/newswidget/templates/news.html.twig:3 + - listing_table.actions.status_to_publish - Pas status aan naar 'gepubliceerd' + general.latest_bolt_news + Het laatste Bolt nieuws - + + + templates/content/_buttons.html.twig:19 + - listing_table.actions.status_to_held - Pas status aan naar 'vasthouden' + action.preview + Voorvertoning - + + + templates/content/_buttons.html.twig:58 + - listing_table.actions.status_to_draft - Pas status aan naar 'klad' + action.view_saved + Bekijk opgeslagen - + + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + - listing_table.actions.duplicate - dupliceer + label.display_name + Toon naam als - + + + templates/content/edit.html.twig:22 + - listing_table.actions.delete - verwijder + caption.duplicate + Dupliceer - + + + src/Form/ChangePasswordFormType.php:40 + - listing_table.actions.slug - slug + label.new_password + Nieuw wachtwoord - + + + src/Controller/Backend/FileEditController.php:104 + - listing_table.actions.created_on - Aangemaakt op + editfile.updated_successfully + Bestand succesvol bijgewerkt! - + + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + - listing_table.actions.published_on - Gepubliceerd op + action.add_user + Toevoegen - + + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + - listing_table.actions.last_modified_on - Laatst gewijzigd op + success + Succes! - + + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + - geolocation.label_geolocation - Geolocatie + user.updated_profile + Gebruikersprofiel is bijgewerkt! - + + + templates/users/_form.html.twig:124 + - geolocation.label_address - Adres + label.roles + Rollen - + + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + - geolocation.placeholder_address - Adres … + user.new_user + Nieuwe gebruiker - + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + - geolocation.label_lat - Lat + action.view + Bekijk - + + + templates/_partials/fields/slug.html.twig:18 + - geolocation.label_long - Lon + slug.button_locked + Op slot - + + + templates/_partials/fields/slug.html.twig:19 + - geolocation.label_address_matched - Gevonden adres + slug.button_edit + Bewerk - + + + templates/_partials/fields/slug.html.twig:20 + - geolocation.label_marker - Marker + slug.generate_from + Baseer op - + + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + - geolocation.label_control - __geolocation.label_control + image.button_upload + Uploaden - + + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + - file.label_filename - Bestandsnaam + image.button_from_library + Uit bibliotheek - + + + templates/_partials/_content_listing.html.twig:23 + - file.label_alt - Alt + listing_table.actions.view_on_site + bekijk op site - + + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + - file.label_title - Title + listing_table.actions.status_to_publish + Pas status aan naar 'gepubliceerd' - + + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + - file.button_view - Bekijk + listing_table.actions.status_to_held + Pas status aan naar 'vasthouden' - + + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + - file.button_upload - Upload + listing_table.actions.status_to_draft + Pas status aan naar 'klad' - + + + templates/_partials/_content_listing.html.twig:28 + - file.remark - __file.remark - + listing_table.actions.duplicate + dupliceer +
+
+ + + templates/_partials/_content_listing.html.twig:29 + + + listing_table.actions.delete + verwijder + + + + + templates/_partials/_content_listing.html.twig:30 + + + listing_table.actions.slug + slug + + + + + templates/_partials/_content_listing.html.twig:31 + + + listing_table.actions.created_on + Aangemaakt op + + + + + templates/_partials/_content_listing.html.twig:32 + + + listing_table.actions.published_on + Gepubliceerd op + + + + + templates/_partials/_content_listing.html.twig:33 + + + listing_table.actions.last_modified_on + Laatst gewijzigd op + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Geselecteerd + + + templates/_partials/fields/embed.html.twig:20 + editor_embed.content_url Content URL + + templates/_partials/fields/embed.html.twig:21 + editor_embed.placeholder_content_url - Url van de content … + URL van content op Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + templates/_partials/fields/embed.html.twig:22 + editor_embed.label_height Hoogte + + templates/_partials/fields/embed.html.twig:23 + editor_embed.label_pixel pixels + + templates/_partials/fields/embed.html.twig:24 + editor_embed.label_matched_embed Gevonden Embed + + templates/_partials/fields/embed.html.twig:25 + editor_embed.label_preview Voorvertoning + + templates/_partials/fields/embed.html.twig:26 + editor_embed.label_size Grootte - - - editor_date.toggle - Wissel - - - - - filelist.remark - __filelist.remark - - - - - image.button_upload - Uploaden - - - - - image.button_from_library - Uit bibliotheek - - + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + image.placeholder_filename Bestandsnaam (upload een nieuw bestand, of selecteer een bestaande) + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + image.placeholder_alt_text Alt attribuut + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + image.placeholder_title Titel attribuut - + + + templates/_base/layout.html.twig:91 + - slug.button_locked - Op slot + admin_sidebar.toggler + Wissel breedte zijbalk - + + + templates/_base/layout.html.twig:82 + - slug.button_edit - Bewerk + admin_sidebar_toggler.toggle + Klap menu in of uit]]> - + + + templates/_partials/fields/date.html.twig:39 + - slug.generate_from - Baseer op + editor_date.toggle + Wissel - + + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + - imagelist.remark - __imagelist.remark + flash_messages.notification + Notificatie - + + + templates/content/_localeswitcher.html.twig:19 + - quickselect.title_select - Selecteer + localeswitcher.button_info + Bekijk lokalisatie-info - + + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + - files_list.remark - Er staan geen bestanden in deze map. Kies een map om naar toe te navigeren. + listing.title_sortby + Sorteer op - + + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + - caption.folders - Mappen + listing.placeholder_filter + Trefwoord om op te filteren… - + + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + - finder.button_list - Lijst + listing.button_filter + Filteren - + + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + - finder.button_cards - Kaarten + listing.button_clear + Leegmaken + + + + + templates/content/view_locales.html.twig:99 + + + view_locales.badge_default + Standaard + + + + + templates/content/view_locales.html.twig:105 + + + view_locales.badge_ok + OK + + + + + templates/content/view_locales.html.twig:101 + + + view_locales.badge_missing + Ontbreekt + + templates/finder/_files_actions.html.twig:10 + files_cards.button_toggle Wissel + + templates/finder/_files_actions.html.twig:17 + files_cards.action_edit_image_info Bewerk info + + templates/finder/_files_actions.html.twig:19 + files_cards.action_edit_file Bewerk bestand + + templates/finder/_files_actions.html.twig:25 + files_cards.action_view_original Bekijk origineel + + templates/finder/_files_actions.html.twig:36 + files_cards.action_duplicate Dupliceer + + templates/finder/_files_actions.html.twig:49 + files_cards.action_delete Verwijder + + templates/finder/_files_actions.html.twig:56 + files_cards.label_filename Bestandsnaam + + templates/finder/_files_actions.html.twig:63 + files_cards.label_title Titel + + templates/finder/_files_actions.html.twig:70 + files_cards.label_dimensions Afmetingen + + templates/finder/_files_actions.html.twig:76 + files_cards.label_filesize Bestandsgrootte + + templates/finder/_files_actions.html.twig:81 + files_cards.label_created_on Aangemaakt op - + + + templates/finder/_files_list.html.twig:75 + - files_cards.message_no_files - Aantal bestanden + files_list.remark + Er staan geen bestanden in deze map. Kies een map om naar toe te navigeren. - + + + templates/finder/_quickselect.html.twig:5 + - login.header_login - Bolt » Login + quickselect.title_select + Selecteer - + + + templates/finder/finder.html.twig:45 + - view_locales.badge_default - Standaard + finder.button_list + Lijst - + + + templates/finder/finder.html.twig:49 + - view_locales.badge_ok - OK + finder.button_cards + Kaarten - + + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + - view_locales.badge_missing - Ontbreekt + extensions.title_desc + Beschrijving: - + + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + - general.phrase.edit - Bewerk + extensions.title_author + Auteur: - + + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + - localeswitcher.button_info - Info + extensions.title_package + Package / Class naam: - - - caption.duplicate - Dupliceer - - - - - buttons.button_toggle - Wissel - - - - - action.view_saved - Bekijk opgeslagen - - - - - listing.title_overview - Overzicht voor - - - - - title.contentlisting - Lijst van content - - - - - listing_select_box.card_header.selected - Geselecteerd - - - - - listing_select_box.card_body.records_passed - Doorgegeven gekozen IDs - - - - - listing_select_box.card_body.remark - (these can be used with something like axios to bulk modify/delete) - - - - - listing.title_sortby - Sorteer op - - - - - listing.option_select_item - Kies item - - - - - listing.title_title - Titel - - - - - listing.placeholder_filter - Trefwoord om op te filteren… - - - - - listing.button_filter - Filter - - - - - listing.button_clear - Leegmaken - - - + + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + - label.display_name - Toon naam als + extensions.title_version + Versie: - + + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + - label.roles - Rollen + extensions.info_not_installed + Dit is een lokale package, niet geïnstalleerd met Composer - + + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + - action.view - Bekijk + extensions.title_class + Titel: - + + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + - admin_sidebar_toggler.toggle - Klap menu in of uit]]> + extensions.button_configuration + Configuratie - + + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + - admin_sidebar.toggler - Wissel breedte zijbalk + extensions.button_source + Broncode - + + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + - caption.filename - Bestandsnaam + extensions.button_remove + Verwijder - + + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + - field.title - Titel + extensions.button_disable + Uitschakelen - + + + templates/security/login.html.twig:40 + - field.description - Beschrijving + login.header_login + Bolt » Inloggen - + + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + - field.originalFilename - Originele Bestandsnaam + extensions.message_not_implemented + Nog niet geïmplementeerd, sorry! - + + + templates/content/listing.html.twig:6 + - field.width - Breedte + listing.title_overview + Overzicht voor - + + + templates/finder/_files_cards.html.twig:48 + - field.height - Hoogte + files_cards.message_no_files + Er zijn geen bestanden in deze map. Selecteer rechts een map om naartoe te navigeren. - + + + templates/_partials/_content_listing.html.twig:13 + - field.filesize - Bestandsgrootte + listing_filter.button_compact + compact - + + + templates/_partials/_content_listing.html.twig:14 + - caption.kitchensink - Kitchensink + listing_filter.button_expanded + uitgebreid + + templates/finder/finder.html.twig:41 + finder.label_view Bekijk + + templates/_partials/_content_listing.html.twig:34 + listing_table.actions.button_edit Bewerk + + src/Controller/Backend/UserController.php:50 + controller.user.title + + src/Controller/Backend/UserController.php:51 + controller.user.subtitle - - - controller.database.check_title - Database Check - - - - - controller.database.check_subtitle - To check the Database - - - - - controller.database.update_title - Database Update - - - - - controller.database.update_subtitle - To update the Database - - - - - controller.omnisearch.title - Omnisearch - - - - - controller.omnisearch.subtitle - To search, in an omni-like fashion - - + + templates/users/listing.html.twig:20 + listing.title_display_name - Toon naam als + Weergavenaam + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + listing.title_username Gebruikersnaam + + templates/users/listing.html.twig:20 + listing.title_email E-mail + + templates/users/listing.html.twig:21 + listing.title_roles Rollen + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + listing.title_last_seen Laatst gezien + + templates/users/listing.html.twig:23 + listing.title_last_ip Recentste IP + + templates/users/listing.html.twig:24 + listing.title_actions Acties - + + + templates/users/profile.html.twig:11 + - user.not_valid_email - Invalid email + user.unknown_user + Onbekende gebruiker - + + + templates/media/edit.html.twig:114 + - user.not_valid_password - Invalid password + label.predominant_colors__in_image + Overheersende kleuren in afbeelding - + + + public/theme/skeleton/listing.twig:14 + - Unknown - Onbekend + general.phrase.overview-for + Overzicht voor '%slug%' - + + + public/theme/skeleton/partials/_recordfooter.twig:40 + - general.phrase.written-by-on - Geschreven door %name% op %date%. + general.phrase.related-content + Gerelateerde inhoud - + + + public/theme/skeleton/partials/_footer.twig:13 + - contenttypes.generic.recent - Recente %contenttypes% + action.search + Zoek - + + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + - contenttypes.generic.overview - Overzicht van %contenttypes% + caption.new_contenttype + Nieuw %contenttype% - + + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + - Menu - Menu + caption.untitled_contenttype + %contenttype% zonder titel - - - general.phrase.search-ellipsis - - - - - - general.phrase.built-with-bolt - gemaakt met Bolt. ]]> - - - - - action.search - Zoek - - - - - user.unknown_user - Onbekende gebruiker - - - - - success - Succes! - - - - - action.preview - Voorvertoning - - - + + + templates/users/profile.html.twig:6 + - label.predominant_colors__in_image - Overheersende kleuren in afbeelding + title.edit_user_profile + Bewerk gebruikersprofiel + + templates/pages/menupage.html.twig:13 + caption.redirection_page Doorverwijzingspagina - - - general.phrase.select_language - Kies taal - - - + + + templates/media/edit.html.twig:6 + - user.new_user - Nieuwe gebruiker + caption.edit_image + Bewerk afbeelding + + templates/users/_form.html.twig:44 + password.suggested %password%]]> - - - caption.edit_image - Bewerk afbeelding - - + + templates/media/edit.html.twig:70 + field.cropX Uitsnede X - - - field.cropY - Uitsnede Y - - - + + + templates/media/edit.html.twig:73 + - field.cropZoom - Zoomfactor uitsnede + field.cropXPostfix + Positie van uitsnede op de X-as, van 0-100. + + templates/media/edit.html.twig:80 + field.cropYPostfix Positie van uitsnede op de Y-as, van 0-100. - + + + templates/media/edit.html.twig:77 + - field.cropXPostfix - Positie van uitsnede op de X-as, van 0-100. + field.cropY + Uitsnede Y - + + + templates/media/edit.html.twig:84 + - field.cropZoomPostfix - Zoom-niveau van uitsnede, van 1-10. + field.cropZoom + Zoomfactor uitsnede - + + + templates/media/edit.html.twig:87 + - listing.option_select_sortby - Kies Veldnaam om te sorteren… + field.cropZoomPostfix + Zoom-niveau van uitsnede, van 1-10. + + templates/content/listing.html.twig:136 + title.contentType ContentType - - - title.edit_user_profile - Bewerk gebruikersprofiel - - - + + + templates/_partials/_content_listing.html.twig:44 + - user.updated_profile - Gebruikersprofiel is bijgewerkt! + listing_table.no_results + Geen resultaten gevonden. Verbreed de filtercriteria of voeg meer inhoud toe. - + + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + - caption.untitled_contenttype - %contenttype% zonder titel + listing.option_select_sortby + Kies Veldnaam om te sorteren… + + templates/content/edit.html.twig:103 + title.primary_actions Voornaamste handelingen + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + title.options Opties - - - general.phrase.no-search-term-provided - Geef een zoekterm op om relevante resultaten te tonen. - - - + + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + - general.phrase.search-results-for - Zoekresultaten voor %search%. + action.delete + Verwijder - + + + templates/users/listing.html.twig:76 + - general.phrase.no-search-results-for - Geen zoekresultaten voor '%search%'. + action.enable + Inschakelen - + + + templates/users/listing.html.twig:71 + - collection.add_item - Voeg toe aan %name% + action.disable + Uitschakelen - + + + templates/users/listing.html.twig:124 + - collection.move_item_up - Omhoog + listing.title_session_expires + Sessie verloopt - + + + templates/users/listing.html.twig:125 + - collection.move_item_down - Omlaag + listing.title_ip_address + IP-adres - + + + templates/users/listing.html.twig:126 + - collection.remove_item - Verwijder + listing.title_browser + Browser / platform + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + image.button_remove Verwijder + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + image.button_edit_attributes Bewerk attributen - - - image.button_up - Omhoog - - - - - image.button_down - Omlaag - - + + templates/_partials/fields/imagelist.html.twig:27 + image.add_new_image Voeg nieuwe afbeelding toe + + templates/_partials/fields/filelist.html.twig:25 + file.add_new_file Voeg nieuw bestand toe - + + + templates/_partials/fields/_collection_buttons.html.twig:20 + - caption.logviewer - Logs bekijken + collection.remove_item + Verwijder - + + + templates/_partials/fields/collection.html.twig:6 + - action.edit - Bewerk + collection.add_item + Voeg toe aan %name% - + + + templates/_partials/fields/_collection_buttons.html.twig:5 + - action.disable - Uitschakelen + collection.move_item_up + Omhoog - + + + templates/_partials/fields/_collection_buttons.html.twig:9 + - listing.disabled - Uitgeschakeld + collection.move_item_down + Omlaag - + + + templates/pages/extensions.html.twig:54 + - action.delete - Verwijder + extensions.button_detailed_view + Bekijk details - + + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + - action.enable - Inschakelen + extensions.title_configuration + Configuratiebestand - + + + templates/finder/_uploader.html.twig:17 + - action.add_user - Toevoegen + caption.file_upload.upload_text + Plaats hier bestanden om te uploaden - + + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + - listing.title_browser - Browser / platform + pager.next + Volgende - + + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + - listing.title_ip_address - IP-adres + pager.previous + Vorige - + + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + - listing.title_session_expires - Sessie verloopt + image.button_up + Omhoog - + + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + - label.translatable - Dit veld is vertaalbaar + image.button_down + Omlaag + + + + + templates/helpers/_field_blocks.twig:28 + + + general.phrase.download + Downloaden + + + + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + + + caption.logviewer + Logs bekijken + + + + + templates/pages/logviewer.html.twig:39 + + + label.request + Verzoek + + + + + templates/pages/logviewer.html.twig:53 + + + label.trace + Trace + + + + + templates/pages/logviewer.html.twig:71 + + + label.context + Context + + + + + templates/pages/logviewer.html.twig:19 + + + label.id + ID + + + + + templates/pages/logviewer.html.twig:20 + + + label.level + Niveau + + + + + templates/pages/logviewer.html.twig:23 + + + label.message + Bericht + + + + + templates/pages/logviewer.html.twig:25 + + + label.timestamp + Tijdstempel + + + + + templates/pages/logviewer.html.twig:86 + + + label.user + Gebruiker + + + + + templates/users/listing.html.twig:33 + + + listing.disabled + Uitgeschakeld + + templates/_partials/fields/slug.html.twig:17 + slug.button_unlocked Van slot - + + + public/theme/skeleton/listing.twig:42 + - listing.title_filterby - Filter op + general.phrase.no-content-found + Geen inhoud gevonden + + + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + + + general.phrase.none + Geen + + + + + templates/content/view_locales.html.twig:103 + + + view_locales.badge_empty + Leeg + + templates/content/listing.html.twig:45 + action.update_all Alles bijwerken - + + + templates/pages/about.html.twig:21 + - pager.previous - Vorige + about.system_info + Systeeminformatie - + + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + - pager.next - Volgende + action.confirm_delete + Weet je zeker dat je deze content wilt verwijderen? + + + + + src/Form/LoginType.php:38 + + + placeholder.username_or_email + je gebruikersnaam of e-mailadres + + + + + src/Form/LoginType.php:52 + + + placeholder.password + je wachtwoord + + + + + src/Menu/BackendMenuBuilder.php:336 + + + caption.other_content + Overige inhoud + + + + + templates/finder/editfile.html.twig:39 + + + editfile.target_not_writable + Opslaan is uitgeschakeld omdat het doelbestand niet beschrijfbaar is. + + + + + templates/_partials/fields/_label.html.twig:6 + + + label.translatable + Dit veld is vertaalbaar + + + + + templates/pages/logviewer.html.twig:92 + + + label.content + Inhoud + + + + + src/Controller/Backend/FileEditController.php:148 + + + file.delete_success + Bestand succesvol verwijderd! + + + + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + + + file.delete_confirm + Weet je zeker dat je dit bestand wilt verwijderen? + + + + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + + + listing.title_filterby + Filter op + + + + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + + + content.status_changed_successfully + Status succesvol gewijzigd + + + + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + + + content.deleted_successfully + Inhoud succesvol verwijderd + + templates/content/_buttons.html.twig:46 + label.current_status Huidige status + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.published Gepubliceerd + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.draft In klad + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.timed Ingepland + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.held Achtergehouden - + + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + - action.confirm_delete - Weet je zeker dat je deze content wilt verwijderen? + collection.confirm_delete + Weet je zeker dat je dit collectie item wilt verwijderen? - + + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + - label.username_or_email - Gebruikersnaam of e-mail + upload.allow_file_types + Toegestane bestandstypen - + + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + - placeholder.username_or_email - je gebruikersnaam of e-mailadres + upload.max_size + Maximale upload-grootte - + + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + - placeholder.password - je wachtwoord + listing.placeholder_search + Zoek op trefwoord … - + + + templates/pages/dashboard.html.twig:12 + - action.edit_permissions - Bewerk permissies + title.filtered_by + '%filter%'.]]> - + + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + - listing.current_sessions_header - Huidige sessies + action.view_site + Website bekijken + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + + + action.new + Nieuw + + + + + templates/pages/extension_details.html.twig:39 + + + extensions.no_dependencies + Geen bekende afhankelijkheden + + + + + templates/pages/extension_details.html.twig:36 + + + extensions.title_dependencies + Afhankelijkheden + + + + + templates/_partials/fields/collection.html.twig:7 + + + collection.expand_all + Alles uitvouwen + + + + + templates/_partials/fields/collection.html.twig:8 + + + collection.collapse_all + Alles invouwen + + + + + templates/content/edit.html.twig:45 + + + content.edit_missing_definition + De definitie voor dit ContentType ontbreekt! Het bewerken van dit record werkt niet zoals verwacht. Controleer je contenttypes.yaml om er zeker van te zijn dat het %contenttype% bevat. + + + + + templates/_partials/fields/collection.html.twig:10 + + + collection.select + Selecteren … + + src/Form/LoginType.php:34 + form.empty_username_email Je gebruikersnaam of e-mail + + src/Form/LoginType.php:46 + form.empty_password Geef je wachtwoord op - + + + src/Form/ResetPasswordRequestFormType.php:28 + - login.forgotpassword - Wachtwoord vergeten + form.empty_email + Voer je e-mailadres in - + + + templates/content/listing.html.twig:112 + - action.stop_impersonating - Beëindig imiteren gebruiker + listing.title_filterby_field + Filteren op veld + + + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + + + image.button_from_url + Vanaf URL + + + + + templates/finder/_files_actions.html.twig:29 + + + files_cards.copy_to_clipboard + Kopieer link naar bestand + + + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + + + warning + Waarschuwing + + + + + src/Controller/Backend/FilemanagerController.php:150 + + + filemanager.create_folder_already_exists + Map bestaat al + + + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + + + filemanager.create_folder_error + Kon map niet aanmaken + + + + + src/Controller/Backend/FilemanagerController.php:155 + + + filemanager.create_folder_success + Map succesvol aangemaakt. + + + + + src/Controller/Backend/FilemanagerController.php:115 + + + filemanager.delete_folder_successful + Map succesvol verwijderd + + + + + templates/finder/_createfolder.html.twig:13 + + + folder.create_new + Nieuwe map + + + + + templates/users/_form.html.twig:172 + + + label.avatar + Avatar + + + + + templates/security/login.html.twig:64 + + + login.forgotpassword + Wachtwoord vergeten - + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + - listing.placeholder_search - Zoek op trefwoord … + reset_password.request_header + Wachtwoord opnieuw instellen - + + + templates/reset_password/request.html.twig:42 + - general.label.search - Zoek + reset_password.request_description + Voer je e-mailadres in en we sturen je een link om je wachtwoord opnieuw in te stellen. - + + + templates/reset_password/request.html.twig:44 + - action.new - Nieuw + reset_password.request_send + Verzenden - + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + - listing_table.actions.select_all - Selecteer alle + Email + E-mail - + + + templates/reset_password/request.html.twig:47 + - listing_details_box.showing_records - Toon records %current% van %total% + reset_password.back-to-login + Terug naar inloggen - + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + - listing_details_box.name - Naam: %name% (singular: %singularName%) + reset_password.reset_header + Stel je wachtwoord opnieuw in - + + + templates/reset_password/check_email.html.twig:4 + - listing_details_box.slug - Slug: %slug% (singular: %singularSlug%) + reset_password.check_email_sent_header + E-mail voor wachtwoordherstel verzonden - + + + templates/reset_password/check_email.html.twig:35 + - listing_details_box.record_template - Record template: %template% + reset_password.check_email_sent_text_1 + Er is een e-mail verzonden met een link waarop je kunt klikken om je wachtwoord opnieuw in te stellen. Deze link verloopt over %hours% uur. - + + + templates/reset_password/check_email.html.twig:36 + - listing_details_box.listing_template - Listing template: %template% (%listingRecords% records) + reset_password.check_email_sent_text_2 + Als je geen e-mail ontvangt, controleer dan je spammap of %tryagain%. - + + + templates/reset_password/reset.html.twig:37 + - listing_details_box.locales - Locales: %locales% + reset_password.reset_btn + Wachtwoord opnieuw instellen - + + + templates/reset_password/email.html.twig:1 + - action.preview_secure_share - Preview link om te delen + reset_password.email_title + Hoi! - + + + templates/reset_password/email.html.twig:3 + - upload.allow_file_types - Toegestane bestandstypen + reset_password.email_description + Om je wachtwoord opnieuw in te stellen, bezoek je de volgende link - + + + templates/reset_password/email.html.twig:7 + - upload.max_size - Maximale upload-grootte + reset_password.email_expire + Deze link verloopt over %hours% uur. - + + + templates/reset_password/email.html.twig:9 + - image.button_upload_options - Upload opties + reset_password.email_thanks + Groeten! - + + + src/Form/ChangePasswordFormType.php:31 + - image.button_from_url - Vanaf URL + reset_password.enter_pwd + Voer een wachtwoord in - + + + src/Form/ChangePasswordFormType.php:43 + - image.image_preview - Preview afbeelding + label.repeat_password + Herhaal wachtwoord - + + + src/Form/ChangePasswordFormType.php:45 + - Order - Volgorde + reset_password.not_matching_pwds + De wachtwoordvelden moeten overeenkomen. - + + + src/Form/ChangePasswordFormType.php:35 + - Preview link om te delen - Preview link om te delen + reset_password.minimum_length + Je wachtwoord moet minstens %s tekens bevatten - + + + src/Controller/Backend/ResetPasswordController.php:99 + - action.impersonate - Imiteer + reset_password.no_token + Geen token voor wachtwoordherstel gevonden in de URL of in de sessie. - + + + src/Controller/Backend/ResetPasswordController.php:134 + - extensions.title_configuration - Configuratiebestand + reset_password.reset_successful + Je wachtwoord is succesvol opnieuw ingesteld. - + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + - extensions.button_detailed_view - Bekijk details + reset_password.problem_with_request + Er is een probleem opgetreden bij het verwerken van je verzoek om het wachtwoord opnieuw in te stellen - %s - + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + - label.id - ID + label.filtered_by + gefilterd op - + + + templates/content/_buttons.html.twig:34 + - label.level - Level + action.preview_secure_share + Preview link om te delen - + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + - label.message - Bericht + action.stop_impersonating + Beëindig imiteren gebruiker - + + + templates/users/listing.html.twig:82 + - label.timestamp - Timestamp + action.impersonate + Imiteer - + + + templates/widget/maintenance_mode.twig:25 + - label.request - Request + maintenance.activated_warning + Onderhoudsmodus is geactiveerd - + + + templates/_partials/fields/embed.html.twig:28 + - label.trace - Trace + action.refresh + Vernieuwen - + + + templates/content/listing.html.twig:148 + - label.context - Context + listing_details_box.showing_records + Toon records %current% van %total% - + + + templates/content/listing.html.twig:154 + - label.user - Gebruiker + listing_details_box.name + Naam: %name% (singular: %singularName%) - + + + templates/content/listing.html.twig:160 + - label.content - Inhoud + listing_details_box.slug + Slug: %slug% (enkelvoud: %singularSlug%) - + + + templates/content/listing.html.twig:166 + - Button - Knop + listing_details_box.record_template + Recordsjabloon: %template% - + + + templates/content/listing.html.twig:172 + - <strong>Well done!</strong> You successfully read this important alert message. - Goed gedaan! Je hebt dit belangrijke bericht gelezen]]> + listing_details_box.listing_template + Overzichtssjabloon: %template% (%listingRecords% records) - + + + templates/content/listing.html.twig:186 + - info - info + listing_details_box.locales + Talen: %locales% - + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + - danger - gevaar + action.edit_permissions + Bewerk permissies - + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + - action.do_something - Doe iets + general.label.search + Zoek - + + + templates/_partials/fields/image.html.twig:25 + - warning - Waarschuwing + image.image_preview + Preview afbeelding - + + + templates/_partials/_content_listing.html.twig:15 + - caption.file_upload.upload_text - Plaats hier bestanden om te uploaden + listing_table.actions.select_all + Selecteer alle - + + + src/Form/LoginType.php:58 + - folder.create_new - Nieuwe map + label.remembermeduration + Onthoud me? (%duration% dagen) - + + + templates/users/listing.html.twig:117 + - files_cards.copy_to_clipboard - Kopieer link naar bestand + listing.current_sessions_header + Huidige sessies - + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + - file.delete_confirm - Weet je zeker dat je dit bestand wilt verwijderen? + image.button_upload_options + Upload opties - + + + templates/content/_taxonomies.html.twig:27 + - label.avatar - Avatar + Order + Volgorde - + + + src/Form/ResetPasswordRequestFormType.php:32 + - You have to login in order to access this page. - Je moet ingelogd zijn om deze pagina te bekijken. + placeholder.email + je e-mailadres + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + modal.title.file_field Kies een bestand + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + modal.title.image_field Kies een afbeelding + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + Uploaden vanaf URL + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + modal.text.loading - Loading... + Laden… + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + modal.button_save Opslaan + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + modal.button_deny Sluiten - - - collection.confirm_delete - Weet je zeker dat je dit collectie item wilt verwijderen? - -
diff --git a/translations/messages.pl.xlf b/translations/messages.pl.xlf index f75e822f9..6e3ffbfac 100644 --- a/translations/messages.pl.xlf +++ b/translations/messages.pl.xlf @@ -1,1355 +1,3437 @@ - + - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Edytuj użytkownika - + - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 - label.username - Nazwa użytkownika + action.save + Zapisz zmiany - + + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + - action.save - Zapisz zmiany + action.do_something + Zrób coś - + + + templates/users/listing.html.twig:64 + - user.unknown_user - Nieznany użytkownik + action.edit + Edytuj - + + + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 + - caption.content - Zawartość + label.username + Nazwa użytkownika - + + + templates/security/login.html.twig:4 + - caption.settings - Ustawienia + title.login + Logowanie - + + + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 + - caption.configuration - Konfiguracja + label.password + Hasło - + + + templates/security/login.html.twig:60 + - caption.dashboard - Panel Bolta + action.log_in + Zaloguj - + + + templates/content/listing.html.twig:58 + - caption.users_permissions - Użytkownicy i uprawnienia + title.contentlisting + Lista treści - + + + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 + - caption.main_configuration - Główna konfiguracja + field.id + ID - + + + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 + - caption.contenttypes - Typy zawartości + field.status + Status - + + + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 + - caption.taxonomies - Taksonomie + field.createdAt + Utworzono - + + + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 + - caption.routing_setup - Ustawienia ścieżek + field.modifiedAt + Zmodyfikowano - + + + templates/content/_fields_aside.html.twig:15 + - caption.menu_setup - Ustawienia menu + field.publishedAt + Opublikowano - + + + templates/content/_fields_aside.html.twig:24 + - caption.all_configuration_files - Wszystkie pliki konfiguracji + field.depublishedAt + Zdjęto - + + + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 + - caption.extensions - Rozszerzenia + field.title + Tytuł - + + + templates/media/edit.html.twig:45 + - caption.maintenance - Konserwacja + field.description + Opis - + + + templates/media/edit.html.twig:51 + - caption.logviewer - Czytnik logów + field.copyright + Prawa autorskie - + + + templates/media/edit.html.twig:58 + - caption.api - API + field.originalFilename + Oryginalna nazwa pliku - + + + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 + - caption.clear_cache - Wyczyść cache + field.width + szerokość - + + + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 + - caption.translations - Tłumaczenia / Etykiety + field.height + wysokość - + + + templates/media/edit.html.twig:142 + - caption.about_bolt - O Bolcie + field.filesize + Rozmiar pliku - + + + src/Form/LoginType.php:31 + - caption.file_management - Zarządzanie plikami + label.username_or_email + Nazwa użytkownika lub email - + + + src/Form/LoginType.php:58 + - caption.uploaded_files - Załadowane pliki + label.rememberme + Zapamiętaj mnie? - + + + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 + - caption.view_edit_templates - Podgląd i edycja szablonów + about.visit_bolt + Odwiedź Boltcms.io + + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 + about.bolt_documentation Dokumentacja Bolta - + + + templates/pages/about.html.twig:60 + - general.greeting - Witaj %name% + about.bolt_on_github + Bolt na GitHubie - + + + templates/pages/about.html.twig:64 + - action.logout - Wyloguj + about.used_libraries + Wykorzystane biblioteki / komponenty - + + + templates/pages/about.html.twig:66 + - action.edit_profile - Edytuj profil + about.list_of_used_libraries + Poniżej znajduj się biblioteki od zewnętrznych dostawców, których używa Bolt - + + + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 + - about.visit_bolt - Odwiedź Boltcms.io + label.email + Adres e-mail - + + + templates/users/_form.html.twig:185 + - general.phrase.search - Szukaj + label.about + O mnie - + + + src/Controller/Backend/UserEditController.php:129 + - listing.placeholder_search - Szukaj po słowie kluczu + user.updated_successfully + Aktualizacja zakończyła się powodzeniem. - + + + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 + - title.edit_user_profile - Edytuj profil użytkownika + content.updated_successfully + Treść zaktualizowana pomyślnie - + + + src/Controller/Backend/MediaEditController.php:88 + - admin_sidebar_toggler.toggle - Przełącz menu]]> + content.created_successfully + Element multimedialny utworzony pomyślnie - + + + src/Controller/Backend/FileEditController.php:106 + - admin_sidebar.toggler - Przełącz szerokość bocznego panelu + editfile.could_not_write + Nie można zapisać elementu multimedialnego - + + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + - action.new - Nowy + label.locale + Lokalizacja - + + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + - action.view - Zobacz + The Default theme + Motyw domyślny - + + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + - label.display_name - Wyświetlana nazwa + The Default Dark theme + Domyślny ciemny motyw - + + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + - label.password - Hasło + WoordPers: Kinda looks like that other CMS + WoordPers: Wygląda trochę jak ten inny CMS - - - label.email - Adres e-mail + + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + + + caption.dashboard + Panel Bolta + + + + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + + + caption.clear_cache + Wyczyść cache + + + + + src/Menu/BackendMenuBuilder.php:145 + + + caption.menu_setup + Ustawienia menu + + + + + src/Menu/BackendMenuBuilder.php:134 + + + caption.taxonomies + Taksonomie + + + + + src/Menu/BackendMenuBuilder.php:123 + + + caption.contenttypes + Typy zawartości + + + + + src/Menu/BackendMenuBuilder.php:112 + + + caption.main_configuration + Główna konfiguracja + + + + + src/Menu/BackendMenuBuilder.php:99 + + + caption.users_permissions + Użytkownicy i uprawnienia + + + + + src/Menu/BackendMenuBuilder.php:89 + + + caption.configuration + Konfiguracja + + + + + src/Menu/BackendMenuBuilder.php:77 + + + caption.settings + Ustawienia + + + + + src/Menu/BackendMenuBuilder.php:61 + + + caption.content + Zawartość + + + + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + + + caption.file_management + Zarządzanie plikami + + + + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + + + caption.extensions + Rozszerzenia + + + + + src/Menu/BackendMenuBuilder.php:280 + + + caption.view_edit_templates + Podgląd i edycja szablonów + + + + + src/Menu/BackendMenuBuilder.php:270 + + + caption.uploaded_files + Załadowane pliki + + + + + src/Menu/BackendMenuBuilder.php:157 + + + caption.routing_setup + Ustawienia ścieżek + + + + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + + + caption.translations + Tłumaczenia / Etykiety + + + + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + + + caption.about_bolt + O Bolcie + + + + + templates/pages/about.html.twig:11 + + + caption.bolt_payoff + Wyrafinowany, lekki i prosty w użyciu CMS + + + + + templates/content/edit.html.twig:22 + + + caption.edit + Edytuj + + + + + templates/finder/_uploader.html.twig:8 + + + caption.file_uploader + Przesyłanie plików + + + + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + + + caption.meta_information + Meta informacje + + + + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + + + date + Data + + + + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + + + size + Rozmiar + + + + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + + + thumbnail + Miniatura + + + + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + + + filename + Nazwa pliku + + + + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + + + actions + Działania + + + + + templates/finder/_folders.html.twig:6 + + + directoryname + Nazwa katalogu + + + + + templates/finder/_quickselect.html.twig:9 + + + form.quick_select_file + Szybko wybierz plik do edycji... + + + + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + + + caption.path + Ścieżka + + + + + templates/media/edit.html.twig:30 + + + caption.filename + Nazwa pliku + + + + + templates/content/listing.html.twig:63 + + + action.create_new + Utwórz nowy + + + + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + + + general.greeting + Witaj %name% + + + + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + + + action.logout + Wyloguj + + + + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + + + action.edit_profile + Edytuj profil + + + + + templates/_partials/_flash_messages.html.twig:1 + + + action.close_alert + Zamknij + + + + + src/Menu/BackendMenuBuilder.php:207 + + + caption.api + API + + + + + src/Menu/BackendMenuBuilder.php:165 + + + caption.all_configuration_files + Wszystkie pliki konfiguracji + + + + + src/Menu/BackendMenuBuilder.php:177 + + + caption.maintenance + Konserwacja + + + + + templates/finder/editfile.html.twig:21 + + + caption.edit_file + Edytuj plik + + + + + templates/content/_localeswitcher.html.twig:7 + + + field.current_locale + Obecna lokalizacja + + + + + templates/content/_localeswitcher.html.twig:14 + + + field.switch_to_locale + Zmień lokalizację na + + + + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + + + field.author + Autor + + + + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + + + general.phrase.edit + Edytuj + + + + + public/theme/skeleton/partials/_recordfooter.twig:7 + + + Unknown + Nieznane + + + + + public/theme/skeleton/partials/_recordfooter.twig:6 + + + general.phrase.written-by-on + Napisane przez %name% dnia %date%. + + + + + public/theme/skeleton/partials/_aside.twig:33 + + + general.phrase.missing-about-page + Brak strony „O nas” + + + + + public/theme/skeleton/partials/_aside.twig:35 + + + general.phrase.missing-about-page-block + Brak bloku „O nas” + + + + + public/theme/skeleton/partials/_aside.twig:53 + + + contenttypes.generic.recent + Ostatnie %contenttypes% + + + + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + + + general.phrase.search-ellipsis + + + + + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + + + general.phrase.search + Szukaj + + + + + public/theme/skeleton/partials/_aside.twig:60 + + + contenttypes.generic.overview + Przegląd %contenttypes% + + + + + public/theme/skeleton/partials/_aside.twig:62 + + + contenttypes.generic.no-recent + Nie znaleziono ostatnich %contenttype% + + + + + public/theme/skeleton/partials/_footer.twig:4 + + + Menu + Menu + + + + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + + + Search + Szukaj + + + + + public/theme/skeleton/partials/_recordfooter.twig:14 + + + general.phrase.permalink + Bezpośredni odnośnik + + + + + src/Controller/Backend/ClearCacheController.php:24 + + + label.cache_cleared + Cache został pomyślnie wyczyszczony! + + + + + src/Menu/BackendMenuBuilder.php:238 + + + caption.kitchensink + Kitchensink + + + + + public/theme/skeleton/search.twig:11 + + + general.phrase.search-results-for + Wyniki wyszukiwania dla „%search%”. + + + + + public/theme/skeleton/search.twig:51 + + + general.phrase.no-search-results-for + Nie znaleziono wyników wyszukiwania dla „%search%”. + + + + + public/theme/skeleton/search.twig:53 + + + general.phrase.no-search-term-provided + Podaj wyszukiwaną frazę, aby wyświetlić odpowiednie wyniki. + + + + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + + + general.phrase.read-more + Przeczytaj więcej + + + + + public/theme/skeleton/partials/_footer.twig:17 + + + general.phrase.built-with-bolt + zbudowana z Bolt.]]> + + + + + vendor/bolt/newswidget/templates/news.html.twig:3 + + + general.latest_bolt_news + Najnowsze wiadomości o Bolcie + + + + + templates/content/_buttons.html.twig:19 + + + action.preview + Podejrzyj + + + + + templates/content/_buttons.html.twig:58 + + + action.view_saved + Zobacz zapisaną wersję + + + + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + + + label.display_name + Wyświetlana nazwa + + + + + templates/content/edit.html.twig:22 + + + caption.duplicate + Duplikuj + + + + + src/Form/ChangePasswordFormType.php:40 + + + label.new_password + Nowe hasło + + + + + src/Controller/Backend/FileEditController.php:104 + + + editfile.updated_successfully + Plik zaktualizowany pomyślnie! + + + + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + + + action.add_user + Dodaj użytkownika + + + + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + + + success + Sukces! + + + + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + + + user.updated_profile + Profil użytkownika został zaktualizowany! + + + + + templates/users/_form.html.twig:124 + + + label.roles + Role + + + + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + + + user.new_user + Nowy użytkownik + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + + + action.view + Zobacz + + + + + templates/_partials/fields/slug.html.twig:18 + + + slug.button_locked + Zablokowany + + + + + templates/_partials/fields/slug.html.twig:19 + + + slug.button_edit + Edytuj + + + + + templates/_partials/fields/slug.html.twig:20 + + + slug.generate_from + Utwórz na podstawie + + + + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + + + image.button_upload + Prześlij + + + + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + + + image.button_from_library + Z biblioteki + + + + + templates/_partials/_content_listing.html.twig:23 + + + listing_table.actions.view_on_site + Zobacz na Stronie + + + + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + + listing_table.actions.status_to_publish + Zmień status na 'opublikowany' + + + + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + + listing_table.actions.status_to_held + Zmień status na 'wstrzymany' + + + + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + + listing_table.actions.status_to_draft + Zmień status na 'wersja robocza' + + + + + templates/_partials/_content_listing.html.twig:28 + + + listing_table.actions.duplicate + Powiel + + + + + templates/_partials/_content_listing.html.twig:29 + + + listing_table.actions.delete + Usuń + + + + + templates/_partials/_content_listing.html.twig:30 + + + listing_table.actions.slug + Slug + + + + + templates/_partials/_content_listing.html.twig:31 + + + listing_table.actions.created_on + Utworzono + + + + + templates/_partials/_content_listing.html.twig:32 + + + listing_table.actions.published_on + Opublikowano + + + + + templates/_partials/_content_listing.html.twig:33 + + + listing_table.actions.last_modified_on + Ostatnio zmodyfikowano + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Zaznaczony + + + + + templates/_partials/fields/embed.html.twig:20 + + + editor_embed.content_url + URL do treści, którą chcesz osadzić + + + + + templates/_partials/fields/embed.html.twig:21 + + + editor_embed.placeholder_content_url + URL do treści na Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + + + + templates/_partials/fields/embed.html.twig:22 + + + editor_embed.label_height + Wysokość + + + + + templates/_partials/fields/embed.html.twig:23 + + + editor_embed.label_pixel + pikseli + + + + + templates/_partials/fields/embed.html.twig:24 + + + editor_embed.label_matched_embed + Dopasowane osadzenia + + + + + templates/_partials/fields/embed.html.twig:25 + + + editor_embed.label_preview + Podgląd + + + + + templates/_partials/fields/embed.html.twig:26 + + + editor_embed.label_size + Rozmiar + + + + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + + + image.placeholder_filename + Nazwa pliku (prześlij nowy plik lub wybierz istniejący) + + + + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + + + image.placeholder_alt_text + Atrybut "alt" + + + + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + + + image.placeholder_title + Tytuł atrybutu + + + + + templates/_base/layout.html.twig:91 + + + admin_sidebar.toggler + Przełącz szerokość bocznego panelu + + + + + templates/_base/layout.html.twig:82 + + + admin_sidebar_toggler.toggle + Przełącz menu]]> + + + + + templates/_partials/fields/date.html.twig:39 + + + editor_date.toggle + Przełącz + + + + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + + + flash_messages.notification + Powiadomienie + + + + + templates/content/_localeswitcher.html.twig:19 + + + localeswitcher.button_info + Zobacz informacje na temat Lokalizacji + + + + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + + + listing.title_sortby + Sortuj po - + + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + - label.locale - Lokalizacja + listing.placeholder_filter + Słowo klucz do filtrowania ... - + + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + - action.close_alert - Zamknij + listing.button_filter + Filtruj - + + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + - flash_messages.notification - Powiadomienie + listing.button_clear + Wyczyść sortowanie/filtr - + + + templates/content/view_locales.html.twig:99 + - success - Sukces! + view_locales.badge_default + Domyślny - + + + templates/content/view_locales.html.twig:105 + - user.updated_profile - Profil użytkownika został zaktualizowany! + view_locales.badge_ok + OK - + + + templates/content/view_locales.html.twig:101 + - listing_select_box.card_header.selected - Zaznaczony + view_locales.badge_missing + Brakujący - + + + templates/finder/_files_actions.html.twig:10 + - listing_table.actions.status_to_draft - Zmień status na 'wersja robocza' + files_cards.button_toggle + Przełącz listę rozwijaną - + + + templates/finder/_files_actions.html.twig:17 + - listing_table.actions.status_to_held - Zmień status na 'wstrzymany' + files_cards.action_edit_image_info + Edytuj informacje obrazka - + + + templates/finder/_files_actions.html.twig:19 + - listing_table.actions.status_to_publish - Zmień status na 'opublikowany' + files_cards.action_edit_file + Edytuj plik w edytorze - + + + templates/finder/_files_actions.html.twig:25 + - action.delete + files_cards.action_view_original + Zobacz oryginał + + + + + templates/finder/_files_actions.html.twig:36 + + + files_cards.action_duplicate + Powiel + + + + + templates/finder/_files_actions.html.twig:49 + + + files_cards.action_delete Usuń - + + + templates/finder/_files_actions.html.twig:56 + - action.update_all - Zastosuj do wszystkich + files_cards.label_filename + Nazwa pliku: - + + + templates/finder/_files_actions.html.twig:63 + - title.contentlisting - Lista treści + files_cards.label_title + Tytuł: - + + + templates/finder/_files_actions.html.twig:70 + - action.create_new - Utwórz nowy + files_cards.label_dimensions + Wymiary: - + + + templates/finder/_files_actions.html.twig:76 + - listing.title_sortby - Sortuj po + files_cards.label_filesize + Rozmiar pliku: - + + + templates/finder/_files_actions.html.twig:81 + - listing.option_select_sortby - Wybierz pole, po którym chcesz sortować + files_cards.label_created_on + Utworzony: - + + + templates/finder/_files_list.html.twig:75 + - listing.title_filterby - Szukaj / Filtruj po + files_list.remark + W tym folderze nie ma żadnych plików. Wybierz folder, do którego chcesz przejść - + + + templates/finder/_quickselect.html.twig:5 + - listing.placeholder_filter - Słowo klucz do filtrowania ... + quickselect.title_select + Wybierz plik - + + + templates/finder/finder.html.twig:45 + - listing.button_filter - Filtruj + finder.button_list + Lista - + + + templates/finder/finder.html.twig:49 + + + finder.button_cards + Karty + + + + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + + + extensions.title_desc + Opis: + + + + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + + + extensions.title_author + Autor: + + + + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + + extensions.title_package + Paczka / Nazwa klasy: + + + + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + + + extensions.title_version + Wersja: + + + + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + + extensions.info_not_installed + To jest lokalny pakiet, nie zainstalowany przez Composer + + + + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + + + extensions.title_class + Nazwa klasy: + + + + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + + + extensions.button_configuration + Edytuj konfigurację + + + + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + + + extensions.button_source + Źródło + + + + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + + + extensions.button_remove + Usuń rozszerzenie + + + + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + + + extensions.button_disable + Zablokuj rozszerzenie + + + + + templates/security/login.html.twig:40 + + + login.header_login + Bolt » Logowanie + + + + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + + extensions.message_not_implemented + Jeszcze nie zaimplementowane. Wybacz! + + + + + templates/content/listing.html.twig:6 + + + listing.title_overview + Widok ogólny + + + + + templates/finder/_files_cards.html.twig:48 + - title.contentType - Typ zawartości + files_cards.message_no_files + W tym folderze nie ma żadnych plików. Wybierz folder, do którego chcesz przejść, po prawej stronie. + + templates/_partials/_content_listing.html.twig:13 + listing_filter.button_compact Kompaktowy + + templates/_partials/_content_listing.html.twig:14 + listing_filter.button_expanded Rozwinięty - + + + templates/finder/finder.html.twig:41 + - listing_table.actions.view_on_site - Zobacz na Stronie + finder.label_view + Tryb widoku - + + + templates/_partials/_content_listing.html.twig:34 + - listing_table.actions.duplicate - Powiel + listing_table.actions.button_edit + Edytuj - + + + src/Controller/Backend/UserController.php:50 + - listing_table.actions.delete - Usuń + controller.user.title + Użytkownicy i Uprawnienia - + + + src/Controller/Backend/UserController.php:51 + - listing_table.actions.slug - Slug + controller.user.subtitle + Do edycji użytkowników i ich uprawnień - + + + templates/users/listing.html.twig:20 + - listing_table.actions.created_on - Utworzono + listing.title_display_name + Wyświetlana nazwa - + + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + - listing_table.actions.published_on - Opublikowano + listing.title_username + Nazwa użytkownika - + + + templates/users/listing.html.twig:20 + - listing_table.actions.last_modified_on - Ostatnio zmodyfikowano + listing.title_email + Adres e-mail - + + + templates/users/listing.html.twig:21 + - listing_table.actions.button_edit - Edytuj + listing.title_roles + Role - + + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + - pager.previous - Poprzednia + listing.title_last_seen + Ostatnio widziany - + + + templates/users/listing.html.twig:23 + - pager.next - Następna + listing.title_last_ip + Ostatni IP - + + + templates/users/listing.html.twig:24 + - Button - Przycisk + listing.title_actions + Działania - + + + templates/users/profile.html.twig:11 + - <strong>Well done!</strong> You successfully read this important alert message. - Dobra robota! Pomyślnie przeczytałeś ten ważny komunikat ostrzegawczy.]]> + user.unknown_user + Nieznany użytkownik - + + + templates/media/edit.html.twig:114 + - action.do_something - Zrób coś + label.predominant_colors__in_image + Dominujące kolory na obrazie - + + + public/theme/skeleton/listing.twig:14 + - label.translatable - To pole można przetłumaczyć + general.phrase.overview-for + Przegląd dla „%slug%” - + + + public/theme/skeleton/partials/_recordfooter.twig:40 + - upload.allow_file_types - Typy plików, które można przesyłać + general.phrase.related-content + Powiązana treść - + + + public/theme/skeleton/partials/_footer.twig:13 + - upload.max_size - Maksymalny rozmiar przesyłanych plików + action.search + Szukaj - + + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + - image.button_upload - Prześlij + caption.new_contenttype + Nowy %contenttype% - + + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + - image.button_from_library - Z biblioteki + caption.untitled_contenttype + Pozbawiony tytułu %contenttype% - + + + templates/users/profile.html.twig:6 + - image.button_remove - Usuń + title.edit_user_profile + Edytuj profil użytkownika - + + + templates/pages/menupage.html.twig:13 + - image.placeholder_filename - image.placeholder_filename + caption.redirection_page + Strona przekierowania - + + + templates/media/edit.html.twig:6 + - image.button_edit_attributes - Edytuj atrybuty + caption.edit_image + Edytuj obraz - + + + templates/users/_form.html.twig:44 + - warning - Ostrzeżenie + password.suggested + %password%]]> - + + + templates/media/edit.html.twig:70 + - info - informacja + field.cropX + Przytnij X - + + + templates/media/edit.html.twig:73 + - danger - niebezpieczeństwo + field.cropXPostfix + Pozycja przycięcia na osi X, zakres 0-100. - + + + templates/media/edit.html.twig:80 + - title.primary_actions - Podstawowe Działania + field.cropYPostfix + Pozycja przycięcia na osi Y, zakres 0-100. - + + + templates/media/edit.html.twig:77 + - action.preview - Podejrzyj + field.cropY + Przytnij Y - + + + templates/media/edit.html.twig:84 + - label.current_status - Obecny status + field.cropZoom + Współczynnik powiększenia przycięcia - + + + templates/media/edit.html.twig:87 + - status.published - Opublikowany + field.cropZoomPostfix + Poziom powiększenia przycięcia, zakres 1-10. - + + + templates/content/listing.html.twig:136 + - field.modifiedAt - Zmodyfikowano + title.contentType + Typ zawartości - + + + templates/_partials/_content_listing.html.twig:44 + - action.view_saved - Zobacz zapisaną wersję + listing_table.no_results + Nie znaleziono wyników. Rozszerz kryteria filtrowania lub dodaj więcej treści. - + + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + - action.confirm_delete - Czy na pewno zamierzasz usunąć tę zawartość? + listing.option_select_sortby + Wybierz pole, po którym chcesz sortować - + + + templates/content/edit.html.twig:103 + - field.current_locale - Obecna lokalizacja + title.primary_actions + Podstawowe Działania + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + title.options Opcje - - - field.status - Status - - - + + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + - status.held - Wstrzymany + action.delete + Usuń - + + + templates/users/listing.html.twig:76 + - status.draft - Wersja robocza + action.enable + Odblokuj - + + + templates/users/listing.html.twig:71 + - field.publishedAt - Opublikowano + action.disable + Zablokuj - + + + templates/users/listing.html.twig:124 + - editor_date.toggle - Przełącz + listing.title_session_expires + Sesja wygasa - + + + templates/users/listing.html.twig:125 + - field.depublishedAt - Zdjęto + listing.title_ip_address + Adres IP - + + + templates/users/listing.html.twig:126 + - field.author - Autor + listing.title_browser + Przeglądarka / platforma - + + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + - field.createdAt - Utworzono + image.button_remove + Usuń - + + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + - field.id - ID + image.button_edit_attributes + Edytuj atrybuty - + + + templates/_partials/fields/imagelist.html.twig:27 + - slug.button_unlocked - Odblokowany + image.add_new_image + Dodaj nowy obraz - + + + templates/_partials/fields/filelist.html.twig:25 + - caption.edit - Edytuj + file.add_new_file + Dodaj nowy plik - + + + templates/_partials/fields/_collection_buttons.html.twig:20 + - slug.button_locked - Zablokowany + collection.remove_item + Usuń element - + + + templates/_partials/fields/collection.html.twig:6 + - slug.button_edit - Edytuj + collection.add_item + Dodaj nowy element do '%name%' - + + + templates/_partials/fields/_collection_buttons.html.twig:5 + - slug.generate_from - Utwórz na podstawie + collection.move_item_up + Przesuń wyżej - + + + templates/_partials/fields/_collection_buttons.html.twig:9 + - status.timed - Zaplanowany + collection.move_item_down + Przesuń niżej - + + + templates/pages/extensions.html.twig:54 + - field.switch_to_locale - Zmień lokalizację na + extensions.button_detailed_view + Zobacz szczegóły - + + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + - localeswitcher.button_info - Zobacz informacje na temat Lokalizacji + extensions.title_configuration + Plik konfiguracji: - + + + templates/finder/_uploader.html.twig:17 + - image.placeholder_alt_text - Atrybut "alt" + caption.file_upload.upload_text + Upuść tutaj pliki, aby je przesłać - + + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + - listing.title_overview - Widok ogólny + pager.next + Następna - + + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + - caption.kitchensink - caption.kitchensink + pager.previous + Poprzednia - + + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + - title.filtered_by - '%filter%'.]]> + image.button_up + W górę - + + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + - controller.user.subtitle - Do edycji użytkowników i ich uprawnień + image.button_down + W dół - + + + templates/helpers/_field_blocks.twig:28 + - controller.user.title - Użytkownicy i Uprawnienia + general.phrase.download + Pobierz - + + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + - listing.title_display_name - Wyświetlana nazwa + caption.logviewer + Czytnik logów - + + + templates/pages/logviewer.html.twig:39 + - listing.title_username - Nazwa użytkownika + label.request + Żądanie - + + + templates/pages/logviewer.html.twig:53 + - listing.title_email - Adres e-mail + label.trace + Ślad - + + + templates/pages/logviewer.html.twig:71 + - listing.title_roles - Role + label.context + Kontekst - + + + templates/pages/logviewer.html.twig:19 + - listing.title_last_seen - Ostatnio widziany + label.id + ID - + + + templates/pages/logviewer.html.twig:20 + - listing.title_last_ip - Ostatni IP + label.level + Poziom - + + + templates/pages/logviewer.html.twig:23 + - listing.title_actions - Działania + label.message + Wiadomość - + + + templates/pages/logviewer.html.twig:25 + - action.edit - Edytuj + label.timestamp + Znacznik czasu - + + + templates/pages/logviewer.html.twig:86 + - action.disable - Zablokuj + label.user + Użytkownik - + + + templates/users/listing.html.twig:33 + - action.add_user - Dodaj użytkownika + listing.disabled + Zablokowany - + + + templates/_partials/fields/slug.html.twig:17 + - listing.title_session_expires - Sesja wygasa + slug.button_unlocked + Odblokowany - + + + public/theme/skeleton/listing.twig:42 + - listing.title_ip_address - Adres IP + general.phrase.no-content-found + Nie znaleziono treści - + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + - listing.title_browser - Przeglądarka / platforma + general.phrase.none + Brak - + + + templates/content/view_locales.html.twig:103 + - listing.disabled - Zablokowany + view_locales.badge_empty + Pusty - + + + templates/content/listing.html.twig:45 + - action.enable - Odblokuj + action.update_all + Zastosuj do wszystkich - + + + templates/pages/about.html.twig:21 + - user.updated_successfully - Aktualizacja zakończyła się powodzeniem. + about.system_info + Informacje o systemie + + + + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + + + action.confirm_delete + Czy na pewno zamierzasz usunąć tę zawartość? - + + + src/Form/LoginType.php:38 + - user.new_user - Nowy użytkownik + placeholder.username_or_email + Twoja nazwa użytkownika lub email - + + + src/Form/LoginType.php:52 + - password.suggested - %password%]]> + placeholder.password + Twoje hasło - + + + src/Menu/BackendMenuBuilder.php:336 + - label.roles - Role + caption.other_content + Inna treść - + + + templates/finder/editfile.html.twig:39 + - caption.path - Ścieżka + editfile.target_not_writable + Zapisywanie jest wyłączone, ponieważ plik docelowy nie jest zapisywalny. - + + + templates/_partials/fields/_label.html.twig:6 + - caption.edit_file - Edytuj plik + label.translatable + To pole można przetłumaczyć - + + + templates/pages/logviewer.html.twig:92 + - caption.meta_information - Meta informacje + label.content + Treść - + + + src/Controller/Backend/FileEditController.php:148 + - finder.label_view - Tryb widoku + file.delete_success + Plik usunięty pomyślnie! - + + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + - finder.button_list - Lista + file.delete_confirm + Czy jesteś pewien/pewna, że chcesz usunąć ten plik? - + + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + - finder.button_cards - Karty + listing.title_filterby + Szukaj / Filtruj po - + + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + - caption.file_uploader - Przesyłanie plików + content.status_changed_successfully + Status zmieniony pomyślnie - + + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + - caption.file_upload.upload_text - Upuść tutaj pliki, aby je przesłać + content.deleted_successfully + Treść usunięta pomyślnie - + + + templates/content/_buttons.html.twig:46 + - quickselect.title_select - Wybierz plik + label.current_status + Obecny status - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - form.quick_select_file - Szybko wybierz plik do edycji... + status.published + Opublikowany - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - caption.folders - Katalogi + status.draft + Wersja robocza - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - directoryname - Nazwa katalogu + status.timed + Zaplanowany - + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + - actions - Działania + status.held + Wstrzymany - + + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + - filename - Nazwa pliku + collection.confirm_delete + Czy jesteś pewna/pewien, że chcesz usunąć ten element kolekcji? - + + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + - size - Rozmiar + upload.allow_file_types + Typy plików, które można przesyłać - + + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + - thumbnail - Miniatura + upload.max_size + Maksymalny rozmiar przesyłanych plików - + + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + - date - Data + listing.placeholder_search + Szukaj po słowie kluczu - + + + templates/pages/dashboard.html.twig:12 + - files_cards.action_edit_file - Edytuj plik w edytorze + title.filtered_by + '%filter%'.]]> - + + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + - files_cards.action_view_original - Zobacz oryginał + action.view_site + Zobacz witrynę - + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + - files_cards.action_duplicate - Powiel + action.new + Nowy - + + + templates/pages/extension_details.html.twig:39 + - file.delete_confirm - Czy jesteś pewien/pewna, że chcesz usunąć ten plik? + extensions.no_dependencies + Brak znanych zależności - + + + templates/pages/extension_details.html.twig:36 + - files_cards.action_delete - Usuń + extensions.title_dependencies + Zależności - + + + templates/_partials/fields/collection.html.twig:7 + - files_cards.label_filename - Nazwa pliku: + collection.expand_all + Rozwiń wszystkie - + + + templates/_partials/fields/collection.html.twig:8 + - files_cards.label_filesize - Rozmiar pliku: + collection.collapse_all + Zwiń wszystkie - + + + templates/content/edit.html.twig:45 + - files_cards.label_created_on - Utworzony: + content.edit_missing_definition + Brak definicji dla tego ContentType! Edycja tego rekordu nie będzie działać zgodnie z oczekiwaniami. Sprawdź plik contenttypes.yaml, aby upewnić się, że zawiera %contenttype%. - + + + templates/_partials/fields/collection.html.twig:10 + - extensions.title_desc - Opis: + collection.select + Wybierz ... - + + + src/Form/LoginType.php:34 + - extensions.title_author - Autor: + form.empty_username_email + Wprowadź swoją nazwę użytkownika lub adres e-mail - + + + src/Form/LoginType.php:46 + - extensions.title_package - Paczka / Nazwa klasy: + form.empty_password + Wprowadź swoje hasło - + + + src/Form/ResetPasswordRequestFormType.php:28 + - extensions.title_configuration - Plik konfiguracji: + form.empty_email + Wprowadź swój adres e-mail - + + + templates/content/listing.html.twig:112 + - extensions.title_version - Wersja: + listing.title_filterby_field + Filtruj według pola - + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + - extensions.button_detailed_view - Zobacz szczegóły + image.button_from_url + Z adresu URL - + + + templates/finder/_files_actions.html.twig:29 + - extensions.button_configuration - Edytuj konfigurację + files_cards.copy_to_clipboard + Kopiuj link do pliku - + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + - extensions.button_source - Źródło + warning + Ostrzeżenie - + + + src/Controller/Backend/FilemanagerController.php:150 + - extensions.message_not_implemented - Jeszcze nie zaimplementowane. Wybacz! + filemanager.create_folder_already_exists + Folder już istnieje - + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + - extensions.button_remove - Usuń rozszerzenie + filemanager.create_folder_error + Nie można utworzyć folderu - + + + src/Controller/Backend/FilemanagerController.php:155 + - extensions.button_disable - Zablokuj rozszerzenie + filemanager.create_folder_success + Folder utworzony pomyślnie. - + + + src/Controller/Backend/FilemanagerController.php:115 + - extensions.title_dependencies - Zależności + filemanager.delete_folder_successful + Folder usunięty pomyślnie - + + + templates/finder/_createfolder.html.twig:13 + - label.id - ID + folder.create_new + Nowy folder - + + + templates/users/_form.html.twig:172 + - label.level - Poziom + label.avatar + Awatar - + + + templates/security/login.html.twig:64 + - label.message - Wiadomość + login.forgotpassword + Zapomniane hasło - + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + - label.timestamp - Znacznik czasu + reset_password.request_header + Zresetuj hasło - + + + templates/reset_password/request.html.twig:42 + - label.request - Żądanie + reset_password.request_description + Wprowadź swój adres e-mail, a wyślemy Ci link do zresetowania hasła. - + + + templates/reset_password/request.html.twig:44 + - label.trace - Ślad + reset_password.request_send + Wyślij - + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + - label.context - Kontekst + Email + E-mail - + + + templates/reset_password/request.html.twig:47 + - label.user - Użytkownik + reset_password.back-to-login + Powrót do logowania - + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + - label.cache_cleared - Cache został pomyślnie wyczyszczony! + reset_password.reset_header + Zresetuj swoje hasło - + + + templates/reset_password/check_email.html.twig:4 + - general.latest_bolt_news - Najnowsze wiadomości o Bolcie + reset_password.check_email_sent_header + Wysłano e-mail do resetowania hasła - + + + templates/reset_password/check_email.html.twig:35 + - general.phrase.read-more - Przeczytaj więcej + reset_password.check_email_sent_text_1 + Wysłano e-mail zawierający link, który możesz kliknąć, aby zresetować hasło. Ten link wygaśnie za %hours% godz. - + + + templates/reset_password/check_email.html.twig:36 + - 57d589f - Czuwaj! Ten alaram wymaga Twojej uwagi, ale nie jest bardzo istotny.]]> + reset_password.check_email_sent_text_2 + Jeśli nie otrzymasz e-maila, sprawdź folder ze spamem lub %tryagain%. - + + + templates/reset_password/reset.html.twig:37 + - <strong>Warning!</strong> Better check yourself, you're not looking too good. - Uwaga! Miej się na baczności, nie wyglądasz za dobrze.]]> + reset_password.reset_btn + Zresetuj hasło - + + + templates/reset_password/email.html.twig:1 + - <strong>Oh snap!</strong> Change a few things up and try submitting again. - O kurczę! Popraw kilka rzeczy i spróbuj wysłać ponownie.]]> + reset_password.email_title + Cześć! - + + + templates/reset_password/email.html.twig:3 + - caption.bolt_payoff - Wyrafinowany, lekki i prosty w użyciu CMS + reset_password.email_description + Aby zresetować hasło, odwiedź poniższy link - + + + templates/reset_password/email.html.twig:7 + - about.system_info - Informacje o systemie + reset_password.email_expire + Ten link wygaśnie za %hours% godz. - + + + templates/reset_password/email.html.twig:9 + - about.bolt_on_github - Bolt na GitHubie + reset_password.email_thanks + Pozdrawiamy! - + + + src/Form/ChangePasswordFormType.php:31 + - about.used_libraries - Wykorzystane biblioteki / komponenty + reset_password.enter_pwd + Wprowadź hasło - + + + src/Form/ChangePasswordFormType.php:43 + - about.list_of_used_libraries - Poniżej znajduj się biblioteki od zewnętrznych dostawców, których używa Bolt + label.repeat_password + Powtórz hasło - + + + src/Form/ChangePasswordFormType.php:45 + - files_cards.action_edit_image_info - Edytuj informacje obrazka + reset_password.not_matching_pwds + Pola haseł muszą być zgodne. - + + + src/Form/ChangePasswordFormType.php:35 + - files_cards.label_title - Tytuł: + reset_password.minimum_length + Twoje hasło powinno mieć co najmniej %s znaków - + + + src/Controller/Backend/ResetPasswordController.php:99 + - files_cards.label_dimensions - Wymiary: + reset_password.no_token + Nie znaleziono tokena resetowania hasła w adresie URL ani w sesji. - + + + src/Controller/Backend/ResetPasswordController.php:134 + - files_list.remark - W tym folderze nie ma żadnych plików. Wybierz folder, do którego chcesz przejść + reset_password.reset_successful + Twoje hasło zostało pomyślnie zresetowane. - + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + - image.placeholder_title - Tytuł atrybutu + reset_password.problem_with_request + Wystąpił problem podczas przetwarzania żądania resetowania hasła - %s - + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + - collection.add_item - Dodaj nowy element do '%name%' + label.filtered_by + filtrowane według - + + + templates/content/_buttons.html.twig:34 + - collection.expand_all - Rozwiń wszystkie + action.preview_secure_share + Udostępnij bezpieczny link do podglądu - + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + - collection.collapse_all - Zwiń wszystkie + action.stop_impersonating + przestań się podszywać - + + + templates/users/listing.html.twig:82 + - collection.select - Wybierz ... + action.impersonate + podszyj się - + + + templates/widget/maintenance_mode.twig:25 + - collection.move_item_up - Przesuń wyżej + maintenance.activated_warning + Tryb konserwacji jest włączony - + + + templates/_partials/fields/embed.html.twig:28 + - collection.move_item_down - Przesuń niżej + action.refresh + Odśwież - + + + templates/content/listing.html.twig:148 + - collection.confirm_delete - Czy jesteś pewna/pewien, że chcesz usunąć ten element kolekcji? + listing_details_box.showing_records + Wyświetlanie rekordów %current% z %total% - + + + templates/content/listing.html.twig:154 + - collection.remove_item - Usuń element + listing_details_box.name + Nazwa: %name% (liczba pojedyncza: %singularName%) - + + + templates/content/listing.html.twig:160 + - caption.untitled_contenttype - Pozbawiony tytułu %contenttype% + listing_details_box.slug + Slug: %slug% (liczba pojedyncza: %singularSlug%) - + + + templates/content/listing.html.twig:166 + - editor_embed.content_url - URL do treści, którą chcesz osadzić + listing_details_box.record_template + Szablon rekordu: %template% - + + + templates/content/listing.html.twig:172 + - editor_embed.placeholder_content_url - URL do treści na Facebook, Twitter, Soundcloud, Youtube, Vimeo… + listing_details_box.listing_template + Szablon listy: %template% (%listingRecords% rekordów) - + + + templates/content/listing.html.twig:186 + - editor_embed.label_height - Wysokość + listing_details_box.locales + Języki: %locales% - + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + - editor_embed.label_pixel - pikseli + action.edit_permissions + Edytuj uprawnienia - + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + - editor_embed.label_matched_embed - Dopasowane osadzenia + general.label.search + Szukaj - + + + templates/_partials/fields/image.html.twig:25 + - editor_embed.label_preview - Podgląd + image.image_preview + Podgląd obrazu - + + + templates/_partials/_content_listing.html.twig:15 + - editor_embed.label_size - Rozmiar + listing_table.actions.select_all + Zaznacz wszystko - + + + src/Form/LoginType.php:58 + - image.add_new_image - Dodaj nowy obraz + label.remembermeduration + Zapamiętaj mnie? (%duration% dni) - + + + templates/users/listing.html.twig:117 + - file.add_new_file - Dodaj nowy plik + listing.current_sessions_header + Bieżące sesje - + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + - image.button_down - W dół + image.button_upload_options + Opcje przesyłania - + + + templates/content/_taxonomies.html.twig:27 + - image.button_up - W górę + Order + Kolejność - + + + src/Form/ResetPasswordRequestFormType.php:32 + - title.login - Logowanie + placeholder.email + twój adres e-mail - + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + - login.header_login - Bolt » Logowanie + modal.title.file_field + Wybierz plik - + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + - label.username_or_email - Nazwa użytkownika lub email + modal.title.image_field + Wybierz obraz - + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + - placeholder.username_or_email - Twoja nazwa użytkownika lub email + modal.title.upload_from_url + Prześlij z adresu URL - + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + - placeholder.password - Twoje hasło + modal.text.loading + Ładowanie… - + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + - action.log_in - Zaloguj + modal.button_save + Zapisz - + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + - label.rememberme - Zapamiętaj mnie? + modal.button_deny + Zamknij diff --git a/translations/messages.pt_BR.xlf b/translations/messages.pt_BR.xlf index 002d1b946..86f2e041e 100644 --- a/translations/messages.pt_BR.xlf +++ b/translations/messages.pt_BR.xlf @@ -1,10 +1,3438 @@ - - -
- -
- - + + + + + templates/users/edit.html.twig:6 + + + title.edit_user + Editar usuário + + + + + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 + + + action.save + Salvar alterações + + + + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + + + action.do_something + Faça algo + + + + + templates/users/listing.html.twig:64 + + + action.edit + Editar + + + + + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 + + + label.username + Nome de usuário + + + + + templates/security/login.html.twig:4 + + + title.login + Entrar + + + + + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 + + + label.password + Senha + + + + + templates/security/login.html.twig:60 + + + action.log_in + Entrar + + + + + templates/content/listing.html.twig:58 + + + title.contentlisting + Listagem de conteúdo + + + + + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 + + + field.id + ID + + + + + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 + + + field.status + Status + + + + + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 + + + field.createdAt + Criado em + + + + + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 + + + field.modifiedAt + Modificado em + + + + + templates/content/_fields_aside.html.twig:15 + + + field.publishedAt + Publicado em + + + + + templates/content/_fields_aside.html.twig:24 + + + field.depublishedAt + Despublicado em + + + + + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 + + + field.title + Título + + + + + templates/media/edit.html.twig:45 + + + field.description + Descrição + + + + + templates/media/edit.html.twig:51 + + + field.copyright + Direitos autorais + + + + + templates/media/edit.html.twig:58 + + + field.originalFilename + Nome de arquivo original + + + + + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 + + + field.width + largura + + + + + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 + + + field.height + altura + + + + + templates/media/edit.html.twig:142 + + + field.filesize + Tamanho do arquivo + + + + + src/Form/LoginType.php:31 + + + label.username_or_email + Nome de usuário ou e-mail + + + + + src/Form/LoginType.php:58 + + + label.rememberme + Lembrar de mim? + + + + + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 + + + about.visit_bolt + Visite Boltcms.io + + + + + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 + + + about.bolt_documentation + Documentação do Bolt + + + + + templates/pages/about.html.twig:60 + + + about.bolt_on_github + Bolt no Github + + + + + templates/pages/about.html.twig:64 + + + about.used_libraries + Bibliotecas / Componentes utilizados + + + + + templates/pages/about.html.twig:66 + + + about.list_of_used_libraries + Abaixo estão as bibliotecas de terceiros utilizadas pelo Bolt. + + + + + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 + + + label.email + Endereço de e-mail + + + + + templates/users/_form.html.twig:185 + + + label.about + Sobre mim + + + + + src/Controller/Backend/UserEditController.php:129 + + + user.updated_successfully + Atualizado com sucesso + + + + + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 + + + content.updated_successfully + Conteúdo atualizado com sucesso + + + + + src/Controller/Backend/MediaEditController.php:88 + + + content.created_successfully + Item de mídia criado com sucesso + + + + + src/Controller/Backend/FileEditController.php:106 + + + editfile.could_not_write + Não foi possível gravar o item de mídia + + + + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + + + label.locale + Idioma + + + + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + + + The Default theme + O tema padrão + + + + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + + + The Default Dark theme + O tema escuro padrão + + + + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + + + WoordPers: Kinda looks like that other CMS + WoordPers: Parece um pouco com aquele outro CMS + + + + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + + + caption.dashboard + Painel do Bolt + + + + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + + + caption.clear_cache + Limpar o cache + + + + + src/Menu/BackendMenuBuilder.php:145 + + + caption.menu_setup + Configuração do menu + + + + + src/Menu/BackendMenuBuilder.php:134 + + + caption.taxonomies + Taxonomias + + + + + src/Menu/BackendMenuBuilder.php:123 + + + caption.contenttypes + Tipos de conteúdo + + + + + src/Menu/BackendMenuBuilder.php:112 + + + caption.main_configuration + Configuração principal + + + + + src/Menu/BackendMenuBuilder.php:99 + + + caption.users_permissions + + + + + + src/Menu/BackendMenuBuilder.php:89 + + + caption.configuration + Configuração + + + + + src/Menu/BackendMenuBuilder.php:77 + + + caption.settings + Configurações + + + + + src/Menu/BackendMenuBuilder.php:61 + + + caption.content + Conteúdo + + + + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + + + caption.file_management + Gerenciamento de arquivos + + + + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + + + caption.extensions + Extensões + + + + + src/Menu/BackendMenuBuilder.php:280 + + + caption.view_edit_templates + + + + + + src/Menu/BackendMenuBuilder.php:270 + + + caption.uploaded_files + Arquivos enviados + + + + + src/Menu/BackendMenuBuilder.php:157 + + + caption.routing_setup + Configuração de roteamento + + + + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + + + caption.translations + Traduções / Rótulos + + + + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + + + caption.about_bolt + Sobre o Bolt + + + + + templates/pages/about.html.twig:11 + + + caption.bolt_payoff + + + + + + templates/content/edit.html.twig:22 + + + caption.edit + Editar + + + + + templates/finder/_uploader.html.twig:8 + + + caption.file_uploader + Envio de arquivos + + + + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + + + caption.meta_information + Meta informações + + + + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + + + date + Data + + + + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + + + size + Tamanho + + + + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + + + thumbnail + Miniatura + + + + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + + + filename + Nome do arquivo + + + + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + + + actions + Ações + + + + + templates/finder/_folders.html.twig:6 + + + directoryname + Nome da pasta + + + + + templates/finder/_quickselect.html.twig:9 + + + form.quick_select_file + Selecione rapidamente um arquivo para editar… + + + + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + + + caption.path + Caminho + + + + + templates/media/edit.html.twig:30 + + + caption.filename + Nome do arquivo + + + + + templates/content/listing.html.twig:63 + + + action.create_new + Criar novo + + + + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + + + general.greeting + Olá, %name%! + + + + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + + + action.logout + Sair + + + + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + + + action.edit_profile + Editar perfil + + + + + templates/_partials/_flash_messages.html.twig:1 + + + action.close_alert + Fechar + + + + + src/Menu/BackendMenuBuilder.php:207 + + + caption.api + API + + + + + src/Menu/BackendMenuBuilder.php:165 + + + caption.all_configuration_files + Todos os arquivos de configuração + + + + + src/Menu/BackendMenuBuilder.php:177 + + + caption.maintenance + Manutenção + + + + + templates/finder/editfile.html.twig:21 + + + caption.edit_file + Editar arquivo + + + + + templates/content/_localeswitcher.html.twig:7 + + + field.current_locale + Idioma atual + + + + + templates/content/_localeswitcher.html.twig:14 + + + field.switch_to_locale + Mudar para o idioma + + + + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + + + field.author + Autor + + + + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + + + general.phrase.edit + Editar + + + + + public/theme/skeleton/partials/_recordfooter.twig:7 + + + Unknown + Desconhecido + + + + + public/theme/skeleton/partials/_recordfooter.twig:6 + + + general.phrase.written-by-on + Escrito por %name% em %date%. + + + + + public/theme/skeleton/partials/_aside.twig:33 + + + general.phrase.missing-about-page + A página "Sobre" está faltando + + + + + public/theme/skeleton/partials/_aside.twig:35 + + + general.phrase.missing-about-page-block + O bloco "Sobre" está faltando + + + + + public/theme/skeleton/partials/_aside.twig:53 + + + contenttypes.generic.recent + %contenttypes% recentes + + + + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + + + general.phrase.search-ellipsis + + + + + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + + + general.phrase.search + Pesquisar + + + + + public/theme/skeleton/partials/_aside.twig:60 + + + contenttypes.generic.overview + Visão geral de %contenttypes% + + + + + public/theme/skeleton/partials/_aside.twig:62 + + + contenttypes.generic.no-recent + Nenhum %contenttype% recente encontrado + + + + + public/theme/skeleton/partials/_footer.twig:4 + + + Menu + Menu + + + + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + + + Search + Pesquisar + + + + + public/theme/skeleton/partials/_recordfooter.twig:14 + + + general.phrase.permalink + Link permanente + + + + + src/Controller/Backend/ClearCacheController.php:24 + + + label.cache_cleared + Cache limpo com sucesso! + + + + + src/Menu/BackendMenuBuilder.php:238 + + + caption.kitchensink + Kitchensink + + + + + public/theme/skeleton/search.twig:11 + + + general.phrase.search-results-for + Resultados da pesquisa para "%search%". + + + + + public/theme/skeleton/search.twig:51 + + + general.phrase.no-search-results-for + Nenhum resultado de pesquisa encontrado para "%search%". + + + + + public/theme/skeleton/search.twig:53 + + + general.phrase.no-search-term-provided + Forneça um termo de pesquisa para exibir resultados relevantes. + + + + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + + + general.phrase.read-more + Leia mais + + + + + public/theme/skeleton/partials/_footer.twig:17 + + + general.phrase.built-with-bolt + construído com Bolt.]]> + + + + + vendor/bolt/newswidget/templates/news.html.twig:3 + + + general.latest_bolt_news + Últimas notícias do Bolt + + + + + templates/content/_buttons.html.twig:19 + + + action.preview + Pré-visualizar + + + + + templates/content/_buttons.html.twig:58 + + + action.view_saved + Ver versão salva + + + + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + + + label.display_name + Nome de exibição + + + + + templates/content/edit.html.twig:22 + + + caption.duplicate + Duplicar + + + + + src/Form/ChangePasswordFormType.php:40 + + + label.new_password + Nova senha + + + + + src/Controller/Backend/FileEditController.php:104 + + + editfile.updated_successfully + Arquivo atualizado com sucesso! + + + + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + + + action.add_user + Adicionar usuário + + + + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + + + success + Sucesso! + + + + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + + + user.updated_profile + O perfil do usuário foi atualizado! + + + + + templates/users/_form.html.twig:124 + + + label.roles + Funções + + + + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + + + user.new_user + Novo usuário + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + + + action.view + Visualizar + + + + + templates/_partials/fields/slug.html.twig:18 + + + slug.button_locked + Bloqueado + + + + + templates/_partials/fields/slug.html.twig:19 + + + slug.button_edit + Editar + + + + + templates/_partials/fields/slug.html.twig:20 + + + slug.generate_from + Gerar a partir de: + + + + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + + + image.button_upload + Enviar + + + + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + + + image.button_from_library + Da biblioteca + + + + + templates/_partials/_content_listing.html.twig:23 + + + listing_table.actions.view_on_site + Ver no site + + + + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + + listing_table.actions.status_to_publish + Alterar status para "publicado" + + + + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + + listing_table.actions.status_to_held + Alterar status para "retido" + + + + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + + listing_table.actions.status_to_draft + Alterar status para "rascunho" + + + + + templates/_partials/_content_listing.html.twig:28 + + + listing_table.actions.duplicate + Duplicar + + + + + templates/_partials/_content_listing.html.twig:29 + + + listing_table.actions.delete + Excluir + + + + + templates/_partials/_content_listing.html.twig:30 + + + listing_table.actions.slug + Slug + + + + + templates/_partials/_content_listing.html.twig:31 + + + listing_table.actions.created_on + Criado em + + + + + templates/_partials/_content_listing.html.twig:32 + + + listing_table.actions.published_on + Publicado em + + + + + templates/_partials/_content_listing.html.twig:33 + + + listing_table.actions.last_modified_on + Última modificação em + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Selecionado + + + + + templates/_partials/fields/embed.html.twig:20 + + + editor_embed.content_url + URL do conteúdo a incorporar + + + + + templates/_partials/fields/embed.html.twig:21 + + + editor_embed.placeholder_content_url + URL do conteúdo no Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + + + + templates/_partials/fields/embed.html.twig:22 + + + editor_embed.label_height + Altura + + + + + templates/_partials/fields/embed.html.twig:23 + + + editor_embed.label_pixel + pixel + + + + + templates/_partials/fields/embed.html.twig:24 + + + editor_embed.label_matched_embed + Incorporação correspondente + + + + + templates/_partials/fields/embed.html.twig:25 + + + editor_embed.label_preview + Pré-visualização + + + + + templates/_partials/fields/embed.html.twig:26 + + + editor_embed.label_size + Tamanho + + + + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + + + image.placeholder_filename + Nome do arquivo (envie um novo arquivo ou selecione um existente) + + + + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + + + image.placeholder_alt_text + Atributo alt + + + + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + + + image.placeholder_title + Atributo title + + + + + templates/_base/layout.html.twig:91 + + + admin_sidebar.toggler + Alternar largura da barra lateral + + + + + templates/_base/layout.html.twig:82 + + + admin_sidebar_toggler.toggle + Alternar menu]]> + + + + + templates/_partials/fields/date.html.twig:39 + + + editor_date.toggle + Alternar + + + + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + + + flash_messages.notification + Notificação + + + + + templates/content/_localeswitcher.html.twig:19 + + + localeswitcher.button_info + Ver informações de localização + + + + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + + + listing.title_sortby + Ordenar por + + + + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + + + listing.placeholder_filter + Palavra-chave para filtrar… + + + + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + + + listing.button_filter + Filtrar + + + + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + + + listing.button_clear + Limpar ordenação/filtro + + + + + templates/content/view_locales.html.twig:99 + + + view_locales.badge_default + Padrão + + + + + templates/content/view_locales.html.twig:105 + + + view_locales.badge_ok + OK + + + + + templates/content/view_locales.html.twig:101 + + + view_locales.badge_missing + Ausente + + + + + templates/finder/_files_actions.html.twig:10 + + + files_cards.button_toggle + Alternar menu suspenso + + + + + templates/finder/_files_actions.html.twig:17 + + + files_cards.action_edit_image_info + Editar informações da imagem + + + + + templates/finder/_files_actions.html.twig:19 + + + files_cards.action_edit_file + Editar arquivo no editor + + + + + templates/finder/_files_actions.html.twig:25 + + + files_cards.action_view_original + Ver original + + + + + templates/finder/_files_actions.html.twig:36 + + + files_cards.action_duplicate + Duplicar + + + + + templates/finder/_files_actions.html.twig:49 + + + files_cards.action_delete + Excluir + + + + + templates/finder/_files_actions.html.twig:56 + + + files_cards.label_filename + Nome do arquivo: + + + + + templates/finder/_files_actions.html.twig:63 + + + files_cards.label_title + Título: + + + + + templates/finder/_files_actions.html.twig:70 + + + files_cards.label_dimensions + Dimensões: + + + + + templates/finder/_files_actions.html.twig:76 + + + files_cards.label_filesize + Tamanho do arquivo: + + + + + templates/finder/_files_actions.html.twig:81 + + + files_cards.label_created_on + Criado em: + + + + + templates/finder/_files_list.html.twig:75 + + + files_list.remark + Não há arquivos nesta pasta. Selecione uma pasta para navegar. + + + + + templates/finder/_quickselect.html.twig:5 + + + quickselect.title_select + Selecione um arquivo: + + + + + templates/finder/finder.html.twig:45 + + + finder.button_list + Lista + + + + + templates/finder/finder.html.twig:49 + + + finder.button_cards + Cartões + + + + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + + + extensions.title_desc + Descrição: + + + + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + + + extensions.title_author + Autor: + + + + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + + extensions.title_package + Nome do pacote / classe: + + + + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + + + extensions.title_version + Versão: + + + + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + + extensions.info_not_installed + Este é um pacote local, não instalado através do Composer + + + + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + + + extensions.title_class + Nome da classe: + + + + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + + + extensions.button_configuration + Configuração + + + + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + + + extensions.button_source + Código-fonte + + + + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + + + extensions.button_remove + Remover extensão + + + + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + + + extensions.button_disable + Desabilitar extensão + + + + + templates/security/login.html.twig:40 + + + login.header_login + Bolt » Entrar + + + + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + + extensions.message_not_implemented + Ainda não implementado. Desculpe! + + + + + templates/content/listing.html.twig:6 + + + listing.title_overview + Visão geral de + + + + + templates/finder/_files_cards.html.twig:48 + + + files_cards.message_no_files + Não há arquivos nesta pasta. Selecione uma pasta para navegar, no lado direito. + + + + + templates/_partials/_content_listing.html.twig:13 + + + listing_filter.button_compact + Compacto + + + + + templates/_partials/_content_listing.html.twig:14 + + + listing_filter.button_expanded + Expandido + + + + + templates/finder/finder.html.twig:41 + + + finder.label_view + Visualização: + + + + + templates/_partials/_content_listing.html.twig:34 + + + listing_table.actions.button_edit + Editar + + + + + src/Controller/Backend/UserController.php:50 + + + controller.user.title + + + + + + src/Controller/Backend/UserController.php:51 + + + controller.user.subtitle + Para editar usuários e suas permissões + + + + + templates/users/listing.html.twig:20 + + + listing.title_display_name + Nome de exibição + + + + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + + + listing.title_username + Nome de usuário + + + + + templates/users/listing.html.twig:20 + + + listing.title_email + E-mail + + + + + templates/users/listing.html.twig:21 + + + listing.title_roles + Funções + + + + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + + + listing.title_last_seen + Duração da sessão + + + + + templates/users/listing.html.twig:23 + + + listing.title_last_ip + Último IP + + + + + templates/users/listing.html.twig:24 + + + listing.title_actions + Ações + + + + + templates/users/profile.html.twig:11 + + + user.unknown_user + Usuário desconhecido + + + + + templates/media/edit.html.twig:114 + + + label.predominant_colors__in_image + Cores predominantes na imagem + + + + + public/theme/skeleton/listing.twig:14 + + + general.phrase.overview-for + Visão geral de "%slug%" + + + + + public/theme/skeleton/partials/_recordfooter.twig:40 + + + general.phrase.related-content + Conteúdo relacionado + + + + + public/theme/skeleton/partials/_footer.twig:13 + + + action.search + Pesquisar + + + + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + + + caption.new_contenttype + Novo %contenttype% + + + + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + + + caption.untitled_contenttype + %contenttype% sem título + + + + + templates/users/profile.html.twig:6 + + + title.edit_user_profile + Editar perfil do usuário + + + + + templates/pages/menupage.html.twig:13 + + + caption.redirection_page + Página de redirecionamento + + + + + templates/media/edit.html.twig:6 + + + caption.edit_image + Editar imagem + + + + + templates/users/_form.html.twig:44 + + + password.suggested + %password%]]> + + + + + templates/media/edit.html.twig:70 + + + field.cropX + Recorte X + + + + + templates/media/edit.html.twig:73 + + + field.cropXPostfix + Posição do recorte no eixo X, intervalo 0-100. + + + + + templates/media/edit.html.twig:80 + + + field.cropYPostfix + Posição do recorte no eixo Y, intervalo 0-100. + + + + + templates/media/edit.html.twig:77 + + + field.cropY + Recorte Y + + + + + templates/media/edit.html.twig:84 + + + field.cropZoom + Fator de zoom do recorte + + + + + templates/media/edit.html.twig:87 + + + field.cropZoomPostfix + Nível de zoom do recorte, intervalo 1-10. + + + + + templates/content/listing.html.twig:136 + + + title.contentType + Tipo de conteúdo + + + + + templates/_partials/_content_listing.html.twig:44 + + + listing_table.no_results + Nenhum resultado encontrado. Amplie os critérios de filtragem ou adicione mais conteúdo. + + + + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + + + listing.option_select_sortby + Selecione o campo para ordenar… + + + + + templates/content/edit.html.twig:103 + + + title.primary_actions + Ações principais + + + + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + + + title.options + Opções + + + + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + + + action.delete + Excluir + + + + + templates/users/listing.html.twig:76 + + + action.enable + Habilitar + + + + + templates/users/listing.html.twig:71 + + + action.disable + Desabilitar + + + + + templates/users/listing.html.twig:124 + + + listing.title_session_expires + A sessão expira + + + + + templates/users/listing.html.twig:125 + + + listing.title_ip_address + Endereço IP + + + + + templates/users/listing.html.twig:126 + + + listing.title_browser + Navegador / plataforma + + + + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + + + image.button_remove + Remover + + + + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + + + image.button_edit_attributes + Editar atributos + + + + + templates/_partials/fields/imagelist.html.twig:27 + + + image.add_new_image + Adicionar nova imagem + + + + + templates/_partials/fields/filelist.html.twig:25 + + + file.add_new_file + Adicionar novo arquivo + + + + + templates/_partials/fields/_collection_buttons.html.twig:20 + + + collection.remove_item + Remover item + + + + + templates/_partials/fields/collection.html.twig:6 + + + collection.add_item + Adicionar um novo item a "%name%" + + + + + templates/_partials/fields/_collection_buttons.html.twig:5 + + + collection.move_item_up + Mover para cima + + + + + templates/_partials/fields/_collection_buttons.html.twig:9 + + + collection.move_item_down + Mover para baixo + + + + + templates/pages/extensions.html.twig:54 + + + extensions.button_detailed_view + Ver detalhes + + + + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + + + extensions.title_configuration + Arquivo de configuração + + + + + templates/finder/_uploader.html.twig:17 + + + caption.file_upload.upload_text + Solte os arquivos aqui para enviar + + + + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + + + pager.next + Próximo + + + + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + + + pager.previous + Anterior + + + + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + + + image.button_up + Cima + + + + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + + + image.button_down + Baixo + + + + + templates/helpers/_field_blocks.twig:28 + + + general.phrase.download + Baixar + + + + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + + + caption.logviewer + Visualizador de logs + + + + + templates/pages/logviewer.html.twig:39 + + + label.request + Requisição + + + + + templates/pages/logviewer.html.twig:53 + + + label.trace + Rastreamento + + + + + templates/pages/logviewer.html.twig:71 + + + label.context + Contexto + + + + + templates/pages/logviewer.html.twig:19 + + + label.id + ID + + + + + templates/pages/logviewer.html.twig:20 + + + label.level + Nível + + + + + templates/pages/logviewer.html.twig:23 + + + label.message + Mensagem + + + + + templates/pages/logviewer.html.twig:25 + + + label.timestamp + Timestamp + + + + + templates/pages/logviewer.html.twig:86 + + + label.user + Usuário + + + + + templates/users/listing.html.twig:33 + + + listing.disabled + Desabilitado + + + + + templates/_partials/fields/slug.html.twig:17 + + + slug.button_unlocked + Desbloqueado + + + + + public/theme/skeleton/listing.twig:42 + + + general.phrase.no-content-found + Nenhum conteúdo encontrado + + + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + + + general.phrase.none + Nenhum + + + + + templates/content/view_locales.html.twig:103 + + + view_locales.badge_empty + Vazio + + + + + templates/content/listing.html.twig:45 + + + action.update_all + Aplicar a todos + + + + + templates/pages/about.html.twig:21 + + + about.system_info + Informações do sistema + + + + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + + + action.confirm_delete + Tem certeza de que deseja excluir este conteúdo? + + + + + src/Form/LoginType.php:38 + + + placeholder.username_or_email + seu nome de usuário ou e-mail + + + + + src/Form/LoginType.php:52 + + + placeholder.password + sua senha + + + + + src/Menu/BackendMenuBuilder.php:336 + + + caption.other_content + Outro conteúdo + + + + + templates/finder/editfile.html.twig:39 + + + editfile.target_not_writable + O salvamento está desabilitado porque o arquivo de destino não é gravável. + + + + + templates/_partials/fields/_label.html.twig:6 + + + label.translatable + Este campo é traduzível + + + + + templates/pages/logviewer.html.twig:92 + + + label.content + Conteúdo + + + + + src/Controller/Backend/FileEditController.php:148 + + + file.delete_success + Arquivo excluído com sucesso! + + + + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + + + file.delete_confirm + Tem certeza de que deseja excluir este arquivo? + + + + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + + + listing.title_filterby + Pesquisar / Filtrar por + + + + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + + + content.status_changed_successfully + Status alterado com sucesso + + + + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + + + content.deleted_successfully + Conteúdo excluído com sucesso + + + + + templates/content/_buttons.html.twig:46 + + + label.current_status + Status atual + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.published + Publicado + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.draft + Rascunho + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.timed + Programado + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.held + Retido + + + + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + + + collection.confirm_delete + Tem certeza de que deseja excluir este item da coleção? + + + + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + + + upload.allow_file_types + Tipos de arquivo permitidos para envio + + + + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + + + upload.max_size + Tamanho máximo de envio + + + + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + + + listing.placeholder_search + Pesquisar por palavra-chave … + + + + + templates/pages/dashboard.html.twig:12 + + + title.filtered_by + "%filter%".]]> + + + + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + + + action.view_site + Ver site + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + + + action.new + Novo + + + + + templates/pages/extension_details.html.twig:39 + + + extensions.no_dependencies + Nenhuma dependência conhecida + + + + + templates/pages/extension_details.html.twig:36 + + + extensions.title_dependencies + Dependências + + + + + templates/_partials/fields/collection.html.twig:7 + + + collection.expand_all + Expandir tudo + + + + + templates/_partials/fields/collection.html.twig:8 + + + collection.collapse_all + Recolher tudo + + + + + templates/content/edit.html.twig:45 + + + content.edit_missing_definition + A definição para este ContentType está faltando! A edição deste registro não funcionará como esperado. Verifique seu arquivo contenttypes.yaml para garantir que ele contenha %contenttype%. + + + + + templates/_partials/fields/collection.html.twig:10 + + + collection.select + Selecionar … + + + + + src/Form/LoginType.php:34 + + + form.empty_username_email + Digite seu nome de usuário ou e-mail + + + + + src/Form/LoginType.php:46 + + + form.empty_password + Digite sua senha + + + + + src/Form/ResetPasswordRequestFormType.php:28 + + + form.empty_email + Digite seu e-mail + + + + + templates/content/listing.html.twig:112 + + + listing.title_filterby_field + Filtrar por campo + + + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + + + image.button_from_url + Da URL + + + + + templates/finder/_files_actions.html.twig:29 + + + files_cards.copy_to_clipboard + Copiar link para o arquivo + + + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + + + warning + Aviso + + + + + src/Controller/Backend/FilemanagerController.php:150 + + + filemanager.create_folder_already_exists + A pasta já existe + + + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + + + filemanager.create_folder_error + Não foi possível criar a pasta + + + + + src/Controller/Backend/FilemanagerController.php:155 + + + filemanager.create_folder_success + Pasta criada com sucesso. + + + + + src/Controller/Backend/FilemanagerController.php:115 + + + filemanager.delete_folder_successful + Pasta excluída com sucesso + + + + + templates/finder/_createfolder.html.twig:13 + + + folder.create_new + Nova pasta + + + + + templates/users/_form.html.twig:172 + + + label.avatar + Avatar + + + + + templates/security/login.html.twig:64 + + + login.forgotpassword + Esqueceu a senha + + + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + + + reset_password.request_header + Redefinir senha + + + + + templates/reset_password/request.html.twig:42 + + + reset_password.request_description + Digite seu endereço de e-mail e enviaremos um link para redefinir sua senha. + + + + + templates/reset_password/request.html.twig:44 + + + reset_password.request_send + Enviar + + + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + + + Email + E-mail + + + + + templates/reset_password/request.html.twig:47 + + + reset_password.back-to-login + Voltar para o login + + + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + + + reset_password.reset_header + Redefina sua senha + + + + + templates/reset_password/check_email.html.twig:4 + + + reset_password.check_email_sent_header + E-mail de redefinição de senha enviado + + + + + templates/reset_password/check_email.html.twig:35 + + + reset_password.check_email_sent_text_1 + Foi enviado um e-mail contendo um link no qual você pode clicar para redefinir sua senha. Este link expirará em %hours% hora(s). + + + + + templates/reset_password/check_email.html.twig:36 + + + reset_password.check_email_sent_text_2 + Se você não receber o e-mail, verifique sua pasta de spam ou %tryagain%. + + + + + templates/reset_password/reset.html.twig:37 + + + reset_password.reset_btn + Redefinir senha + + + + + templates/reset_password/email.html.twig:1 + + + reset_password.email_title + Olá! + + + + + templates/reset_password/email.html.twig:3 + + + reset_password.email_description + Para redefinir sua senha, visite o link a seguir + + + + + templates/reset_password/email.html.twig:7 + + + reset_password.email_expire + Este link expirará em %hours% hora(s). + + + + + templates/reset_password/email.html.twig:9 + + + reset_password.email_thanks + Atenciosamente! + + + + + src/Form/ChangePasswordFormType.php:31 + + + reset_password.enter_pwd + Digite uma senha + + + + + src/Form/ChangePasswordFormType.php:43 + + + label.repeat_password + Repita a senha + + + + + src/Form/ChangePasswordFormType.php:45 + + + reset_password.not_matching_pwds + Os campos de senha devem coincidir. + + + + + src/Form/ChangePasswordFormType.php:35 + + + reset_password.minimum_length + Sua senha deve ter pelo menos %s caracteres + + + + + src/Controller/Backend/ResetPasswordController.php:99 + + + reset_password.no_token + Nenhum token de redefinição de senha encontrado na URL ou na sessão. + + + + + src/Controller/Backend/ResetPasswordController.php:134 + + + reset_password.reset_successful + Sua senha foi redefinida com sucesso. + + + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + + + reset_password.problem_with_request + Ocorreu um problema ao processar sua solicitação de redefinição de senha - %s + + + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + + + label.filtered_by + filtrado por + + + + + templates/content/_buttons.html.twig:34 + + + action.preview_secure_share + Compartilhar link de pré-visualização seguro + + + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + + + action.stop_impersonating + parar de personificar + + + + + templates/users/listing.html.twig:82 + + + action.impersonate + personificar + + + + + templates/widget/maintenance_mode.twig:25 + + + maintenance.activated_warning + O modo de manutenção está ativado + + + + + templates/_partials/fields/embed.html.twig:28 + + + action.refresh + Atualizar + + + + + templates/content/listing.html.twig:148 + + + listing_details_box.showing_records + Exibindo registros %current% de %total% + + + + + templates/content/listing.html.twig:154 + + + listing_details_box.name + Nome: %name% (singular: %singularName%) + + + + + templates/content/listing.html.twig:160 + + + listing_details_box.slug + Slug: %slug% (singular: %singularSlug%) + + + + + templates/content/listing.html.twig:166 + + + listing_details_box.record_template + Template do registro: %template% + + + + + templates/content/listing.html.twig:172 + + + listing_details_box.listing_template + Template da listagem: %template% (%listingRecords% registros) + + + + + templates/content/listing.html.twig:186 + + + listing_details_box.locales + Idiomas: %locales% + + + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + + + action.edit_permissions + Editar permissões + + + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + + + general.label.search + Pesquisar + + + + + templates/_partials/fields/image.html.twig:25 + + + image.image_preview + Pré-visualizar a imagem + + + + + templates/_partials/_content_listing.html.twig:15 + + + listing_table.actions.select_all + Selecionar tudo + + + + + src/Form/LoginType.php:58 + + + label.remembermeduration + Lembrar de mim? (%duration% dias) + + + + + templates/users/listing.html.twig:117 + + + listing.current_sessions_header + Sessões atuais + + + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + + + image.button_upload_options + Opções de envio + + + + + templates/content/_taxonomies.html.twig:27 + + + Order + Ordem + + + + + src/Form/ResetPasswordRequestFormType.php:32 + + + placeholder.email + seu e-mail + + + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + + + modal.title.file_field + Selecione um arquivo + + + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + + + modal.title.image_field + Selecione uma imagem + + + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + Enviar a partir da URL + + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + Carregando… + + + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + + + modal.button_save + Salvar + + + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + + + modal.button_deny + Fechar + + diff --git a/translations/messages.ru.xlf b/translations/messages.ru.xlf index 9067d9056..d2c2b7019 100644 --- a/translations/messages.ru.xlf +++ b/translations/messages.ru.xlf @@ -1,149 +1,27 @@ - + - - - templates/debug/source_code.twig:26 - - - not_available - Недоступно - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Ошибка %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - Произошла неизвестная ошибка (HTTP %status_code%), которая помешала выполнить ваш запрос. - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - вернитесь на главную страницу.]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - У вас нет разрешения на доступ к этому ресурсу. - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - Попросите вашего менеджера или системного администратора предоставить вам доступ к этому ресурсу. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - Нам не удалось найти запрошенную вами страницу. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - вернитесь на главную страницу.]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - Произошла внутренняя ошибка сервера. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - вернитесь на главную страницу.]]> - - - - - templates/debug/source_code.twig:17 - - - title.source_code - Исходный код, использованный для отображения этой страницы - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - Код контроллера - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Twig код шаблона - - - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Редактировать пользователя - - - templates/debug/source_code.twig:7 - - - action.show_code - Показать код - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 action.save @@ -151,21 +29,35 @@ + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + action.do_something Сделайте что-нибудь - + - templates/users/change_password.twig:26 + templates/users/listing.html.twig:64 - - action.edit_user - Редактировать пользователя - - - action.edit Редактировать @@ -173,35 +65,17 @@ - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 label.username Имя пользователя - - - templates/debug/source_code.twig:3 - - - help.show_code - Контроллера и шаблона, которые используются для рендеринга этой страницы.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - После изменения пароля вы автоматически выйдете из приложения. - - - templates/security/login.twig:4 + templates/security/login.html.twig:4 title.login @@ -210,8 +84,9 @@ - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 label.password @@ -220,7 +95,7 @@ - templates/security/login.twig:84 + templates/security/login.html.twig:60 action.log_in @@ -229,26 +104,17 @@ - templates/content/listing.twig:9 + templates/content/listing.html.twig:58 title.contentlisting Список содержимого - - - templates/users/edit.twig:24 - - - action.change_password - Измените пароль - - - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -257,7 +123,8 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 field.status @@ -266,8 +133,8 @@ - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 field.createdAt @@ -276,8 +143,10 @@ - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 field.modifiedAt @@ -286,7 +155,7 @@ - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 field.publishedAt @@ -295,7 +164,7 @@ - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 field.depublishedAt @@ -304,7 +173,8 @@ - templates/editcontent/media_edit.twig:47 + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 field.title @@ -313,7 +183,7 @@ - templates/editcontent/media_edit.twig:53 + templates/media/edit.html.twig:45 field.description @@ -322,7 +192,7 @@ - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 field.copyright @@ -331,7 +201,7 @@ - templates/editcontent/media_edit.twig:66 + templates/media/edit.html.twig:58 field.originalFilename @@ -340,7 +210,8 @@ - templates/editcontent/media_edit.twig:105 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 field.width @@ -349,7 +220,8 @@ - templates/editcontent/media_edit.twig:112 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 field.height @@ -358,16 +230,16 @@ - templates/editcontent/media_edit.twig:119 + templates/media/edit.html.twig:142 - + field.filesize Размер файла - templates/security/login.twig:61 + src/Form/LoginType.php:31 label.username_or_email @@ -376,7 +248,7 @@ - templates/security/login.twig:80 + src/Form/LoginType.php:58 label.rememberme @@ -385,16 +257,20 @@ - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 - + about.visit_bolt Перейти на boltcms.io - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 about.bolt_documentation @@ -403,7 +279,7 @@ - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 about.bolt_on_github @@ -412,7 +288,7 @@ - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 about.used_libraries @@ -421,58 +297,47 @@ - templates/pages/about.twig:37 + templates/pages/about.html.twig:66 about.list_of_used_libraries Ниже приведены сторонние библиотеки, которые использует Bolt. - - - src/Form/UserType.php:35 - new - - - label.fullname - Полное имя - - - src/Form/UserType.php:38 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 label.email Адрес электронной почты - + - src/Form/UserType.php:38 - new + templates/users/_form.html.twig:185 - + label.about Подробности - src/Controller/Backend/UserController.php:33 - new + src/Controller/Backend/UserEditController.php:129 - + user.updated_successfully Обновление успешно завершено - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 content.updated_successfully @@ -481,8 +346,7 @@ - src/Controller/Backend/EditMediaController.php:157 - new + src/Controller/Backend/MediaEditController.php:88 content.created_successfully @@ -491,524 +355,662 @@ - src/Controller/Backend/EditFileController.php:101 - new + src/Controller/Backend/FileEditController.php:106 - + editfile.could_not_write Не удалось записать медиа-элемент + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + label.locale Локаль - - - label.backend_theme - Бэкэнд-тема - - - - - English (en) - English (UK & USA, en) - - - - - Nederlands (dutch, nl) - Nederlands (Dutch, nl) - - - - - Español (Spanish, es) - Español (Spanish, es) - - - - - français (French, fr) - Français (French, fr) - - - - - Deutsch (German, de) - Deutsch (German, de) - - - - - Język Polski (Polish, pl) - Język Polski (Polish, pl) - - - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - - - - - Italiano (Italian, it) - Italiano (Italian, it) - - + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + The Default theme Тема по умолчанию - + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + + The Default Dark theme Тёмная тема по умолчанию - + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + + WoordPers: Kinda looks like that other CMS WoordPers: Вроде как похоже на ту другую CMS + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + caption.dashboard Панель Bolt - - - caption.translations: messages - Переводы: сообщения - - + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + caption.clear_cache Очистить кеш - - - caption.check_database - Проверить базу данных - - - - - caption.routing set up - Настройка маршрутизации - - + + src/Menu/BackendMenuBuilder.php:145 + caption.menu_setup Настройка меню + + src/Menu/BackendMenuBuilder.php:134 + caption.taxonomies Категоризация + + src/Menu/BackendMenuBuilder.php:123 + caption.contenttypes Типы контента + + src/Menu/BackendMenuBuilder.php:112 + caption.main_configuration Основная конфигурация + + src/Menu/BackendMenuBuilder.php:99 + caption.users_permissions Пользователи и права + + src/Menu/BackendMenuBuilder.php:89 + caption.configuration Конфигурация + + src/Menu/BackendMenuBuilder.php:77 + caption.settings Настройки + + src/Menu/BackendMenuBuilder.php:61 + caption.content Контент + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + caption.file_management Файлы + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + caption.extensions Расширения + + src/Menu/BackendMenuBuilder.php:280 + caption.view_edit_templates Шаблоны + + src/Menu/BackendMenuBuilder.php:270 + caption.uploaded_files Загруженные файлы + + src/Menu/BackendMenuBuilder.php:157 + caption.routing_setup Конфигурация маршрутизации + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + caption.translations Переводы / Ярлыки + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + caption.about_bolt О Bolt - + + templates/pages/about.html.twig:11 + + caption.bolt_payoff - + Изысканная, лёгкая и простая CMS + + templates/content/edit.html.twig:22 + caption.edit Редактировать + + templates/finder/_uploader.html.twig:8 + caption.file_uploader Загрузчик файлов - + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + + caption.meta_information Мета-информация + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + date Дата + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + size Размер - + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + + thumbnail Миниатюра + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + filename Имя файла + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + actions Действия + + templates/finder/_folders.html.twig:6 + directoryname Имя каталога - - - action.go - Старт - - + + templates/finder/_quickselect.html.twig:9 + form.quick_select_file Выбор файла для редактирования… - - - label.quick_select - Выбор - - + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + caption.path Путь + + templates/media/edit.html.twig:30 + caption.filename Имя файла - - - action.visit_site - Посетите сайт - - + + templates/content/listing.html.twig:63 + action.create_new Создать + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + general.greeting Привет, %name%! + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + action.logout Выйти + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + action.edit_profile Профиль + + templates/_partials/_flash_messages.html.twig:1 + action.close_alert закрыть + + src/Menu/BackendMenuBuilder.php:207 + caption.api API + + src/Menu/BackendMenuBuilder.php:165 + caption.all_configuration_files Файлы конфигураций + + src/Menu/BackendMenuBuilder.php:177 + caption.maintenance Обслуживание - - - caption.fixtures_dummy_content - Фикстуры (контент для примера) - - + + templates/finder/editfile.html.twig:21 + caption.edit_file Редактировать файл - - - caption.installation_checks - Проверка установки - - - - - form.select_language - Выберите язык - - - - - field.locale - Локаль - - + + templates/content/_localeswitcher.html.twig:7 + field.current_locale Текущая локаль + + templates/content/_localeswitcher.html.twig:14 + field.switch_to_locale Переключить локаль + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author Автор + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + general.phrase.edit Редактирование + + public/theme/skeleton/partials/_recordfooter.twig:7 + Unknown Неизвестно + + public/theme/skeleton/partials/_recordfooter.twig:6 + general.phrase.written-by-on Написано %name% , %date%. - - general.phrase.missing-about-page - Страница "Подробности" отсутствует. - + + public/theme/skeleton/partials/_aside.twig:33 + + + general.phrase.missing-about-page + Страница «О нас» отсутствует + - + + public/theme/skeleton/partials/_aside.twig:35 + + general.phrase.missing-about-page-block - Блок "Подробности" отсутствует. + Блок «О нас» отсутствует + + public/theme/skeleton/partials/_aside.twig:53 + contenttypes.generic.recent Недавно используемые %contenttypes% + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + general.phrase.search-ellipsis + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + general.phrase.search Поиск + + public/theme/skeleton/partials/_aside.twig:60 + contenttypes.generic.overview Список записей %contenttypes% + + public/theme/skeleton/partials/_aside.twig:62 + contenttypes.generic.no-recent Недавних записей %contenttype% не обнаружено + + public/theme/skeleton/partials/_footer.twig:4 + Menu Меню + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + Search Поиск + + public/theme/skeleton/partials/_recordfooter.twig:14 + general.phrase.permalink Постоянная ссылка - - - label.displayname - Отображаемое имя - - + + src/Controller/Backend/ClearCacheController.php:24 + label.cache_cleared Кеш успешно очищен! - - caption.kitchensink - Кухонная раковина - - - - parameters: - '%search%': consequatur + src/Menu/BackendMenuBuilder.php:238 - general.phrase.search-results-for-variable - Результаты поиска по запросу "% search%". + caption.kitchensink + Кухонная раковина - parameters: - '%search%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:11 general.phrase.search-results-for - Результаты поиска по запросу "% search%". + Результаты поиска по запросу "%search%". - parameters: - '%SEARCHTERM%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:51 general.phrase.no-search-results-for @@ -1016,1743 +1018,2420 @@ + + public/theme/skeleton/search.twig:53 + general.phrase.no-search-term-provided Введите поисковый запрос, чтобы отображать релевантные результаты. + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + general.phrase.read-more Подробнее - + + public/theme/skeleton/partials/_footer.twig:17 + + general.phrase.built-with-bolt сделан на Bolt.]]> + + vendor/bolt/newswidget/templates/news.html.twig:3 + general.latest_bolt_news Новости Bolt + + templates/content/_buttons.html.twig:19 + action.preview - Список + Предпросмотр - + + templates/content/_buttons.html.twig:58 + + action.view_saved Посмотреть сохранённую версию + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + label.display_name Отображаемое имя + + templates/content/edit.html.twig:22 + caption.duplicate Дубликат - - - label.current_password - Текущий пароль - - + + src/Form/ChangePasswordFormType.php:40 + label.new_password Новый пароль - - - label.new_password_confirm - Новый пароль (подтверждение) - - - + + src/Controller/Backend/FileEditController.php:104 + + editfile.updated_successfully Файл обновлён успешно! + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + action.add_user Добавить пользователя + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + success Успешно! - + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + + user.updated_profile Профиль пользователя обновлён! + + templates/users/_form.html.twig:124 + label.roles Роли + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + user.new_user Новый пользователь + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + action.view Список - - - caption.folders - Папки - - + + templates/_partials/fields/slug.html.twig:18 + slug.button_locked Заблокировано + + templates/_partials/fields/slug.html.twig:19 + slug.button_edit Редактировать + + templates/_partials/fields/slug.html.twig:20 + slug.generate_from Создать на основе поля: + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + image.button_upload Загрузить + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + image.button_from_library Из библиотеки + + templates/_partials/_content_listing.html.twig:23 + listing_table.actions.view_on_site Просмотр на сайте - + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + listing_table.actions.status_to_publish Измените статус на «опубликовать» - + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + listing_table.actions.status_to_held Изменить статус на «неактивно» - + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + listing_table.actions.status_to_draft Изменить статус на «черновик» - + + templates/_partials/_content_listing.html.twig:28 + + listing_table.actions.duplicate Создать дубликат + + templates/_partials/_content_listing.html.twig:29 + listing_table.actions.delete Удалить + + templates/_partials/_content_listing.html.twig:30 + listing_table.actions.slug Сегмент адреса + + templates/_partials/_content_listing.html.twig:31 + listing_table.actions.created_on Создано + + templates/_partials/_content_listing.html.twig:32 + listing_table.actions.published_on Опубликовано - + + templates/_partials/_content_listing.html.twig:33 + + listing_table.actions.last_modified_on Изменён + + templates/content/listing.html.twig:40 + listing_select_box.card_header.selected Выбрано - - - listing_select_box.card_body.records_passed - переданы идентификаторы выбранных записей - - - - - listing_select_box.card_body.remark - (это можно использовать с чем-то вроде axios для массового изменения / удаления) - - + + templates/_partials/fields/embed.html.twig:20 + editor_embed.content_url URL-адрес контента для встраивания + + templates/_partials/fields/embed.html.twig:21 + editor_embed.placeholder_content_url URL-адрес контента в Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + templates/_partials/fields/embed.html.twig:22 + editor_embed.label_height Высота + + templates/_partials/fields/embed.html.twig:23 + editor_embed.label_pixel пиксель + + templates/_partials/fields/embed.html.twig:24 + editor_embed.label_matched_embed Соответствующий встроенный элемент - + + templates/_partials/fields/embed.html.twig:25 + + editor_embed.label_preview Предпросмотр + + templates/_partials/fields/embed.html.twig:26 + editor_embed.label_size Размер + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + image.placeholder_filename Имя файла (загрузите новый файл или выберите существующий) + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + image.placeholder_alt_text Атрибут Alt + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + image.placeholder_title Заголовок + + templates/_base/layout.html.twig:91 + admin_sidebar.toggler Переключить ширину боковой панели - + + templates/_base/layout.html.twig:82 + + admin_sidebar_toggler.toggle Вкл./Откл. меню]]> - + + templates/_partials/fields/date.html.twig:39 + + editor_date.toggle Вкл./Откл. - - - file.label_filename - Имя файла - - - - - file.label_title - Заголовок - - - - - file.button_view - Просмотр изображения - - - - - file.button_upload - Загрузите изображение - - - - - file.remark - image.]]> - - - - - file.label_alt - Alt - - - - - filelist.remark - imagelist.]]> - - - - - geolocation.label_geolocation - Геолокация: - - - - - geolocation.label_address - Поиск адреса - - - - - geolocation.placeholder_address - Улица, почтовый индекс, город или другие данные… - - - - - geolocation.label_lat - Широта - - - - - geolocation.label_address_matched - Соответствующий адрес - - - - - geolocation.label_marker - Размещение маркера - - - - - geolocation.label_control - Привязать к ближайшему адресу - - - - - geolocation.label_long - Долгота - - - - - imagelist.remark - filelist.]]> - - + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + flash_messages.notification Уведомление - - - buttons.button_toggle - Переключить раскрывающийся список - - - + + templates/content/_localeswitcher.html.twig:19 + + localeswitcher.button_info Подробная информация о локализации + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + listing.title_sortby Сортировать по - - - listing.option_select_item - Выбрать элемент - - - - - listing.title_title - Заголовок - - + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + listing.placeholder_filter Ключевое слово для фильтрации… + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + listing.button_filter Отфильтровать - + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + + listing.button_clear Очистить сортировку / фильтр + + templates/content/view_locales.html.twig:99 + view_locales.badge_default По умолчанию + + templates/content/view_locales.html.twig:105 + view_locales.badge_ok OK + + templates/content/view_locales.html.twig:101 + view_locales.badge_missing Отсутствует + + templates/finder/_files_actions.html.twig:10 + files_cards.button_toggle Переключить раскрывающийся список - + + templates/finder/_files_actions.html.twig:17 + + files_cards.action_edit_image_info Редактировать информацию об изображении + + templates/finder/_files_actions.html.twig:19 + files_cards.action_edit_file Изменить файл в редакторе + + templates/finder/_files_actions.html.twig:25 + files_cards.action_view_original Просмотр - + + templates/finder/_files_actions.html.twig:36 + + files_cards.action_duplicate Создать дубликат + + templates/finder/_files_actions.html.twig:49 + files_cards.action_delete Удалить + + templates/finder/_files_actions.html.twig:56 + files_cards.label_filename Имя файла: + + templates/finder/_files_actions.html.twig:63 + files_cards.label_title Заголовок: + + templates/finder/_files_actions.html.twig:70 + files_cards.label_dimensions Размеры: - + + templates/finder/_files_actions.html.twig:76 + + files_cards.label_filesize Размер файла: + + templates/finder/_files_actions.html.twig:81 + files_cards.label_created_on Создан: + + templates/finder/_files_list.html.twig:75 + files_list.remark В этой папке нет файлов. Выберите папку для перехода. + + templates/finder/_quickselect.html.twig:5 + quickselect.title_select Выбор файла: + + templates/finder/finder.html.twig:45 + finder.button_list Список + + templates/finder/finder.html.twig:49 + finder.button_cards Карточки + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + extensions.title_desc Описание: + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + extensions.title_author Автор: + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + extensions.title_package Пакет / имя класса: + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + extensions.title_version Версия: - + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + extensions.info_not_installed Это локальный пакет, он не установлен через Composer + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + extensions.title_class Имя класса: + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + extensions.button_configuration Конфигурация + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + extensions.button_source Источник + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + extensions.button_remove Удалить расширение + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + extensions.button_disable Отключить расширение + + templates/security/login.html.twig:40 + login.header_login Bolt » Вход - + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + extensions.message_not_implemented Ещё не реализовано. + + templates/content/listing.html.twig:6 + listing.title_overview Список записей + + templates/finder/_files_cards.html.twig:48 + files_cards.message_no_files В этой папке нет файлов. Выберите папку для перехода с правой стороны. - + + templates/_partials/_content_listing.html.twig:13 + + listing_filter.button_compact Свёрнуто - + + templates/_partials/_content_listing.html.twig:14 + + listing_filter.button_expanded Развёрнуто + + templates/finder/finder.html.twig:41 + finder.label_view Просмотр: + + templates/_partials/_content_listing.html.twig:34 + listing_table.actions.button_edit Редактировать + + src/Controller/Backend/UserController.php:50 + controller.user.title Пользователи и права + + src/Controller/Backend/UserController.php:51 + controller.user.subtitle Для редактирования пользователей и их прав - - - controller.database.check_title - Проверка базы данных - - - - - controller.database.check_subtitle - Чтобы проверить базу данных - - - - - controller.database.update_title - Обновление базы данных - - - - - controller.database.update_subtitle - Чтобы обновить базу данных - - - - - controller.omnisearch.title - Всеохватывающий поиск - - - - - controller.omnisearch.subtitle - Для поиска во всеохватывающем режиме - - + + templates/users/listing.html.twig:20 + listing.title_display_name Отображаемое имя + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + listing.title_username Имя пользователя - + + templates/users/listing.html.twig:20 + + listing.title_email - Email + Эл. почта + + templates/users/listing.html.twig:21 + listing.title_roles Роли + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + listing.title_last_seen Возраст сессии + + templates/users/listing.html.twig:23 + listing.title_last_ip Последний IP + + templates/users/listing.html.twig:24 + listing.title_actions Действия - - - user.not_valid_email - Неверный адрес электронной почты - - - - - user.not_valid_password - Неправильный пароль. Пароль должен содержать не менее 6 символов. - - + + templates/users/profile.html.twig:11 + user.unknown_user Неизвестный пользователь + + templates/media/edit.html.twig:114 + label.predominant_colors__in_image Преобладающие цвета в изображении + + public/theme/skeleton/listing.twig:14 + general.phrase.overview-for Обзор для '%slug%' + + public/theme/skeleton/partials/_recordfooter.twig:40 + general.phrase.related-content Связанный контент + + public/theme/skeleton/partials/_footer.twig:13 + action.search Искать + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + caption.new_contenttype Создать %contenttype% + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + caption.untitled_contenttype %contenttype% без названия + + templates/users/profile.html.twig:6 + title.edit_user_profile Редактировать профиль пользователя + + templates/pages/menupage.html.twig:13 + caption.redirection_page Страница перенаправления + + templates/media/edit.html.twig:6 + caption.edit_image Редактировать изображение - - - general.phrase.select_language - Выбрать язык - - + + templates/users/_form.html.twig:44 + password.suggested %password%]]> + + templates/media/edit.html.twig:70 + field.cropX Обрезать X + + templates/media/edit.html.twig:73 + field.cropXPostfix Положение кадрирования по оси X, диапазон 0-100. + + templates/media/edit.html.twig:80 + field.cropYPostfix Положение кадрирования по оси Y, диапазон 0-100. + + templates/media/edit.html.twig:77 + field.cropY Обрезать Y + + templates/media/edit.html.twig:84 + field.cropZoom Коэффициент масштабирования кадрирования + + templates/media/edit.html.twig:87 + field.cropZoomPostfix Масштаб кадрирования, диапазон 1-10. + + templates/content/listing.html.twig:136 + title.contentType Тип контента - - - listing.title_taxonomy - Категории - - + + templates/_partials/_content_listing.html.twig:44 + listing_table.no_results Результаты не найдены. Расширьте критерии фильтрации или добавьте больше контента. + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + listing.option_select_sortby Выберите поле для сортировки … + + templates/content/edit.html.twig:103 + title.primary_actions Основные действия + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + title.options Опции + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + action.delete Удалить + + templates/users/listing.html.twig:76 + action.enable Вкл. + + templates/users/listing.html.twig:71 + action.disable Откл. - - - user.enabled_successfully - Пользователь успешно включён! - - - - - user.disabled_successfully - Пользователь был успешно отключён! - - + + templates/users/listing.html.twig:124 + listing.title_session_expires Сессия истекает + + templates/users/listing.html.twig:125 + listing.title_ip_address IP адрес + + templates/users/listing.html.twig:126 + listing.title_browser Браузер / платформа + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + image.button_remove Удалить + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + image.button_edit_attributes Редактировать атрибуты - - - image.button_move_up - Вверх - - - - - image.button_move_down - Вниз - - + + templates/_partials/fields/imagelist.html.twig:27 + image.add_new_image Добавить новое изображение + + templates/_partials/fields/filelist.html.twig:25 + file.add_new_file Добавить новый файл + + templates/_partials/fields/_collection_buttons.html.twig:20 + collection.remove_item Удалить элемент + + templates/_partials/fields/collection.html.twig:6 + collection.add_item Добавить элемент к '%name%' + + templates/_partials/fields/_collection_buttons.html.twig:5 + collection.move_item_up Вверх + + templates/_partials/fields/_collection_buttons.html.twig:9 + collection.move_item_down Вниз + + templates/pages/extensions.html.twig:54 + extensions.button_detailed_view Посмотреть детали + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + extensions.title_configuration Файл конфигурации + + templates/finder/_uploader.html.twig:17 + caption.file_upload.upload_text Перетащите сюда файлы для загрузки + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + pager.next Далее + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + pager.previous Обратно + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + image.button_up Вверх + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + image.button_down Вниз + + templates/helpers/_field_blocks.twig:28 + general.phrase.download Скачать + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + caption.logviewer Просмотр логов + + templates/pages/logviewer.html.twig:39 + label.request Запрос + + templates/pages/logviewer.html.twig:53 + label.trace Трассировка + + templates/pages/logviewer.html.twig:71 + label.context Контекст + + templates/pages/logviewer.html.twig:19 + label.id ID + + templates/pages/logviewer.html.twig:20 + label.level Уровень + + templates/pages/logviewer.html.twig:23 + label.message Сообщение - + + templates/pages/logviewer.html.twig:25 + + label.timestamp Временная метка + + templates/pages/logviewer.html.twig:86 + label.user Пользователь - + + templates/users/listing.html.twig:33 + + listing.disabled Вывод отключён + + templates/_partials/fields/slug.html.twig:17 + slug.button_unlocked Разблокировано + + public/theme/skeleton/listing.twig:42 + general.phrase.no-content-found Контент не найден - + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + - general.phrase.empty-database - Похоже, что база данных пуста. Внесите контент в бэкэнде Bolt, или запустите команду, чтобы добавить немного фикстур (контента для примера). + general.phrase.none + Нет + + templates/content/view_locales.html.twig:103 + view_locales.badge_empty Пусто + + templates/content/listing.html.twig:45 + action.update_all Применить ко всем + + templates/pages/about.html.twig:21 + about.system_info Системная информация - - - user.not_valid_display_name - Недействительное отображаемое имя - - + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + action.confirm_delete Вы уверены, что хотите удалить этот контент? + + src/Form/LoginType.php:38 + placeholder.username_or_email Ваше имя пользователя или email + + src/Form/LoginType.php:52 + placeholder.password Ваш пароль + + src/Menu/BackendMenuBuilder.php:336 + caption.other_content Другой контент + + templates/finder/editfile.html.twig:39 + editfile.target_not_writable Сохранение отключено, поскольку целевой файл недоступен для записи. + + templates/_partials/fields/_label.html.twig:6 + label.translatable Это поле можно перевести + + templates/pages/logviewer.html.twig:92 + label.content Контент - + + src/Controller/Backend/FileEditController.php:148 + + file.delete_success Файл успешно удалён! - + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + + file.delete_confirm Вы уверены, что хотите удалить этот файл? + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + listing.title_filterby Искать / фильтровать по - + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + + content.status_changed_successfully Статус успешно изменён - + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + + content.deleted_successfully Контент успешно удалён + + templates/content/_buttons.html.twig:46 + label.current_status Текущий статус + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.published Опубликовано + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.draft Черновик + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.timed Отсрочен + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.held Не активно + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + collection.confirm_delete Вы действительно хотите удалить этот элемент коллекции? - + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + + upload.allow_file_types Типы файлов, разрешённые для загрузки + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + upload.max_size Максимальный размер загружаемого файла + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + listing.placeholder_search Ключевое слово… + + templates/pages/dashboard.html.twig:12 + title.filtered_by '%filter%'.]]> + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + action.view_site Перейти на сайт + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + action.new Создать + + templates/pages/extension_details.html.twig:39 + extensions.no_dependencies Нет известных зависимостей + + templates/pages/extension_details.html.twig:36 + extensions.title_dependencies Зависимости + + templates/_partials/fields/collection.html.twig:7 + collection.expand_all Развернуть все + + templates/_partials/fields/collection.html.twig:8 + collection.collapse_all Свернуть все - + + templates/content/edit.html.twig:45 + + content.edit_missing_definition Определение этого Типа контента отсутствует! Редактирование этой записи не будет работать должным образом. Пожалуйста, проверьте свой contenttypes.yaml, чтобы убедиться, что он содержит %contenttype%. - + + templates/_partials/fields/collection.html.twig:10 + + collection.select Выбрать … + + src/Form/LoginType.php:34 + form.empty_username_email Пожалуйста, введите ваше имя пользователя или адрес электронной почты + + src/Form/LoginType.php:46 + form.empty_password Пожалуйста, введите ваш пароль + + + src/Form/ResetPasswordRequestFormType.php:28 + + + form.empty_email + Пожалуйста, введите email + + + + templates/content/listing.html.twig:112 + listing.title_filterby_field Фильтр по полю + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + image.button_from_url По URL + + templates/finder/_files_actions.html.twig:29 + files_cards.copy_to_clipboard Скопировать ссылку на файл + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + warning Предупреждение + + src/Controller/Backend/FilemanagerController.php:150 + filemanager.create_folder_already_exists Папка уже существует + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + filemanager.create_folder_error Не удалось создать папку + + src/Controller/Backend/FilemanagerController.php:155 + filemanager.create_folder_success Папка успешно создана. - + + src/Controller/Backend/FilemanagerController.php:115 + + filemanager.delete_folder_successful Папка успешно удалена. + + templates/finder/_createfolder.html.twig:13 + folder.create_new Новая папка - - - title.add_user - Добавить пользователя - - + + templates/users/_form.html.twig:172 + label.avatar Аватар - - - You have to login in order to access this page. - Вы должны войти в систему, чтобы получить доступ к этой странице. + + + templates/security/login.html.twig:64 + + + login.forgotpassword + Забыл пароль - - - reset_password.email_title - Привет! + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + + + reset_password.request_header + Сбросить пароль - - - reset_password.email_expire - Срок действия этой ссылки истечёт через %hours% час(а/ов). + + + templates/reset_password/request.html.twig:42 + + + reset_password.request_description + Введите свой адрес электронной почты, и мы вышлем вам ссылку для сброса вашего пароля. - + + + templates/reset_password/request.html.twig:44 + - Email - Email + reset_password.request_send + Подтвердить - - - modal.title.image_field - Выберите изображение + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + + + Email + Эл. почта - - - reset_password.problem_with_request - Возникла проблема с обработкой вашего запроса на сброс пароля - %s + + + templates/reset_password/request.html.twig:47 + + + reset_password.back-to-login + Вернуться к входу в систему - - - placeholder.email - ваш email + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + + + reset_password.reset_header + Сбросьте свой пароль - + + templates/reset_password/check_email.html.twig:4 + + reset_password.check_email_sent_header Электронное письмо для сброса пароля - отправлено - - - login.forgotpassword - Забыл пароль + + + templates/reset_password/check_email.html.twig:35 + + + reset_password.check_email_sent_text_1 + Было отправлено электронное письмо, содержащее ссылку, по которой вы можете перейти, чтобы сбросить свой пароль. Срок действия этой ссылки истечёт через %hours% час(а/ов). - - - reset_password.request_header + + + templates/reset_password/check_email.html.twig:36 + + + reset_password.check_email_sent_text_2 + Если вы не получили электронное письмо, пожалуйста, проверьте свою папку со спамом или %tryagain%. + + + + + templates/reset_password/reset.html.twig:37 + + + reset_password.reset_btn Сбросить пароль - - - action.impersonate - выдавать себя за + + + templates/reset_password/email.html.twig:1 + + + reset_password.email_title + Привет! - - - reset_password.back-to-login - Вернуться к входу в систему + + + templates/reset_password/email.html.twig:3 + + + reset_password.email_description + Чтобы сбросить свой пароль, пожалуйста, перейдите по следующей ссылке - - - reset_password.reset_successful - Ваш пароль был успешно сброшен. + + + templates/reset_password/email.html.twig:7 + + + reset_password.email_expire + Срок действия этой ссылки истечёт через %hours% час(а/ов). - - - modal.button_save - Сохранить + + + templates/reset_password/email.html.twig:9 + + + reset_password.email_thanks + Всего самого хорошего! + + + + + src/Form/ChangePasswordFormType.php:31 + + + reset_password.enter_pwd + Пожалуйста, введите пароль + + + + + src/Form/ChangePasswordFormType.php:43 + + + label.repeat_password + Повторите пароль + + + + + src/Form/ChangePasswordFormType.php:45 + + + reset_password.not_matching_pwds + Пароли должны совпадать. - + + src/Form/ChangePasswordFormType.php:35 + + reset_password.minimum_length Ваш пароль должен содержать не менее %s символов - - - listing_details_box.slug - Сегмент адреса: %slug% (в ед. числе: %singularSlug%) - - - - - action.edit_permissions - Редактировать права + + + src/Controller/Backend/ResetPasswordController.php:99 + + + reset_password.no_token + Токен сброса пароля не найден ни в URL-адресе, ни в сеансе. - - - maintenance.activated_warning - Активирован режим технического обслуживания + + + src/Controller/Backend/ResetPasswordController.php:134 + + + reset_password.reset_successful + Ваш пароль был успешно сброшен. - - - general.label.search - Поиск + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + + + reset_password.problem_with_request + Возникла проблема с обработкой вашего запроса на сброс пароля - %s - - - reset_password.email_thanks - Всего самого хорошего! + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + + + label.filtered_by + отфильтровано по - + + templates/content/_buttons.html.twig:34 + + action.preview_secure_share Поделиться защищённой ссылкой для предварительного просмотра - + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + + action.stop_impersonating перестать выдавать себя за - - - listing_details_box.listing_template - Шаблон списка: %template% (%listingRecords% записей) + + + templates/users/listing.html.twig:82 + + + action.impersonate + выдавать себя за - - - reset_password.request_description - Введите свой адрес электронной почты, и мы вышлем вам ссылку для сброса вашего пароля. + + + templates/widget/maintenance_mode.twig:25 + + + maintenance.activated_warning + Активирован режим технического обслуживания - + + templates/_partials/fields/embed.html.twig:28 + + action.refresh Обновить - - - reset_password.enter_pwd - Пожалуйста, введите пароль - - - - - form.empty_email - Пожалуйста, введите email - - - - - modal.title.upload_from_url - Загрузить с URL-адреса - - - - - modal.button_deny - Закрыть + + + templates/content/listing.html.twig:148 + + + listing_details_box.showing_records + Показано %current% из %total% записей - - - modal.title.file_field - Выберите файл + + + templates/content/listing.html.twig:154 + + + listing_details_box.name + Имя: %name% (в ед. числе: %singularName%) - - - label.remembermeduration - Запомнить меня? (на %duration% дня(ей)) + + + templates/content/listing.html.twig:160 + + + listing_details_box.slug + Сегмент адреса: %slug% (в ед. числе: %singularSlug%) - + + templates/content/listing.html.twig:166 + + listing_details_box.record_template Шаблон записи: %template% + + + templates/content/listing.html.twig:172 + + + listing_details_box.listing_template + Шаблон списка: %template% (%listingRecords% записей) + + - + + templates/content/listing.html.twig:186 + + listing_details_box.locales Локали: %locales% - - - reset_password.request_send - Подтвердить + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + + + action.edit_permissions + Редактировать права - - - image.button_upload_options - Параметры загрузки + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + + + general.label.search + Поиск - - - listing_details_box.showing_records - Показано %current% из %total% записей + + + templates/_partials/fields/image.html.twig:25 + + + image.image_preview + Предварительный просмотр изображения - - - reset_password.reset_header - Сбросьте свой пароль + + + templates/_partials/_content_listing.html.twig:15 + + + listing_table.actions.select_all + Выбрать все - - - label.filtered_by - отфильтровано по + + + src/Form/LoginType.php:58 + + + label.remembermeduration + Запомнить меня? (на %duration% дня(ей)) - - - listing_details_box.name - Имя: %name% (в ед. числе: %singularName%) + + + templates/users/listing.html.twig:117 + + + listing.current_sessions_header + Текущие сессии - - - label.repeat_password - Повторите пароль + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + + + image.button_upload_options + Параметры загрузки - + + templates/content/_taxonomies.html.twig:27 + + Order Порядок - - - modal.text.loading - Загрузка... - - - - - listing_table.actions.select_all - Выбрать все - - - - - reset_password.check_email_sent_text_2 - Если вы не получили электронное письмо, пожалуйста, проверьте свою папку со спамом или %tryagain%. - - - - - image.image_preview - Предварительный просмотр изображения - - - - - reset_password.no_token - Токен сброса пароля не найден ни в URL-адресе, ни в сеансе. + + + src/Form/ResetPasswordRequestFormType.php:32 + + + placeholder.email + ваш email - - - reset_password.reset_btn - Сбросить пароль + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + + + modal.title.file_field + Выберите файл - - - reset_password.email_description - Чтобы сбросить свой пароль, пожалуйста, перейдите по следующей ссылке + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + + + modal.title.image_field + Выберите изображение - - - listing.current_sessions_header - Текущие сессии + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + Загрузить с URL-адреса - - - reset_password.not_matching_pwds - Пароли должны совпадать. + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + Загрузка... - - - Share secure preview link - Поделитесь защищённой ссылкой для предварительного просмотра + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + + + modal.button_save + Сохранить - - - reset_password.check_email_sent_text_1 - Было отправлено электронное письмо, содержащее ссылку, по которой вы можете перейти, чтобы сбросить свой пароль. Срок действия этой ссылки истечёт через %hours% час(а/ов). + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + + + modal.button_deny + Закрыть diff --git a/translations/messages.tr.xlf b/translations/messages.tr.xlf index 540d602a7..f81226331 100644 --- a/translations/messages.tr.xlf +++ b/translations/messages.tr.xlf @@ -1,149 +1,27 @@ - - - - - templates/debug/source_code.twig:26 - - - not_available - Müsait değil - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Hata %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - İsteğinizi tamamlamayı engelleyen bilinmeyen bir hata (HTTP %status_code%) vardı. - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - anasayfaya geri dönün.]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - Bu kaynağa erişim izniniz yok. - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - Yöneticinizden veya sistem yöneticinizden size bu kaynağa erişim izni vermesini isteyin. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - İstediğiniz sayfayı bulamadık. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - ana sayfaya dönün.]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - Dahili bir sunucu hatası oluştu. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - anasayfaya geri dönün.]]> - - - - - templates/debug/source_code.twig:17 - - - title.source_code - Bu sayfayı oluşturmak için kaynak kodu kullanıldı - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - Denetleyici kodu - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Twig şablon kodu - - + + - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user Kullanıcıyı düzenle - - - templates/debug/source_code.twig:7 - - - action.show_code - Kodu göster - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 action.save @@ -151,21 +29,35 @@ + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + action.do_something Bir şey yap - + - templates/users/change_password.twig:26 + templates/users/listing.html.twig:64 - - action.edit_user - Kullanıcıyı düzenle - - - action.edit Düzenle @@ -173,35 +65,17 @@ - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 label.username Kullanıcı adı - - - templates/debug/source_code.twig:3 - - - help.show_code - Denetleyicinin kaynak kodunu ve bu sayfayı oluşturmak için kullanılan şablonunu göstermek için bu düğmeyi tıklayın.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - Şifrenizi değiştirdikten sonra uygulamadan çıkış yapacaksınız. - - - templates/security/login.twig:4 + templates/security/login.html.twig:4 title.login @@ -210,8 +84,9 @@ - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 label.password @@ -220,7 +95,7 @@ - templates/security/login.twig:84 + templates/security/login.html.twig:60 action.log_in @@ -229,26 +104,17 @@ - templates/content/listing.twig:9 + templates/content/listing.html.twig:58 title.contentlisting İçerik listesi - - - templates/users/edit.twig:24 - - - action.change_password - Parolayı değiştir - - - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -257,7 +123,8 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 field.status @@ -266,8 +133,8 @@ - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 field.createdAt @@ -276,8 +143,10 @@ - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 field.modifiedAt @@ -286,7 +155,7 @@ - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 field.publishedAt @@ -295,7 +164,7 @@ - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 field.depublishedAt @@ -304,7 +173,8 @@ - templates/editcontent/media_edit.twig:47 + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 field.title @@ -313,7 +183,7 @@ - templates/editcontent/media_edit.twig:53 + templates/media/edit.html.twig:45 field.description @@ -322,7 +192,7 @@ - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 field.copyright @@ -331,7 +201,7 @@ - templates/editcontent/media_edit.twig:66 + templates/media/edit.html.twig:58 field.originalFilename @@ -340,7 +210,8 @@ - templates/editcontent/media_edit.twig:105 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 field.width @@ -349,7 +220,8 @@ - templates/editcontent/media_edit.twig:112 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 field.height @@ -358,7 +230,7 @@ - templates/editcontent/media_edit.twig:119 + templates/media/edit.html.twig:142 field.filesize @@ -367,7 +239,7 @@ - templates/security/login.twig:61 + src/Form/LoginType.php:31 label.username_or_email @@ -376,7 +248,7 @@ - templates/security/login.twig:80 + src/Form/LoginType.php:58 label.rememberme @@ -385,7 +257,9 @@ - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 about.visit_bolt @@ -394,7 +268,9 @@ - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 about.bolt_documentation @@ -403,7 +279,7 @@ - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 about.bolt_on_github @@ -412,7 +288,7 @@ - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 about.used_libraries @@ -421,37 +297,36 @@ - templates/pages/about.twig:37 + templates/pages/about.html.twig:66 about.list_of_used_libraries Bolt tarafından kullanılan üçüncü parti kütüphaneleri aşağıdadır. - + - src/Form/UserType.php:35 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 - label.fullname - Ad Soyad + label.email + E-posta adresi - + - src/Form/UserType.php:38 - new + templates/users/_form.html.twig:185 - label.email - E-posta adresi + label.about + Hakkında - src/Controller/Backend/UserController.php:33 - new + src/Controller/Backend/UserEditController.php:129 user.updated_successfully @@ -460,9 +335,9 @@ - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 content.updated_successfully @@ -471,8 +346,7 @@ - src/Controller/Backend/EditMediaController.php:157 - new + src/Controller/Backend/MediaEditController.php:88 content.created_successfully @@ -481,8 +355,7 @@ - src/Controller/Backend/EditFileController.php:101 - new + src/Controller/Backend/FileEditController.php:106 editfile.could_not_write @@ -490,511 +363,645 @@ + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + label.locale Dil - - - label.backend_theme - Yönetici teması - - - - - English (en) - İngilizce (en) - - - - - Nederlands (dutch, nl) - Hollandaca (dutch, nl) - - - - - Español (Spanish, es) - İspanyolca (Spanish, es) - - - - - français (French, fr) - Fransızca (French, fr) - - - - - Deutsch (German, de) - Almanca (German, de) - - - - - Język Polski (Polish, pl) - Lehçe (Polish, pl) - - - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brezilya Portekizcesi (Brasilian Portuguese, pt_BR) - - - - - Italiano (Italian, it) - İtalyanca (Italian, it) - - + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + The Default theme Varsayılan tema + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + The Default Dark theme Varsayılan Koyu tema + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + WoordPers: Kinda looks like that other CMS WoordPers: Diğer CMS'ye benziyor + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + caption.dashboard Bolt Kontrol Paneli - - - caption.translations: messages - caption.translations: messages - - + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + caption.clear_cache Önbelleği temizle - - - caption.check_database - Veritabanını kontrol et - - - - - caption.routing set up - caption.routing set up - - + + src/Menu/BackendMenuBuilder.php:145 + caption.menu_setup Menü kurulumu + + src/Menu/BackendMenuBuilder.php:134 + caption.taxonomies Sınıflandırmalar + + src/Menu/BackendMenuBuilder.php:123 + caption.contenttypes İçetik Tipleri + + src/Menu/BackendMenuBuilder.php:112 + caption.main_configuration Ana Yapılandırma + + src/Menu/BackendMenuBuilder.php:99 + caption.users_permissions + + src/Menu/BackendMenuBuilder.php:89 + caption.configuration Yapılandırma + + src/Menu/BackendMenuBuilder.php:77 + caption.settings Ayarlar + + src/Menu/BackendMenuBuilder.php:61 + caption.content İçerik + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + caption.file_management Dosya yönetimi + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + caption.extensions Uzantılar + + src/Menu/BackendMenuBuilder.php:280 + caption.view_edit_templates + + src/Menu/BackendMenuBuilder.php:270 + caption.uploaded_files Yüklenmiş dosyalar + + src/Menu/BackendMenuBuilder.php:157 + caption.routing_setup Yönlendirme yapılandırması + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + caption.translations Çeviriler / Etiketler + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + caption.about_bolt Bolt Hakkında + + templates/pages/about.html.twig:11 + caption.bolt_payoff - + Gelişmiş, hafif ve basit CMS + + templates/content/edit.html.twig:22 + caption.edit Düzenle + + templates/finder/_uploader.html.twig:8 + caption.file_uploader Dosya yükleyici + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + caption.meta_information Meta bilgisi + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + date Tarih + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + size Boyut + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + thumbnail Küçük resim + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + filename Dosya adı + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + actions Eylemler + + templates/finder/_folders.html.twig:6 + directoryname Klasör adı - - - action.go - Git - - + + templates/finder/_quickselect.html.twig:9 + form.quick_select_file Düzenlemek için hızlıca bir dosya seçin… - - - label.quick_select - Hızlı seçim - - + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + caption.path Yol + + templates/media/edit.html.twig:30 + caption.filename Dosya adı - - - action.visit_site - Siteyi ziyaret et - - + + templates/content/listing.html.twig:63 + action.create_new Yeni bir tane oluştur + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + general.greeting Merhaba, %name%! + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + action.logout Çıkış yap + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + action.edit_profile Profili düzenle + + templates/_partials/_flash_messages.html.twig:1 + action.close_alert Kapat + + src/Menu/BackendMenuBuilder.php:207 + caption.api API + + src/Menu/BackendMenuBuilder.php:165 + caption.all_configuration_files Tüm yapılandırma dosyaları + + src/Menu/BackendMenuBuilder.php:177 + caption.maintenance Bakım - - - caption.fixtures_dummy_content - Fikstürler (Hazır İçerik) - - + + templates/finder/editfile.html.twig:21 + caption.edit_file Dosyayı Düzenle - - - caption.installation_checks - Kurulum kontrolleri - - - - - form.select_language - Dil seç - - - - - field.locale - Dil - - + + templates/content/_localeswitcher.html.twig:7 + field.current_locale Mevcut dil + + templates/content/_localeswitcher.html.twig:14 + field.switch_to_locale Dil değiştir + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author Yazar + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + general.phrase.edit Düzenle + + public/theme/skeleton/partials/_recordfooter.twig:7 + Unknown Bilinmeyen + + public/theme/skeleton/partials/_recordfooter.twig:6 + general.phrase.written-by-on %date% tarihinde %name% tarafından yazıldı. - + + public/theme/skeleton/partials/_aside.twig:33 + + general.phrase.missing-about-page "Hakkında" sayfası eksik + + public/theme/skeleton/partials/_aside.twig:35 + general.phrase.missing-about-page-block "Hakkında" bloğu eksik + + public/theme/skeleton/partials/_aside.twig:53 + contenttypes.generic.recent En son %contenttypes% + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + general.phrase.search-ellipsis + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + general.phrase.search Ara - - - 9fb3e6e - Bolt ile yapılmıştır.]]> - - + + public/theme/skeleton/partials/_aside.twig:60 + contenttypes.generic.overview %contenttypes% içerik tipine genel bakış + + public/theme/skeleton/partials/_aside.twig:62 + contenttypes.generic.no-recent Yakın zamanda eklenen %contenttype% içerik tipi bulunamadı + + public/theme/skeleton/partials/_footer.twig:4 + Menu - Menu + Menü + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + Search Ara + + public/theme/skeleton/partials/_recordfooter.twig:14 + general.phrase.permalink Kalıcı bağlantı - - - label.displayname - Ekran adı - - + + src/Controller/Backend/ClearCacheController.php:24 + label.cache_cleared Önbellek başarıyla temizlendi! - - caption.kitchensink - Mutfak lavabosu - - - - parameters: - '%search%': consequatur + src/Menu/BackendMenuBuilder.php:238 - general.phrase.search-results-for-variable - '%search%' için arama sonuçları. + caption.kitchensink + Mutfak lavabosu - parameters: - '%search%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:11 general.phrase.search-results-for @@ -1003,8 +1010,7 @@ - parameters: - '%SEARCHTERM%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:51 general.phrase.no-search-results-for @@ -1012,1360 +1018,2421 @@ + + public/theme/skeleton/search.twig:53 + general.phrase.no-search-term-provided Lütfen ilgili sonuçları görüntülemek için bir arama terimi girin. + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + general.phrase.read-more Devamını oku + + public/theme/skeleton/partials/_footer.twig:17 + general.phrase.built-with-bolt - Bolt ile yapılmıştır.]]> + Bolt ile yapılmıştır.]]> + + vendor/bolt/newswidget/templates/news.html.twig:3 + general.latest_bolt_news Son Bolt Haberleri + + templates/content/_buttons.html.twig:19 + action.preview Önizleme + + templates/content/_buttons.html.twig:58 + action.view_saved Kaydedilen versiyonu görüntüle + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + label.display_name Ekran Adı + + templates/content/edit.html.twig:22 + caption.duplicate Kopyala - - - label.current_password - Eski Parola - - + + src/Form/ChangePasswordFormType.php:40 + label.new_password Yeni Parola - - - label.new_password_confirm - Yeni Parola (onayla) - - + + src/Controller/Backend/FileEditController.php:104 + editfile.updated_successfully Dosya başarıyla güncellendi! + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + action.add_user Kullanıcı Ekle + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + success Başarılı! + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + user.updated_profile Kullanıcı Profili güncellendi! + + templates/users/_form.html.twig:124 + label.roles Roller + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + user.new_user Yeni Kullanıcı + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + action.view Görüntüle - - - caption.folders - Klasörler - - + + templates/_partials/fields/slug.html.twig:18 + slug.button_locked Kilitli + + templates/_partials/fields/slug.html.twig:19 + slug.button_edit Düzenle + + templates/_partials/fields/slug.html.twig:20 + slug.generate_from Oluşturulduğu alan + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + image.button_upload Yükle + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + image.button_from_library Kütüphaneden + + templates/_partials/_content_listing.html.twig:23 + listing_table.actions.view_on_site Sitede Görüntüle + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + listing_table.actions.status_to_publish Durumu 'yayınla' olarak değiştir + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + listing_table.actions.status_to_held Durumu 'tut' olarak değiştir + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + listing_table.actions.status_to_draft Durumu 'taslak' olarak değiştir + + templates/_partials/_content_listing.html.twig:28 + listing_table.actions.duplicate Kopyala + + templates/_partials/_content_listing.html.twig:29 + listing_table.actions.delete Sil + + templates/_partials/_content_listing.html.twig:30 + listing_table.actions.slug Slug + + templates/_partials/_content_listing.html.twig:31 + listing_table.actions.created_on Oluşturulma tarihi + + templates/_partials/_content_listing.html.twig:32 + listing_table.actions.published_on Yayınlanma tarihi + + templates/_partials/_content_listing.html.twig:33 + listing_table.actions.last_modified_on Son düzenlenme tarihi + + templates/content/listing.html.twig:40 + listing_select_box.card_header.selected Seçilen - - - listing_select_box.card_body.records_passed - seçilen kayıt kimlikleri geçti - - - - - listing_select_box.card_body.remark - (bunları, toplu olarak değiştirmek / silmek için aksiyolar gibi bir şeyle kullanılabilir) - - + + templates/_partials/fields/embed.html.twig:20 + editor_embed.content_url Yerleştirilecek içeriğin URL'si + + templates/_partials/fields/embed.html.twig:21 + editor_embed.placeholder_content_url Facebook, Twitter, Soundcloud, Youtube, Vimeo'daki içeriğin URL'si… + + templates/_partials/fields/embed.html.twig:22 + editor_embed.label_height Yükseklik + + templates/_partials/fields/embed.html.twig:23 + editor_embed.label_pixel piksel + + templates/_partials/fields/embed.html.twig:24 + editor_embed.label_matched_embed Eşleşen Yerleştirme + + templates/_partials/fields/embed.html.twig:25 + editor_embed.label_preview Önizleme + + templates/_partials/fields/embed.html.twig:26 + editor_embed.label_size Boyut + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + image.placeholder_filename Dosya adı (yeni bir dosya yükleyin veya mevcut bir dosyayı seçin) + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + image.placeholder_alt_text Alt niteliği + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + image.placeholder_title Başlık niteliği + + templates/_base/layout.html.twig:91 + admin_sidebar.toggler Kenar çubuğu genişliğini değiştir + + templates/_base/layout.html.twig:82 + admin_sidebar_toggler.toggle Değiştir ]]> + + templates/_partials/fields/date.html.twig:39 + editor_date.toggle Değiştir - - - file.label_filename - Dosya adı - - - - - file.label_title - Başlık - - - - - file.button_view - Resmi görüntüle - - - - - file.button_upload - Bir resim yükle - - - - - file.remark - image-alanı ile aynıdır.]]> - - - - - file.label_alt - Alt - - - - - filelist.remark - imagelist-alanı ile aynıdır.]]> - - - - - geolocation.label_geolocation - Coğrafi konum: - - - - - geolocation.label_address - Adres araması - - - - - geolocation.placeholder_address - Sokak, posta kodu, şehir veya başka bir konum… - - - - - geolocation.label_lat - Enlem - - - - - geolocation.label_address_matched - Eşleşen adres - - - - - geolocation.label_marker - İşaretçi yerleşimi - - - - - geolocation.label_control - En yakın adrese yasla - - - - - geolocation.label_long - Boylam - - - - - imagelist.remark - filelist-alanı ile aynıdır.]]> - - + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + flash_messages.notification Bildirim - - - buttons.button_toggle - Açılır Menüyü Aç / Kapat - - + + templates/content/_localeswitcher.html.twig:19 + localeswitcher.button_info Dil bilgilerini görün + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + listing.title_sortby Göre sırala - - - listing.option_select_item - Öğe seç - - - - - listing.title_title - Başlık - - + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + listing.placeholder_filter Filtrelenecek anahtar kelime… + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + listing.button_filter Filtrele + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + listing.button_clear Sıralamayı / filtrelemeyi temizle + + templates/content/view_locales.html.twig:99 + view_locales.badge_default Varsayılan + + templates/content/view_locales.html.twig:105 + view_locales.badge_ok Tamam + + templates/content/view_locales.html.twig:101 + view_locales.badge_missing Eksik + + templates/finder/_files_actions.html.twig:10 + files_cards.button_toggle Açılır Menüyü Aç / Kapat + + templates/finder/_files_actions.html.twig:17 + files_cards.action_edit_image_info Resim bilgilerini düzenle + + templates/finder/_files_actions.html.twig:19 + files_cards.action_edit_file Dosyayı düzenleyicide düzenle + + templates/finder/_files_actions.html.twig:25 + files_cards.action_view_original Orjinali görüntüle + + templates/finder/_files_actions.html.twig:36 + files_cards.action_duplicate Kopyala + + templates/finder/_files_actions.html.twig:49 + files_cards.action_delete Sil + + templates/finder/_files_actions.html.twig:56 + files_cards.label_filename Dosya adı: + + templates/finder/_files_actions.html.twig:63 + files_cards.label_title Başlık: + + templates/finder/_files_actions.html.twig:70 + files_cards.label_dimensions Boyutlar: + + templates/finder/_files_actions.html.twig:76 + files_cards.label_filesize Dosya boyutu: + + templates/finder/_files_actions.html.twig:81 + files_cards.label_created_on Oluşturulma tarihi: + + templates/finder/_files_list.html.twig:75 + files_list.remark Bu klasörde dosya yok. Gezinmek için bir klasör seçin. + + templates/finder/_quickselect.html.twig:5 + quickselect.title_select Bir dosya seç: + + templates/finder/finder.html.twig:45 + finder.button_list Liste + + templates/finder/finder.html.twig:49 + finder.button_cards Kartlar + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + extensions.title_desc Açıklama: + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + extensions.title_author Yazar: + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + extensions.title_package Paket / Sınıf adı: + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + extensions.title_version Versiyon: + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + extensions.info_not_installed Bu, Composer aracılığıyla yüklenmeyen yerel bir paket + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + extensions.title_class Sınıf adı: + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + extensions.button_configuration Yapılandırma + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + extensions.button_source Kaynak + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + extensions.button_remove Uzantıyı kaldır + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + extensions.button_disable Uzantıyı devre dışı bırak + + templates/security/login.html.twig:40 + login.header_login Bolt » Oturum aç + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + extensions.message_not_implemented Henüz uygulanmadı. Üzgünüm! + + templates/content/listing.html.twig:6 + listing.title_overview Genel bakış: + + templates/finder/_files_cards.html.twig:48 + files_cards.message_no_files Bu klasörde dosya yok. Gezinmek için bir klasör seçin. + + templates/_partials/_content_listing.html.twig:13 + listing_filter.button_compact Kompakt + + templates/_partials/_content_listing.html.twig:14 + listing_filter.button_expanded Genişletilmiş + + templates/finder/finder.html.twig:41 + finder.label_view Görüntüle: + + templates/_partials/_content_listing.html.twig:34 + listing_table.actions.button_edit Düzenle + + src/Controller/Backend/UserController.php:50 + controller.user.title + + src/Controller/Backend/UserController.php:51 + controller.user.subtitle Kullanıcıları ve izinlerini düzenlemek için - - - controller.database.check_title - Veritabanı Kontrol Et - - - - - controller.database.check_subtitle - Veritabanını kontrol etmek için - - - - - controller.database.update_title - Veritabanı Güncelleme - - - - - controller.database.update_subtitle - Veritabanını güncellemek için - - - - - controller.omnisearch.title - Omnisearch - - - - - controller.omnisearch.subtitle - Omni benzeri bir şekilde aramak için - - + + templates/users/listing.html.twig:20 + listing.title_display_name Ekran adı + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + listing.title_username Kullanıcı adı + + templates/users/listing.html.twig:20 + listing.title_email E-posta + + templates/users/listing.html.twig:21 + listing.title_roles Roller + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + listing.title_last_seen Oturum yaşı + + templates/users/listing.html.twig:23 + listing.title_last_ip Son IP + + templates/users/listing.html.twig:24 + listing.title_actions Eylemler - - - user.not_valid_email - Geçersiz e-posta. - - - - - user.not_valid_password - Geçersiz parola. Parola en az 6 karakter içermelidir. - - + + templates/users/profile.html.twig:11 + user.unknown_user Bilinmeyen kullanıcı + + templates/media/edit.html.twig:114 + label.predominant_colors__in_image Resimdeki baskın renkler + + public/theme/skeleton/listing.twig:14 + general.phrase.overview-for '%slug%' için genel bakış + + public/theme/skeleton/partials/_recordfooter.twig:40 + general.phrase.related-content Benzer içerik + + public/theme/skeleton/partials/_footer.twig:13 + action.search Ara + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + caption.new_contenttype Yeni %contenttype% + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + caption.untitled_contenttype Başlıksız %contenttype% + + templates/users/profile.html.twig:6 + title.edit_user_profile Kullanıcı profilini düzenle + + templates/pages/menupage.html.twig:13 + caption.redirection_page Yönlendirme sayfası + + templates/media/edit.html.twig:6 + caption.edit_image Resmi Düzenle - - - general.phrase.select_language - Dil seç - - + + templates/users/_form.html.twig:44 + password.suggested %password%]]> + + templates/media/edit.html.twig:70 + field.cropX Kırp X + + templates/media/edit.html.twig:73 + field.cropXPostfix Kırpmanın X eksenindeki konumu, 0-100 aralığında. + + templates/media/edit.html.twig:80 + field.cropYPostfix Kırpmanın Y eksenindeki konumu, 0-100 aralığında. + + templates/media/edit.html.twig:77 + field.cropY Kırp Y + + templates/media/edit.html.twig:84 + field.cropZoom Kırpma yakınlaştırma faktörü + + templates/media/edit.html.twig:87 + field.cropZoomPostfix Kırpma yakınlaştırma seviyesi, 1-10 aralığında. + + templates/content/listing.html.twig:136 + title.contentType İçerik Tipi - - - listing.title_taxonomy - Sınıflandırma - - + + templates/_partials/_content_listing.html.twig:44 + listing_table.no_results Sonuç bulunamadı. Filtreleme kriterlerini genişletin veya biraz daha içerik ekleyin. + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + listing.option_select_sortby Sıralamak için Alan seçin… + + templates/content/edit.html.twig:103 + title.primary_actions Birincil Eylemler + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + title.options Seçenekler + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + action.delete Sil + + templates/users/listing.html.twig:76 + action.enable Etkinleştir + + templates/users/listing.html.twig:71 + action.disable Devre dışı bırak - - - user.enabled_successfully - Kullanıcı başarıyla etkinleştirildi! - - - - - user.disabled_successfully - Kullanıcı başarıyla devre dışı bırakıldı! - - + + templates/users/listing.html.twig:124 + listing.title_session_expires Oturum sona erme + + templates/users/listing.html.twig:125 + listing.title_ip_address IP adresi + + templates/users/listing.html.twig:126 + listing.title_browser Tarayıcı / platform + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + image.button_remove Kaldır + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + image.button_edit_attributes Nitelikleri düzenle - - - image.button_move_up - Yukarı taşı - - - - - image.button_move_down - Aşağı taşı - - + + templates/_partials/fields/imagelist.html.twig:27 + image.add_new_image Yeni resim ekle + + templates/_partials/fields/filelist.html.twig:25 + file.add_new_file Yeni dosya ekle + + templates/_partials/fields/_collection_buttons.html.twig:20 + collection.remove_item Öğeyi kaldır + + templates/_partials/fields/collection.html.twig:6 + collection.add_item '%name%' için yeni bir öğe ekleyin + + templates/_partials/fields/_collection_buttons.html.twig:5 + collection.move_item_up Yukarı taşı + + templates/_partials/fields/_collection_buttons.html.twig:9 + collection.move_item_down Aşağı taşı + + templates/pages/extensions.html.twig:54 + extensions.button_detailed_view Detayları göster + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + extensions.title_configuration Yapılandırma dosyası + + templates/finder/_uploader.html.twig:17 + caption.file_upload.upload_text Dosyaları yüklemek için buraya bırakın + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + pager.next Sonraki + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + pager.previous Önceki + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + image.button_up Yukarı + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + image.button_down Aşağı + + templates/helpers/_field_blocks.twig:28 + general.phrase.download İndir + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + caption.logviewer Günlük Görüntüleyici + + templates/pages/logviewer.html.twig:39 + label.request İstek + + templates/pages/logviewer.html.twig:53 + label.trace İzleme + + templates/pages/logviewer.html.twig:71 + label.context Bağlam + + templates/pages/logviewer.html.twig:19 + label.id ID + + templates/pages/logviewer.html.twig:20 + label.level Seviye + + templates/pages/logviewer.html.twig:23 + label.message Mesaj + + templates/pages/logviewer.html.twig:25 + label.timestamp Zaman damgası + + templates/pages/logviewer.html.twig:86 + label.user Kullanıcı + + templates/users/listing.html.twig:33 + listing.disabled Devre dışı + + templates/_partials/fields/slug.html.twig:17 + slug.button_unlocked Kilitli değil + + public/theme/skeleton/listing.twig:42 + general.phrase.no-content-found İçerik bulunamadı - + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + - general.phrase.empty-database - Veritabanı boş görünüyor. Bolt yönetim panelinden içerik yazın, veya fikstürler (örnek içerik) eklemek için komut çalıştırın. + general.phrase.none + Yok + + templates/content/view_locales.html.twig:103 + view_locales.badge_empty Boş + + templates/content/listing.html.twig:45 + action.update_all Hepsine uygula + + templates/pages/about.html.twig:21 + about.system_info Sistem Bilgisi - - - user.not_valid_display_name - Geçersiz görüntüleme adı - - + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + action.confirm_delete Bu içeriği silmek istediğinizden emin misiniz? + + src/Form/LoginType.php:38 + placeholder.username_or_email kullanıcı adınız veya e-postanız + + src/Form/LoginType.php:52 + placeholder.password parolanız + + src/Menu/BackendMenuBuilder.php:336 + caption.other_content Diğer İçerik + + templates/finder/editfile.html.twig:39 + editfile.target_not_writable Hedef dosya yazılabilir olmadığı için kaydetme devre dışı bırakıldı. + + templates/_partials/fields/_label.html.twig:6 + label.translatable Bu alan çevrilebilir + + templates/pages/logviewer.html.twig:92 + label.content İçerik + + src/Controller/Backend/FileEditController.php:148 + file.delete_success Dosya başarıyla silindi! + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + file.delete_confirm Bu dosyayı silmek istediğinizden emin misiniz? + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + listing.title_filterby Ara / Filtrele + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + content.status_changed_successfully Durum başarıyla değiştirildi + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + content.deleted_successfully İçerik başarıyla silindi + + templates/content/_buttons.html.twig:46 + label.current_status Şu anki durum + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.published Yayınlandı + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.draft Taslak + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.timed Zamanlı + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.held Tut + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + collection.confirm_delete Bu koleksiyon öğesini silmek istediğinizden emin misiniz? + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + upload.allow_file_types Yüklemeye izin verilen dosya türleri - + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + + upload.max_size Maksimum yükleme boyutu + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + listing.placeholder_search Anahtar kelime ara… + + templates/pages/dashboard.html.twig:12 + title.filtered_by '%filter%' göre filtrelendi.]]> + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + action.view_site İnternet sayfasını görüntüle + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + action.new Yeni + + templates/pages/extension_details.html.twig:39 + extensions.no_dependencies Bilinen bağımlılık yok + + templates/pages/extension_details.html.twig:36 + extensions.title_dependencies Bağımlılıklar + + templates/_partials/fields/collection.html.twig:7 + collection.expand_all Hepsini genişlet + + templates/_partials/fields/collection.html.twig:8 + collection.collapse_all Hepsini daralt + + templates/content/edit.html.twig:45 + content.edit_missing_definition Bu İçerikTipinin tanımı eksik! Bu kaydı düzenlemek beklendiği gibi çalışmayacaktır. Lütfen %contenttype% içerdiğinden emin olmak için contenttypes.yaml dosyanızı kontrol edin. + + templates/_partials/fields/collection.html.twig:10 + collection.select Seç … + + + src/Form/LoginType.php:34 + + + form.empty_username_email + Lütfen kullanıcı adınızı veya e-postanızı girin + + + + + src/Form/LoginType.php:46 + + + form.empty_password + Lütfen parolanızı girin + + + + + src/Form/ResetPasswordRequestFormType.php:28 + + + form.empty_email + Lütfen e-postanızı girin + + + + templates/content/listing.html.twig:112 + listing.title_filterby_field Alana göre filtrele + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + + + image.button_from_url + URL'den + + + + + templates/finder/_files_actions.html.twig:29 + + + files_cards.copy_to_clipboard + Dosya bağlantısını kopyala + + + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + + + warning + Uyarı + + + + + src/Controller/Backend/FilemanagerController.php:150 + + + filemanager.create_folder_already_exists + Klasör zaten mevcut + + + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + + + filemanager.create_folder_error + Klasör oluşturulamadı + + + + + src/Controller/Backend/FilemanagerController.php:155 + + + filemanager.create_folder_success + Klasör başarıyla oluşturuldu. + + + + + src/Controller/Backend/FilemanagerController.php:115 + + + filemanager.delete_folder_successful + Klasör başarıyla silindi + + + + + templates/finder/_createfolder.html.twig:13 + + + folder.create_new + Yeni klasör + + + + + templates/users/_form.html.twig:172 + + + label.avatar + Avatar + + + + + templates/security/login.html.twig:64 + + + login.forgotpassword + Parolamı Unuttum + + + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + + + reset_password.request_header + Parolayı Sıfırla + + + + + templates/reset_password/request.html.twig:42 + + + reset_password.request_description + E-posta adresinizi girin, size parolanızı sıfırlamanız için bir bağlantı gönderelim. + + + + + templates/reset_password/request.html.twig:44 + + + reset_password.request_send + Gönder + + + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + + + Email + E-posta + + + + + templates/reset_password/request.html.twig:47 + + + reset_password.back-to-login + Girişe Dön + + + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + + + reset_password.reset_header + Parolanızı sıfırlayın + + + + + templates/reset_password/check_email.html.twig:4 + + + reset_password.check_email_sent_header + Parola Sıfırlama E-postası Gönderildi + + + + + templates/reset_password/check_email.html.twig:35 + + + reset_password.check_email_sent_text_1 + Parolanızı sıfırlamak için tıklayabileceğiniz bir bağlantı içeren bir e-posta gönderildi. Bu bağlantının süresi %hours% saat içinde dolacaktır. + + + + + templates/reset_password/check_email.html.twig:36 + + + reset_password.check_email_sent_text_2 + E-posta almadıysanız lütfen spam klasörünüzü kontrol edin veya %tryagain%. + + + + + templates/reset_password/reset.html.twig:37 + + + reset_password.reset_btn + Parolayı Sıfırla + + + + + templates/reset_password/email.html.twig:1 + + + reset_password.email_title + Merhaba! + + + + + templates/reset_password/email.html.twig:3 + + + reset_password.email_description + Parolanızı sıfırlamak için lütfen aşağıdaki bağlantıyı ziyaret edin + + + + + templates/reset_password/email.html.twig:7 + + + reset_password.email_expire + Bu bağlantının süresi %hours% saat içinde dolacaktır. + + + + + templates/reset_password/email.html.twig:9 + + + reset_password.email_thanks + Teşekkürler! + + + + + src/Form/ChangePasswordFormType.php:31 + + + reset_password.enter_pwd + Lütfen bir parola girin + + + + + src/Form/ChangePasswordFormType.php:43 + + + label.repeat_password + Parolayı Tekrarla + + + + + src/Form/ChangePasswordFormType.php:45 + + + reset_password.not_matching_pwds + Parola alanları eşleşmelidir. + + + + + src/Form/ChangePasswordFormType.php:35 + + + reset_password.minimum_length + Parolanız en az %s karakter olmalıdır + + + + + src/Controller/Backend/ResetPasswordController.php:99 + + + reset_password.no_token + URL'de veya oturumda parola sıfırlama belirteci bulunamadı. + + + + + src/Controller/Backend/ResetPasswordController.php:134 + + + reset_password.reset_successful + Parolanız başarıyla sıfırlandı. + + + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + + + reset_password.problem_with_request + Parola sıfırlama isteğiniz işlenirken bir sorun oluştu - %s + + + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + + + label.filtered_by + Şuna göre filtrelendi + + + + + templates/content/_buttons.html.twig:34 + + + action.preview_secure_share + Güvenli önizleme bağlantısını paylaş + + + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + + + action.stop_impersonating + Kimliğe bürünmeyi durdur + + + + + templates/users/listing.html.twig:82 + + + action.impersonate + Kimliğine bürün + + + + + templates/widget/maintenance_mode.twig:25 + + + maintenance.activated_warning + Bakım modu etkinleştirildi + + + + + templates/_partials/fields/embed.html.twig:28 + + + action.refresh + Yenile + + + + + templates/content/listing.html.twig:148 + + + listing_details_box.showing_records + %total% kayıttan %current% tanesi gösteriliyor + + + + + templates/content/listing.html.twig:154 + + + listing_details_box.name + Ad: %name% (tekil: %singularName%) + + + + + templates/content/listing.html.twig:160 + + + listing_details_box.slug + Slug: %slug% (tekil: %singularSlug%) + + + + + templates/content/listing.html.twig:166 + + + listing_details_box.record_template + Kayıt şablonu: %template% + + + + + templates/content/listing.html.twig:172 + + + listing_details_box.listing_template + Liste şablonu: %template% (%listingRecords% kayıt) + + + + + templates/content/listing.html.twig:186 + + + listing_details_box.locales + Yereller: %locales% + + + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + + + action.edit_permissions + İzinleri Düzenle + + + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + + + general.label.search + Arama + + + + + templates/_partials/fields/image.html.twig:25 + + + image.image_preview + Görseli önizle + + + + + templates/_partials/_content_listing.html.twig:15 + + + listing_table.actions.select_all + Tümünü seç + + + + + src/Form/LoginType.php:58 + + + label.remembermeduration + Beni hatırla? (%duration% gün) + + + + + templates/users/listing.html.twig:117 + + + listing.current_sessions_header + Geçerli oturumlar + + + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + + + image.button_upload_options + Yükleme Seçenekleri + + + + + templates/content/_taxonomies.html.twig:27 + + + Order + Sıralama + + + + + src/Form/ResetPasswordRequestFormType.php:32 + + + placeholder.email + e-postanız + + + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + + + modal.title.file_field + Bir dosya seçin + + + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + + + modal.title.image_field + Bir görsel seçin + + + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + URL'den yükle + + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + Yükleniyor... + + + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + + + modal.button_save + Kaydet + + + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + + + modal.button_deny + Kapat + + diff --git a/translations/messages.uk.xlf b/translations/messages.uk.xlf index afc5f4144..21981352e 100644 --- a/translations/messages.uk.xlf +++ b/translations/messages.uk.xlf @@ -1,2443 +1,3438 @@ - - - - - templates/debug/source_code.twig:26 - - - not_available - Недоступно - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - Помилка %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - Виникла невідома помилка (HTTP %status_code%), яка завадила виконати ваш запит. - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - поверніться на головну сторінку.]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - У вас немає доступу до цього ресурсу. - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - Потрібно запитати доступ до цього ресурсу вашого менеджера або системного адміністратора. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - Нам не вдалося знайти запитаної вами сторінки. - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - поверніться на головну сторінку.]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - Произошла внутренняя ошибка сервера. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - поверніться на головну сторінку.]]> - - - - - templates/debug/source_code.twig:17 - - - title.source_code - Сирцевий код, що використовується для показу цієї сторінки - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - Код контролера - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Twig код шаблону - - - - - templates/users/edit.twig:4 - - - title.edit_user - Редагувати користувача - - - - - templates/debug/source_code.twig:7 - - - action.show_code - Відобразити код - - - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 - - - action.save - Зберегти зміни - - - - - action.do_something - Зробіть що-небудь - - - - - templates/users/change_password.twig:26 - - - action.edit_user - Редагувати користувача - - - - - action.edit - Редагувати - - - - - templates/security/login.twig:66 - src/Form/UserType.php:31 - - - label.username - Імʼя користувача - - - - - templates/debug/source_code.twig:3 - - - help.show_code - Контролера and шаблону, які використовуються для рендерингу цієї сторінки.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - Після зміни паролю ви будете змушені вийти з програми. - - - - - templates/security/login.twig:4 - - - title.login - Авторизація - - - - - templates/security/login.twig:70 - templates/security/login.twig:75 - - - label.password - Пароль - - - - - templates/security/login.twig:84 - - - action.log_in - Увійти - - - - - templates/content/listing.twig:9 - - - title.contentlisting - Перелік вмісту - - - - - templates/users/edit.twig:24 - - - action.change_password - Замініть пароль - - - - - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 - - - field.id - ID - - - - - templates/editcontent/edit.twig:76 - - - field.status - Статус - - - - - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 - - - field.createdAt - Створено - - - - - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 - - - field.modifiedAt - Змінено - - - - - templates/editcontent/edit.twig:102 - - - field.publishedAt - Опубліковано - - - - - templates/editcontent/edit.twig:110 - - - field.depublishedAt - Знято з публікації - - - - - templates/editcontent/media_edit.twig:47 - - - field.title - Заголовок - - - - - templates/editcontent/media_edit.twig:53 - - - field.description - Опис - - - - - templates/editcontent/media_edit.twig:59 - - - field.copyright - Авторські права - - - - - templates/editcontent/media_edit.twig:66 - - - field.originalFilename - Початкове ім'я файлу - - - - - templates/editcontent/media_edit.twig:105 - - - field.width - ширина - - - - - templates/editcontent/media_edit.twig:112 - - - field.height - висота - - - - - templates/editcontent/media_edit.twig:119 - - - field.filesize - Filesize - - - - - templates/security/login.twig:61 - - - label.username_or_email - Імʼя користувача або email - - - - - templates/security/login.twig:80 - - - label.rememberme - Запамʼятати? - - - - - templates/pages/about.twig:25 - - - about.visit_bolt - Перейти на Boltcms.io - - - - - templates/pages/about.twig:28 - - - about.bolt_documentation - Документація з Bolt - - - - - templates/pages/about.twig:31 - - - about.bolt_on_github - Bolt на Github - - - - - templates/pages/about.twig:35 - - - about.used_libraries - Бібліотеки / компоненти, що використовуються - - - - - templates/pages/about.twig:37 - - - about.list_of_used_libraries - Нижче наведені сторонні бібліотеки, які використовує Bolt. - - - - - src/Form/UserType.php:35 - new - - - label.fullname - Повне імʼя - - - - - src/Form/UserType.php:38 - new - - - label.email - Адреса електронної пошти - - - - - src/Controller/Backend/UserController.php:33 - new - - - user.updated_successfully - Оновлення успішне - - - - - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new - - - content.updated_successfully - Контент успішно оновлено - - - - - src/Controller/Backend/EditMediaController.php:157 - new - - - content.created_successfully - Медіа-елемент успішно створено - - - - - src/Controller/Backend/EditFileController.php:101 - new - - - editfile.could_not_write - Не вдалося записати Медіа-елемент - - - - - label.locale - Локаль - - - - - label.backend_theme - Бекенд-тема - - - - - English (en) - English (en) - - - - - Nederlands (dutch, nl) - Nederlands (dutch, nl) - - - - - Español (Spanish, es) - Español (Spanish, es) - - - - - français (French, fr) - français (French, fr) - - - - - Deutsch (German, de) - Deutsch (German, de) - - - - - Język Polski (Polish, pl) - Język Polski (Polish, pl) - - - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - - - - - Italiano (Italian, it) - Italiano (Italian, it) - - - - - The Default theme - Тема за змовчанням - - - - - The Default Dark theme - Темна тема за змовчанням - - - - - WoordPers: Kinda looks like that other CMS - WoordPers: Kinda looks like that other CMS - - - - - caption.dashboard - Панель Bolt - - - - - caption.translations: messages - caption.translations: messages - - - - - caption.clear_cache - Очистити кеш - - - - - caption.check_database - Перевірити базу даних - - - - - caption.routing set up - caption.routing set up - - - - - caption.menu_setup - Налаштування меню - - - - - caption.taxonomies - Категоризація - - - - - caption.contenttypes - Типи контенту - - - - - caption.main_configuration - Основна конфігурація - - - - - caption.users_permissions - Користувачі та права - - - - - caption.configuration - Конфігурація - - - - - caption.settings - Налаштування - - - - - caption.content - Контент - - - - - caption.file_management - Файли - - - - - caption.extensions - Розширення - - - - - caption.view_edit_templates - Шаблони - - - - - caption.uploaded_files - Завантажені файли - - - - - caption.routing_setup - Конфігурація маршрутизації - - - - - caption.translations - Переклади / Ярлики - - - - - caption.about_bolt - Про Bolt - - - - - caption.bolt_payoff - - - - - - caption.edit - Редагувати - - - - - caption.file_uploader - Завантажувач файлів - - - - - caption.meta_information - Мета інформація - - - - - date - Дата - - - - - size - Розмір - - - - - thumbnail - Ескіз - - - - - filename - Імʼя файлу - - - - - actions - Дії - - - - - directoryname - Імʼя каталогу - - - - - action.go - Старт - - - - - form.quick_select_file - Вибір файлу для редагування… - - - - - label.quick_select - Вибір - - - - - caption.path - Шлях - - - - - caption.filename - Імʼя файлу - - - - - action.visit_site - Завітайте на сайт - - - - - action.create_new - Створити - - - - - general.greeting - Привіт, %name%! - - - - - action.logout - Вийти - - - - - action.edit_profile - Профіль - - - - - action.close_alert - закрити - - - - - caption.api - API - - - - - caption.all_configuration_files - Файли конфігурацій - - - - - caption.maintenance - Обслуговування - - - - - caption.fixtures_dummy_content - Фікстури (Контент для прикладу) - - - - - caption.edit_file - Редагувати файл - - - - - caption.installation_checks - Перевірки встановлення - - - - - form.select_language - Виберіть мову - - - - - field.locale - Локаль - - - - - field.current_locale - Поточна локаль - - - - - field.switch_to_locale - Перемкнути локаль - - - - - field.author - Автор - - - - - general.phrase.edit - Редагування - - - - - Unknown - Невідомо - - - - - general.phrase.written-by-on - Написано %name% , %date%. - - - - - general.phrase.missing-about-page - Сторінка "About" відсутня. - - - - - general.phrase.missing-about-page-block - Блок "About" відсутня. - - - - - contenttypes.generic.recent - Нещодавно використовувані %contenttypes% - - - - - general.phrase.search-ellipsis - - - - - - general.phrase.search - Пошук - - - - - 9fb3e6e - Цей сайт <a href='https://boltcms.io' target='_blank' title='Вишукана, легка та проста CMS'>сделан на Bolt</a>. - - - - - contenttypes.generic.overview - Перелік записів %contenttypes% - - - - - contenttypes.generic.no-recent - Останні записи %contenttype% не виявлено - - - - - Menu - Меню - - - - - Search - Пошук - - - - - general.phrase.permalink - Постійне посилання - - - - - label.displayname - Відображене імʼя - - - - - label.cache_cleared - Кеш успішно очищено! - - - - - caption.kitchensink - The Kitchensink - - - - - parameters: - '%search%': consequatur - - - general.phrase.search-results-for-variable - Результати пошуку за запитом "% search%". - - - - - parameters: - '%search%': ymnrubeyrvwearsytevsf - - - general.phrase.search-results-for - Результати пошуку за запитом "% search%". - - - - - parameters: - '%SEARCHTERM%': ymnrubeyrvwearsytevsf - - - general.phrase.no-search-results-for - За запитом '%search%' нічого не знайдено. - - - - - general.phrase.no-search-term-provided - Введіть пошуковий запит, щоб показати релевантні результати. - - - - - general.phrase.read-more - Подробнее - - - - - general.phrase.built-with-bolt - сделан на Bolt.]]> - - - - - general.latest_bolt_news - Новини Bolt - - - - - action.preview - Перелік - - - - - action.view_saved - Переглянути збережену версію - - - - - label.display_name - Відображене імʼя - - - - - caption.duplicate - Дублікат - - - - - label.current_password - Поточний пароль - - - - - label.new_password - Новий пароль - - - - - label.new_password_confirm - Новий пароль (підтвердження) - - - - - editfile.updated_successfully - Файл оновлено успішно! - - - - - action.add_user - Додати користувача - - - - - success - Успішно! - - - - - user.updated_profile - Профіль користувача оновлено! - - - - - label.roles - Ролі - - - - - user.new_user - Новий користувач - - - - - action.view - Перелік - - - - - caption.folders - Теки - - - - - slug.button_locked - Заблоковано - - - - - slug.button_edit - Редагувати - - - - - slug.generate_from - Створити за основою поля: - - - - - image.button_upload - Завантажити - - - - - image.button_from_library - З бібліотеки - - - - - listing_table.actions.view_on_site - Перегляд на сайті - - - - - listing_table.actions.status_to_publish - Замініть статус на "опублікувати" - - - - - listing_table.actions.status_to_held - Змінити статус на "не активне" - - - - - listing_table.actions.status_to_draft - Змінити статус на "чернетка" - - - - - listing_table.actions.duplicate - Клонувати - - - - - listing_table.actions.delete - Видалити - - - - - listing_table.actions.slug - Сегмент адреси - - - - - listing_table.actions.created_on - Створено - - - - - listing_table.actions.published_on - Опубліковано - - - - - listing_table.actions.last_modified_on - Змінений - - - - - listing_select_box.card_header.selected - Вибрано - - - - - listing_select_box.card_body.records_passed - передані ідентифікатори обраних записів - - - - - listing_select_box.card_body.remark - (це можна використовувати з чимось на кшталт axios для масової зміни / видалення) - - - - - editor_embed.content_url - URL-адреса контенту для вбудовування - - - - - editor_embed.placeholder_content_url - URL-адреса контенту в Facebook, Twitter, Soundcloud, Youtube, Vimeo… - - - - - editor_embed.label_height - Висота - - - - - editor_embed.label_pixel - піксель - - - - - editor_embed.label_matched_embed - Відповідний вбудований елемент - - - - - editor_embed.label_preview - Попередній перегляд - - - - - editor_embed.label_size - Розмір - - - - - image.placeholder_filename - Імʼя файлу (завантажте новий файл або виберіть наявний) - - - - - image.placeholder_alt_text - Атрибут Alt - - - - - image.placeholder_title - Заголовок - - - - - admin_sidebar.toggler - Перемкнути ширину бокової панелі - - - - - admin_sidebar_toggler.toggle - Вкл./Вимк. меню]]> - - - - - editor_date.toggle - Вкл./Вимк. - - - - - file.label_filename - Імʼя файлу - - - - - file.label_title - Заголовок - - - - - file.button_view - Перегляд зображення - - - - - file.button_upload - Загрузіть зображення - - - - - file.remark - image.]]> - - - - - file.label_alt - Alt - - - - - filelist.remark - imagelist.]]> - - - - - geolocation.label_geolocation - Геолокація: - - - - - geolocation.label_address - Пошук адреси - - - - - geolocation.placeholder_address - Вулиця, поштовий індекс, місто або інше… - - - - - geolocation.label_lat - Широта - - - - - geolocation.label_address_matched - Відповідна адреса - - - - - geolocation.label_marker - Розміщення маркеру - - - - - geolocation.label_control - Прив'язати до найбличої адреси - - - - - geolocation.label_long - Довгота - - - - - imagelist.remark - filelist.]]> - - - - - flash_messages.notification - Сповіщення - - - - - buttons.button_toggle - Перемкнути перелік, що розкривається - - - - - localeswitcher.button_info - Див. Інформацію про локалізацію - - - - - listing.title_sortby - Сортувати по - - - - - listing.option_select_item - Вибрати елемент - - - - - listing.title_title - Заголовок - - - - - listing.placeholder_filter - Ключове слово для фільтрації… - - - - - listing.button_filter - Відфільтрувати - - - - - listing.button_clear - Очистити сортування/фільтр - - - - - view_locales.badge_default - За змовчанням - - - - - view_locales.badge_ok - OK - - - - - view_locales.badge_missing - Відсутній - - - - - files_cards.button_toggle - Перемкнути перелік, що розкривається - - - - - files_cards.action_edit_image_info - Редагувати інфо. про зображення - - - - - files_cards.action_edit_file - Змінити файл у редакторі - - - - - files_cards.action_view_original - Перегляд - - - - - files_cards.action_duplicate - Клонувати - - - - - files_cards.action_delete - Видалити - - - - - files_cards.label_filename - Імʼя файлу: - - - - - files_cards.label_title - Заголовок: - - - - - files_cards.label_dimensions - Розміри: - - - - - files_cards.label_filesize - Розмір файла: - - - - - files_cards.label_created_on - Створено: - - - - - files_list.remark - В цій теці немає файлів. Виберіть теку для переходу. - - - - - quickselect.title_select - Вибір файлу: - - - - - finder.button_list - Перелік - - - - - finder.button_cards - Картки - - - - - extensions.title_desc - Опис: - - - - - extensions.title_author - Автор: - - - - - extensions.title_package - Пакет / імʼя класса: - - - - - extensions.title_version - Версія: - - - - - extensions.info_not_installed - Це локальный пакет, не встановлений через Composer - - - - - extensions.title_class - Імʼя класса: - - - - - extensions.button_configuration - Конфігурація - - - - - extensions.button_source - Джерело - - - - - extensions.button_remove - Видалити розширення - - - - - extensions.button_disable - Вимкнути розширення - - - - - login.header_login - Bolt » Вхід - - - - - extensions.message_not_implemented - Ще не реалізовано. - - - - - listing.title_overview - Перелік записів - - - - - files_cards.message_no_files - В цій теці немає файлів. Виберіть теку для переходу з правої сторони. - - - - - listing_filter.button_compact - Згорнуто - - - - - listing_filter.button_expanded - Розгорнуто - - - - - finder.label_view - Перегляд: - - - - - listing_table.actions.button_edit - Редагувати - - - - - controller.user.title - Користувачі і права - - - - - controller.user.subtitle - Для редагування користувачів і їх прав - - - - - controller.database.check_title - Перевірки бази даних - - - - - controller.database.check_subtitle - Щоб перевірити базу даних - - - - - controller.database.update_title - Оновлення бази даних - - - - - controller.database.update_subtitle - Щоб оновити базу даних - - - - - controller.omnisearch.title - Всеспрямований пошук - - - - - controller.omnisearch.subtitle - Шукати, подібно до всіх - - - - - listing.title_display_name - Відображене імʼя - - - - - listing.title_username - Імʼя користувача - - - - - listing.title_email - Ел. адреса - - - - - listing.title_roles - Ролі - - - - - listing.title_last_seen - Вік сесії - - - - - listing.title_last_ip - Останній IP - - - - - listing.title_actions - Дії - - - - - user.not_valid_email - Неправильна адреса електронної пошти - - - - - user.not_valid_password - Неправильний пароль. Пароль повинен містити не менше 6 символів. - - - - - user.unknown_user - Невідомий користувач - - - - - label.predominant_colors__in_image - Переважаючі кольори в зображенні - - - - - general.phrase.overview-for - Огляд для '%slug%' - - - - - general.phrase.related-content - Пов'язаний контент - - - - - action.search - Шукати - - - - - caption.new_contenttype - Створити %contenttype% - - - - - caption.untitled_contenttype - %contenttype% без назви - - - - - title.edit_user_profile - Редагувати профіль користувача - - - - - caption.redirection_page - Сторінка переспрямовування - - - - - caption.edit_image - Редагувати зображення - - - - - general.phrase.select_language - Вибрати мову - - - - - password.suggested - %password%]]> - - - - - field.cropX - Обрізати X - - - - - field.cropXPostfix - Положення кадрування по осі X, діапазон 0-100. - - - - - field.cropYPostfix - Положення кадрування по осі Y, діапазон 0-100. - - - - - field.cropY - Обрізати Y - - - - - field.cropZoom - Коефіцієнт масштабування кадрування - - - - - field.cropZoomPostfix - Масштаб кадрування, діапазон 1-10. - - - - - title.contentType - Тип контенту - - - - - listing.title_taxonomy - Категорії - - - - - listing_table.no_results - Нічого не знайдено. Розширте критерії фільтрації або додайте більше контенту. - - - - - listing.option_select_sortby - Виберіть поле для сортування … - - - - - title.primary_actions - Основні дії - - - - - title.options - Опції - - - - - action.delete - Видалити - - - - - action.enable - Вкл. - - - - - action.disable - Вимк. - - - - - user.enabled_successfully - Користувача успішно увімкнено! - - - - - user.disabled_successfully - Користувача успішно вимкнено! - - - - - listing.title_session_expires - Сесія спливає - - - - - listing.title_ip_address - IP адреса - - - - - listing.title_browser - Браузер / платформа - - - - - image.button_remove - Видалити - - - - - image.button_edit_attributes - Редагувати атрибути - - - - - image.button_move_up - Вгору - - - - - image.button_move_down - Вниз - - - - - image.add_new_image - Додати нове зображення - - - - - file.add_new_file - Додати новий файл - - - - - collection.remove_item - Видалити елемент - - - - - collection.add_item - Додати елемент до '%name%' - - - - - collection.move_item_up - Вгору - - - - - collection.move_item_down - Вниз - - - - - extensions.button_detailed_view - Переглянути деталі - - - - - extensions.title_configuration - Файл конфігурації - - - - - caption.file_upload.upload_text - Перетягніть сюди файли для завантаження - - - - - pager.next - Далі - - - - - pager.previous - Назад - - - - - image.button_up - Вгору - - - - - image.button_down - Вниз - - - - - general.phrase.download - Завантажити - - - - - caption.logviewer - Перегляд логів - - - - - label.request - Запит - - - - - label.trace - Трасування - - - - - label.context - Контекст - - - - - label.id - ID - - - - - label.level - Рівень - - - - - label.message - Повідомлення - - - - - label.timestamp - Timestamp - - - - - label.user - Користувач - - - - - listing.disabled - Відображення вимкнено - - - - - slug.button_unlocked - Розблоковано - - - - - general.phrase.no-content-found - Контент не знайдено - - - - - general.phrase.empty-database - Схоже, що база даних пуста. Внесіть контент в бекенді Bolt, або запустіть команду, щоб додати трохи фікстур (контенту для прикладу). - - - - - view_locales.badge_empty - Пусто - - - - - action.update_all - Застосувати до всіх - - - - - about.system_info - Системна інформація - - - - - user.not_valid_display_name - Недійсне відображене імʼя - - - - - action.confirm_delete - Ви впевнені, що хочете видалити цей контент? - - - - - placeholder.username_or_email - Ваше імʼя користувача або email - - - - - placeholder.password - Ваш пароль - - - - - caption.other_content - Інший контент - - - - - editfile.target_not_writable - Збереження вимкнено, оскільки цільовий файл недоступний для запису. - - - - - label.translatable - Це поле можна перевести - - - - - label.content - Контент - - - - - file.delete_success - Файл успішно видалено! - - - - - file.delete_confirm - Ви впевнені, що хочете видалити цей файл? - - - - - listing.title_filterby - Шукати / фільтрувати по - - - - - content.status_changed_successfully - Статус успішно змінено - - - - - content.deleted_successfully - Контент успішно видалено - - - - - label.current_status - Поточний статус - - - - - status.published - Опубліковано - - - - - status.draft - Чернетка - - - - - status.timed - Відстрочено - - - - - status.held - Не активно - - - - - collection.confirm_delete - Ви дійсно хочете видалити цей елемент колекції? - - - - - upload.allow_file_types - Типи файлів, разрешенные для завантаження - - - - - upload.max_size - Максимальний розмір завантажуваного файлу - - - - - listing.placeholder_search - Ключове слово… - - - - - title.filtered_by - '%filter%'.]]> - - - - - action.view_site - Перейти на сайт - - - - - action.new - Створити - - - - - extensions.no_dependencies - Немає відомих залежностей - - - - - extensions.title_dependencies - Залежності - - - - - collection.expand_all - Розгорнути все - - - - - collection.collapse_all - Згорнути все - - - - - content.edit_missing_definition - Визначення цього Типу контенту відсутнє! Редагування цього запису не працюватиме належним чином. Будь ласка, перевірте свій contenttypes.yaml, щоб впевнитися, що він містить% contenttype%. - - - - - collection.select - Вибрати … - - - - - form.empty_username_email - Будь ласка, введіть ваше імʼя користувача або адресу електронної пошти - - - - - form.empty_password - Будь ласка, введіть ваш пароль - - - - - listing.title_filterby_field - Фільтр за полем - - - - - image.button_from_url - За URL - - - - - files_cards.copy_to_clipboard - Копіювати посилання на файл - - - - - warning - Попередження - - - - - filemanager.create_folder_already_exists - Тека вже існує - - - - - filemanager.create_folder_error - Не вдалося створити теку - - - - - filemanager.create_folder_success - Тека успішно створена. - - - - - filemanager.delete_folder_successful - Тека успішно видалена - - - - - folder.create_new - Нова папка - - - - - title.add_user - Додати користувача - - - - - label.avatar - Аватар - - - + + + + + templates/users/edit.html.twig:6 + + + title.edit_user + Редагувати користувача + + + + + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 + + + action.save + Зберегти зміни + + + + + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 + + + action.do_something + Зробіть що-небудь + + + + + templates/users/listing.html.twig:64 + + + action.edit + Редагувати + + + + + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 + + + label.username + Імʼя користувача + + + + + templates/security/login.html.twig:4 + + + title.login + Авторизація + + + + + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 + + + label.password + Пароль + + + + + templates/security/login.html.twig:60 + + + action.log_in + Увійти + + + + + templates/content/listing.html.twig:58 + + + title.contentlisting + Перелік вмісту + + + + + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 + + + field.id + ID + + + + + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 + + + field.status + Статус + + + + + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 + + + field.createdAt + Створено + + + + + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 + + + field.modifiedAt + Змінено + + + + + templates/content/_fields_aside.html.twig:15 + + + field.publishedAt + Опубліковано + + + + + templates/content/_fields_aside.html.twig:24 + + + field.depublishedAt + Знято з публікації + + + + + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 + + + field.title + Заголовок + + + + + templates/media/edit.html.twig:45 + + + field.description + Опис + + + + + templates/media/edit.html.twig:51 + + + field.copyright + Авторські права + + + + + templates/media/edit.html.twig:58 + + + field.originalFilename + Початкове ім'я файлу + + + + + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 + + + field.width + ширина + + + + + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 + + + field.height + висота + + + + + templates/media/edit.html.twig:142 + + + field.filesize + Розмір файлу + + + + + src/Form/LoginType.php:31 + + + label.username_or_email + Імʼя користувача або email + + + + + src/Form/LoginType.php:58 + + + label.rememberme + Запамʼятати? + + + + + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 + + + about.visit_bolt + Перейти на Boltcms.io + + + + + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 + + + about.bolt_documentation + Документація з Bolt + + + + + templates/pages/about.html.twig:60 + + + about.bolt_on_github + Bolt на Github + + + + + templates/pages/about.html.twig:64 + + + about.used_libraries + Бібліотеки / компоненти, що використовуються + + + + + templates/pages/about.html.twig:66 + + + about.list_of_used_libraries + Нижче наведені сторонні бібліотеки, які використовує Bolt. + + + + + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 + + + label.email + Адреса електронної пошти + + + + + templates/users/_form.html.twig:185 + + + label.about + Про користувача + + + + + src/Controller/Backend/UserEditController.php:129 + + + user.updated_successfully + Оновлення успішне + + + + + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 + + + content.updated_successfully + Контент успішно оновлено + + + + + src/Controller/Backend/MediaEditController.php:88 + + + content.created_successfully + Медіа-елемент успішно створено + + + + + src/Controller/Backend/FileEditController.php:106 + + + editfile.could_not_write + Не вдалося записати Медіа-елемент + + + + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + + + label.locale + Локаль + + + + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + + + The Default theme + Тема за змовчанням + + + + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + + + The Default Dark theme + Темна тема за змовчанням + + + + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + + + WoordPers: Kinda looks like that other CMS + WoordPers: Трохи схоже на ту іншу CMS + + + + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + + + caption.dashboard + Панель Bolt + + + + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + + + caption.clear_cache + Очистити кеш + + + + + src/Menu/BackendMenuBuilder.php:145 + + + caption.menu_setup + Налаштування меню + + + + + src/Menu/BackendMenuBuilder.php:134 + + + caption.taxonomies + Категоризація + + + + + src/Menu/BackendMenuBuilder.php:123 + + + caption.contenttypes + Типи контенту + + + + + src/Menu/BackendMenuBuilder.php:112 + + + caption.main_configuration + Основна конфігурація + + + + + src/Menu/BackendMenuBuilder.php:99 + + + caption.users_permissions + Користувачі та права + + + + + src/Menu/BackendMenuBuilder.php:89 + + + caption.configuration + Конфігурація + + + + + src/Menu/BackendMenuBuilder.php:77 + + + caption.settings + Налаштування + + + + + src/Menu/BackendMenuBuilder.php:61 + + + caption.content + Контент + + + + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + + + caption.file_management + Файли + + + + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + + + caption.extensions + Розширення + + + + + src/Menu/BackendMenuBuilder.php:280 + + + caption.view_edit_templates + Шаблони + + + + + src/Menu/BackendMenuBuilder.php:270 + + + caption.uploaded_files + Завантажені файли + + + + + src/Menu/BackendMenuBuilder.php:157 + + + caption.routing_setup + Конфігурація маршрутизації + + + + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + + + caption.translations + Переклади / Ярлики + + + + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + + + caption.about_bolt + Про Bolt + + + + + templates/pages/about.html.twig:11 + + + caption.bolt_payoff + Вишукана, легка і проста CMS + + + + + templates/content/edit.html.twig:22 + + + caption.edit + Редагувати + + + + + templates/finder/_uploader.html.twig:8 + + + caption.file_uploader + Завантажувач файлів + + + + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + + + caption.meta_information + Мета інформація + + + + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + + + date + Дата + + + + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + + + size + Розмір + + + + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + + + thumbnail + Ескіз + + + + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + + + filename + Імʼя файлу + + + + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + + + actions + Дії + + + + + templates/finder/_folders.html.twig:6 + + + directoryname + Імʼя каталогу + + + + + templates/finder/_quickselect.html.twig:9 + + + form.quick_select_file + Вибір файлу для редагування… + + + + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + + + caption.path + Шлях + + + + + templates/media/edit.html.twig:30 + + + caption.filename + Імʼя файлу + + + + + templates/content/listing.html.twig:63 + + + action.create_new + Створити + + + + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + + + general.greeting + Привіт, %name%! + + + + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + + + action.logout + Вийти + + + + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + + + action.edit_profile + Профіль + + + + + templates/_partials/_flash_messages.html.twig:1 + + + action.close_alert + закрити + + + + + src/Menu/BackendMenuBuilder.php:207 + + + caption.api + API + + + + + src/Menu/BackendMenuBuilder.php:165 + + + caption.all_configuration_files + Файли конфігурацій + + + + + src/Menu/BackendMenuBuilder.php:177 + + + caption.maintenance + Обслуговування + + + + + templates/finder/editfile.html.twig:21 + + + caption.edit_file + Редагувати файл + + + + + templates/content/_localeswitcher.html.twig:7 + + + field.current_locale + Поточна локаль + + + + + templates/content/_localeswitcher.html.twig:14 + + + field.switch_to_locale + Перемкнути локаль + + + + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + + + field.author + Автор + + + + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + + + general.phrase.edit + Редагування + + + + + public/theme/skeleton/partials/_recordfooter.twig:7 + + + Unknown + Невідомо + + + + + public/theme/skeleton/partials/_recordfooter.twig:6 + + + general.phrase.written-by-on + Написано %name% , %date%. + + + + + public/theme/skeleton/partials/_aside.twig:33 + + + general.phrase.missing-about-page + Сторінка "About" відсутня. + + + + + public/theme/skeleton/partials/_aside.twig:35 + + + general.phrase.missing-about-page-block + Блок "About" відсутня. + + + + + public/theme/skeleton/partials/_aside.twig:53 + + + contenttypes.generic.recent + Нещодавно використовувані %contenttypes% + + + + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + + + general.phrase.search-ellipsis + + + + + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + + + general.phrase.search + Пошук + + + + + public/theme/skeleton/partials/_aside.twig:60 + + + contenttypes.generic.overview + Перелік записів %contenttypes% + + + + + public/theme/skeleton/partials/_aside.twig:62 + + + contenttypes.generic.no-recent + Останні записи %contenttype% не виявлено + + + + + public/theme/skeleton/partials/_footer.twig:4 + + + Menu + Меню + + + + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + + + Search + Пошук + + + + + public/theme/skeleton/partials/_recordfooter.twig:14 + + + general.phrase.permalink + Постійне посилання + + + + + src/Controller/Backend/ClearCacheController.php:24 + + + label.cache_cleared + Кеш успішно очищено! + + + + + src/Menu/BackendMenuBuilder.php:238 + + + caption.kitchensink + Демонстраційна сторінка + + + + + public/theme/skeleton/search.twig:11 + + + general.phrase.search-results-for + Результати пошуку за запитом "%search%". + + + + + public/theme/skeleton/search.twig:51 + + + general.phrase.no-search-results-for + За запитом '%search%' нічого не знайдено. + + + + + public/theme/skeleton/search.twig:53 + + + general.phrase.no-search-term-provided + Введіть пошуковий запит, щоб показати релевантні результати. + + + + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + + + general.phrase.read-more + Подробнее + + + + + public/theme/skeleton/partials/_footer.twig:17 + + + general.phrase.built-with-bolt + сделан на Bolt.]]> + + + + + vendor/bolt/newswidget/templates/news.html.twig:3 + + + general.latest_bolt_news + Новини Bolt + + + + + templates/content/_buttons.html.twig:19 + + + action.preview + Перелік + + + + + templates/content/_buttons.html.twig:58 + + + action.view_saved + Переглянути збережену версію + + + + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + + + label.display_name + Відображене імʼя + + + + + templates/content/edit.html.twig:22 + + + caption.duplicate + Дублікат + + + + + src/Form/ChangePasswordFormType.php:40 + + + label.new_password + Новий пароль + + + + + src/Controller/Backend/FileEditController.php:104 + + + editfile.updated_successfully + Файл оновлено успішно! + + + + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + + + action.add_user + Додати користувача + + + + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + + + success + Успішно! + + + + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + + + user.updated_profile + Профіль користувача оновлено! + + + + + templates/users/_form.html.twig:124 + + + label.roles + Ролі + + + + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + + + user.new_user + Новий користувач + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + + + action.view + Перелік + + + + + templates/_partials/fields/slug.html.twig:18 + + + slug.button_locked + Заблоковано + + + + + templates/_partials/fields/slug.html.twig:19 + + + slug.button_edit + Редагувати + + + + + templates/_partials/fields/slug.html.twig:20 + + + slug.generate_from + Створити за основою поля: + + + + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + + + image.button_upload + Завантажити + + + + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + + + image.button_from_library + З бібліотеки + + + + + templates/_partials/_content_listing.html.twig:23 + + + listing_table.actions.view_on_site + Перегляд на сайті + + + + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + + + listing_table.actions.status_to_publish + Замініть статус на "опублікувати" + + + + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + + + listing_table.actions.status_to_held + Змінити статус на "не активне" + + + + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + + + listing_table.actions.status_to_draft + Змінити статус на "чернетка" + + + + + templates/_partials/_content_listing.html.twig:28 + + + listing_table.actions.duplicate + Клонувати + + + + + templates/_partials/_content_listing.html.twig:29 + + + listing_table.actions.delete + Видалити + + + + + templates/_partials/_content_listing.html.twig:30 + + + listing_table.actions.slug + Сегмент адреси + + + + + templates/_partials/_content_listing.html.twig:31 + + + listing_table.actions.created_on + Створено + + + + + templates/_partials/_content_listing.html.twig:32 + + + listing_table.actions.published_on + Опубліковано + + + + + templates/_partials/_content_listing.html.twig:33 + + + listing_table.actions.last_modified_on + Змінений + + + + + templates/content/listing.html.twig:40 + + + listing_select_box.card_header.selected + Вибрано + + + + + templates/_partials/fields/embed.html.twig:20 + + + editor_embed.content_url + URL-адреса контенту для вбудовування + + + + + templates/_partials/fields/embed.html.twig:21 + + + editor_embed.placeholder_content_url + URL-адреса контенту в Facebook, Twitter, Soundcloud, Youtube, Vimeo… + + + + + templates/_partials/fields/embed.html.twig:22 + + + editor_embed.label_height + Висота + + + + + templates/_partials/fields/embed.html.twig:23 + + + editor_embed.label_pixel + піксель + + + + + templates/_partials/fields/embed.html.twig:24 + + + editor_embed.label_matched_embed + Відповідний вбудований елемент + + + + + templates/_partials/fields/embed.html.twig:25 + + + editor_embed.label_preview + Попередній перегляд + + + + + templates/_partials/fields/embed.html.twig:26 + + + editor_embed.label_size + Розмір + + + + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + + + image.placeholder_filename + Імʼя файлу (завантажте новий файл або виберіть наявний) + + + + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + + + image.placeholder_alt_text + Атрибут Alt + + + + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + + + image.placeholder_title + Заголовок + + + + + templates/_base/layout.html.twig:91 + + + admin_sidebar.toggler + Перемкнути ширину бокової панелі + + + + + templates/_base/layout.html.twig:82 + + + admin_sidebar_toggler.toggle + Вкл./Вимк. меню]]> + + + + + templates/_partials/fields/date.html.twig:39 + + + editor_date.toggle + Вкл./Вимк. + + + + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + + + flash_messages.notification + Сповіщення + + + + + templates/content/_localeswitcher.html.twig:19 + + + localeswitcher.button_info + Див. Інформацію про локалізацію + + + + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + + + listing.title_sortby + Сортувати по + + + + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + + + listing.placeholder_filter + Ключове слово для фільтрації… + + + + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + + + listing.button_filter + Відфільтрувати + + + + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + + + listing.button_clear + Очистити сортування/фільтр + + + + + templates/content/view_locales.html.twig:99 + + + view_locales.badge_default + За змовчанням + + + + + templates/content/view_locales.html.twig:105 + + + view_locales.badge_ok + OK + + + + + templates/content/view_locales.html.twig:101 + + + view_locales.badge_missing + Відсутній + + + + + templates/finder/_files_actions.html.twig:10 + + + files_cards.button_toggle + Перемкнути перелік, що розкривається + + + + + templates/finder/_files_actions.html.twig:17 + + + files_cards.action_edit_image_info + Редагувати інфо. про зображення + + + + + templates/finder/_files_actions.html.twig:19 + + + files_cards.action_edit_file + Змінити файл у редакторі + + + + + templates/finder/_files_actions.html.twig:25 + + + files_cards.action_view_original + Перегляд + + + + + templates/finder/_files_actions.html.twig:36 + + + files_cards.action_duplicate + Клонувати + + + + + templates/finder/_files_actions.html.twig:49 + + + files_cards.action_delete + Видалити + + + + + templates/finder/_files_actions.html.twig:56 + + + files_cards.label_filename + Імʼя файлу: + + + + + templates/finder/_files_actions.html.twig:63 + + + files_cards.label_title + Заголовок: + + + + + templates/finder/_files_actions.html.twig:70 + + + files_cards.label_dimensions + Розміри: + + + + + templates/finder/_files_actions.html.twig:76 + + + files_cards.label_filesize + Розмір файла: + + + + + templates/finder/_files_actions.html.twig:81 + + + files_cards.label_created_on + Створено: + + + + + templates/finder/_files_list.html.twig:75 + + + files_list.remark + В цій теці немає файлів. Виберіть теку для переходу. + + + + + templates/finder/_quickselect.html.twig:5 + + + quickselect.title_select + Вибір файлу: + + + + + templates/finder/finder.html.twig:45 + + + finder.button_list + Перелік + + + + + templates/finder/finder.html.twig:49 + + + finder.button_cards + Картки + + + + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + + + extensions.title_desc + Опис: + + + + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + + + extensions.title_author + Автор: + + + + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + + + extensions.title_package + Пакет / імʼя класса: + + + + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + + + extensions.title_version + Версія: + + + + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + + + extensions.info_not_installed + Це локальный пакет, не встановлений через Composer + + + + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + + + extensions.title_class + Імʼя класса: + + + + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + + + extensions.button_configuration + Конфігурація + + + + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + + + extensions.button_source + Джерело + + + + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + + + extensions.button_remove + Видалити розширення + + + + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + + + extensions.button_disable + Вимкнути розширення + + + + + templates/security/login.html.twig:40 + + + login.header_login + Bolt » Вхід + + + + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + + + extensions.message_not_implemented + Ще не реалізовано. + + + + + templates/content/listing.html.twig:6 + + + listing.title_overview + Перелік записів + + + + + templates/finder/_files_cards.html.twig:48 + + + files_cards.message_no_files + В цій теці немає файлів. Виберіть теку для переходу з правої сторони. + + + + + templates/_partials/_content_listing.html.twig:13 + + + listing_filter.button_compact + Згорнуто + + + + + templates/_partials/_content_listing.html.twig:14 + + + listing_filter.button_expanded + Розгорнуто + + + + + templates/finder/finder.html.twig:41 + + + finder.label_view + Перегляд: + + + + + templates/_partials/_content_listing.html.twig:34 + + + listing_table.actions.button_edit + Редагувати + + + + + src/Controller/Backend/UserController.php:50 + + + controller.user.title + Користувачі і права + + + + + src/Controller/Backend/UserController.php:51 + + + controller.user.subtitle + Для редагування користувачів і їх прав + + + + + templates/users/listing.html.twig:20 + + + listing.title_display_name + Відображене імʼя + + + + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + + + listing.title_username + Імʼя користувача + + + + + templates/users/listing.html.twig:20 + + + listing.title_email + Ел. адреса + + + + + templates/users/listing.html.twig:21 + + + listing.title_roles + Ролі + + + + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + + + listing.title_last_seen + Вік сесії + + + + + templates/users/listing.html.twig:23 + + + listing.title_last_ip + Останній IP + + + + + templates/users/listing.html.twig:24 + + + listing.title_actions + Дії + + + + + templates/users/profile.html.twig:11 + + + user.unknown_user + Невідомий користувач + + + + + templates/media/edit.html.twig:114 + + + label.predominant_colors__in_image + Переважаючі кольори в зображенні + + + + + public/theme/skeleton/listing.twig:14 + + + general.phrase.overview-for + Огляд для '%slug%' + + + + + public/theme/skeleton/partials/_recordfooter.twig:40 + + + general.phrase.related-content + Пов'язаний контент + + + + + public/theme/skeleton/partials/_footer.twig:13 + + + action.search + Шукати + + + + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + + + caption.new_contenttype + Створити %contenttype% + + + + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + + + caption.untitled_contenttype + %contenttype% без назви + + + + + templates/users/profile.html.twig:6 + + + title.edit_user_profile + Редагувати профіль користувача + + + + + templates/pages/menupage.html.twig:13 + + + caption.redirection_page + Сторінка переспрямовування + + + + + templates/media/edit.html.twig:6 + + + caption.edit_image + Редагувати зображення + + + + + templates/users/_form.html.twig:44 + + + password.suggested + %password%]]> + + + + + templates/media/edit.html.twig:70 + + + field.cropX + Обрізати X + + + + + templates/media/edit.html.twig:73 + + + field.cropXPostfix + Положення кадрування по осі X, діапазон 0-100. + + + + + templates/media/edit.html.twig:80 + + + field.cropYPostfix + Положення кадрування по осі Y, діапазон 0-100. + + + + + templates/media/edit.html.twig:77 + + + field.cropY + Обрізати Y + + + + + templates/media/edit.html.twig:84 + + + field.cropZoom + Коефіцієнт масштабування кадрування + + + + + templates/media/edit.html.twig:87 + + + field.cropZoomPostfix + Масштаб кадрування, діапазон 1-10. + + + + + templates/content/listing.html.twig:136 + + + title.contentType + Тип контенту + + + + + templates/_partials/_content_listing.html.twig:44 + + + listing_table.no_results + Нічого не знайдено. Розширте критерії фільтрації або додайте більше контенту. + + + + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + + + listing.option_select_sortby + Виберіть поле для сортування … + + + + + templates/content/edit.html.twig:103 + + + title.primary_actions + Основні дії + + + + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + + + title.options + Опції + + + + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + + + action.delete + Видалити + + + + + templates/users/listing.html.twig:76 + + + action.enable + Вкл. + + + + + templates/users/listing.html.twig:71 + + + action.disable + Вимк. + + + + + templates/users/listing.html.twig:124 + + + listing.title_session_expires + Сесія спливає + + + + + templates/users/listing.html.twig:125 + + + listing.title_ip_address + IP адреса + + + + + templates/users/listing.html.twig:126 + + + listing.title_browser + Браузер / платформа + + + + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + + + image.button_remove + Видалити + + + + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + + + image.button_edit_attributes + Редагувати атрибути + + + + + templates/_partials/fields/imagelist.html.twig:27 + + + image.add_new_image + Додати нове зображення + + + + + templates/_partials/fields/filelist.html.twig:25 + + + file.add_new_file + Додати новий файл + + + + + templates/_partials/fields/_collection_buttons.html.twig:20 + + + collection.remove_item + Видалити елемент + + + + + templates/_partials/fields/collection.html.twig:6 + + + collection.add_item + Додати елемент до '%name%' + + + + + templates/_partials/fields/_collection_buttons.html.twig:5 + + + collection.move_item_up + Вгору + + + + + templates/_partials/fields/_collection_buttons.html.twig:9 + + + collection.move_item_down + Вниз + + + + + templates/pages/extensions.html.twig:54 + + + extensions.button_detailed_view + Переглянути деталі + + + + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + + + extensions.title_configuration + Файл конфігурації + + + + + templates/finder/_uploader.html.twig:17 + + + caption.file_upload.upload_text + Перетягніть сюди файли для завантаження + + + + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + + + pager.next + Далі + + + + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + + + pager.previous + Назад + + + + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + + + image.button_up + Вгору + + + + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + + + image.button_down + Вниз + + + + + templates/helpers/_field_blocks.twig:28 + + + general.phrase.download + Завантажити + + + + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + + + caption.logviewer + Перегляд логів + + + + + templates/pages/logviewer.html.twig:39 + + + label.request + Запит + + + + + templates/pages/logviewer.html.twig:53 + + + label.trace + Трасування + + + + + templates/pages/logviewer.html.twig:71 + + + label.context + Контекст + + + + + templates/pages/logviewer.html.twig:19 + + + label.id + ID + + + + + templates/pages/logviewer.html.twig:20 + + + label.level + Рівень + + + + + templates/pages/logviewer.html.twig:23 + + + label.message + Повідомлення + + + + + templates/pages/logviewer.html.twig:25 + + + label.timestamp + Мітка часу + + + + + templates/pages/logviewer.html.twig:86 + + + label.user + Користувач + + + + + templates/users/listing.html.twig:33 + + + listing.disabled + Відображення вимкнено + + + + + templates/_partials/fields/slug.html.twig:17 + + + slug.button_unlocked + Розблоковано + + + + + public/theme/skeleton/listing.twig:42 + + + general.phrase.no-content-found + Контент не знайдено + + + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + + + general.phrase.none + Немає + + + + + templates/content/view_locales.html.twig:103 + + + view_locales.badge_empty + Пусто + + + + + templates/content/listing.html.twig:45 + + + action.update_all + Застосувати до всіх + + + + + templates/pages/about.html.twig:21 + + + about.system_info + Системна інформація + + + + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + + + action.confirm_delete + Ви впевнені, що хочете видалити цей контент? + + + + + src/Form/LoginType.php:38 + + + placeholder.username_or_email + Ваше імʼя користувача або email + + + + + src/Form/LoginType.php:52 + + + placeholder.password + Ваш пароль + + + + + src/Menu/BackendMenuBuilder.php:336 + + + caption.other_content + Інший контент + + + + + templates/finder/editfile.html.twig:39 + + + editfile.target_not_writable + Збереження вимкнено, оскільки цільовий файл недоступний для запису. + + + + + templates/_partials/fields/_label.html.twig:6 + + + label.translatable + Це поле можна перевести + + + + + templates/pages/logviewer.html.twig:92 + + + label.content + Контент + + + + + src/Controller/Backend/FileEditController.php:148 + + + file.delete_success + Файл успішно видалено! + + + + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + + + file.delete_confirm + Ви впевнені, що хочете видалити цей файл? + + + + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + + + listing.title_filterby + Шукати / фільтрувати по + + + + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + + + content.status_changed_successfully + Статус успішно змінено + + + + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + + + content.deleted_successfully + Контент успішно видалено + + + + + templates/content/_buttons.html.twig:46 + + + label.current_status + Поточний статус + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.published + Опубліковано + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.draft + Чернетка + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.timed + Відстрочено + + + + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + + + status.held + Не активно + + + + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + + + collection.confirm_delete + Ви дійсно хочете видалити цей елемент колекції? + + + + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + + + upload.allow_file_types + Типи файлів, разрешенные для завантаження + + + + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + + + upload.max_size + Максимальний розмір завантажуваного файлу + + + + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + + + listing.placeholder_search + Ключове слово… + + + + + templates/pages/dashboard.html.twig:12 + + + title.filtered_by + '%filter%'.]]> + + + + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + + + action.view_site + Перейти на сайт + + + + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + + + action.new + Створити + + + + + templates/pages/extension_details.html.twig:39 + + + extensions.no_dependencies + Немає відомих залежностей + + + + + templates/pages/extension_details.html.twig:36 + + + extensions.title_dependencies + Залежності + + + + + templates/_partials/fields/collection.html.twig:7 + + + collection.expand_all + Розгорнути все + + + + + templates/_partials/fields/collection.html.twig:8 + + + collection.collapse_all + Згорнути все + + + + + templates/content/edit.html.twig:45 + + + content.edit_missing_definition + Визначення цього Типу контенту відсутнє! Редагування цього запису не працюватиме належним чином. Будь ласка, перевірте свій contenttypes.yaml, щоб впевнитися, що він містить %contenttype%. + + + + + templates/_partials/fields/collection.html.twig:10 + + + collection.select + Вибрати … + + + + + src/Form/LoginType.php:34 + + + form.empty_username_email + Будь ласка, введіть ваше імʼя користувача або адресу електронної пошти + + + + + src/Form/LoginType.php:46 + + + form.empty_password + Будь ласка, введіть ваш пароль + + + + + src/Form/ResetPasswordRequestFormType.php:28 + + + form.empty_email + Будь ласка, введіть свою електронну пошту + + + + + templates/content/listing.html.twig:112 + + + listing.title_filterby_field + Фільтр за полем + + + + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + + + image.button_from_url + За URL + + + + + templates/finder/_files_actions.html.twig:29 + + + files_cards.copy_to_clipboard + Копіювати посилання на файл + + + + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + + + warning + Попередження + + + + + src/Controller/Backend/FilemanagerController.php:150 + + + filemanager.create_folder_already_exists + Тека вже існує + + + + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + + + filemanager.create_folder_error + Не вдалося створити теку + + + + + src/Controller/Backend/FilemanagerController.php:155 + + + filemanager.create_folder_success + Тека успішно створена. + + + + + src/Controller/Backend/FilemanagerController.php:115 + + + filemanager.delete_folder_successful + Тека успішно видалена + + + + + templates/finder/_createfolder.html.twig:13 + + + folder.create_new + Нова папка + + + + + templates/users/_form.html.twig:172 + + + label.avatar + Аватар + + + + + templates/security/login.html.twig:64 + + + login.forgotpassword + Забули пароль + + + + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + + + reset_password.request_header + Скинути пароль + + + + + templates/reset_password/request.html.twig:42 + + + reset_password.request_description + Введіть свою електронну адресу, і ми надішлемо вам посилання для скидання пароля. + + + + + templates/reset_password/request.html.twig:44 + + + reset_password.request_send + Надіслати + + + + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + + + Email + Ел. пошта + + + + + templates/reset_password/request.html.twig:47 + + + reset_password.back-to-login + Назад до входу + + + + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + + + reset_password.reset_header + Скидання пароля + + + + + templates/reset_password/check_email.html.twig:4 + + + reset_password.check_email_sent_header + Лист для скидання пароля надіслано + + + + + templates/reset_password/check_email.html.twig:35 + + + reset_password.check_email_sent_text_1 + Ми надіслали лист із посиланням, за яким ви можете скинути свій пароль. Термін дії цього посилання спливає через %hours% год. + + + + + templates/reset_password/check_email.html.twig:36 + + + reset_password.check_email_sent_text_2 + Якщо ви не отримали листа, перевірте теку зі спамом або %tryagain%. + + + + + templates/reset_password/reset.html.twig:37 + + + reset_password.reset_btn + Скинути пароль + + + + + templates/reset_password/email.html.twig:1 + + + reset_password.email_title + Вітаємо! + + + + + templates/reset_password/email.html.twig:3 + + + reset_password.email_description + Щоб скинути пароль, перейдіть за наступним посиланням + + + + + templates/reset_password/email.html.twig:7 + + + reset_password.email_expire + Термін дії цього посилання спливає через %hours% год. + + + + + templates/reset_password/email.html.twig:9 + + + reset_password.email_thanks + Дякуємо! + + + + + src/Form/ChangePasswordFormType.php:31 + + + reset_password.enter_pwd + Будь ласка, введіть пароль + + + + + src/Form/ChangePasswordFormType.php:43 + + + label.repeat_password + Повторіть пароль + + + + + src/Form/ChangePasswordFormType.php:45 + + + reset_password.not_matching_pwds + Паролі мають збігатися. + + + + + src/Form/ChangePasswordFormType.php:35 + + + reset_password.minimum_length + Ваш пароль має містити щонайменше %s символів + + + + + src/Controller/Backend/ResetPasswordController.php:99 + + + reset_password.no_token + У URL-адресі або в сесії не знайдено токен для скидання пароля. + + + + + src/Controller/Backend/ResetPasswordController.php:134 + + + reset_password.reset_successful + Ваш пароль успішно скинуто. + + + + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + + + reset_password.problem_with_request + Під час обробки вашого запиту на скидання пароля сталася помилка - %s + + + + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + + + label.filtered_by + Відфільтровано за + + + + + templates/content/_buttons.html.twig:34 + + + action.preview_secure_share + Поділитися захищеним посиланням на попередній перегляд + + + + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + + + action.stop_impersonating + Припинити видавати себе за іншого + + + + + templates/users/listing.html.twig:82 + + + action.impersonate + Видавати себе за іншого + + + + + templates/widget/maintenance_mode.twig:25 + + + maintenance.activated_warning + Режим технічного обслуговування активовано + + + + + templates/_partials/fields/embed.html.twig:28 + + + action.refresh + Оновити + + + + + templates/content/listing.html.twig:148 + + + listing_details_box.showing_records + Показано записів %current% з %total% + + + + + templates/content/listing.html.twig:154 + + + listing_details_box.name + Назва: %name% (однина: %singularName%) + + + + + templates/content/listing.html.twig:160 + + + listing_details_box.slug + Slug: %slug% (однина: %singularSlug%) + + + + + templates/content/listing.html.twig:166 + + + listing_details_box.record_template + Шаблон запису: %template% + + + + + templates/content/listing.html.twig:172 + + + listing_details_box.listing_template + Шаблон списку: %template% (%listingRecords% записів) + + + + + templates/content/listing.html.twig:186 + + + listing_details_box.locales + Локалі: %locales% + + + + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + + + action.edit_permissions + Редагувати дозволи + + + + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + + + general.label.search + Пошук + + + + + templates/_partials/fields/image.html.twig:25 + + + image.image_preview + Попередній перегляд зображення + + + + + templates/_partials/_content_listing.html.twig:15 + + + listing_table.actions.select_all + Вибрати все + + + + + src/Form/LoginType.php:58 + + + label.remembermeduration + Запам'ятати мене? (%duration% днів) + + + + + templates/users/listing.html.twig:117 + + + listing.current_sessions_header + Поточні сесії + + + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + + + image.button_upload_options + Параметри завантаження + + + + + templates/content/_taxonomies.html.twig:27 + + + Order + Порядок + + + + + src/Form/ResetPasswordRequestFormType.php:32 + + + placeholder.email + ваша електронна пошта + + + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + + + modal.title.file_field + Виберіть файл + + + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + + + modal.title.image_field + Виберіть зображення + + + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + Завантажити з URL + + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + Завантаження... + + + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + + + modal.button_save + Зберегти + + + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + + + modal.button_deny + Закрити + + + diff --git a/translations/messages.zh_CN.xlf b/translations/messages.zh_CN.xlf index c8d666e0c..290e896b9 100644 --- a/translations/messages.zh_CN.xlf +++ b/translations/messages.zh_CN.xlf @@ -1,149 +1,27 @@ - - - templates/debug/source_code.twig:26 - - - not_available - 无法使用 - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:15 - templates/bundles/TwigBundle/Exception/error404.html.twig:15 - templates/bundles/TwigBundle/Exception/error500.html.twig:15 - templates/bundles/TwigBundle/Exception/error403.html.twig:15 - - - http_error.name - 错误 %status_code% - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:18 - - - http_error.description - 未知错误 (HTTP %status_code%) 无法完成请求。 - - - - - templates/bundles/TwigBundle/Exception/error.html.twig:21 - - - http_error.suggestion - 返回主页。]]> - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:18 - - - http_error_403.description - 您无权访问此资源。 - - - - - templates/bundles/TwigBundle/Exception/error403.html.twig:21 - - - http_error_403.suggestion - 请您的系统管理员授予您对该资源的访问权。 - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:18 - - - http_error_404.description - 找不到页面。 - - - - - templates/bundles/TwigBundle/Exception/error404.html.twig:21 - - - http_error_404.suggestion - 返回主页。]]> - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:18 - - - http_error_500.description - 服务器错误. - - - - - templates/bundles/TwigBundle/Exception/error500.html.twig:21 - - - http_error_500.suggestion - 返回主页。]]> - - - - - templates/debug/source_code.twig:17 - - - title.source_code - 用于渲染此页面的源代码 - - - - - templates/debug/source_code.twig:22 - templates/debug/source_code.twig:25 - - - title.controller_code - 控制器代码 - - - - - templates/debug/source_code.twig:29 - - - title.twig_template_code - Twig 模板 - - - templates/users/edit.twig:4 + templates/users/edit.html.twig:6 title.edit_user 编辑用户 - - - templates/debug/source_code.twig:7 - - - action.show_code - 显示代码 - - - templates/users/change_password.twig:18 - templates/users/edit.twig:15 + templates/content/_buttons.html.twig:12 + templates/content/edit.html.twig:64 + templates/finder/editfile.html.twig:38 + templates/media/edit.html.twig:95 + templates/media/edit.html.twig:111 + templates/users/_form.html.twig:211 + templates/users/add.html.twig:27 + templates/users/edit.html.twig:27 + templates/users/profile.html.twig:94 + templates/users/profile.html.twig:106 action.save @@ -151,21 +29,35 @@ - - action.do_something - Do Something - - - - templates/users/change_password.twig:26 + templates/pages/kitchensink.html.twig:67 + templates/pages/kitchensink.html.twig:68 + templates/pages/kitchensink.html.twig:69 + templates/pages/kitchensink.html.twig:73 + templates/pages/kitchensink.html.twig:74 + templates/pages/kitchensink.html.twig:75 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:83 + templates/pages/kitchensink.html.twig:84 + templates/pages/kitchensink.html.twig:88 + templates/pages/kitchensink.html.twig:89 + templates/pages/kitchensink.html.twig:90 + templates/pages/kitchensink.html.twig:91 + templates/pages/kitchensink.html.twig:97 + templates/pages/kitchensink.html.twig:98 + templates/pages/kitchensink.html.twig:102 + templates/pages/kitchensink.html.twig:103 - action.edit_user - 编辑用户 + action.do_something + 做点什么 + + templates/users/listing.html.twig:64 + action.edit 编辑 @@ -173,35 +65,17 @@ - templates/security/login.twig:66 - src/Form/UserType.php:31 + templates/users/_form.html.twig:10 + templates/users/profile.html.twig:24 label.username 用户名 - - - templates/debug/source_code.twig:3 - - - help.show_code - 控制器 和 模板 的源代码.]]> - - - - - templates/users/change_password.twig:12 - - - info.change_password - 更改密码后,您将退出应用程序。 - - - templates/security/login.twig:4 + templates/security/login.html.twig:4 title.login @@ -210,8 +84,9 @@ - templates/security/login.twig:70 - templates/security/login.twig:75 + src/Form/LoginType.php:43 + templates/users/_form.html.twig:51 + templates/users/profile.html.twig:42 label.password @@ -220,7 +95,7 @@ - templates/security/login.twig:84 + templates/security/login.html.twig:60 action.log_in @@ -229,26 +104,17 @@ - templates/content/listing.twig:9 + templates/content/listing.html.twig:58 title.contentlisting 内容列表 - - - templates/users/edit.twig:24 - - - action.change_password - 更改密码 - - - templates/editcontent/edit.twig:118 - templates/editcontent/media_edit.twig:98 + templates/content/_fields_aside_summary.html.twig:26 + templates/media/edit.html.twig:121 field.id @@ -257,7 +123,8 @@ - templates/editcontent/edit.twig:76 + templates/content/_fields_aside.html.twig:5 + templates/users/_form.html.twig:153 field.status @@ -266,8 +133,8 @@ - templates/editcontent/edit.twig:86 - templates/editcontent/media_edit.twig:128 + templates/content/_fields_aside_summary.html.twig:6 + templates/media/edit.html.twig:151 field.createdAt @@ -276,8 +143,10 @@ - templates/editcontent/edit.twig:94 - templates/editcontent/media_edit.twig:135 + src/Controller/Backend/ContentEditController.php:189 + templates/content/_buttons.html.twig:50 + templates/content/_fields_aside_summary.html.twig:16 + templates/media/edit.html.twig:159 field.modifiedAt @@ -286,7 +155,7 @@ - templates/editcontent/edit.twig:102 + templates/content/_fields_aside.html.twig:15 field.publishedAt @@ -295,7 +164,7 @@ - templates/editcontent/edit.twig:110 + templates/content/_fields_aside.html.twig:24 field.depublishedAt @@ -304,7 +173,8 @@ - templates/editcontent/media_edit.twig:47 + templates/_partials/fields/embed.html.twig:31 + templates/media/edit.html.twig:39 field.title @@ -313,7 +183,7 @@ - templates/editcontent/media_edit.twig:53 + templates/media/edit.html.twig:45 field.description @@ -322,7 +192,7 @@ - templates/editcontent/media_edit.twig:59 + templates/media/edit.html.twig:51 field.copyright @@ -331,7 +201,7 @@ - templates/editcontent/media_edit.twig:66 + templates/media/edit.html.twig:58 field.originalFilename @@ -340,7 +210,8 @@ - templates/editcontent/media_edit.twig:105 + templates/_partials/fields/embed.html.twig:29 + templates/media/edit.html.twig:128 field.width @@ -349,7 +220,8 @@ - templates/editcontent/media_edit.twig:112 + templates/_partials/fields/embed.html.twig:30 + templates/media/edit.html.twig:135 field.height @@ -358,7 +230,7 @@ - templates/editcontent/media_edit.twig:119 + templates/media/edit.html.twig:142 field.filesize @@ -367,7 +239,7 @@ - templates/security/login.twig:61 + src/Form/LoginType.php:31 label.username_or_email @@ -376,7 +248,7 @@ - templates/security/login.twig:80 + src/Form/LoginType.php:58 label.rememberme @@ -385,7 +257,9 @@ - templates/pages/about.twig:25 + assets/js/app/toolbar/Components/Toolbar.vue:76 + templates/_base/layout.html.twig:43 + templates/pages/about.html.twig:54 about.visit_bolt @@ -394,7 +268,9 @@ - templates/pages/about.twig:28 + assets/js/app/toolbar/Components/Toolbar.vue:82 + templates/_base/layout.html.twig:37 + templates/pages/about.html.twig:57 about.bolt_documentation @@ -403,16 +279,16 @@ - templates/pages/about.twig:31 + templates/pages/about.html.twig:60 about.bolt_on_github - Bolt on Github + GitHub 上的 Bolt - templates/pages/about.twig:35 + templates/pages/about.html.twig:64 about.used_libraries @@ -421,37 +297,36 @@ - templates/pages/about.twig:37 + templates/pages/about.html.twig:66 about.list_of_used_libraries 以下是Bolt使用的第三方库。 - + - src/Form/UserType.php:35 - new + src/Form/ResetPasswordRequestFormType.php:25 + templates/users/_form.html.twig:68 + templates/users/profile.html.twig:51 - label.fullname - 全名 + label.email + Email地址 - + - src/Form/UserType.php:38 - new + templates/users/_form.html.twig:185 - label.email - Email地址 + label.about + 关于 - src/Controller/Backend/UserController.php:33 - new + src/Controller/Backend/UserEditController.php:129 user.updated_successfully @@ -460,9 +335,9 @@ - src/Controller/Backend/EditMediaController.php:126 - src/Controller/Backend/EditRecordController.php:86 - new + src/Controller/Backend/ContentEditController.php:198 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/MediaEditController.php:64 content.updated_successfully @@ -471,8 +346,7 @@ - src/Controller/Backend/EditMediaController.php:157 - new + src/Controller/Backend/MediaEditController.php:88 content.created_successfully @@ -481,8 +355,7 @@ - src/Controller/Backend/EditFileController.php:101 - new + src/Controller/Backend/FileEditController.php:106 editfile.could_not_write @@ -490,511 +363,645 @@ + + templates/users/_form.html.twig:95 + templates/users/profile.html.twig:72 + label.locale 语言环境 - - - label.backend_theme - 后端主题 - - - - - English (en) - English (en) - - - - - Nederlands (dutch, nl) - Nederlands (dutch, nl) - - - - - Español (Spanish, es) - Español (Spanish, es) - - - - - français (French, fr) - français (French, fr) - - - - - Deutsch (German, de) - Deutsch (German, de) - - - - - Język Polski (Polish, pl) - Język Polski (Polish, pl) - - - - - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - Brasilian Portuguese (Brasilian Portuguese, pt_BR) - - - - - Italiano (Italian, it) - Italiano (Italian, it) - - + + templates/users/_form.html.twig:201 + templates/users/profile.html.twig:85 + The Default theme 默认主题 + + templates/users/_form.html.twig:202 + templates/users/profile.html.twig:86 + The Default Dark theme 默认深色主题 + + templates/users/_form.html.twig:204 + templates/users/profile.html.twig:88 + WoordPers: Kinda looks like that other CMS - WoordPers: Kinda looks like that other CMS + WoordPers:有点像那个别的 CMS + + src/Menu/BackendMenuBuilder.php:53 + templates/pages/dashboard.html.twig:6 + caption.dashboard 仪表盘 - - - caption.translations: messages - caption.translations: messages - - + + src/Menu/BackendMenuBuilder.php:217 + templates/pages/clearcache.html.twig:6 + templates/pages/clearcache.html.twig:18 + caption.clear_cache 清除缓存 - - - caption.check_database - 检查数据库 - - - - - caption.routing set up - caption.routing set up - - + + src/Menu/BackendMenuBuilder.php:145 + caption.menu_setup 菜单设置 + + src/Menu/BackendMenuBuilder.php:134 + caption.taxonomies 分类 + + src/Menu/BackendMenuBuilder.php:123 + caption.contenttypes 内容类型 + + src/Menu/BackendMenuBuilder.php:112 + caption.main_configuration 主要配置 + + src/Menu/BackendMenuBuilder.php:99 + caption.users_permissions - + 用户和权限 + + src/Menu/BackendMenuBuilder.php:89 + caption.configuration 配置 + + src/Menu/BackendMenuBuilder.php:77 + caption.settings 设置 + + src/Menu/BackendMenuBuilder.php:61 + caption.content 内容 + + src/Menu/BackendMenuBuilder.php:260 + templates/finder/finder.html.twig:6 + caption.file_management 文件管理 + + src/Menu/BackendMenuBuilder.php:187 + templates/pages/extension_details.html.twig:6 + templates/pages/extensions.html.twig:6 + caption.extensions 扩展管理 + + src/Menu/BackendMenuBuilder.php:280 + caption.view_edit_templates - + 查看模板 + + src/Menu/BackendMenuBuilder.php:270 + caption.uploaded_files 上传文件 + + src/Menu/BackendMenuBuilder.php:157 + caption.routing_setup 路由配置 + + src/Menu/BackendMenuBuilder.php:227 + templates/content/view_locales.html.twig:15 + caption.translations 翻译 + + src/Menu/BackendMenuBuilder.php:248 + templates/pages/about.html.twig:6 + caption.about_bolt 关于Bolt + + templates/pages/about.html.twig:11 + caption.bolt_payoff - + 精致、轻量且简单的 CMS + + templates/content/edit.html.twig:22 + caption.edit 编辑 + + templates/finder/_uploader.html.twig:8 + caption.file_uploader 上传文件 + + templates/finder/finder.html.twig:38 + templates/media/edit.html.twig:105 + caption.meta_information Meta信息 + + assets/js/app/editor/Components/Date.vue:76 + assets/js/filters/date.js:4 + src/DataFixtures/ContentFixtures.php:357 + src/Entity/Field/DateField.php:14 + src/Storage/SelectQuery.php:299 + src/Storage/SelectQuery.php:449 + src/Twig/FieldExtension.php:52 + src/Twig/HtmlExtension.php:106 + templates/finder/_files_list.html.twig:9 + templates/helpers/_field_blocks.twig:78 + templates/helpers/_fields.twig:30 + date 日期 + + assets/js/app/listing/Components/Table/Row/index.vue:32 + assets/js/app/listing/Components/Table/Row/index.vue:41 + src/Controller/Backend/Async/UploadController.php:195 + src/Controller/Backend/Async/UploadController.php:196 + src/Entity/Field/ImageField.php:88 + src/Entity/Field/ImageField.php:89 + templates/finder/_files_list.html.twig:8 + size 文件大小 + + src/Controller/ImageController.php:41 + src/Controller/ImageController.php:113 + src/Controller/ImageController.php:139 + src/Entity/Field/ImageField.php:31 + src/Entity/Field/ImageField.php:96 + src/Twig/ImageExtension.php:45 + src/Twig/ImageExtension.php:63 + templates/_partials/fields/embed.html.twig:14 + templates/finder/_files_list.html.twig:7 + thumbnail 缩略图 + + public/theme/skeleton/custom/test.twig:99 + src/Controller/Backend/FilemanagerController.php:211 + src/Controller/Backend/UserEditController.php:84 + src/Controller/Backend/UserEditController.php:255 + src/Controller/ImageController.php:41 + src/DataFixtures/ContentFixtures.php:314 + src/DataFixtures/ContentFixtures.php:323 + src/DataFixtures/ContentFixtures.php:382 + src/DataFixtures/ContentFixtures.php:394 + src/DataFixtures/ContentFixtures.php:498 + src/Entity/Field/FileExtrasTrait.php:15 + src/Entity/Field/FileExtrasTrait.php:21 + src/Entity/Field/FileField.php:22 + src/Entity/Field/FileField.php:45 + src/Entity/Field/FileField.php:63 + src/Entity/Field/ImageField.php:28 + src/Entity/Field/ImageField.php:72 + src/Entity/Field/ImageField.php:87 + src/Entity/Field/ImageField.php:94 + src/Entity/Field/ImageField.php:107 + src/Entity/Field/ImageField.php:108 + src/Entity/Field/ImageField.php:116 + src/Entity/Field/ImageField.php:120 + src/Entity/Field/ImageField.php:144 + src/Factory/MediaFactory.php:50 + src/Repository/MediaRepository.php:27 + src/Twig/ContentExtension.php:189 + src/Twig/ImageExtension.php:162 + src/Twig/ImageExtension.php:164 + templates/_partials/fields/file.html.twig:31 + templates/_partials/fields/image.html.twig:40 + templates/finder/_files_list.html.twig:6 + templates/media/edit.html.twig:31 + tests/php/Twig/ContentExtensionTestCase.php:159 + tests/php/Twig/ContentExtensionTestCase.php:175 + filename 文件名 + + assets/js/app/listing/Components/Table/Row/index.vue:41 + templates/_partials/_content_listing.html.twig:21 + templates/finder/_files_list.html.twig:10 + templates/finder/_folders.html.twig:7 + actions - Actions + 操作 + + templates/finder/_folders.html.twig:6 + directoryname 目录名称 - - - action.go - Go - - + + templates/finder/_quickselect.html.twig:9 + form.quick_select_file 快速选择要编辑的文件… - - - label.quick_select - 快速选择 - - + + templates/finder/editfile.html.twig:26 + templates/finder/finder.html.twig:40 + caption.path 路径 + + templates/media/edit.html.twig:30 + caption.filename 文件名 - - - action.visit_site - 访问网站 - - + + templates/content/listing.html.twig:63 + action.create_new 新建 + + assets/js/app/toolbar/Components/Toolbar.vue:53 + templates/_base/layout.html.twig:39 + general.greeting - Hey, %name%! + 嗨,%name%! + + assets/js/app/toolbar/Components/Toolbar.vue:69 + templates/_base/layout.html.twig:40 + action.logout 注销 + + assets/js/app/toolbar/Components/Toolbar.vue:63 + templates/_base/layout.html.twig:42 + action.edit_profile 编辑资料 + + templates/_partials/_flash_messages.html.twig:1 + action.close_alert 关闭 + + src/Menu/BackendMenuBuilder.php:207 + caption.api API + + src/Menu/BackendMenuBuilder.php:165 + caption.all_configuration_files 所有配置文件 + + src/Menu/BackendMenuBuilder.php:177 + caption.maintenance 维护 - - - caption.fixtures_dummy_content - Fixtures (Dummy Content) - - + + templates/finder/editfile.html.twig:21 + caption.edit_file 编辑文件 - - - caption.installation_checks - 安装检查 - - - - - form.select_language - 选择语言 - - - - - field.locale - 语言环境 - - + + templates/content/_localeswitcher.html.twig:7 + field.current_locale 当前语言 + + templates/content/_localeswitcher.html.twig:14 + field.switch_to_locale 切换语言 + + templates/_partials/fields/embed.html.twig:32 + templates/content/_fields_aside.html.twig:33 + field.author 作者 + + public/theme/skeleton/partials/_aside.twig:26 + public/theme/skeleton/partials/_recordfooter.twig:4 + templates/content/view_locales.html.twig:60 + general.phrase.edit 编辑 + + public/theme/skeleton/partials/_recordfooter.twig:7 + Unknown 未知 + + public/theme/skeleton/partials/_recordfooter.twig:6 + general.phrase.written-by-on 由%name%于%date%所写。 + + public/theme/skeleton/partials/_aside.twig:33 + general.phrase.missing-about-page "About" 页面丢失 + + public/theme/skeleton/partials/_aside.twig:35 + general.phrase.missing-about-page-block "About" 页面的 block 丢失 + + public/theme/skeleton/partials/_aside.twig:53 + contenttypes.generic.recent 最近的 %contenttypes% + + public/theme/skeleton/partials/_footer.twig:12 + public/theme/skeleton/search.twig:23 + general.phrase.search-ellipsis + + public/theme/skeleton/partials/_footer.twig:9 + public/theme/skeleton/search.twig:11 + public/theme/skeleton/search.twig:24 + templates/_base/layout.html.twig:44 + general.phrase.search 搜索 - - - 9fb3e6e - Built with Bolt.]]> - - + + public/theme/skeleton/partials/_aside.twig:60 + contenttypes.generic.overview %contenttypes% 概述 + + public/theme/skeleton/partials/_aside.twig:62 + contenttypes.generic.no-recent 未找到最近的 %contenttype% + + public/theme/skeleton/partials/_footer.twig:4 + Menu 菜单 + + src/DataFixtures/ContentFixtures.php:443 + tests/cypress/integration/dashboard_globalsearch.spec.js:14 + tests/cypress/integration/dashboard_globalsearch.spec.js:26 + tests/cypress/integration/dashboard_globalsearch.spec.js:37 + Search 搜索 + + public/theme/skeleton/partials/_recordfooter.twig:14 + general.phrase.permalink 永久链接 - - - label.displayname - 显示名称 - - + + src/Controller/Backend/ClearCacheController.php:24 + label.cache_cleared 缓存清除成功! - - caption.kitchensink - The Kitchensink - - - - parameters: - '%search%': consequatur + src/Menu/BackendMenuBuilder.php:238 - general.phrase.search-results-for-variable - '%search%'的搜索结果。 + caption.kitchensink + 综合示例页 - parameters: - '%search%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:11 general.phrase.search-results-for @@ -1003,8 +1010,7 @@ - parameters: - '%SEARCHTERM%': ymnrubeyrvwearsytevsf + public/theme/skeleton/search.twig:51 general.phrase.no-search-results-for @@ -1012,1666 +1018,2421 @@ + + public/theme/skeleton/search.twig:53 + general.phrase.no-search-term-provided 请提供关键词,以显示相关结果。 + + public/theme/skeleton/partials/_aside.twig:23 + vendor/bolt/newswidget/templates/news.html.twig:10 + general.phrase.read-more 阅读更多 + + public/theme/skeleton/partials/_footer.twig:17 + general.phrase.built-with-bolt - Built with Bolt.]]> + 由 Bolt 构建。]]> + + vendor/bolt/newswidget/templates/news.html.twig:3 + general.latest_bolt_news - Latest Bolt News + Bolt 最新动态 + + templates/content/_buttons.html.twig:19 + action.preview 预览 + + templates/content/_buttons.html.twig:58 + action.view_saved 查看已保存版本 + + templates/users/_form.html.twig:26 + templates/users/profile.html.twig:33 + label.display_name 显示名称 + + templates/content/edit.html.twig:22 + caption.duplicate - Duplicate - - - - - label.current_password - 当前密码 + 复制 + + src/Form/ChangePasswordFormType.php:40 + label.new_password 新密码 - - - label.new_password_confirm - 新密码(确认) - - + + src/Controller/Backend/FileEditController.php:104 + editfile.updated_successfully 文件更新成功! + + templates/users/add.html.twig:6 + templates/users/listing.html.twig:109 + templates/users/listing.html.twig:176 + action.add_user 添加用户 + + assets/js/app/ajax-save.js:93 + assets/js/app/ajax-save.js:97 + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ClearCacheController.php:24 + src/Controller/Backend/ContentEditController.php:196 + src/Controller/Backend/ContentEditController.php:197 + src/Controller/Backend/ContentEditController.php:208 + src/Controller/Backend/ContentEditController.php:264 + src/Controller/Backend/ContentEditController.php:288 + src/Controller/Backend/FileEditController.php:104 + src/Controller/Backend/FileEditController.php:148 + src/Controller/Backend/FileEditController.php:188 + src/Controller/Backend/FilemanagerController.php:115 + src/Controller/Backend/FilemanagerController.php:155 + src/Controller/Backend/GeneralController.php:48 + src/Controller/Backend/MediaEditController.php:64 + src/Controller/Backend/MediaEditController.php:88 + src/Controller/Backend/UserEditController.php:129 + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + src/Twig/Notifications.php:21 + templates/media/edit.html.twig:95 + templates/pages/kitchensink.html.twig:81 + templates/pages/kitchensink.html.twig:88 + success 成功! + + src/Controller/Backend/UserEditController.php:161 + src/Controller/Backend/UserEditController.php:193 + user.updated_profile 用户资料已更新! + + templates/users/_form.html.twig:124 + label.roles 角色 + + templates/users/add.html.twig:11 + templates/users/edit.html.twig:11 + user.new_user 新用户 + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:9 + templates/_base/layout.html.twig:93 + action.view 查看 - - - caption.folders - 文件夹 - - + + templates/_partials/fields/slug.html.twig:18 + slug.button_locked 锁定 + + templates/_partials/fields/slug.html.twig:19 + slug.button_edit 编辑 + + templates/_partials/fields/slug.html.twig:20 + slug.generate_from 来源: + + templates/_partials/fields/file.html.twig:16 + templates/_partials/fields/filelist.html.twig:16 + templates/_partials/fields/image.html.twig:17 + templates/_partials/fields/imagelist.html.twig:16 + templates/_partials/fields/simple_image.html.twig:13 + templates/_partials/fields/simple_image.html.twig:58 + image.button_upload 上传 + + templates/_partials/fields/file.html.twig:18 + templates/_partials/fields/filelist.html.twig:18 + templates/_partials/fields/image.html.twig:19 + templates/_partials/fields/imagelist.html.twig:18 + templates/_partials/fields/simple_image.html.twig:14 + templates/_partials/fields/simple_image.html.twig:59 + image.button_from_library - From library + 从媒体库选择 + + templates/_partials/_content_listing.html.twig:23 + listing_table.actions.view_on_site 查看网站 + + templates/_partials/_content_listing.html.twig:24 + templates/_partials/_content_listing.html.twig:27 + templates/content/listing.html.twig:43 + listing_table.actions.status_to_publish 将状态更改为“发布” + + templates/_partials/_content_listing.html.twig:25 + templates/content/listing.html.twig:42 + listing_table.actions.status_to_held 将状态更改为“保留” + + templates/_partials/_content_listing.html.twig:26 + templates/content/listing.html.twig:41 + listing_table.actions.status_to_draft 将状态更改为“草稿” + + templates/_partials/_content_listing.html.twig:28 + listing_table.actions.duplicate - Duplicate + 复制 + + templates/_partials/_content_listing.html.twig:29 + listing_table.actions.delete 删除 + + templates/_partials/_content_listing.html.twig:30 + listing_table.actions.slug Slug + + templates/_partials/_content_listing.html.twig:31 + listing_table.actions.created_on 创建于 + + templates/_partials/_content_listing.html.twig:32 + listing_table.actions.published_on 发布于 + + templates/_partials/_content_listing.html.twig:33 + listing_table.actions.last_modified_on 最后修改 + + templates/content/listing.html.twig:40 + listing_select_box.card_header.selected 最后修改于 - - - listing_select_box.card_body.records_passed - selected record ids passed - - - - - listing_select_box.card_body.remark - (these can be used with something like axios to bulk modify/delete) - - + + templates/_partials/fields/embed.html.twig:20 + editor_embed.content_url 要嵌入内容的URL + + templates/_partials/fields/embed.html.twig:21 + editor_embed.placeholder_content_url - URL of content on Facebook, Twitter, Soundcloud, Youtube, Vimeo… + Facebook、Twitter、Soundcloud、Youtube、Vimeo 等平台上的内容 URL… + + templates/_partials/fields/embed.html.twig:22 + editor_embed.label_height 高度 + + templates/_partials/fields/embed.html.twig:23 + editor_embed.label_pixel 像素 + + templates/_partials/fields/embed.html.twig:24 + editor_embed.label_matched_embed 匹配嵌入 + + templates/_partials/fields/embed.html.twig:25 + editor_embed.label_preview 预览 + + templates/_partials/fields/embed.html.twig:26 + editor_embed.label_size 尺寸 + + templates/_partials/fields/file.html.twig:20 + templates/_partials/fields/filelist.html.twig:19 + templates/_partials/fields/image.html.twig:21 + templates/_partials/fields/imagelist.html.twig:19 + templates/_partials/fields/simple_image.html.twig:16 + templates/_partials/fields/simple_image.html.twig:61 + image.placeholder_filename 文件名(上传新文件,或选择现有文件) + + templates/_partials/fields/file.html.twig:21 + templates/_partials/fields/filelist.html.twig:20 + templates/_partials/fields/image.html.twig:22 + templates/_partials/fields/imagelist.html.twig:20 + templates/_partials/fields/simple_image.html.twig:17 + templates/_partials/fields/simple_image.html.twig:62 + image.placeholder_alt_text Alt属性 + + templates/_partials/fields/file.html.twig:22 + templates/_partials/fields/filelist.html.twig:21 + templates/_partials/fields/imagelist.html.twig:21 + templates/_partials/fields/simple_image.html.twig:18 + image.placeholder_title 标题属性 + + templates/_base/layout.html.twig:91 + admin_sidebar.toggler 侧边栏宽度 + + templates/_base/layout.html.twig:82 + - admin_sidebar_toggler.toggle - 切换 menu]]> - - - - - editor_date.toggle - 切换 - - - - - file.label_filename - 文件名 - - - - - file.label_title - 标题 - - - - - file.button_view - 查看图片 - - - - - file.button_upload - 上传图片 - - - - - file.remark - image-field.]]> - - - - - file.label_alt - Alt - - - - - filelist.remark - imagelist-field.]]> - - - - - geolocation.label_geolocation - 地理位置: - - - - - geolocation.label_address - 地址搜索 - - - - - geolocation.placeholder_address - 街道、邮政编码、城市或其他位置… - - - - - geolocation.label_lat - 纬度 - - - - - geolocation.label_address_matched - 地址匹配 - - - - - geolocation.label_marker - 标记位置 - - - - - geolocation.label_control - 最近的地址 - - - - - geolocation.label_long - 经度 + admin_sidebar_toggler.toggle + 切换 menu]]> - + + + templates/_partials/fields/date.html.twig:39 + - imagelist.remark - filelist-field.]]> + editor_date.toggle + 切换 + + src/Controller/Backend/ContentEditController.php:199 + templates/_partials/_flash_messages.html.twig:8 + flash_messages.notification 通知 - - - buttons.button_toggle - Toggle Dropdown - - + + templates/content/_localeswitcher.html.twig:19 + localeswitcher.button_info 查看本地化信息 + + templates/content/listing.html.twig:69 + templates/content/listing.html.twig:70 + templates/users/listing.html.twig:190 + templates/users/listing.html.twig:191 + listing.title_sortby 排序方式 - - - listing.option_select_item - 选择项目 - - - - - listing.title_title - 标题 - - + + templates/content/listing.html.twig:106 + templates/users/listing.html.twig:214 + templates/users/listing.html.twig:215 + listing.placeholder_filter 筛选关键字… + + templates/content/listing.html.twig:123 + templates/users/listing.html.twig:220 + listing.button_filter 筛选 + + templates/content/listing.html.twig:126 + templates/users/listing.html.twig:223 + listing.button_clear 清除排序/筛选 + + templates/content/view_locales.html.twig:99 + view_locales.badge_default 默认 + + templates/content/view_locales.html.twig:105 + view_locales.badge_ok OK + + templates/content/view_locales.html.twig:101 + view_locales.badge_missing - Missing + 缺失 + + templates/finder/_files_actions.html.twig:10 + files_cards.button_toggle - Toggle Dropdown + 切换下拉菜单 + + templates/finder/_files_actions.html.twig:17 + files_cards.action_edit_image_info 编辑图片信息 + + templates/finder/_files_actions.html.twig:19 + files_cards.action_edit_file 在编辑器中编辑文件 + + templates/finder/_files_actions.html.twig:25 + files_cards.action_view_original 查看原件 + + templates/finder/_files_actions.html.twig:36 + files_cards.action_duplicate - Duplicate + 复制 + + templates/finder/_files_actions.html.twig:49 + files_cards.action_delete 删除 + + templates/finder/_files_actions.html.twig:56 + files_cards.label_filename 文件名: + + templates/finder/_files_actions.html.twig:63 + files_cards.label_title 标题: + + templates/finder/_files_actions.html.twig:70 + files_cards.label_dimensions 尺寸: + + templates/finder/_files_actions.html.twig:76 + files_cards.label_filesize 文件大小: + + templates/finder/_files_actions.html.twig:81 + files_cards.label_created_on 创建于: + + templates/finder/_files_list.html.twig:75 + files_list.remark 此文件夹中没有文件。选择要导航到的文件夹。 + + templates/finder/_quickselect.html.twig:5 + quickselect.title_select 选择文件: + + templates/finder/finder.html.twig:45 + finder.button_list 列表 + + templates/finder/finder.html.twig:49 + finder.button_cards 卡片 + + templates/pages/extension_details.html.twig:24 + templates/pages/extension_details.html.twig:51 + templates/pages/extensions.html.twig:27 + templates/pages/extensions.html.twig:44 + extensions.title_desc 描述: + + templates/pages/extension_details.html.twig:26 + templates/pages/extensions.html.twig:29 + extensions.title_author 作者: + + templates/pages/extension_details.html.twig:28 + templates/pages/extensions.html.twig:31 + extensions.title_package - Package / Class name: + 包 / 类名: + + templates/pages/extension_details.html.twig:34 + templates/pages/extensions.html.twig:37 + extensions.title_version 版本: + + templates/pages/extension_details.html.twig:52 + templates/pages/extensions.html.twig:45 + extensions.info_not_installed 这是一个本地包,不是通过 Composer 安装的 + + templates/pages/extension_details.html.twig:53 + templates/pages/extensions.html.twig:46 + extensions.title_class - Class name: + 类名: + + templates/pages/extension_details.html.twig:62 + templates/pages/extensions.html.twig:58 + extensions.button_configuration 配置 + + templates/pages/extension_details.html.twig:67 + templates/pages/extensions.html.twig:63 + extensions.button_source - Source + 源码 + + templates/pages/extension_details.html.twig:79 + templates/pages/extensions.html.twig:74 + extensions.button_remove 删除扩展 + + templates/pages/extension_details.html.twig:91 + templates/pages/extensions.html.twig:86 + extensions.button_disable 禁用扩展 + + templates/security/login.html.twig:40 + login.header_login Bolt » 登录 + + templates/pages/extension_details.html.twig:72 + templates/pages/extension_details.html.twig:73 + templates/pages/extension_details.html.twig:84 + templates/pages/extension_details.html.twig:85 + templates/pages/extensions.html.twig:68 + templates/pages/extensions.html.twig:69 + templates/pages/extensions.html.twig:79 + templates/pages/extensions.html.twig:80 + extensions.message_not_implemented 尚未实现,对不起! + + templates/content/listing.html.twig:6 + listing.title_overview 概述 + + templates/finder/_files_cards.html.twig:48 + files_cards.message_no_files 此文件夹中没有文件,请在右侧选择要导航到的文件夹 + + templates/_partials/_content_listing.html.twig:13 + listing_filter.button_compact 紧凑 + + templates/_partials/_content_listing.html.twig:14 + listing_filter.button_expanded 展开 + + templates/finder/finder.html.twig:41 + finder.label_view 查看: + + templates/_partials/_content_listing.html.twig:34 + listing_table.actions.button_edit 编辑 + + src/Controller/Backend/UserController.php:50 + controller.user.title - + 用户和权限 + + src/Controller/Backend/UserController.php:51 + controller.user.subtitle 编辑用户及其权限 - - - controller.database.check_title - 数据库检查 - - - - - controller.database.check_subtitle - 检查数据库 - - - - - controller.database.update_title - 数据库更新 - - - - - controller.database.update_subtitle - 更新数据库 - - - - - controller.omnisearch.title - Omnisearch - - - - - controller.omnisearch.subtitle - To search, in an omni-like fashion - - + + templates/users/listing.html.twig:20 + listing.title_display_name 显示名称 + + templates/users/listing.html.twig:19 + templates/users/listing.html.twig:122 + listing.title_username 用户名 + + templates/users/listing.html.twig:20 + listing.title_email - Email + 电子邮箱 + + templates/users/listing.html.twig:21 + listing.title_roles 角色 + + templates/users/listing.html.twig:22 + templates/users/listing.html.twig:123 + listing.title_last_seen - Session age + 会话时长 + + templates/users/listing.html.twig:23 + listing.title_last_ip - Last IP + 最后 IP + + templates/users/listing.html.twig:24 + listing.title_actions - Actions - - - - - user.not_valid_email - 无效的电子邮件 - - - - - user.not_valid_password - 无效的密码,密码应至少包含6个字符。 + 操作 + + templates/users/profile.html.twig:11 + user.unknown_user 未知的用户 + + templates/media/edit.html.twig:114 + label.predominant_colors__in_image 图像中的主色 + + public/theme/skeleton/listing.twig:14 + general.phrase.overview-for '%slug%' 概述 + + public/theme/skeleton/partials/_recordfooter.twig:40 + general.phrase.related-content 相关内容 + + public/theme/skeleton/partials/_footer.twig:13 + action.search 搜索 + + templates/content/edit.html.twig:17 + templates/content/view_locales.html.twig:11 + caption.new_contenttype 新 %contenttype% + + templates/content/edit.html.twig:13 + templates/content/view_locales.html.twig:10 + caption.untitled_contenttype 未命名的 %contenttype% + + templates/users/profile.html.twig:6 + title.edit_user_profile 编辑用户资料 + + templates/pages/menupage.html.twig:13 + caption.redirection_page 页面重定向 + + templates/media/edit.html.twig:6 + caption.edit_image 编辑图片 - - - general.phrase.select_language - 选择语言 - - + + templates/users/_form.html.twig:44 + password.suggested %password%]]> + + templates/media/edit.html.twig:70 + field.cropX 裁剪 X + + templates/media/edit.html.twig:73 + field.cropXPostfix X轴裁剪范围:0-100 + + templates/media/edit.html.twig:80 + field.cropYPostfix Y轴裁剪范围:0-100 + + templates/media/edit.html.twig:77 + field.cropY 裁剪 Y + + templates/media/edit.html.twig:84 + field.cropZoom 缩放 + + templates/media/edit.html.twig:87 + field.cropZoomPostfix 缩放范围:1-10 + + templates/content/listing.html.twig:136 + title.contentType 内容类型 - - - listing.title_taxonomy - 分类 - - + + templates/_partials/_content_listing.html.twig:44 + listing_table.no_results 未找到结果,扩大过滤条件,或添加更多内容。 + + templates/content/listing.html.twig:72 + templates/users/listing.html.twig:193 + listing.option_select_sortby 选择要排序的字段… + + templates/content/edit.html.twig:103 + title.primary_actions 主要操作 + + templates/content/edit.html.twig:115 + templates/users/listing.html.twig:59 + title.options 选项 + + templates/_partials/fields/embed.html.twig:27 + templates/content/_buttons.html.twig:69 + templates/content/listing.html.twig:44 + templates/finder/_folders.html.twig:39 + templates/users/listing.html.twig:96 + action.delete 删除 + + templates/users/listing.html.twig:76 + action.enable 启用 + + templates/users/listing.html.twig:71 + action.disable 禁用 - - - user.enabled_successfully - 用户已启用! - - - - - user.disabled_successfully - 用户已禁用! - - + + templates/users/listing.html.twig:124 + listing.title_session_expires Session过期 + + templates/users/listing.html.twig:125 + listing.title_ip_address IP地址 + + templates/users/listing.html.twig:126 + listing.title_browser 浏览器/平台 + + templates/_partials/fields/file.html.twig:19 + templates/_partials/fields/filelist.html.twig:22 + templates/_partials/fields/image.html.twig:20 + templates/_partials/fields/imagelist.html.twig:22 + templates/_partials/fields/simple_image.html.twig:15 + templates/_partials/fields/simple_image.html.twig:60 + image.button_remove 移除 + + templates/_partials/fields/file.html.twig:23 + templates/_partials/fields/filelist.html.twig:26 + templates/_partials/fields/image.html.twig:23 + templates/_partials/fields/imagelist.html.twig:23 + templates/_partials/fields/simple_image.html.twig:19 + templates/_partials/fields/simple_image.html.twig:63 + image.button_edit_attributes 编辑属性 - - - image.button_move_up - 上移 - - - - - image.button_move_down - 下移 - - + + templates/_partials/fields/imagelist.html.twig:27 + image.add_new_image 添加新图片 + + templates/_partials/fields/filelist.html.twig:25 + file.add_new_file 添加新文件 + + templates/_partials/fields/_collection_buttons.html.twig:20 + collection.remove_item 删除项目 + + templates/_partials/fields/collection.html.twig:6 + collection.add_item 向“%name%”添加新项目 + + templates/_partials/fields/_collection_buttons.html.twig:5 + collection.move_item_up 上移 + + templates/_partials/fields/_collection_buttons.html.twig:9 + collection.move_item_down 下移 + + templates/pages/extensions.html.twig:54 + extensions.button_detailed_view 查看详情 + + templates/pages/extension_details.html.twig:31 + templates/pages/extensions.html.twig:34 + extensions.title_configuration 配置文件 + + templates/finder/_uploader.html.twig:17 + caption.file_upload.upload_text 将文件拖放到此处进行上传 + + templates/helpers/_pager_basic.html.twig:66 + templates/helpers/_pager_bootstrap.html.twig:74 + templates/helpers/_pager_bulma.html.twig:34 + templates/helpers/_pager_tailwind.html.twig:69 + pager.next 下一页 + + templates/helpers/_pager_basic.html.twig:30 + templates/helpers/_pager_bootstrap.html.twig:33 + templates/helpers/_pager_bulma.html.twig:28 + templates/helpers/_pager_tailwind.html.twig:29 + pager.previous 上一页 + + templates/_partials/fields/filelist.html.twig:23 + templates/_partials/fields/imagelist.html.twig:25 + image.button_up - Up + 上移 + + templates/_partials/fields/filelist.html.twig:24 + templates/_partials/fields/imagelist.html.twig:26 + image.button_down - Down + 下移 + + templates/helpers/_field_blocks.twig:28 + general.phrase.download 下载 + + src/Menu/BackendMenuBuilder.php:197 + templates/pages/logviewer.html.twig:6 + caption.logviewer 日志查看 + + templates/pages/logviewer.html.twig:39 + label.request - Request + 请求 + + templates/pages/logviewer.html.twig:53 + label.trace - Trace + 堆栈跟踪 + + templates/pages/logviewer.html.twig:71 + label.context - Context + 上下文 + + templates/pages/logviewer.html.twig:19 + label.id ID + + templates/pages/logviewer.html.twig:20 + label.level 等级 + + templates/pages/logviewer.html.twig:23 + label.message 信息 + + templates/pages/logviewer.html.twig:25 + label.timestamp 时间戳 + + templates/pages/logviewer.html.twig:86 + label.user 用户 + + templates/users/listing.html.twig:33 + listing.disabled 已禁用 + + templates/_partials/fields/slug.html.twig:17 + slug.button_unlocked 解锁 + + public/theme/skeleton/listing.twig:42 + general.phrase.no-content-found 未找到内容 - + + + public/theme/skeleton/partials/_sub_taxonomylinks.twig:12 + templates/helpers/_taxonomylinks.html.twig:14 + - general.phrase.empty-database - It looks like the database is empty. Write some content in the Bolt backend, or run the command to add some fixtures (dummy content). + general.phrase.none + + + templates/content/view_locales.html.twig:103 + view_locales.badge_empty - Empty + + + templates/content/listing.html.twig:45 + action.update_all 全部应用 + + templates/pages/about.html.twig:21 + about.system_info 系统信息 - - - user.not_valid_display_name - 无效的显示名称 - - + + templates/content/_buttons.html.twig:63 + templates/finder/_folders.html.twig:40 + templates/finder/_folders.html.twig:41 + templates/users/listing.html.twig:89 + templates/users/listing.html.twig:90 + action.confirm_delete 您确定要删除此内容吗? + + src/Form/LoginType.php:38 + placeholder.username_or_email 您的用户名或电子邮件 + + src/Form/LoginType.php:52 + placeholder.password 你的密码 + + src/Menu/BackendMenuBuilder.php:336 + caption.other_content 其他内容 + + templates/finder/editfile.html.twig:39 + editfile.target_not_writable 保存被禁用,因为目标文件不可写。 + + templates/_partials/fields/_label.html.twig:6 + label.translatable 此字段可翻译 + + templates/pages/logviewer.html.twig:92 + label.content 内容 + + src/Controller/Backend/FileEditController.php:148 + file.delete_success 文件删除成功! + + templates/finder/_files_actions.html.twig:42 + templates/finder/_files_actions.html.twig:43 + file.delete_confirm 您确定要删除此文件吗? + + templates/content/listing.html.twig:104 + templates/users/listing.html.twig:207 + listing.title_filterby 搜索/过滤依据 + + src/Controller/Backend/BulkOperationsController.php:55 + src/Controller/Backend/ContentEditController.php:264 + content.status_changed_successfully 状态更改成功 + + src/Controller/Backend/BulkOperationsController.php:82 + src/Controller/Backend/ContentEditController.php:288 + content.deleted_successfully 内容删除成功 + + templates/content/_buttons.html.twig:46 + label.current_status 当前状态 + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.published 已发布 + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.draft 草稿 + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.timed 定时 + + src/Twig/ContentExtension.php:601 + templates/content/_buttons.html.twig:47 + status.held 保留 + + templates/_partials/fields/_collection_buttons.html.twig:13 + templates/_partials/fields/_collection_buttons.html.twig:14 + collection.confirm_delete 您确定要删除吗? + + templates/_partials/fields/file.html.twig:5 + templates/_partials/fields/filelist.html.twig:5 + templates/_partials/fields/image.html.twig:5 + templates/_partials/fields/imagelist.html.twig:5 + templates/_partials/fields/simple_image.html.twig:5 + templates/_partials/fields/simple_image.html.twig:49 + templates/finder/_uploader.html.twig:3 + upload.allow_file_types 允许上传的文件类型 + + templates/_partials/fields/file.html.twig:6 + templates/_partials/fields/filelist.html.twig:6 + templates/_partials/fields/image.html.twig:6 + templates/_partials/fields/imagelist.html.twig:6 + templates/_partials/fields/simple_image.html.twig:6 + templates/_partials/fields/simple_image.html.twig:50 + templates/finder/_uploader.html.twig:4 + upload.max_size 最大上传 + + assets/js/app/toolbar/Components/Toolbar.vue:26 + assets/js/app/toolbar/Components/Toolbar.vue:27 + templates/_base/layout.html.twig:45 + listing.placeholder_search 搜索关键字 … + + templates/pages/dashboard.html.twig:12 + title.filtered_by '%filter%'过滤。]]> + + assets/js/app/toolbar/Components/Toolbar.vue:16 + templates/_base/layout.html.twig:38 + action.view_site 查看网站 + + assets/js/app/sidebar/Components/Menu/_SubMenu.vue:5 + templates/_base/layout.html.twig:92 + templates/finder/_createfolder.html.twig:9 + action.new 添加 + + templates/pages/extension_details.html.twig:39 + extensions.no_dependencies 没有依赖关系 + + templates/pages/extension_details.html.twig:36 + extensions.title_dependencies 依赖关系 + + templates/_partials/fields/collection.html.twig:7 + collection.expand_all 展开全部 + + templates/_partials/fields/collection.html.twig:8 + collection.collapse_all 全部收缩 + + templates/content/edit.html.twig:45 + content.edit_missing_definition - The definition for this ContentType is missing! Editing this record will not work as expected. Please check your contenttypes.yaml to make sure that it contains %contenttype%. + 此内容类型(ContentType)的定义缺失!编辑此记录将无法正常工作。请检查您的 contenttypes.yaml 文件,确保其中包含 %contenttype%。 + + templates/_partials/fields/collection.html.twig:10 + collection.select 选择 … + + src/Form/LoginType.php:34 + form.empty_username_email 请输入您的用户名或电子邮件 + + src/Form/LoginType.php:46 + form.empty_password 请输入您的密码 + + src/Form/ResetPasswordRequestFormType.php:28 + form.empty_email 请输入您的电子邮件 + + templates/content/listing.html.twig:112 + listing.title_filterby_field 按字段过滤 + + templates/_partials/fields/image.html.twig:24 + templates/_partials/fields/imagelist.html.twig:24 + templates/_partials/fields/simple_image.html.twig:64 + image.button_from_url 来源URL + + templates/finder/_files_actions.html.twig:29 + files_cards.copy_to_clipboard 复制文件链接 + + assets/js/app/ajax-save.js:39 + src/Controller/Backend/FileEditController.php:82 + src/Controller/Backend/FileEditController.php:106 + src/Controller/Backend/FilemanagerController.php:111 + src/Controller/Backend/FilemanagerController.php:150 + src/Controller/Backend/GeneralController.php:50 + src/Security/AuthenticationEntryPointRedirector.php:26 + src/Twig/Notifications.php:42 + templates/helpers/page_404.html.twig:36 + templates/pages/kitchensink.html.twig:82 + templates/pages/kitchensink.html.twig:89 + vendor/bolt/configuration-notices-widget/src/Checks.php:55 + warning 警告 + + src/Controller/Backend/FilemanagerController.php:150 + filemanager.create_folder_already_exists 文件夹已存在 + + src/Controller/Backend/FilemanagerController.php:151 + src/Controller/Backend/FilemanagerController.php:157 + filemanager.create_folder_error 无法创建文件夹 + + src/Controller/Backend/FilemanagerController.php:155 + filemanager.create_folder_success 文件夹创建成功。 + + src/Controller/Backend/FilemanagerController.php:115 + filemanager.delete_folder_successful 文件夹删除成功 + + templates/finder/_createfolder.html.twig:13 + folder.create_new 新建文件夹 - - - title.add_user - 添加用户 - - + + templates/users/_form.html.twig:172 + label.avatar 头像 + + templates/security/login.html.twig:64 + login.forgotpassword 忘记密码 + + templates/reset_password/check_email.html.twig:32 + templates/reset_password/request.html.twig:4 + templates/reset_password/request.html.twig:36 + reset_password.request_header 重置密码 + + templates/reset_password/request.html.twig:42 + reset_password.request_description 输入您的电子邮件地址,我们将向您发送一个链接以重置您的密码。 + + templates/reset_password/request.html.twig:44 + reset_password.request_send 提交 + + src/Command/AddUserCommand.php:158 + src/Command/ListUsersCommand.php:101 + tests/cypress/integration-temporary-disabled/edit_record_1_field.spec.js:56 + Email - Email + 电子邮箱 + + templates/reset_password/request.html.twig:47 + reset_password.back-to-login 返回登录 + + templates/reset_password/reset.html.twig:4 + templates/reset_password/reset.html.twig:32 + reset_password.reset_header 重置您的密码 + + templates/reset_password/check_email.html.twig:4 + reset_password.check_email_sent_header 密码重置邮件已发送 + + templates/reset_password/check_email.html.twig:35 + reset_password.check_email_sent_text_1 已发送电子邮件,其中包含您重置密码的链接。此链接将在%hours%小时后过期。 + + templates/reset_password/check_email.html.twig:36 + reset_password.check_email_sent_text_2 如果您没有收到电子邮件,请检查您的垃圾邮件文件夹或%tryagain%。 + + templates/reset_password/reset.html.twig:37 + reset_password.reset_btn 重置密码 + + templates/reset_password/email.html.twig:1 + reset_password.email_title - Hi! + 您好! + + templates/reset_password/email.html.twig:3 + reset_password.email_description 要重置您的密码,请访问以下链接 + + templates/reset_password/email.html.twig:7 + reset_password.email_expire 此链接将在%hours%小时后过期 + + templates/reset_password/email.html.twig:9 + reset_password.email_thanks - Cheers! + 谢谢! + + src/Form/ChangePasswordFormType.php:31 + reset_password.enter_pwd 请输入密码 + + src/Form/ChangePasswordFormType.php:43 + label.repeat_password 重复密码 + + src/Form/ChangePasswordFormType.php:45 + reset_password.not_matching_pwds - The password fields must match. + 两次输入的密码必须一致。 + + src/Form/ChangePasswordFormType.php:35 + reset_password.minimum_length 您的密码应至少为 %s 个字符 + + src/Controller/Backend/ResetPasswordController.php:99 + reset_password.no_token - No reset password token found in the URL or in the session. + 在 URL 或会话中未找到重置密码令牌。 + + src/Controller/Backend/ResetPasswordController.php:134 + reset_password.reset_successful 您的密码已成功重置。 + + src/Controller/Backend/ResetPasswordController.php:106 + src/Controller/Backend/ResetPasswordController.php:169 + reset_password.problem_with_request 在处理您的密码重置请求时出现问题 - %s + + templates/content/listing.html.twig:12 + templates/content/listing.html.twig:13 + label.filtered_by - filtered by + 筛选依据 + + templates/content/_buttons.html.twig:34 + action.preview_secure_share 分享安全预览链接 + + assets/js/app/toolbar/Components/Toolbar.vue:10 + templates/_base/layout.html.twig:41 + action.stop_impersonating - stop impersonating + 停止模拟身份 + + templates/users/listing.html.twig:82 + action.impersonate - impersonate + 模拟身份 + + templates/widget/maintenance_mode.twig:25 + maintenance.activated_warning 维护模式已激活 + + templates/_partials/fields/embed.html.twig:28 + action.refresh 刷新 + + templates/content/listing.html.twig:148 + listing_details_box.showing_records - Showing records %current% of %total% + 显示第 %current% 条,共 %total% 条记录 + + templates/content/listing.html.twig:154 + listing_details_box.name - Name: %name% (singular: %singularName%) + 名称:%name%(单数:%singularName%) + + templates/content/listing.html.twig:160 + listing_details_box.slug - Slug: %slug% (singular: %singularSlug%) + Slug:%slug%(单数:%singularSlug%) + + templates/content/listing.html.twig:166 + listing_details_box.record_template - Record template: %template% + 记录模板:%template% + + templates/content/listing.html.twig:172 + listing_details_box.listing_template - Listing template: %template% (%listingRecords% records) + 列表模板:%template%(%listingRecords% 条记录) + + templates/content/listing.html.twig:186 + listing_details_box.locales 语言环境: %locales% + + templates/users/listing.html.twig:112 + templates/users/listing.html.twig:183 + action.edit_permissions 编辑权限 + + assets/js/app/toolbar/Components/Toolbar.vue:21 + templates/_base/layout.html.twig:46 + general.label.search 搜索 + + templates/_partials/fields/image.html.twig:25 + image.image_preview 预览图片 + + templates/_partials/_content_listing.html.twig:15 + listing_table.actions.select_all 全选 + + + src/Form/LoginType.php:58 + + + label.remembermeduration + 记住我?(%duration% 天) + + + + + templates/users/listing.html.twig:117 + + + listing.current_sessions_header + 当前会话 + + + + + templates/_partials/fields/file.html.twig:17 + templates/_partials/fields/filelist.html.twig:17 + templates/_partials/fields/image.html.twig:18 + templates/_partials/fields/imagelist.html.twig:17 + + + image.button_upload_options + 上传选项 + + + + + templates/content/_taxonomies.html.twig:27 + + + Order + 排序 + + + + + src/Form/ResetPasswordRequestFormType.php:32 + + + placeholder.email + 您的电子邮箱 + + + + + templates/_partials/fields/file.html.twig:24 + templates/_partials/fields/filelist.html.twig:27 + + + modal.title.file_field + 选择文件 + + + + + templates/_partials/fields/image.html.twig:26 + templates/_partials/fields/imagelist.html.twig:28 + + + modal.title.image_field + 选择图片 + + + + + templates/_partials/fields/image.html.twig:27 + templates/_partials/fields/imagelist.html.twig:29 + + + modal.title.upload_from_url + 从 URL 上传 + + + + + templates/_base/layout.html.twig:142 + templates/_base/layout.html.twig:149 + + + modal.text.loading + 加载中... + + + + + templates/_base/layout.html.twig:154 + templates/_partials/fields/file.html.twig:25 + templates/_partials/fields/filelist.html.twig:28 + templates/_partials/fields/image.html.twig:28 + templates/_partials/fields/imagelist.html.twig:30 + + + modal.button_save + 保存 + + + + + templates/_base/layout.html.twig:153 + templates/_partials/fields/file.html.twig:26 + templates/_partials/fields/filelist.html.twig:29 + templates/_partials/fields/image.html.twig:29 + templates/_partials/fields/imagelist.html.twig:31 + + + modal.button_deny + 关闭 + + diff --git a/translations/security.cs.xlf b/translations/security.cs.xlf index 5ca5a2c1b..dc8350559 100644 --- a/translations/security.cs.xlf +++ b/translations/security.cs.xlf @@ -2,106 +2,186 @@ - + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + + An authentication exception occurred. Došlo k chybě při autentizaci. + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + Authentication credentials could not be found. Ověřovací údaje se nepodařilo najít. + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + Authentication request could not be processed due to a system problem. Požadavek na ověření nebylo možné zpracovat z důvodu systémového problému. + + tests/cypress/integration/login.spec.js:7 + Invalid credentials. Nesprávné přístupové údaje. + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + Cookie has already been used by someone else. Cookie již použil někdo jiný. + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + Not privileged to request the resource. Nemáte oprávnění k požadavku na tento zdroj. + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + Invalid CSRF token. Neplatný CSRF token. + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + No authentication provider found to support the authentication token. Nebyl nalezen žádný zprostředkovatel ověřování, který by podporoval ověřovací token. + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + No session available, it either timed out or cookies are not enabled. Relace není k dispozici, buď vypršela, nebo nejsou aktivovány soubory cookie. + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + No token could be found. Nebyl nalezen žádný token. + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + Username could not be found. Uživatelské jméno nebylo nalezeno. + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + Account has expired. Platnost účtu vypršela. + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + Credentials have expired. Platnost přístupových údajů vypršela. + + vendor/symfony/security-core/Exception/DisabledException.php:24 + Account is disabled. Účet je deaktivován. + + vendor/symfony/security-core/Exception/LockedException.php:24 + Account is locked. Účet je zablokován. - + + src/Exception/DisabledUserLoginAttemptException.php:16 + + User is disabled. - Uživatel je zakázán. + Uživatel je deaktivován. + + src/Security/AuthenticationEntryPointRedirector.php:26 + You have to login in order to access this page. Pro přístup k této stránce se musíte přihlásit. + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Příliš mnoho nepovedených pokusů přihlášení. Zkuste to prosím později. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Příliš mnoho neúspěšných pokusů o přihlášení, zkuste to prosím znovu za %minutes% minutu. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Příliš mnoho neúspěšných pokusů o přihlášení, zkuste to prosím znovu za %minutes% minutu.|Příliš mnoho neúspěšných pokusů o přihlášení, zkuste to prosím znovu za %minutes% minuty.|Příliš mnoho neúspěšných pokusů o přihlášení, zkuste to prosím znovu za %minutes% minut. + + diff --git a/translations/security.de.xlf b/translations/security.de.xlf index 99ed670f8..bfd07ce1e 100644 --- a/translations/security.de.xlf +++ b/translations/security.de.xlf @@ -1,18 +1,9 @@ - - - bolt-core/src/Security/AuthenticationEntryPointRedirector.php:27 - - - You have to login in order to access this page. - Sie müssen sich anmelden, um auf diese Seite zugreifen zu können. - - - obsolete + vendor/symfony/security-core/Exception/AuthenticationException.php:95 An authentication exception occurred. @@ -21,7 +12,7 @@ - obsolete + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 Authentication credentials could not be found. @@ -30,7 +21,7 @@ - obsolete + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 Authentication request could not be processed due to a system problem. @@ -39,7 +30,7 @@ - obsolete + tests/cypress/integration/login.spec.js:7 Invalid credentials. @@ -48,7 +39,7 @@ - obsolete + vendor/symfony/security-core/Exception/CookieTheftException.php:25 Cookie has already been used by someone else. @@ -57,7 +48,7 @@ - obsolete + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 Not privileged to request the resource. @@ -66,7 +57,9 @@ - obsolete + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 Invalid CSRF token. @@ -75,7 +68,7 @@ - obsolete + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 No authentication provider found to support the authentication token. @@ -84,7 +77,7 @@ - obsolete + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 No session available, it either timed out or cookies are not enabled. @@ -93,7 +86,7 @@ - obsolete + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 No token could be found. @@ -102,7 +95,7 @@ - obsolete + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 Username could not be found. @@ -111,7 +104,7 @@ - obsolete + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 Account has expired. @@ -120,7 +113,7 @@ - obsolete + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 Credentials have expired. @@ -129,7 +122,7 @@ - obsolete + vendor/symfony/security-core/Exception/DisabledException.php:24 Account is disabled. @@ -138,43 +131,52 @@ - obsolete + vendor/symfony/security-core/Exception/LockedException.php:24 Account is locked. Der Account ist gesperrt. - + - obsolete + src/Exception/DisabledUserLoginAttemptException.php:16 - Too many failed login attempts, please try again later. - Zu viele fehlgeschlagene Anmeldeversuche, bitte versuchen Sie es später noch einmal. + User is disabled. + Benutzer ist deaktiviert. - + - obsolete + src/Security/AuthenticationEntryPointRedirector.php:26 - Invalid or expired login link. - Ungültiger oder abgelaufener Anmelde-Link. + You have to login in order to access this page. + Sie müssen sich anmelden, um auf diese Seite zugreifen zu können. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Zu viele fehlgeschlagene Anmeldeversuche, bitte versuchen Sie es später noch einmal. - obsolete + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 Too many failed login attempts, please try again in %minutes% minute. - Zu viele fehlgeschlagene Anmeldeversuche, bitte versuchen Sie es in einer Minute noch einmal. + Zu viele fehlgeschlagene Anmeldeversuche, bitte versuchen Sie es in %minutes% Minute noch einmal. - obsolete + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 Too many failed login attempts, please try again in %minutes% minutes. diff --git a/translations/security.el.xlf b/translations/security.el.xlf index 9518f3c45..3714a21f4 100644 --- a/translations/security.el.xlf +++ b/translations/security.el.xlf @@ -1,101 +1,187 @@ - - + + + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + An authentication exception occurred. Παρουσιάστηκε σφάλμα ελέγχου ταυτότητας. + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + Authentication credentials could not be found. Δεν ήταν δυνατή η εύρεση διαπιστευτηρίων ελέγχου ταυτότητας. + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + Authentication request could not be processed due to a system problem. Δεν ήταν δυνατή η επεξεργασία του αιτήματος ελέγχου ταυτότητας λόγω προβλήματος συστήματος. + + tests/cypress/integration/login.spec.js:7 + Invalid credentials. Ακυρα διαπιστευτήρια. + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + Cookie has already been used by someone else. Το cookie έχει ήδη χρησιμοποιηθεί από κάποιον άλλο. + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + Not privileged to request the resource. Δεν έχεις δικαίωμα να ζητήσεις τον πόρο. + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + Invalid CSRF token. Άκυρο CSRF token. + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + No authentication provider found to support the authentication token. Δεν βρέθηκε πάροχος ελέγχου ταυτότητας που να υποστηρίζει το διακριτικό ελέγχου ταυτότητας. + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + No session available, it either timed out or cookies are not enabled. Δεν υπάρχει διαθέσιμο session, έχει λήξει ή δεν ενεργοποιούνται τα cookie. + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + No token could be found. Δεν βρέθηκε token. + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + Username could not be found. Δεν ήταν δυνατή η εύρεση του ονόματος χρήστη. + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + Account has expired. Ο λογαριασμός έχει λήξει. + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + Credentials have expired. Τα διαπιστευτήρια έχουν λήξει. + + vendor/symfony/security-core/Exception/DisabledException.php:24 + Account is disabled. Ο λογαριασμός είναι απενεργοποιημένος. + + vendor/symfony/security-core/Exception/LockedException.php:24 + Account is locked. Ο λογαριασμός είναι κλειδωμένος. + + src/Exception/DisabledUserLoginAttemptException.php:16 + User is disabled. Ο χρήστης είναι απενεργοποιημένος. + + + src/Security/AuthenticationEntryPointRedirector.php:26 + + + You have to login in order to access this page. + Πρέπει να συνδεθείτε για να αποκτήσετε πρόσβαση σε αυτή τη σελίδα. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Πολλαπλές αποτυχημένες απόπειρες σύνδεσης, παρακαλούμε ξαναδοκιμάστε αργότερα. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Πολλαπλές αποτυχημένες απόπειρες σύνδεσης, παρακαλούμε ξαναδοκιμάστε σε %minutes% λεπτό. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Πολλές αποτυχημένες προσπάθειες σύνδεσης, δοκιμάστε ξανά σε %minutes% λεπτά. + + diff --git a/translations/security.en.xlf b/translations/security.en.xlf index f8ae8965c..98bc5ee8f 100644 --- a/translations/security.en.xlf +++ b/translations/security.en.xlf @@ -2,106 +2,186 @@ + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + An authentication exception occurred. An authentication exception occurred. + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + Authentication credentials could not be found. Authentication credentials could not be found. + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + Authentication request could not be processed due to a system problem. Authentication request could not be processed due to a system problem. + + tests/cypress/integration/login.spec.js:7 + Invalid credentials. Invalid credentials. + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + Cookie has already been used by someone else. Cookie has already been used by someone else. + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + Not privileged to request the resource. Not privileged to request the resource. + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + Invalid CSRF token. Invalid CSRF token. + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + No authentication provider found to support the authentication token. No authentication provider found to support the authentication token. + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + No session available, it either timed out or cookies are not enabled. No session available, it either timed out or cookies are not enabled. + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + No token could be found. No token could be found. + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + Username could not be found. Username could not be found. + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + Account has expired. Account has expired. + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + Credentials have expired. Credentials have expired. + + vendor/symfony/security-core/Exception/DisabledException.php:24 + Account is disabled. Account is disabled. + + vendor/symfony/security-core/Exception/LockedException.php:24 + Account is locked. Account is locked. + + src/Exception/DisabledUserLoginAttemptException.php:16 + User is disabled. User is disabled. + + src/Security/AuthenticationEntryPointRedirector.php:26 + You have to login in order to access this page. You have to login in order to access this page. + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Too many failed login attempts, please try again later. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Too many failed login attempts, please try again in %minutes% minute. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Too many failed login attempts, please try again in %minutes% minutes. + + diff --git a/translations/security.es.xlf b/translations/security.es.xlf index 8fbe8da9a..aac0a8530 100644 --- a/translations/security.es.xlf +++ b/translations/security.es.xlf @@ -2,94 +2,186 @@ + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + An authentication exception occurred. Ocurrió un error de autenticación. + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + Authentication credentials could not be found. No se encontraron las credenciales de autenticación. + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + Authentication request could not be processed due to a system problem. La solicitud de autenticación no se pudo procesar debido a un problema del sistema. + + tests/cypress/integration/login.spec.js:7 + Invalid credentials. Credenciales no válidas. + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + Cookie has already been used by someone else. La cookie ya ha sido usada por otra persona. + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + Not privileged to request the resource. No tiene privilegios para solicitar el recurso. + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + Invalid CSRF token. Token CSRF no válido. + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + No authentication provider found to support the authentication token. No se encontró un proveedor de autenticación que soporte el token de autenticación. + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + No session available, it either timed out or cookies are not enabled. No hay ninguna sesión disponible, ha expirado o las cookies no están habilitados. + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + No token could be found. No se encontró ningún token. + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + Username could not be found. No se encontró el nombre de usuario. + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + Account has expired. La cuenta ha expirado. + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + Credentials have expired. Las credenciales han expirado. + + vendor/symfony/security-core/Exception/DisabledException.php:24 + Account is disabled. La cuenta está deshabilitada. + + vendor/symfony/security-core/Exception/LockedException.php:24 + Account is locked. La cuenta está bloqueada. + + + src/Exception/DisabledUserLoginAttemptException.php:16 + + + User is disabled. + El usuario está deshabilitado. + + + + + src/Security/AuthenticationEntryPointRedirector.php:26 + + + You have to login in order to access this page. + Debe iniciar sesión para acceder a esta página. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Demasiados intentos fallidos de inicio de sesión, inténtelo de nuevo más tarde. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Demasiados intentos fallidos de inicio de sesión, inténtelo de nuevo en %minutes% minuto. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Demasiados intentos fallidos de inicio de sesión, inténtelo de nuevo en %minutes% minutos. + + diff --git a/translations/security.fr.xlf b/translations/security.fr.xlf index 134b5d63b..06969db73 100644 --- a/translations/security.fr.xlf +++ b/translations/security.fr.xlf @@ -2,100 +2,186 @@ + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + An authentication exception occurred. Une exception dans l'authentification s'est produite. + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + Authentication credentials could not be found. Les informations d'authentification n'ont pas été trouvé + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + Authentication request could not be processed due to a system problem. La demande d'authentification n'a pas pu être traitée en raison d'un problème système. + + tests/cypress/integration/login.spec.js:7 + Invalid credentials. Identifiants invalides + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + Cookie has already been used by someone else. Le cookie a déjà été utilisé par quelqu'un d'autre. + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + Not privileged to request the resource. Vous n'avez pas les privilèges nécessaires pour demander cette ressource. + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + Invalid CSRF token. Jeton CSRF non valide. + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + No authentication provider found to support the authentication token. Aucun fournisseur d'authentification trouvé pour prendre en charge le jeton d'authentification. + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + No session available, it either timed out or cookies are not enabled. Aucune session disponible, elle a expiré ou les cookies ne sont pas activés. + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + No token could be found. Aucun jeton n'a pu être trouvé. + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + Username could not be found. Le nom d'utilisateur est introuvable. + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + Account has expired. Le compte a expiré. + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + Credentials have expired. Les informations d'identification ont expiré. + + vendor/symfony/security-core/Exception/DisabledException.php:24 + Account is disabled. Le compte est désactivé. + + vendor/symfony/security-core/Exception/LockedException.php:24 + Account is locked. Le compte est verrouillé. + + src/Exception/DisabledUserLoginAttemptException.php:16 + User is disabled. L'utilisateur est désactivé. + + + src/Security/AuthenticationEntryPointRedirector.php:26 + + + You have to login in order to access this page. + Vous devez vous connecter pour accéder à cette page. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Plusieurs tentatives de connexion ont échoué, veuillez réessayer plus tard. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Plusieurs tentatives de connexion ont échoué, veuillez réessayer dans %minutes% minute. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Trop de tentatives de connexion échouées, veuillez réessayer dans %minutes% minutes. + + diff --git a/translations/security.hu.xlf b/translations/security.hu.xlf index c78792152..83337de73 100644 --- a/translations/security.hu.xlf +++ b/translations/security.hu.xlf @@ -1,70 +1,187 @@ - - -
- -
- - + + + + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + + An authentication exception occurred. Hitelesítési hiba lépett fel. - - +
+
+ + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + + Authentication credentials could not be found. Nem találhatók hitelesítési információk. - - + + + + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + + Authentication request could not be processed due to a system problem. A hitelesítési kérést rendszerhiba miatt nem lehet feldolgozni. - - + + + + + tests/cypress/integration/login.spec.js:7 + + Invalid credentials. Érvénytelen hitelesítési információk. - - + + + + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + + Cookie has already been used by someone else. Ezt a sütit valaki más már felhasználta. - - + + + + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + + Not privileged to request the resource. Nem rendelkezik az erőforrás eléréséhez szükséges jogosultsággal. - - + + + + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + + Invalid CSRF token. Érvénytelen CSRF token. - - + + + + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + + No authentication provider found to support the authentication token. Nem található a hitelesítési tokent támogató hitelesítési szolgáltatás. - - + + + + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + + No session available, it either timed out or cookies are not enabled. Munkamenet nem áll rendelkezésre, túllépte az időkeretet vagy a sütik le vannak tiltva. - - + + + + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + + No token could be found. Nem található token. - - + + + + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + + Username could not be found. A felhasználónév nem található. - - + + + + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + + Account has expired. A fiók lejárt. - - + + + + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + + Credentials have expired. A hitelesítési információk lejártak. - - + + + + + vendor/symfony/security-core/Exception/DisabledException.php:24 + + Account is disabled. Felfüggesztett fiók. - - + + + + + vendor/symfony/security-core/Exception/LockedException.php:24 + + Account is locked. Zárolt fiók. - - + + + + + src/Exception/DisabledUserLoginAttemptException.php:16 + + + User is disabled. + A felhasználó le van tiltva. + + + + + src/Security/AuthenticationEntryPointRedirector.php:26 + + + You have to login in order to access this page. + Az oldal megtekintéséhez be kell jelentkeznie. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Túl sok sikertelen bejelentkezési kísérlet, kérjük próbálja újra később. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Túl sok sikertelen bejelentkezési kísérlet, kérjük próbálja újra %minutes% perc múlva. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Túl sok sikertelen bejelentkezési kísérlet, kérjük, próbálja újra %minutes% perc múlva. + +
diff --git a/translations/security.nl.xlf b/translations/security.nl.xlf index 741f2ddba..fd71b868e 100644 --- a/translations/security.nl.xlf +++ b/translations/security.nl.xlf @@ -1,95 +1,187 @@ - + + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + An authentication exception occurred. Er heeft zich een authenticatieprobleem voorgedaan. + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + Authentication credentials could not be found. Authenticatiegegevens konden niet worden gevonden. + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + Authentication request could not be processed due to a system problem. Authenticatieaanvraag kon niet worden verwerkt door een technisch probleem. + + tests/cypress/integration/login.spec.js:7 + Invalid credentials. Ongeldige inloggegevens. + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + Cookie has already been used by someone else. Cookie is al door een ander persoon gebruikt. + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + Not privileged to request the resource. Onvoldoende rechten om de aanvraag te verwerken. + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + Invalid CSRF token. CSRF-code is ongeldig. + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + No authentication provider found to support the authentication token. Geen authenticatieprovider gevonden die de authenticatietoken ondersteunt. + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + No session available, it either timed out or cookies are not enabled. Geen sessie beschikbaar, mogelijk is deze verlopen of cookies zijn uitgeschakeld. + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + No token could be found. Er kon geen authenticatietoken worden gevonden. + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + Username could not be found. Gebruikersnaam kon niet worden gevonden. + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + Account has expired. Account is verlopen. + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + Credentials have expired. Authenticatiegegevens zijn verlopen. + + vendor/symfony/security-core/Exception/DisabledException.php:24 + Account is disabled. Account is gedeactiveerd. + + vendor/symfony/security-core/Exception/LockedException.php:24 + Account is locked. Account is geblokkeerd. + + + src/Exception/DisabledUserLoginAttemptException.php:16 + + + User is disabled. + Gebruiker is uitgeschakeld. + + + + + src/Security/AuthenticationEntryPointRedirector.php:26 + + + You have to login in order to access this page. + U moet inloggen om deze pagina te openen. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Te veel onjuiste inlogpogingen, probeer het later nogmaals. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Te veel onjuiste inlogpogingen, probeer het opnieuw over %minutes% minuut. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Te veel onjuiste inlogpogingen, probeer het opnieuw over %minutes% minuten. + + diff --git a/translations/security.ru.xlf b/translations/security.ru.xlf index 3cf2db73b..d9011819c 100644 --- a/translations/security.ru.xlf +++ b/translations/security.ru.xlf @@ -1,107 +1,187 @@ - + + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + An authentication exception occurred. Произошла ошибка аутентификации. + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + Authentication credentials could not be found. Не удалось найти учётные данные для аутентификации. + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + Authentication request could not be processed due to a system problem. Запрос аутентификации не может быть обработан из-за системной проблемы. + + tests/cypress/integration/login.spec.js:7 + Invalid credentials. Неверные учётные данные. + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + Cookie has already been used by someone else. Cookie уже использовался кем-то другим. + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + Not privileged to request the resource. Нет прав для запроса ресурса. + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + Invalid CSRF token. Недействительный CSRF токен. + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + No authentication provider found to support the authentication token. Не найден провайдер аутентификации, поддерживающий токен аутентификации. + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + No session available, it either timed out or cookies are not enabled. Сеанс недоступен: либо время ожидания истекло, либо файлы cookie не включены. + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + No token could be found. Не удалось найти токен. + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + Username could not be found. Имя пользователя не найдено. + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + Account has expired. Срок действия учётной записи истёк. + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + Credentials have expired. Срок действия учётных данных истёк. + + vendor/symfony/security-core/Exception/DisabledException.php:24 + Account is disabled. Аккаунт отключен. + + vendor/symfony/security-core/Exception/LockedException.php:24 + Account is locked. Аккаунт заблокирован. + + src/Exception/DisabledUserLoginAttemptException.php:16 + User is disabled. Пользователь отключён. - + + + src/Security/AuthenticationEntryPointRedirector.php:26 + You have to login in order to access this page. Для доступа к этой странице вам необходимо войти в систему. + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Слишком много неудачных попыток входа, пожалуйста, попробуйте позже. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Слишком много неудачных попыток входа, повторите попытку через %minutes% минуту. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Слишком много неудачных попыток входа, повторите попытку через %minutes% минуту.|Слишком много неудачных попыток входа, повторите попытку через %minutes% минуты.|Слишком много неудачных попыток входа, повторите попытку через %minutes% минут. + + - + diff --git a/translations/security.tr.xlf b/translations/security.tr.xlf index 0b01bd786..87c1340f4 100644 --- a/translations/security.tr.xlf +++ b/translations/security.tr.xlf @@ -1,101 +1,187 @@ - - + + + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + An authentication exception occurred. Bir kimlik doğrulama istisnası oluştu. + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + Authentication credentials could not be found. Kimlik doğrulama kimlik bilgileri bulunamadı. + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + Authentication request could not be processed due to a system problem. Bir sistem sorunu nedeniyle kimlik doğrulama isteği işlenemedi. + + tests/cypress/integration/login.spec.js:7 + Invalid credentials. Geçersiz kimlik bilgileri. + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + Cookie has already been used by someone else. Çerez zaten başkası tarafından kullanıldı. + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + Not privileged to request the resource. Kaynağı talep etme ayrıcalığına sahip değil. + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + Invalid CSRF token. Geçersiz CSRF jetonu. + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + No authentication provider found to support the authentication token. Kimlik doğrulama jetonunu destekleyen hiçbir kimlik doğrulama sağlayıcısı bulunamadı. + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + No session available, it either timed out or cookies are not enabled. Kullanılabilir oturum yok, ya zaman aşımına uğradı ya da tanımlama bilgileri etkinleştirilmedi. + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + No token could be found. Belirteç bulunamadı. + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + Username could not be found. Kullanıcı adı bulunamadı. + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + Account has expired. Hesabın süresi doldu. + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + Credentials have expired. Kimlik bilgilerinin süresi doldu. + + vendor/symfony/security-core/Exception/DisabledException.php:24 + Account is disabled. Hesap devredışı. + + vendor/symfony/security-core/Exception/LockedException.php:24 + Account is locked. Hesap kilitlendi. + + src/Exception/DisabledUserLoginAttemptException.php:16 + User is disabled. Kullanıcı devre dışı bırakıldı. + + + src/Security/AuthenticationEntryPointRedirector.php:26 + + + You have to login in order to access this page. + Bu sayfaya erişmek için giriş yapmalısınız. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + Çok fazla başarısız giriş denemesi, lütfen daha sonra tekrar deneyin. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + Çok fazla başarısız giriş denemesi, lütfen %minutes% dakika sonra tekrar deneyin. + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + Çok fazla başarısız giriş denemesi, lütfen %minutes% dakika sonra tekrar deneyin. + + diff --git a/translations/security.zh_CN.xlf b/translations/security.zh_CN.xlf index 6cf5a7daf..63cb50420 100644 --- a/translations/security.zh_CN.xlf +++ b/translations/security.zh_CN.xlf @@ -1,70 +1,187 @@ - - -
- -
- - + + + + + vendor/symfony/security-core/Exception/AuthenticationException.php:95 + + An authentication exception occurred. 身份验证发生异常。 - - + +
+ + + vendor/symfony/security-core/Exception/AuthenticationCredentialsNotFoundException.php:25 + + Authentication credentials could not be found. 没有找到身份验证的凭证。 - - + + + + + vendor/symfony/security-core/Exception/AuthenticationServiceException.php:24 + + Authentication request could not be processed due to a system problem. 由于系统故障,身份验证的请求无法被处理。 - - + + + + + tests/cypress/integration/login.spec.js:7 + + Invalid credentials. 无效的凭证。 - - + + + + + vendor/symfony/security-core/Exception/CookieTheftException.php:25 + + Cookie has already been used by someone else. Cookie 已经被其他人使用。 - - + + + + + vendor/symfony/security-core/Exception/InsufficientAuthenticationException.php:26 + + Not privileged to request the resource. 没有权限请求此资源。 - - + + + + + vendor/symfony/security-core/Exception/InvalidCsrfTokenException.php:24 + vendor/symfony/security-http/EventListener/CsrfProtectionListener.php:51 + vendor/symfony/security-http/Firewall/LogoutListener.php:79 + + Invalid CSRF token. 无效的 CSRF token 。 - - + + + + + vendor/symfony/security-core/Exception/ProviderNotFoundException.php:25 + + No authentication provider found to support the authentication token. 没有找到支持此 token 的身份验证服务提供方。 - - + + + + + vendor/symfony/security-core/Exception/SessionUnavailableException.php:30 + + No session available, it either timed out or cookies are not enabled. Session 不可用。会话超时或没有启用 cookies 。 - - + + + + + vendor/symfony/security-core/Exception/TokenNotFoundException.php:24 + + No token could be found. 找不到 token 。 - - + + + + + vendor/symfony/security-core/Exception/UserNotFoundException.php:26 + + Username could not be found. 找不到用户名。 - - + + + + + vendor/symfony/security-core/Exception/AccountExpiredException.php:24 + + Account has expired. 帐号已过期。 - - + + + + + vendor/symfony/security-core/Exception/CredentialsExpiredException.php:24 + + Credentials have expired. 凭证已过期。 - - + + + + + vendor/symfony/security-core/Exception/DisabledException.php:24 + + Account is disabled. 帐号已被禁用。 - - + + + + + vendor/symfony/security-core/Exception/LockedException.php:24 + + Account is locked. 帐号已被锁定。 - - + + + + + src/Exception/DisabledUserLoginAttemptException.php:16 + + + User is disabled. + 用户已被禁用。 + + + + + src/Security/AuthenticationEntryPointRedirector.php:26 + + + You have to login in order to access this page. + 您必须登录才能访问此页面。 + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again later. + 登入失败的次数过多,请稍后再试。 + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minute. + 登入失败的次数过多,请在%minutes%分钟后再试。 + + + + + ~vendor/symfony/security-core/Exception/TooManyLoginAttemptsAuthenticationException.php:39 + + + Too many failed login attempts, please try again in %minutes% minutes. + 登录尝试失败次数过多,请在 %minutes% 分钟后重试。 + + diff --git a/translations/validators.cs.xlf b/translations/validators.cs.xlf index c68f3e93f..134f10b35 100644 --- a/translations/validators.cs.xlf +++ b/translations/validators.cs.xlf @@ -2,162 +2,194 @@ + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. Tato hodnota by měla být false. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. Tato hodnota by měla být true. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. Tato hodnota by měla být typu {{ type }}. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. Tato hodnota by měla být prázdná. + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. Vámi vybraná hodnota není platnou volbou. - - - 0d999f2 - Musíte vybrat alespoň {{ limit }} možnost.|Musíte vybrat alespoň {{ limit }} možností. - - - - - 0824486 - Musíte vybrat nejvýše {{ limit }} možnost.|Musíte vybrat nejvýše {{ limit }} možností. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. Jedna nebo více zadaných hodnot je neplatná. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. Toto pole se neočekávalo. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. Toto pole chybí. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. Tato hodnota neodpovídá platnému datu. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. Tato hodnota neodpovídá platnému datu a času. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. Tato hodnota není platnou e-mailovou adresou. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. Soubor se nepodařilo najít. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. Soubor není čitelný. - - - 1ad411a - Soubor je příliš velký ({{ size }} {{ suffix }}). Maximální povolená velikost je {{ limit }} {{ suffix }}. - - - - - 30a318d - Typ mime souboru je neplatný ({{ type }}). Povolené typy mime jsou {{ types }}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. Tato hodnota by měla být {{ limit }} nebo nižší. - - - 0e0c1e1 - Tato hodnota je příliš dlouhá. Měla by mít maximálně {{ limit }} znak nebo méně.|Tato hodnota je příliš dlouhá. Měla by mít maximálně {{ limit }} znaků nebo méně. - - + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. Tato hodnota by měla být {{ limit }} nebo vyšší. - - - 5188ff9 - Tato hodnota je příliš krátká. Měla by mít minimálně {{ limit }} znak nebo více.|Tato hodnota je příliš krátká. Měla by mít minimálně {{ limit }} znaků nebo více. - - + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. Tato hodnota by neměla být prázdná. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. Tato hodnota by neměla být null. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. Tato hodnota by měla být null. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. Tato hodnota není platná. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. Tato hodnota neodpovídá platné časové specifikaci. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. Tato hodnota není platnou adresou URL. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. Soubor je příliš velký. Maximální povolená velikost je {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. Soubor je příliš velký. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. Soubor se nepodařilo nahrát. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. Tato hodnota by měla být platné číslo. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. Tento soubor není platným obrázkem. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. Toto není platná IP adresa. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. Tato hodnota není platným jazykem. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. Tato hodnota neodpovídá platnému národnímu prostředí. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. Tato hodnota není platnou zemí. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. Tato hodnota je již použita. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. Velikost obrázku se nepodařilo zjistit. - - - 266051e - Šířka obrázku je příliš velká ({{ width }}px). Povolená maximální šířka je {{ max_width }}px. - - - - - c1c23f9 - Šířka obrázku je příliš malá ({{ width }}px). Minimální očekávaná šířka je {{ min_width }}px. - - - - - 9a128f7 - Výška obrázku je příliš velká ({{ height }}px). Povolená maximální výška je {{ max_height }}px. - - - - - 8a4cd70 - Výška obrázku je příliš malá ({{ height }}px). Minimální očekávaná výška je {{ min_height }}px. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. Tato hodnota by měla odpovídat aktuálnímu uživatelskému heslu. - - - fd389d6 - Tato hodnota by měla mít přesně {{ limit }} znak.|Tato hodnota by měla mít přesně {{ limit }} znaků. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. Soubor byl nahrán pouze částečně. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. Nebyl nahrán žádný soubor. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. V souboru php.ini nebyla nakonfigurována žádná dočasná složka nebo nakonfigurovaná složka neexistuje. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. Nelze zapsat dočasný soubor na disk. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. Nahrávání se nezdařilo kvůli PHP rozšíření. - - - b54c218 - Tato kolekce by měla obsahovat alespoň {{ limit }} prvek nebo více.|Tato kolekce by měla obsahovat alespoň {{ limit }} prvků nebo více. - - - - - 949632c - Tato kolekce by měla obsahovat maximálně {{ limit }} prvek.|Tato kolekce by měla obsahovat maximálně {{ limit }} prvků nebo méně. - - - - - e0582dc - Tato kolekce by měla obsahovat právě {{ limit }} prvek.|Tato kolekce by měla obsahovat právě {{ limit }} prvků. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Neplatné číslo karty. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Nepodporovaný typ karty nebo neplatné číslo karty. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). Toto není platné mezinárodní číslo bankovního účtu (IBAN). + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. Tato hodnota není platným ISBN-10. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. Tato hodnota není platným ISBN-13. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. Tato hodnota není platným číslem ISBN-10 ani platným číslem ISBN-13. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. Tato hodnota není platným ISSN. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. Tato hodnota není platnou měnou. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. Tato hodnota by se měla rovnat {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. Tato hodnota by měla být větší než {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. Tato hodnota by měla být větší nebo rovna {{ compared_value }}. - - - 9670078 - Tato hodnota by měla být shodná s {{ compared_value_type }} {{ compared_value }}. - - + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. Tato hodnota by měla být menší než {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. Tato hodnota by měla být menší nebo rovna {{ compared_value }}. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. Tato hodnota by neměla být rovna {{ compared_value }}. - - - 0eedf91 - Tato hodnota by neměla být totožná s {{ compared_value_type }} {{ compared_value }}. - - - - - 9c3ad0f - Poměr obrázku je příliš velký ({{ ratio }}). Maximálně povolený poměr je {{ max_ratio }}. - - - - - 4376d45 - Poměr obrázku je příliš malý ({{ ratio }}). Minimální očekávaný poměr je {{ min_ratio }}. - - + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. Obrázek je čtvercový ({{ width }}x{{ height }}px). Čtvercové obrázky nejsou povoleny. - - - 1dc128a - Obrázek je orientován na šířku ({{ width }}x{{ height }}px). Obrázky orientované na šířku nejsou povoleny. - - - - - 9e27714 - Obrázek je orientován na výšku ({{ width }}x{{ height }}px). Obrázky orientované na výšku nejsou povoleny. - - + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. Prázdný soubor není povolen. @@ -458,216 +508,208 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. Tato hodnota neodpovídá očekávané {{ charset }} znakové sadě. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). Toto není platný identifikační kód podniku (BIC). + + assets/js/app/ajax-save.js:37 + Error Chyba + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. Toto není platný identifikátor UUID. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. - Tato hodnota by měla být násobkem hodnoty{{ compared_value }}. + Tato hodnota by měla být násobkem hodnoty {{ compared_value }}. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. Tento obchodní identifikační kód (BIC) není spojen s IBAN {{ iban }}. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. Tato hodnota by měla být platný JSON. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. - Tato kolekce by měla obsahovat pouze unikátní prvky + Tato kolekce by měla obsahovat pouze unikátní prvky. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. Tato hodnota by měla být kladná. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. Tato hodnota by měla být buď kladná, nebo nula. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. Tato hodnota by měla být záporná. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. Tato hodnota by měla být buď záporná, nebo nula. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. Tato hodnota není platným časovým pásmem. - - - 7e27e92 - Toto heslo uniklo při úniku dat a nesmí být použito. Použijte prosím jiné heslo. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. Tato hodnota by měla být mezi {{ min }} a {{ max }}. + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. Tento formulář by neměl obsahovat žádná další pole. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. Nahraný soubor je příliš velký. Zkuste prosím nahrát menší soubor. - - The CSRF token is invalid. Please try to resubmit the form. - Token CSRF je neplatný. Zkuste prosím formulář odeslat znovu. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - Uveďte prosím shrnutí svého příspěvku! - - - - - obsolete - - - post.blank_content - Váš příspěvek by měl mít nějaký obsah! - - - - - obsolete - - - post.too_short_content - Obsah příspěvku je příliš krátký (minimálně {{ limit }} znaků) - - - - - obsolete - - - post.too_many_tags - Příliš mnoho značek (přidejte {{ limit }} značek nebo méně) - - - - - obsolete - - - comment.blank - Nenechávejte prosím svůj komentář prázdný! - - - - - obsolete - - - comment.too_short - Komentář je příliš krátký (minimálně {{ limit }} znaků) - - - - - obsolete - - - comment.too_long - Komentář je příliš dlouhý ({{ limit }} maximálně znaků) + The CSRF token is invalid. Please try to resubmit the form. + Token CSRF je neplatný. Zkuste prosím formulář odeslat znovu. - + - obsolete + src/Entity/User.php:24 - - comment.is_spam - Obsah tohoto komentáře je považován za spam. - - - user.duplicate_email - Uživatel s {{ value }} e-mailem již existuje. + Uživatel s e-mailem {{ value }} již existuje. + + src/Entity/User.php:25 + user.duplicate_username Uživatel s uživatelským jménem {{ value }} již existuje. + + src/Entity/User.php:57 + user.not_valid_password Neplatné heslo. Heslo by mělo obsahovat alespoň 6 znaků. + + src/Entity/User.php:49 + user.not_valid_email Neplatný e-mail + + src/Entity/User.php:43 + user.username_invalid_characters Uživatelské jméno musí obsahovat pouze malá písmena latinky, čísla a podtržítka. + + src/Entity/User.php:35 + src/Entity/User.php:36 + user.not_valid_display_name Nesprávné zobrazované jméno diff --git a/translations/validators.de.xlf b/translations/validators.de.xlf index eeb62b0f9..a53eae516 100644 --- a/translations/validators.de.xlf +++ b/translations/validators.de.xlf @@ -1,70 +1,9 @@ - - - bolt-core/src/Entity/User.php:0 - new - - - user.duplicate_email - Ein Benutzer mit der E-Mail {{ value }} existiert bereits - - - - - bolt-core/src/Entity/User.php:0 - new - - - user.duplicate_username - Ein Benutzer mit Benutzername {{ value }} existiert bereits - - - - - bolt-core/src/Entity/User.php:0 - bolt-core/src/Entity/User.php:0 - new - - - user.not_valid_display_name - Ungültiger Anzeigename - - - - - bolt-core/src/Entity/User.php:0 - new - - - user.username_invalid_characters - Der Benutzername darf nur lateinische Kleinbuchstaben, Zahlen und Unterstriche enthalten. - - - - - bolt-core/src/Entity/User.php:0 - new - - - user.not_valid_email - Ungültige E-Mail - - - - - bolt-core/src/Entity/User.php:0 - new - - - user.not_valid_password - Ungültiges Passwort. Das Passwort sollte mindestens 6 Zeichen enthalten. - - - obsolete + vendor/symfony/validator/Constraints/IsFalse.php:36 This value should be false. @@ -73,7 +12,7 @@ - obsolete + vendor/symfony/validator/Constraints/IsTrue.php:36 This value should be true. @@ -82,7 +21,8 @@ - obsolete + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 This value should be of type {{ type }}. @@ -91,7 +31,7 @@ - obsolete + vendor/symfony/validator/Constraints/Blank.php:36 This value should be blank. @@ -100,34 +40,16 @@ - obsolete + vendor/symfony/validator/Constraints/Choice.php:47 The value you selected is not a valid choice. Sie haben einen ungültigen Wert ausgewählt. - - - obsolete - - - You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices. - Sie müssen mindestens {{ limit }} Möglichkeit wählen.|Sie müssen mindestens {{ limit }} Möglichkeiten wählen. - - - - - obsolete - - - You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices. - Sie dürfen höchstens {{ limit }} Möglichkeit wählen.|Sie dürfen höchstens {{ limit }} Möglichkeiten wählen. - - - obsolete + vendor/symfony/validator/Constraints/Choice.php:48 One or more of the given values is invalid. @@ -136,7 +58,7 @@ - obsolete + vendor/symfony/validator/Constraints/Collection.php:42 This field was not expected. @@ -145,7 +67,7 @@ - obsolete + vendor/symfony/validator/Constraints/Collection.php:43 This field is missing. @@ -154,7 +76,7 @@ - obsolete + vendor/symfony/validator/Constraints/Date.php:38 This value is not a valid date. @@ -163,7 +85,8 @@ - obsolete + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 This value is not a valid datetime. @@ -172,7 +95,7 @@ - obsolete + vendor/symfony/validator/Constraints/Email.php:54 This value is not a valid email address. @@ -181,7 +104,7 @@ - obsolete + vendor/symfony/validator/Constraints/File.php:57 The file could not be found. @@ -190,70 +113,34 @@ - obsolete + vendor/symfony/validator/Constraints/File.php:58 The file is not readable. Die Datei ist nicht lesbar. - - - obsolete - - - The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}. - Die Datei ist zu groß ({{ size }} {{ suffix }}). Die maximal zulässige Größe beträgt {{ limit }} {{ suffix }}. - - - - - obsolete - - - The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}. - Der Dateityp ist ungültig ({{ type }}). Erlaubte Dateitypen sind {{ types }}. - - - obsolete + vendor/symfony/validator/Constraints/Range.php:48 This value should be {{ limit }} or less. Dieser Wert sollte kleiner oder gleich {{ limit }} sein. - - - obsolete - - - This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less. - Diese Zeichenkette ist zu lang. Sie sollte höchstens {{ limit }} Zeichen haben.|Diese Zeichenkette ist zu lang. Sie sollte höchstens {{ limit }} Zeichen haben. - - - obsolete + vendor/symfony/validator/Constraints/Range.php:47 This value should be {{ limit }} or more. Dieser Wert sollte größer oder gleich {{ limit }} sein. - - - obsolete - - - This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more. - Diese Zeichenkette ist zu kurz. Sie sollte mindestens {{ limit }} Zeichen haben.|Diese Zeichenkette ist zu kurz. Sie sollte mindestens {{ limit }} Zeichen haben. - - - obsolete + vendor/symfony/validator/Constraints/NotBlank.php:38 This value should not be blank. @@ -262,7 +149,7 @@ - obsolete + vendor/symfony/validator/Constraints/NotNull.php:36 This value should not be null. @@ -271,7 +158,7 @@ - obsolete + vendor/symfony/validator/Constraints/IsNull.php:36 This value should be null. @@ -280,7 +167,10 @@ - obsolete + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 This value is not valid. @@ -289,7 +179,7 @@ - obsolete + vendor/symfony/validator/Constraints/Time.php:39 This value is not a valid time. @@ -298,7 +188,7 @@ - obsolete + vendor/symfony/validator/Constraints/Url.php:37 This value is not a valid URL. @@ -306,9 +196,6 @@ - - obsolete - The two values should be equal. Die beiden Werte sollten identisch sein. @@ -316,7 +203,8 @@ - obsolete + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. @@ -325,7 +213,8 @@ - obsolete + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 The file is too large. @@ -334,7 +223,8 @@ - obsolete + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 The file could not be uploaded. @@ -343,7 +233,7 @@ - obsolete + vendor/symfony/validator/Constraints/Range.php:49 This value should be a valid number. @@ -352,7 +242,7 @@ - obsolete + vendor/symfony/validator/Constraints/Image.php:82 This file is not a valid image. @@ -361,7 +251,7 @@ - obsolete + vendor/symfony/validator/Constraints/Ip.php:85 This is not a valid IP address. @@ -370,7 +260,7 @@ - obsolete + vendor/symfony/validator/Constraints/Language.php:38 This value is not a valid language. @@ -379,7 +269,7 @@ - obsolete + vendor/symfony/validator/Constraints/Locale.php:38 This value is not a valid locale. @@ -388,7 +278,7 @@ - obsolete + vendor/symfony/validator/Constraints/Country.php:38 This value is not a valid country. @@ -397,7 +287,7 @@ - obsolete + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 This value is already used. @@ -406,70 +296,25 @@ - obsolete + vendor/symfony/validator/Constraints/Image.php:83 The size of the image could not be detected. Die Größe des Bildes konnte nicht ermittelt werden. - - - obsolete - - - The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px. - Die Bildbreite ist zu groß ({{ width }}px). Die maximal zulässige Breite beträgt {{ max_width }}px. - - - - - obsolete - - - The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px. - Die Bildbreite ist zu gering ({{ width }}px). Die erwartete Mindestbreite beträgt {{ min_width }}px. - - - - - obsolete - - - The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px. - Die Bildhöhe ist zu groß ({{ height }}px). Die maximal zulässige Höhe beträgt {{ max_height }}px. - - - - - obsolete - - - The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px. - Die Bildhöhe ist zu gering ({{ height }}px). Die erwartete Mindesthöhe beträgt {{ min_height }}px. - - - obsolete + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 This value should be the user's current password. Dieser Wert sollte dem aktuellen Benutzerpasswort entsprechen. - - - obsolete - - - This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters. - Dieser Wert sollte genau {{ limit }} Zeichen lang sein.|Dieser Wert sollte genau {{ limit }} Zeichen lang sein. - - - obsolete + vendor/symfony/validator/Constraints/File.php:67 The file was only partially uploaded. @@ -478,7 +323,7 @@ - obsolete + vendor/symfony/validator/Constraints/File.php:68 No file was uploaded. @@ -487,7 +332,7 @@ - obsolete + vendor/symfony/validator/Constraints/File.php:69 No temporary folder was configured in php.ini. @@ -496,7 +341,7 @@ - obsolete + vendor/symfony/validator/Constraints/File.php:70 Cannot write temporary file to disk. @@ -505,43 +350,16 @@ - obsolete + vendor/symfony/validator/Constraints/File.php:71 A PHP extension caused the upload to fail. Eine PHP-Erweiterung verhinderte den Upload. - - - obsolete - - - This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more. - Diese Sammlung sollte {{ limit }} oder mehr Elemente beinhalten.|Diese Sammlung sollte {{ limit }} oder mehr Elemente beinhalten. - - - - - obsolete - - - This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less. - Diese Sammlung sollte {{ limit }} oder weniger Elemente beinhalten.|Diese Sammlung sollte {{ limit }} oder weniger Elemente beinhalten. - - - - - obsolete - - - This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements. - Diese Sammlung sollte genau {{ limit }} Element beinhalten.|Diese Sammlung sollte genau {{ limit }} Elemente beinhalten. - - - obsolete + vendor/symfony/validator/Constraints/Luhn.php:42 Invalid card number. @@ -550,7 +368,7 @@ - obsolete + vendor/symfony/validator/Constraints/CardScheme.php:54 Unsupported card type or invalid card number. @@ -559,7 +377,7 @@ - obsolete + vendor/symfony/validator/Constraints/Iban.php:46 This is not a valid International Bank Account Number (IBAN). @@ -568,7 +386,7 @@ - obsolete + vendor/symfony/validator/Constraints/Isbn.php:49 This value is not a valid ISBN-10. @@ -577,7 +395,7 @@ - obsolete + vendor/symfony/validator/Constraints/Isbn.php:50 This value is not a valid ISBN-13. @@ -586,7 +404,7 @@ - obsolete + vendor/symfony/validator/Constraints/Isbn.php:51 This value is neither a valid ISBN-10 nor a valid ISBN-13. @@ -595,7 +413,7 @@ - obsolete + vendor/symfony/validator/Constraints/Issn.php:47 This value is not a valid ISSN. @@ -604,7 +422,7 @@ - obsolete + vendor/symfony/validator/Constraints/Currency.php:39 This value is not a valid currency. @@ -613,7 +431,7 @@ - obsolete + vendor/symfony/validator/Constraints/EqualTo.php:35 This value should be equal to {{ compared_value }}. @@ -622,7 +440,7 @@ - obsolete + vendor/symfony/validator/Constraints/GreaterThan.php:35 This value should be greater than {{ compared_value }}. @@ -631,25 +449,16 @@ - obsolete + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 This value should be greater than or equal to {{ compared_value }}. Dieser Wert sollte größer oder gleich {{ compared_value }} sein. - - - obsolete - - - This value should be identical to {{ compared_value_type }} {{ compared_value }}. - Dieser Wert sollte identisch sein mit {{ compared_value_type }} {{ compared_value }}. - - - obsolete + vendor/symfony/validator/Constraints/LessThan.php:35 This value should be less than {{ compared_value }}. @@ -658,7 +467,7 @@ - obsolete + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 This value should be less than or equal to {{ compared_value }}. @@ -667,70 +476,25 @@ - obsolete + vendor/symfony/validator/Constraints/NotEqualTo.php:35 This value should not be equal to {{ compared_value }}. Dieser Wert sollte nicht {{ compared_value }} sein. - - - obsolete - - - This value should not be identical to {{ compared_value_type }} {{ compared_value }}. - Dieser Wert sollte nicht identisch sein mit {{ compared_value_type }} {{ compared_value }}. - - - - - obsolete - - - The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}. - Das Seitenverhältnis des Bildes ist zu groß ({{ ratio }}). Der erlaubte Maximalwert ist {{ max_ratio }}. - - - - - obsolete - - - The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}. - Das Seitenverhältnis des Bildes ist zu klein ({{ ratio }}). Der erwartete Minimalwert ist {{ min_ratio }}. - - - obsolete + vendor/symfony/validator/Constraints/Image.php:92 The image is square ({{ width }}x{{ height }}px). Square images are not allowed. Das Bild ist quadratisch ({{ width }}x{{ height }}px). Quadratische Bilder sind nicht erlaubt. - - - obsolete - - - The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed. - Das Bild ist im Querformat ({{ width }}x{{ height }}px). Bilder im Querformat sind nicht erlaubt. - - - - - obsolete - - - The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. - Das Bild ist im Hochformat ({{ width }}x{{ height }}px). Bilder im Hochformat sind nicht erlaubt. - - - obsolete + vendor/symfony/validator/Constraints/File.php:62 An empty file is not allowed. @@ -738,9 +502,6 @@ - - obsolete - The host could not be resolved. Der Hostname konnte nicht aufgelöst werden. @@ -748,7 +509,7 @@ - obsolete + vendor/symfony/validator/Constraints/Length.php:57 This value does not match the expected {{ charset }} charset. @@ -757,7 +518,7 @@ - obsolete + vendor/symfony/validator/Constraints/Bic.php:49 This is not a valid Business Identifier Code (BIC). @@ -766,7 +527,7 @@ - obsolete + assets/js/app/ajax-save.js:37 Error @@ -775,7 +536,7 @@ - obsolete + vendor/symfony/validator/Constraints/Uuid.php:80 This is not a valid UUID. @@ -784,7 +545,7 @@ - obsolete + vendor/symfony/validator/Constraints/DivisibleBy.php:34 This value should be a multiple of {{ compared_value }}. @@ -793,7 +554,7 @@ - obsolete + vendor/symfony/validator/Constraints/Bic.php:50 This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. @@ -802,7 +563,7 @@ - obsolete + vendor/symfony/validator/Constraints/Json.php:36 This value should be valid JSON. @@ -811,7 +572,7 @@ - obsolete + vendor/symfony/validator/Constraints/Unique.php:39 This collection should contain only unique elements. @@ -820,7 +581,7 @@ - obsolete + vendor/symfony/validator/Constraints/Positive.php:25 This value should be positive. @@ -829,7 +590,7 @@ - obsolete + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 This value should be either positive or zero. @@ -838,7 +599,7 @@ - obsolete + vendor/symfony/validator/Constraints/Negative.php:25 This value should be negative. @@ -847,7 +608,7 @@ - obsolete + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 This value should be either negative or zero. @@ -856,115 +617,25 @@ - obsolete + vendor/symfony/validator/Constraints/Timezone.php:35 This value is not a valid timezone. Dieser Wert ist keine gültige Zeitzone. - - - obsolete - - - This password has been leaked in a data breach, it must not be used. Please use another password. - Dieses Passwort ist Teil eines Datenlecks, es darf nicht verwendet werden. - - - obsolete + vendor/symfony/validator/Constraints/Range.php:46 This value should be between {{ min }} and {{ max }}. Dieser Wert sollte zwischen {{ min }} und {{ max }} sein. - - - obsolete - - - This value is not a valid hostname. - Dieser Wert ist kein gültiger Hostname. - - - - - obsolete - - - The number of elements in this collection should be a multiple of {{ compared_value }}. - Die Anzahl an Elementen in dieser Sammlung sollte ein Vielfaches von {{ compared_value }} sein. - - - - - obsolete - - - This value should satisfy at least one of the following constraints: - Dieser Wert sollte eine der folgenden Bedingungen erfüllen: - - - - - obsolete - - - Each element of this collection should satisfy its own set of constraints. - Jedes Element dieser Sammlung sollte seine eigene Menge an Bedingungen erfüllen. - - - - - obsolete - - - This value is not a valid International Securities Identification Number (ISIN). - Dieser Wert ist keine gültige Internationale Wertpapierkennnummer (ISIN). - - - - - obsolete - - - This value should be a valid expression. - Dieser Wert sollte eine gültige Expression sein. - - - - - obsolete - - - This value is not a valid CSS color. - Dieser Wert ist keine gültige CSS-Farbe. - - - - - obsolete - - - This value is not a valid CIDR notation. - Dieser Wert entspricht nicht der CIDR-Notation. - - - - - obsolete - - - The value of the netmask should be between {{ min }} and {{ max }}. - Der Wert der Subnetzmaske sollte zwischen {{ min }} und {{ max }} liegen. - - - obsolete + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 This form should not contain extra fields. @@ -973,7 +644,7 @@ - obsolete + vendor/symfony/form/Extension/Core/Type/FormType.php:181 The uploaded file was too large. Please try to upload a smaller file. @@ -982,361 +653,66 @@ - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 The CSRF token is invalid. Please try to resubmit the form. Der CSRF-Token ist ungültig. Versuchen Sie bitte das Formular erneut zu senden. - - - obsolete - - - This value is not a valid HTML5 color. - Dieser Wert ist keine gültige HTML5 Farbe. - - - - - obsolete - - - Please enter a valid birthdate. - Bitte geben Sie ein gültiges Geburtsdatum ein. - - - - - obsolete - - - The selected choice is invalid. - Die Auswahl ist ungültig. - - - - - obsolete - - - The collection is invalid. - Diese Gruppe von Feldern ist ungültig. - - - - - obsolete - - - Please select a valid color. - Bitte geben Sie eine gültige Farbe ein. - - - - - obsolete - - - Please select a valid country. - Bitte wählen Sie ein gültiges Land aus. - - - - - obsolete - - - Please select a valid currency. - Bitte wählen Sie eine gültige Währung aus. - - - - - obsolete - - - Please choose a valid date interval. - Bitte wählen Sie ein gültiges Datumsintervall. - - - - - obsolete - - - Please enter a valid date and time. - Bitte geben Sie ein gültiges Datum samt Uhrzeit ein. - - - - - obsolete - - - Please enter a valid date. - Bitte geben Sie ein gültiges Datum ein. - - - - - obsolete - - - Please select a valid file. - Bitte wählen Sie eine gültige Datei. - - - - - obsolete - - - The hidden field is invalid. - Das versteckte Feld ist ungültig. - - - - - obsolete - - - Please enter an integer. - Bitte geben Sie eine ganze Zahl ein. - - - - - obsolete - - - Please select a valid language. - Bitte wählen Sie eine gültige Sprache. - - - - - obsolete - - - Please select a valid locale. - Bitte wählen Sie eine gültige Locale-Einstellung aus. - - - - - obsolete - - - Please enter a valid money amount. - Bitte geben Sie einen gültigen Geldbetrag ein. - - - - - obsolete - - - Please enter a number. - Bitte geben Sie eine gültige Zahl ein. - - - - - obsolete - - - The password is invalid. - Das Kennwort ist ungültig. - - - - - obsolete - - - Please enter a percentage value. - Bitte geben Sie einen gültigen Prozentwert ein. - - - - - obsolete - - - The values do not match. - Die Werte stimmen nicht überein. - - - - - obsolete - - - Please enter a valid time. - Bitte geben Sie eine gültige Uhrzeit ein. - - - - - obsolete - - - Please select a valid timezone. - Bitte wählen Sie eine gültige Zeitzone. - - - - - obsolete - - - Please enter a valid URL. - Bitte geben Sie eine gültige URL ein. - - - - - obsolete - - - Please enter a valid search term. - Bitte geben Sie einen gültigen Suchbegriff ein. - - - - - obsolete - - - Please provide a valid phone number. - Bitte geben Sie eine gültige Telefonnummer ein. - - - - - obsolete - - - The checkbox has an invalid value. - Das Kontrollkästchen hat einen ungültigen Wert. - - - - - obsolete - - - Please enter a valid email address. - Bitte geben Sie eine gültige E-Mail-Adresse ein. - - - - - obsolete - - - Please select a valid option. - Bitte wählen Sie eine gültige Option. - - - - - obsolete - - - Please select a valid range. - Bitte wählen Sie einen gültigen Bereich. - - - - - obsolete - - - Please enter a valid week. - Bitte geben Sie eine gültige Woche ein. - - - - - obsolete - obsolete - - - post.blank_summary - Gib deinem Beitrag eine Zusammenfassung! - - - - - obsolete - obsolete - - - post.blank_content - Dein Beitrag sollte einen Inhalt haben! - - - + - obsolete - obsolete + src/Entity/User.php:24 - post.too_short_content - Der Beitragsinhalt ist zu kurz (mindestens {{ limit }} Zeichen) + user.duplicate_email + Ein Benutzer mit der E-Mail {{ value }} existiert bereits - + - obsolete - obsolete + src/Entity/User.php:25 - comment.blank - Bitte gib einen Kommentar ein! + user.duplicate_username + Ein Benutzer mit Benutzername {{ value }} existiert bereits - + - obsolete - obsolete + src/Entity/User.php:57 - comment.too_short - Der Kommentar ist zu kurz (mindestens {{ limit }} Zeichen) + user.not_valid_password + Ungültiges Passwort. Das Passwort sollte mindestens 6 Zeichen enthalten. - + - obsolete - obsolete + src/Entity/User.php:49 - comment.too_long - Der Kommentar ist zu lang (maximal {{ limit }} Zeichen) + user.not_valid_email + Ungültige E-Mail - + - obsolete - obsolete + src/Entity/User.php:43 - comment.is_spam - Der Inhalt des Kommentars wird als Spam eingestuft. + user.username_invalid_characters + Der Benutzername darf nur lateinische Kleinbuchstaben, Zahlen und Unterstriche enthalten. - + - obsolete - obsolete + src/Entity/User.php:35 + src/Entity/User.php:36 - post.too_many_tags - Zu viele Tags (höchstens {{ limit }} Tags sind erlaubt) + user.not_valid_display_name + Ungültiger Anzeigename diff --git a/translations/validators.el.xlf b/translations/validators.el.xlf index 5a060a556..00f1ba2eb 100644 --- a/translations/validators.el.xlf +++ b/translations/validators.el.xlf @@ -1,163 +1,195 @@ - - + + + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. Αυτή η τιμή πρέπει να είναι false. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. Αυτή η τιμή πρέπει να είναι true. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. Αυτή η τιμή πρέπει να είναι τύπου{{ type }}. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. Αυτή η τιμή πρέπει να είναι κενή. + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. Η τιμή που επιλέξατε δεν είναι έγκυρη επιλογή. - - - 0d999f2 - Πρέπει να επιλέξετε τουλάχιστον {{ limit }} επιλογές.|Πρέπει να επιλέξετε τουλάχιστον {{ limit }} επιλογές. - - - - - 0824486 - Πρέπει να επιλέξετε τουλάχιστον {{ limit }} επιλογές.|Πρέπει να επιλέξετε τουλάχιστον {{ limit }} επιλογές. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. Μία ή περισσότερες από τις δεδομένες τιμές δεν είναι έγκυρες. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. Αυτό το πεδίο δεν αναμενόταν. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. Αυτό το πεδίο λείπει. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. Αυτή η τιμή δεν είναι έγκυρη ημερομηνία. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. Αυτή η τιμή δεν είναι έγκυρη ημερομηνία και ωρα. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. Αυτή η τιμή δεν είναι έγκυρη διεύθυνση email. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. Δεν ήταν δυνατή η εύρεση του αρχείου. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. Το αρχείο δεν είναι αναγνώσιμο. - - - 1ad411a - Το αρχείο είναι πολύ μεγάλο ({{ size }} {{ suffix }}). Το επιτρεπόμενο μέγιστο μέγεθος είναι {{ limit }} {{ suffix }}. - - - - - 30a318d - Ο τύπος του αρχείου δεν είναι έγκυρος({{ type }}). Οι επιτρεπόμενοι τύποι είναι {{ types }}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. - Αυτή η τιμή πρέπει να είναι {{limit}} ή μικρότερη. - - - - - 0e0c1e1 - Αυτή η τιμή είναι πολύ μεγάλη. Θα πρέπει να έχει {{limit}} χαρακτήρες ή λιγότερο. | Αυτή η τιμή είναι πολύ μεγάλη. Θα πρέπει να έχει {{limit}} χαρακτήρες ή λιγότερους. + Αυτή η τιμή πρέπει να είναι {{ limit }} ή μικρότερη. + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. - Αυτή η τιμή πρέπει να είναι {{limit}} ή μεγαλύτερη. - - - - - 5188ff9 - Αυτή η τιμή είναι πολύ μικρή. Θα πρέπει να έχει {{limit}} χαρακτήρες ή περισσότερο. | Αυτή η τιμή είναι πολύ μικρή. Θα πρέπει να έχει {{limit}} χαρακτήρες ή περισσότερους. + Αυτή η τιμή πρέπει να είναι {{ limit }} ή μεγαλύτερη. + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. Αυτή η τιμή δεν πρέπει να είναι κενή. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. Αυτή η τιμή δεν πρέπει να είναι απροσδιοριστη. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. Αυτή η τιμή πρέπει να είναι απροσδιοριστη. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. Αυτή η τιμή δεν είναι έγκυρη. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. Αυτή η τιμή δεν είναι έγκυρη ώρα. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. Αυτή η τιμή δεν είναι έγκυρη διεύθυνση URL. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. - Το αρχείο είναι πολύ μεγάλο. Το επιτρεπόμενο μέγιστο μέγεθος είναι {{limit}} {{suffix}}. + Το αρχείο είναι πολύ μεγάλο. Το επιτρεπόμενο μέγιστο μέγεθος είναι {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. Το αρχείο είναι πολύ μεγάλο. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. Δεν ήταν δυνατή η μεταφόρτωση του αρχείου. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. Αυτή η τιμή πρέπει να είναι έγκυρος αριθμός. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. Αυτό το αρχείο δεν είναι έγκυρη εικόνα. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. Αυτή δεν είναι έγκυρη διεύθυνση IP. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. Αυτή η τιμή δεν είναι έγκυρη γλώσσα. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. Αυτή η τιμή δεν είναι έγκυρο locale. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. Αυτή η τιμή δεν είναι έγκυρη χώρα. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. Αυτή η τιμή χρησιμοποιείται ήδη. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. Δεν ήταν δυνατή η ανίχνευση του μεγέθους της εικόνας. - - - 266051e - Το πλάτος της εικόνας είναι πολύ μεγάλο ({{width}} px). Το επιτρεπόμενο μέγιστο πλάτος είναι {{max_width}} px. - - - - - c1c23f9 - Το πλάτος της εικόνας είναι πολύ μικρό ({{width}} px). Το αναμενόμενο ελάχιστο πλάτος είναι {{min_width}} px. - - - - - 9a128f7 - Το ύψος της εικόνας είναι πολύ μεγάλο ({{height}} px). Το επιτρεπόμενο μέγιστο ύψος είναι {{max_height}} px. - - - - - 8a4cd70 - Το ύψος της εικόνας είναι πολύ μικρό ({{height}} px). Το ελάχιστο αναμενόμενο ύψος είναι {{min_height}} px. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. Αυτή η τιμή πρέπει να είναι ο τρέχων κωδικός πρόσβασης του χρήστη. - - - fd389d6 - Αυτή η τιμή πρέπει να έχει ακριβώς {{limit}} χαρακτήρα. | Αυτή η τιμή θα πρέπει να έχει ακριβώς {{limit}} χαρακτήρες. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. Το αρχείο μεταφορτώθηκε μόνο εν μέρει. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. Δεν μεταφορτώθηκε κανένα αρχείο. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. Δεν διαμορφώθηκε προσωρινός φάκελος στο php.ini ή ο διαμορφωμένος φάκελος δεν υπάρχει. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. Δεν είναι δυνατή η εγγραφή προσωρινού αρχείου στο δίσκο. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. Μια επέκταση PHP προκάλεσε την αποτυχία της μεταφόρτωσης. - - - b54c218 - Αυτή η συλλογή θα πρέπει να περιέχει {{limit}} στοιχεία ή περισσότερα. | Αυτή η συλλογή πρέπει να περιέχει στοιχεία {{limit}} ή περισσότερα. - - - - - 949632c - Αυτή η συλλογή θα πρέπει να περιέχει {{limit}} στοιχεία ή λιγότερο. | Αυτή η συλλογή θα πρέπει να περιέχει στοιχεία {{limit}} ή λιγότερα. - - - - - e0582dc - Αυτή η συλλογή θα πρέπει να περιέχει ακριβώς {{limit}} στοιχεία. | Αυτή η συλλογή θα πρέπει να περιέχει ακριβώς {{limit}} στοιχεία. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Ακυρο νουμερο κάρτας. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Μη υποστηριζόμενος τύπος κάρτας ή μη έγκυρος αριθμός κάρτας. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). Αυτός δεν είναι έγκυρος διεθνής αριθμός τραπεζικού λογαριασμού (IBAN). + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. Αυτή η τιμή δεν είναι έγκυρο ISBN-10. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. Αυτή η τιμή δεν είναι έγκυρο ISBN-13. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. Αυτή η τιμή δεν είναι ούτε έγκυρη ISBN-10 ούτε έγκυρη ISBN-13. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. Αυτή η τιμή δεν είναι έγκυρο ISSN. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. Αυτή η τιμή δεν είναι έγκυρο νόμισμα. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. Αυτή η τιμή πρέπει να είναι ίση με {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. Αυτή η τιμή πρέπει να είναι μεγαλύτερη από {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. Αυτή η τιμή πρέπει να είναι μεγαλύτερη ή ίση με {{ compared_value }}. - - - 9670078 - Αυτή η τιμή πρέπει να είναι ίδια με {{ compared_value_type }} {{ compared_value }}. - - + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. Αυτή η τιμή πρέπει να είναι ίδια με αυτήν {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. Αυτή η τιμή πρέπει να είναι μικρότερη ή ίση με{{ compared_value }}. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. Αυτή η τιμή δεν πρέπει να είναι ίση με {{ compared_value }}. - - - 0eedf91 - Αυτή η τιμή δεν πρέπει να είναι ίδια με αυτήν {{ compared_value_type }} {{ compared_value }}. - - - - - 9c3ad0f - Η αναλογία εικόνας είναι πολύ μεγάλη ({{ratio}}). Η επιτρεπόμενη μέγιστη αναλογία είναι {{max_ratio}}. - - - - - 4376d45 - Η αναλογία εικόνας είναι πολύ μικρή ({{ratio}}). Η αναμενόμενη ελάχιστη αναλογία είναι {{min_ratio}}. - - + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. - Η εικόνα είναι τετράγωνη ({{width}} x {{height}} px). Δεν επιτρέπονται τετράγωνες εικόνες. - - - - - 1dc128a - Η εικόνα έχει οριζόντιο προσανατολισμό ({{width}} x {{height}} px). Δεν επιτρέπονται εικόνες με οριζόντιο προσανατολισμό. - - - - - 9e27714 - Η εικόνα είναι κατακόρυφη ({{width}} x {{height}} px). Δεν επιτρέπονται εικόνες με προσανατολισμό σε πορτραίτο. + Η εικόνα είναι τετράγωνη ({{ width }} x {{ height }} px). Δεν επιτρέπονται τετράγωνες εικόνες. + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. Δεν επιτρέπεται κενό αρχείο. @@ -458,216 +508,208 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. - Αυτή η τιμή δεν ταιριάζει με το αναμενόμενο charset {{charset}}. + Αυτή η τιμή δεν ταιριάζει με το αναμενόμενο charset {{ charset }}. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). Αυτός δεν είναι έγκυρος κωδικός αναγνώρισης επιχείρησης (BIC). + + assets/js/app/ajax-save.js:37 + Error Σφάλμα + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. Αυτό δεν είναι έγκυρο UUID. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. Αυτή η τιμή πρέπει να είναι πολλαπλάσιο του {{ compared_value }}. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. - Αυτός ο κωδικός αναγνώρισης επιχείρησης (BIC) δεν σχετίζεται με τον IBAN {{iban}}. + Αυτός ο κωδικός αναγνώρισης επιχείρησης (BIC) δεν σχετίζεται με τον IBAN {{ iban }}. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. Αυτή η τιμή πρέπει να είναι έγκυρος τυπος JSON. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. Αυτή η συλλογή πρέπει να περιέχει μόνο μοναδικά στοιχεία. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. Αυτή η τιμή πρέπει να είναι θετική. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. Αυτή η τιμή πρέπει να είναι θετική ή μηδενική. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. Αυτή η τιμή πρέπει να είναι αρνητική. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. Αυτή η τιμή πρέπει να είναι είτε αρνητική είτε μηδενική. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. Αυτή η τιμή δεν είναι έγκυρη ζώνη ώρας. - - - 7e27e92 - Αυτός ο κωδικός πρόσβασης έχει διαρρεύσει σε παραβίαση δεδομένων, δεν πρέπει να χρησιμοποιείται. Χρησιμοποιήστε έναν άλλο κωδικό πρόσβασης. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. - Αυτή η τιμή πρέπει να κυμαίνεται μεταξύ {{min}} και {{max}}. + Αυτή η τιμή πρέπει να κυμαίνεται μεταξύ {{ min }} και {{ max }}. + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. Αυτή η φόρμα δεν πρέπει να περιέχει επιπλέον πεδία. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. Το μεταφορτωμένο αρχείο ήταν πολύ μεγάλο. Δοκιμάστε να ανεβάσετε ένα μικρότερο αρχείο. - - The CSRF token is invalid. Please try to resubmit the form. - Το διακριτικό CSRF δεν είναι έγκυρο. Δοκιμάστε να υποβάλετε ξανά τη φόρμα. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - Δώστε μια περίληψη στην ανάρτησή σας! - - - - - obsolete - - - post.blank_content - Η ανάρτησή σας πρέπει να έχει κάποιο περιεχόμενο! - - - - - obsolete - - - post.too_short_content - Το περιεχόμενο της ανάρτησης είναι πολύ μικρό (ελάχιστο {{limit}} χαρακτήρες) - - - - - obsolete - - - post.too_many_tags - Πάρα πολλές ετικέτες (προσθέστε {{limit}} ή λιγότερες) - - - - - obsolete - - - comment.blank - Μην αφήσετε το σχόλιό σας κενό! - - - - - obsolete - - - comment.too_short - Το σχόλιο είναι πολύ μικρό ({{limit}} ελάχιστοι χαρακτήρες) - - - - - obsolete - - - comment.too_long - Το σχόλιο είναι πολύ μεγάλο ({{limit}} χαρακτήρες το μέγιστο) + The CSRF token is invalid. Please try to resubmit the form. + Το διακριτικό CSRF δεν είναι έγκυρο. Δοκιμάστε να υποβάλετε ξανά τη φόρμα. - + - obsolete + src/Entity/User.php:24 - - comment.is_spam - Το περιεχόμενο αυτού του σχολίου θεωρείται ανεπιθύμητο. - - - user.duplicate_email - Υπάρχει ήδη χρήστης με {{value}} email. + Υπάρχει ήδη χρήστης με {{ value }} email. + + src/Entity/User.php:25 + user.duplicate_username - Υπάρχει ήδη χρήστης με όνομα χρήστη {{value}}. + Υπάρχει ήδη χρήστης με όνομα χρήστη {{ value }}. + + src/Entity/User.php:57 + user.not_valid_password Λανθασμένος κωδικός. Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον 6 χαρακτήρες. + + src/Entity/User.php:49 + user.not_valid_email Ακυρη διεύθυνση ηλεκτρονικού ταχυδρομείου + + src/Entity/User.php:43 + user.username_invalid_characters Το όνομα χρήστη πρέπει να περιέχει μόνο πεζούς λατινικούς χαρακτήρες, αριθμούς και κάτω παύλες. + + src/Entity/User.php:35 + src/Entity/User.php:36 + user.not_valid_display_name Μη έγκυρο εμφανιζόμενο όνομα diff --git a/translations/validators.en.xlf b/translations/validators.en.xlf index c2a9cf389..e7430aa0b 100644 --- a/translations/validators.en.xlf +++ b/translations/validators.en.xlf @@ -2,162 +2,194 @@ + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. This value should be false. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. This value should be true. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. This value should be of type {{ type }}. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. This value should be blank. + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. The value you selected is not a valid choice. - - - 0d999f2 - You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices. - - - - - 0824486 - You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. One or more of the given values is invalid. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. This field was not expected. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. This field is missing. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. This value is not a valid date. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. This value is not a valid datetime. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. This value is not a valid email address. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. The file could not be found. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. The file is not readable. - - - 1ad411a - The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}. - - - - - 30a318d - The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. This value should be {{ limit }} or less. - - - 0e0c1e1 - This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less. - - + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. This value should be {{ limit }} or more. - - - 5188ff9 - This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more. - - + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. This value should not be blank. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. This value should not be null. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. This value should be null. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. This value is not valid. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. This value is not a valid time. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. This value is not a valid URL. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. The file is too large. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. The file could not be uploaded. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. This value should be a valid number. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. This file is not a valid image. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. This is not a valid IP address. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. This value is not a valid language. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. This value is not a valid locale. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. This value is not a valid country. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. This value is already used. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. The size of the image could not be detected. - - - 266051e - The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px. - - - - - c1c23f9 - The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px. - - - - - 9a128f7 - The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px. - - - - - 8a4cd70 - The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. This value should be the user's current password. - - - fd389d6 - This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. The file was only partially uploaded. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. No file was uploaded. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. No temporary folder was configured in php.ini, or the configured folder does not exist. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. Cannot write temporary file to disk. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. A PHP extension caused the upload to fail. - - - b54c218 - This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more. - - - - - 949632c - This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less. - - - - - e0582dc - This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Invalid card number. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Unsupported card type or invalid card number. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). This is not a valid International Bank Account Number (IBAN). + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. This value is not a valid ISBN-10. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. This value is not a valid ISBN-13. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. This value is neither a valid ISBN-10 nor a valid ISBN-13. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. This value is not a valid ISSN. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. This value is not a valid currency. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. This value should be equal to {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. This value should be greater than {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. This value should be greater than or equal to {{ compared_value }}. - - - 9670078 - This value should be identical to {{ compared_value_type }} {{ compared_value }}. - - + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. This value should be less than {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. This value should be less than or equal to {{ compared_value }}. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. This value should not be equal to {{ compared_value }}. - - - 0eedf91 - This value should not be identical to {{ compared_value_type }} {{ compared_value }}. - - - - - 9c3ad0f - The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}. - - - - - 4376d45 - The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}. - - + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. The image is square ({{ width }}x{{ height }}px). Square images are not allowed. - - - 1dc128a - The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed. - - - - - 9e27714 - The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. - - + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. An empty file is not allowed. @@ -458,216 +508,208 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. This value does not match the expected {{ charset }} charset. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). This is not a valid Business Identifier Code (BIC). + + assets/js/app/ajax-save.js:37 + Error Error + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. This is not a valid UUID. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. This value should be a multiple of {{ compared_value }}. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. This value should be valid JSON. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. This collection should contain only unique elements. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. This value should be positive. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. This value should be either positive or zero. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. This value should be negative. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. This value should be either negative or zero. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. This value is not a valid timezone. - - - 7e27e92 - This password has been leaked in a data breach, it must not be used. Please use another password. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. This value should be between {{ min }} and {{ max }}. + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. This form should not contain extra fields. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. The uploaded file was too large. Please try to upload a smaller file. - - The CSRF token is invalid. Please try to resubmit the form. - The CSRF token is invalid. Please try to resubmit the form. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - Give your post a summary! - - - - - obsolete - - - post.blank_content - Your post should have some content! - - - - - obsolete - - - post.too_short_content - Post content is too short ({{ limit }} characters minimum) - - - - - obsolete - - - post.too_many_tags - Too many tags (add {{ limit }} tags or less) - - - - - obsolete - - - comment.blank - Please don't leave your comment blank! - - - - - obsolete - - - comment.too_short - Comment is too short ({{ limit }} characters minimum) - - - - - obsolete - - - comment.too_long - Comment is too long ({{ limit }} characters maximum) + The CSRF token is invalid. Please try to resubmit the form. + The CSRF token is invalid. Please try to resubmit the form. - + - obsolete + src/Entity/User.php:24 - - comment.is_spam - The content of this comment is considered spam. - - - user.duplicate_email A user with {{ value }} email already exists. + + src/Entity/User.php:25 + user.duplicate_username A user with {{ value }} username already exists. + + src/Entity/User.php:57 + user.not_valid_password Invalid password. The password should contain at least 6 characters. + + src/Entity/User.php:49 + user.not_valid_email Invalid email + + src/Entity/User.php:43 + user.username_invalid_characters The username must contain only lowercase latin characters, numbers and underscores. + + src/Entity/User.php:35 + src/Entity/User.php:36 + user.not_valid_display_name Invalid display name diff --git a/translations/validators.es.xlf b/translations/validators.es.xlf index b43775482..ee11041e1 100644 --- a/translations/validators.es.xlf +++ b/translations/validators.es.xlf @@ -2,162 +2,194 @@ + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. Este valor debería ser falso. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. Este valor debería ser verdadero. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. Este valor debería ser de tipo {{ type }}. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. Este valor debería estar vacío. + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. El valor seleccionado no es una opción válida. - - - You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices. - Debe seleccionar al menos {{ limit }} opción.|Debe seleccionar al menos {{ limit }} opciones. - - - - - You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices. - Debe seleccionar como máximo {{ limit }} opción.|Debe seleccionar como máximo {{ limit }} opciones. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. Uno o más de los valores indicados no son válidos. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. Este campo no se esperaba. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. Este campo está desaparecido. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. Este valor no es una fecha válida. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. Este valor no es una fecha y hora válidas. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. Este valor no es una dirección de email válida. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. No se pudo encontrar el archivo. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. No se puede leer el archivo. - - - The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}. - El archivo es demasiado grande ({{ size }} {{ suffix }}). El tamaño máximo permitido es {{ limit }} {{ suffix }}. - - - - - The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}. - El tipo mime del archivo no es válido ({{ type }}). Los tipos mime válidos son {{ types }}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. Este valor debería ser {{ limit }} o menos. - - - This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less. - Este valor es demasiado largo. Debería tener {{ limit }} carácter o menos.|Este valor es demasiado largo. Debería tener {{ limit }} caracteres o menos. - - + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. Este valor debería ser {{ limit }} o más. - - - This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more. - Este valor es demasiado corto. Debería tener {{ limit }} carácter o más.|Este valor es demasiado corto. Debería tener {{ limit }} caracteres o más. - - + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. Este valor no debería estar vacío. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. Este valor no debería ser nulo. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. Este valor debería ser nulo. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. Este valor no es válido. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. Este valor no es una hora válida. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. Este valor no es una URL válida. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. El archivo es demasiado grande. El tamaño máximo permitido es {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. El archivo es demasiado grande. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. No se pudo subir el archivo. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. Este valor debería ser un número válido. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. El archivo no es una imagen válida. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. Esto no es una dirección IP válida. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. Este valor no es un idioma válido. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. Este valor no es una localización válida. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. Este valor no es un país válido. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. Este valor ya se ha utilizado. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. No se pudo determinar el tamaño de la imagen. - - - The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px. - El ancho de la imagen es demasiado grande ({{ width }}px). El ancho máximo permitido es de {{ max_width }}px. - - - - - The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px. - El ancho de la imagen es demasiado pequeño ({{ width }}px). El ancho mínimo requerido es {{ min_width }}px. - - - - - The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px. - La altura de la imagen es demasiado grande ({{ height }}px). La altura máxima permitida es de {{ max_height }}px. - - - - - The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px. - La altura de la imagen es demasiado pequeña ({{ height }}px). La altura mínima requerida es de {{ min_height }}px. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. Este valor debería ser la contraseña actual del usuario. - - - This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters. - Este valor debería tener exactamente {{ limit }} carácter.|Este valor debería tener exactamente {{ limit }} caracteres. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. El archivo fue sólo subido parcialmente. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. Ningún archivo fue subido. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. Ninguna carpeta temporal fue configurada en php.ini o la carpeta configurada no existe. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. No se pudo escribir el archivo temporal en el disco. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. Una extensión de PHP hizo que la subida fallara. - - - This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more. - Esta colección debe contener {{ limit }} elemento o más.|Esta colección debe contener {{ limit }} elementos o más. - - - - - This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less. - Esta colección debe contener {{ limit }} elemento o menos.|Esta colección debe contener {{ limit }} elementos o menos. - - - - - This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements. - Esta colección debe contener exactamente {{ limit }} elemento.|Esta colección debe contener exactamente {{ limit }} elementos. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Número de tarjeta inválido. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Tipo de tarjeta no soportado o número de tarjeta inválido. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). Esto no es un International Bank Account Number (IBAN) válido. + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. Este valor no es un ISBN-10 válido. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. Este valor no es un ISBN-13 válido. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. Este valor no es ni un ISBN-10 válido ni un ISBN-13 válido. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. Este valor no es un ISSN válido. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. Este valor no es una divisa válida. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. Este valor debería ser igual que {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. Este valor debería ser mayor que {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. Este valor debería ser mayor o igual que {{ compared_value }}. - - - This value should be identical to {{ compared_value_type }} {{ compared_value }}. - Este valor debería ser idéntico a {{ compared_value_type }} {{ compared_value }}. - - + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. Este valor debería ser menor que {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. Este valor debería ser menor o igual que {{ compared_value }}. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. Este valor debería ser distinto de {{ compared_value }}. - - - This value should not be identical to {{ compared_value_type }} {{ compared_value }}. - Este valor no debería ser idéntico a {{ compared_value_type }} {{ compared_value }}. - - - - - The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}. - La proporción de la imagen es demasiado grande ({{ ratio }}). La máxima proporción permitida es {{ max_ratio }}. - - - - - The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}. - La proporción de la imagen es demasiado pequeña ({{ ratio }}). La mínima proporción permitida es {{ min_ratio }}. - - + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. La imagen es cuadrada ({{ width }}x{{ height }}px). Las imágenes cuadradas no están permitidas. - - - The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed. - La imagen está orientada horizontalmente ({{ width }}x{{ height }}px). Las imágenes orientadas horizontalmente no están permitidas. - - - - - The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. - La imagen está orientada verticalmente ({{ width }}x{{ height }}px). Las imágenes orientadas verticalmente no están permitidas. - - + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. No está permitido un archivo vacío. @@ -458,339 +508,211 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. La codificación de caracteres para este valor debería ser {{ charset }}. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). No es un Código de Identificación Bancaria (BIC) válido. + + assets/js/app/ajax-save.js:37 + Error Error + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. Este valor no es un UUID válido. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. Este valor debería ser múltiplo de {{ compared_value }}. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. Este Código de Identificación Bancaria (BIC) no está asociado con el IBAN {{ iban }}. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. Este valor debería ser un JSON válido. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. Esta colección debería tener exclusivamente elementos únicos. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. Este valor debería ser positivo. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. Este valor debería ser positivo o igual a cero. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. Este valor debería ser negativo. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. Este valor debería ser negativo o igual a cero. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. Este valor no es una zona horaria válida. - - - This password has been leaked in a data breach, it must not be used. Please use another password. - Esta contraseña no se puede utilizar porque está incluida en un listado de contraseñas públicas obtenido gracias a fallos de seguridad de otros sitios y aplicaciones. Por favor utilice otra contraseña. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. Este valor debería estar entre {{ min }} y {{ max }}. - - - This value is not a valid hostname. - Este valor no es un nombre de host válido. - - - - - The number of elements in this collection should be a multiple of {{ compared_value }}. - El número de elementos en esta colección debería ser múltiplo de {{ compared_value }}. - - - - - This value should satisfy at least one of the following constraints: - Este valor debería satisfacer al menos una de las siguientes restricciones: - - - - - Each element of this collection should satisfy its own set of constraints. - Cada elemento de esta colección debería satisfacer su propio conjunto de restricciones. - - + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. Este formulario no debería contener campos adicionales. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. El archivo subido es demasiado grande. Por favor, suba un archivo más pequeño. - - The CSRF token is invalid. Please try to resubmit the form. - El token CSRF no es válido. Por favor, pruebe a enviar nuevamente el formulario. - - - - - 0d999f2 - Debe seleccionar al menos {{ limit }} opción.|Debe seleccionar al menos {{ limit }} opciones. - - - - - 0824486 - Debe seleccionar como máximo {{ limit }} opción.|Debe seleccionar como máximo {{ limit }} opciones. - - - - - 1ad411a - El archivo es demasiado grande ({{ size }} {{ suffix }}). El tamaño máximo permitido es {{ limit }} {{ suffix }}. - - - - - 30a318d - El tipo mime del archivo no es válido ({{ type }}). Los tipos mime válidos son {{ types }}. - - - - - 0e0c1e1 - Este valor es demasiado largo. Debería tener {{ limit }} carácter o menos.|Este valor es demasiado largo. Debería tener {{ limit }} caracteres o menos. - - - - - 5188ff9 - Este valor es demasiado corto. Debería tener {{ limit }} carácter o más.|Este valor es demasiado corto. Debería tener {{ limit }} caracteres o más. - - - - - 266051e - El ancho de la imagen es demasiado grande ({{ width }}px). El ancho máximo permitido es de {{ max_width }}px. - - - - - c1c23f9 - El ancho de la imagen es demasiado pequeño ({{ width }}px). El ancho mínimo requerido es {{ min_width }}px. - - - - - 9a128f7 - La altura de la imagen es demasiado grande ({{ height }}px). La altura máxima permitida es de {{ max_height }}px. - - - - - 8a4cd70 - La altura de la imagen es demasiado pequeña ({{ height }}px). La altura mínima requerida es de {{ min_height }}px. - - - - - fd389d6 - Este valor debería tener exactamente {{ limit }} carácter.|Este valor debería tener exactamente {{ limit }} caracteres. - - - - - b54c218 - Esta colección debe contener {{ limit }} elemento o más.|Esta colección debe contener {{ limit }} elementos o más. - - - - - 949632c - Esta colección debe contener {{ limit }} elemento o menos.|Esta colección debe contener {{ limit }} elementos o menos. - - - - - e0582dc - Esta colección debe contener exactamente {{ limit }} elemento.|Esta colección debe contener exactamente {{ limit }} elementos. - - - - - 9670078 - Este valor debería ser idéntico a {{ compared_value_type }} {{ compared_value }}. - - - - - 0eedf91 - Este valor no debería ser idéntico a {{ compared_value_type }} {{ compared_value }}. - - - - - 9c3ad0f - La proporción de la imagen es demasiado grande ({{ ratio }}). La máxima proporción permitida es {{ max_ratio }}. - - - - - 4376d45 - La proporción de la imagen es demasiado pequeña ({{ ratio }}). La mínima proporción permitida es {{ min_ratio }}. - - - - - 1dc128a - La imagen está orientada horizontalmente ({{ width }}x{{ height }}px). Las imágenes orientadas horizontalmente no están permitidas. - - - - - 9e27714 - La imagen está orientada verticalmente ({{ width }}x{{ height }}px). Las imágenes orientadas verticalmente no están permitidas. - - - - - 7e27e92 - Esta contraseña no se puede utilizar porque está incluida en un listado de contraseñas públicas obtenido gracias a fallos de seguridad de otros sitios y aplicaciones. Por favor utilice otra contraseña. - - - - - d165c02 - El número de elementos en esta colección debería ser múltiplo de {{ compared_value }}. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - No es posible dejar el resumen del artículo vacío. - - - - - obsolete - - - post.blank_content - No es posible dejar el contenido del artículo vacío. + The CSRF token is invalid. Please try to resubmit the form. + El token CSRF no es válido. Por favor, pruebe a enviar nuevamente el formulario. - + - obsolete + src/Entity/User.php:24 - post.too_short_content - El contenido del artículo es demasiado corto ({{ limit }} caracteres como mínimo) + user.duplicate_email + Ya existe un usuario con el correo electrónico {{ value }}. - + - obsolete + src/Entity/User.php:25 - post.too_many_tags - Demasiadas etiquetas (añade {{ limit }} como máximo) + user.duplicate_username + Ya existe un usuario con el nombre de usuario {{ value }}. - + - obsolete + src/Entity/User.php:57 - comment.blank - No es posible dejar el contenido del comentario vacío. + user.not_valid_password + Contraseña no válida. La contraseña debe contener al menos 6 caracteres. - + - obsolete + src/Entity/User.php:49 - comment.too_short - El comentario es demasiado corto ({{ limit }} caracteres como mínimo) + user.not_valid_email + Correo electrónico no válido - + - obsolete + src/Entity/User.php:43 - comment.too_long - El comentario es demasiado largo ({{ limit }} caracteres como máximo) + user.username_invalid_characters + El nombre de usuario solo puede contener letras latinas minúsculas, números y guiones bajos. - + - obsolete + src/Entity/User.php:35 + src/Entity/User.php:36 - comment.is_spam - El contenido del comentario se considera spam. + user.not_valid_display_name + Nombre para mostrar no válido diff --git a/translations/validators.fr.xlf b/translations/validators.fr.xlf index d3ff3ef7e..3605c31ba 100644 --- a/translations/validators.fr.xlf +++ b/translations/validators.fr.xlf @@ -2,162 +2,194 @@ + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. Cette valeur doit être fausse. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. Cette valeur doit être vraie. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. Cette valeur doit être de type {{ type }}. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. Cette valeur doit être vide + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. La valeur que vous avez sélectionnée n'est pas un choix valide. - - - 0d999f2 - Vous devez sélectionner au moins {{limit}} choix. | Vous devez sélectionner au moins {{limit}} choix. - - - - - 0824486 - Vous devez sélectionner au plus {{limit}} choix. | Vous devez sélectionner au plus {{limit}} choix. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. Une ou plusieurs des valeurs données ne sont pas valides. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. Ce champ n'était pas attendu. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. Ce champ est manquant. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. Cette valeur n'est pas une date valide. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. Cette valeur n'est pas une date / heure valide. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. Le format de l'adresse email est invalide. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. Le fichier est introuvable. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. Le fichier n'est pas lisible. - - - 1ad411a - Le fichier est trop volumineux ({{size}} {{suffix}}). La taille maximale autorisée est {{limit}} {{suffix}}. - - - - - 30a318d - Le type mime du fichier n'est pas valide ({{type}}). Les types mime autorisés sont {{types}}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. - Cette valeur doit être inférieure ou égale à {{limit}}. - - - - - 0e0c1e1 - Cette valeur est trop longue. Elle doit contenir au maximum {{limit}} caractère. | Cette valeur est trop longue. Elle doit contenir au maximum {{limit}} caractères. + Cette valeur doit être inférieure ou égale à {{ limit }}. + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. - Cette valeur doit être égale ou supérieure à {{limit}}. - - - - - 5188ff9 - Cette valeur est trop courte. Elle doit contenir au minimum {{limit}} caractère. | Cette valeur est trop courte. Elle doit contenir au minimum {{limit}} caractères. + Cette valeur doit être égale ou supérieure à {{ limit }}. + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. Cette valeur ne doit pas être vide. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. Cette valeur ne doit pas être nulle. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. Cette valeur doit être nulle. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. Cette valeur n'est pas valide. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. Cette valeur n'est pas une heure valide. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. L' URL n'est pas valide. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. - Le fichier est trop volumineux. La taille maximale autorisée est {{limit}} {{suffix}}. + Le fichier est trop volumineux. La taille maximale autorisée est {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. Le fichier est trop volumineux. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. Le fichier n'a pas pu être téléchargé. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. Cette valeur doit être un nombre valide. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. Ce fichier n'est pas une image valide. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. L'adresse IP n'est pas valide. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. Cette valeur n'est pas une langue valide. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. Cette valeur n'est pas un paramètre régional valide. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. Cette valeur n'est pas un pays valide. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. Cette valeur est déjà utilisée. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. La taille de l'image n'a pas pu être détectée. - - - 266051e - La largeur de l'image est trop grande ({{width}} px). La largeur maximale autorisée est de {{max_width}} px. - - - - - c1c23f9 - La largeur de l'image est trop petite ({{width}} px). La largeur minimale attendue est de {{min_width}} px. - - - - - 9a128f7 - La hauteur de l'image est trop grande ({{height}} px). La hauteur maximale autorisée est de {{max_height}} px. - - - - - 8a4cd70 - La hauteur de l'image est trop petite ({{height}} px). La hauteur minimale attendue est de {{min_height}} px. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. Cette valeur doit être le mot de passe actuel de l'utilisateur. - - - fd389d6 - Cette valeur doit avoir exactement {{limit}} caractère. | Cette valeur doit avoir exactement {{limit}} caractères. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. Le fichier n'a été que partiellement téléchargé. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. Aucun fichier n'a été téléchargé. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. Aucun dossier temporaire n'a été configuré dans php.ini ou le dossier configuré n'existe pas. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. Impossible d'écrire le fichier temporaire sur le disque. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. Une extension PHP a provoqué l'échec du téléchargement. - - - b54c218 - Cette collection doit contenir au minimum {{limit}} élément. | Cette collection doit contenir au minimum {{limit}} éléments. - - - - - 949632c - Cette collection doit contenir au mamaximum {{limit}} élément. | Cette collection doit contenir au mamaximum {{limit}} éléments. - - - - - e0582dc - Cette collection doit contenir exactement {{limit}} élément. | Cette collection doit contenir exactement {{limit}} éléments. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Numéro de carte invalide. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Type de carte non pris en charge ou numéro de carte non valide. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). Ce n'est pas un numéro de compte bancaire international (IBAN) valide. + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. Cette valeur n'est pas un ISBN-10 valide. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. Cette valeur n'est pas un ISBN-13 valide. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. Cette valeur n'est ni un ISBN-10 valide ni un ISBN-13 valide. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. Cette valeur n'est pas un ISSN valide. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. Cette valeur n'est pas une devise valide. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. - Cette valeur doit être égale à {{compare_value}}. + Cette valeur doit être égale à {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. - Cette valeur doit être supérieure à {{compare_value}}. + Cette valeur doit être supérieure à {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. - Cette valeur doit être supérieure ou égale à {{compare_value}}. - - - - - 9670078 - Cette valeur doit être identique à {{compare_value_type}} {{compare_value}}. + Cette valeur doit être supérieure ou égale à {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. - Cette valeur doit être inférieure à {{compare_value}}. + Cette valeur doit être inférieure à {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. - Cette valeur doit être inférieure ou égale à {{compare_value}}. + Cette valeur doit être inférieure ou égale à {{ compared_value }}. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. - Cette valeur ne doit pas être égale à {{compare_value}}. - - - - - 0eedf91 - Cette valeur ne doit pas être identique à {{compare_value_type}} {{compare_value}}. - - - - - 9c3ad0f - Le ratio de l'image est trop grand ({{ratio}}). Le ratio maximal autorisé est de {{max_ratio}}. - - - - - 4376d45 - Le ratio de l'image est trop petit ({{ratio}}). Le ratio minimum autorisé est de {{min_ratio}}. + Cette valeur ne doit pas être égale à {{ compared_value }}. + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. - L'image est carrée ({{width}} x {{height}} px). Les images carrées ne sont pas autorisées. - - - - - 1dc128a - L'image est orientée paysage ({{width}} x {{height}} px). Les images orientées paysage ne sont pas autorisées. - - - - - 9e27714 - L'image est orientée portrait ({{width}} x {{height}} px). Les images orientées portrait ne sont pas autorisées. + L'image est carrée ({{ width }} x {{ height }} px). Les images carrées ne sont pas autorisées. + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. Un fichier vide n'est pas autorisé. @@ -458,216 +508,208 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. - Cette valeur ne correspond pas au jeu de caractères {{charset}} attendu. + Cette valeur ne correspond pas au jeu de caractères {{ charset }} attendu. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). Ce n'est pas un code d'identification d'entreprise (BIC) valide. + + assets/js/app/ajax-save.js:37 + Error Erreur + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. Ce n'est pas un UUID valide. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. - Cette valeur doit être un multiple de {{compare_value}}. + Cette valeur doit être un multiple de {{ compared_value }}. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. - Ce code d'identification d'entreprise (BIC) n'est pas associé à l'IBAN {{iban}}. + Ce code d'identification d'entreprise (BIC) n'est pas associé à l'IBAN {{ iban }}. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. Cette valeur doit être un JSON valide. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. Cette collection ne doit contenir que des éléments uniques. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. Cette valeur doit être positive. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. Cette valeur doit être positive ou égale à zéro. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. Cette valeur doit être négative. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. Cette valeur doit être négative ou égale à zéro. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. Le fuseau horaire n'est pas valide. - - - 7e27e92 - Ce mot de passe a été divulgué lors d'une violation de données, il ne doit pas être utilisé. Veuillez utiliser un autre mot de passe. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. - Cette valeur doit être comprise entre {{min}} et {{max}}. + Cette valeur doit être comprise entre {{ min }} et {{ max }}. + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. Ce formulaire ne doit pas contenir de champs supplémentaires. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. Le fichier téléchargé était trop volumineux. Veuillez essayer de télécharger un fichier plus petit. - - The CSRF token is invalid. Please try to resubmit the form. - Le jeton CSRF n'est pas valide. Veuillez réessayer de soumettre le formulaire. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - Donnez à votre publication un résumé ! - - - - - obsolete - - - post.blank_content - Votre publication devrait avoir du contenu ! - - - - - obsolete - - - post.too_short_content - le contenu de votre publication est trop court ({{limit}} caractères minimum) - - - - - obsolete - - - post.too_many_tags - Trop de balises (ajoutez au maximum {{limit}} balises ). - - - - - obsolete - - - comment.blank - Veuillez ne pas laisser votre commentaire vide ! - - - - - obsolete - - - comment.too_short - Le commentaire est trop court ({{limit}} caractères minimum) - - - - - obsolete - - - comment.too_long - Le commentaire est trop long ({{limit}} caractères maximum) + The CSRF token is invalid. Please try to resubmit the form. + Le jeton CSRF n'est pas valide. Veuillez réessayer de soumettre le formulaire. - + - obsolete + src/Entity/User.php:24 - - comment.is_spam - Le contenu de ce commentaire est considéré comme un spam. - - - user.duplicate_email - Cette adresse e-mail {{value}} est déjà utilisée. + Cette adresse e-mail {{ value }} est déjà utilisée. + + src/Entity/User.php:25 + user.duplicate_username - Le nom d'utilisateur {{value}} existe déjà. + Le nom d'utilisateur {{ value }} existe déjà. + + src/Entity/User.php:57 + user.not_valid_password Mot de passe incorrect. Le mot de passe doit contenir au moins 6 caractères. + + src/Entity/User.php:49 + user.not_valid_email Email invalide + + src/Entity/User.php:43 + user.username_invalid_characters Le nom d'utilisateur ne doit contenir que des caractères latins minuscules, des chiffres et des traits de soulignement. + + src/Entity/User.php:35 + src/Entity/User.php:36 + user.not_valid_display_name Nom d'affichage non valide diff --git a/translations/validators.hu.xlf b/translations/validators.hu.xlf index 452c1584f..95c8537c9 100644 --- a/translations/validators.hu.xlf +++ b/translations/validators.hu.xlf @@ -1,446 +1,719 @@ - - -
- -
- - + + + + + vendor/symfony/validator/Constraints/IsFalse.php:36 + + This value should be false. Ennek az értéknek hamisnak kell lennie. - - +
+
+ + + vendor/symfony/validator/Constraints/IsTrue.php:36 + + This value should be true. Ennek az értéknek igaznak kell lennie. - - + + + + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + + This value should be of type {{ type }}. Ennek az értéknek {{ type }} típusúnak kell lennie. - - + + + + + vendor/symfony/validator/Constraints/Blank.php:36 + + This value should be blank. Ennek az értéknek üresnek kell lennie. - - + + + + + vendor/symfony/validator/Constraints/Choice.php:47 + + The value you selected is not a valid choice. A választott érték érvénytelen. - - - You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices. - Legalább {{ limit }} értéket kell kiválasztani.|Legalább {{ limit }} értéket kell kiválasztani. - - - You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices. - Legfeljebb {{ limit }} értéket lehet kiválasztani.|Legfeljebb {{ limit }} értéket lehet kiválasztani. - - + + + + + vendor/symfony/validator/Constraints/Choice.php:48 + + One or more of the given values is invalid. A megadott értékek közül legalább egy érvénytelen. - - + + + + + vendor/symfony/validator/Constraints/Collection.php:42 + + This field was not expected. Nem várt mező. - - + + + + + vendor/symfony/validator/Constraints/Collection.php:43 + + This field is missing. Ez a mező hiányzik. - - + + + + + vendor/symfony/validator/Constraints/Date.php:38 + + This value is not a valid date. Ez az érték nem egy érvényes dátum. - - + + + + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + + This value is not a valid datetime. Ez az érték nem egy érvényes időpont. - - + + + + + vendor/symfony/validator/Constraints/Email.php:54 + + This value is not a valid email address. Ez az érték nem egy érvényes e-mail cím. - - + + + + + vendor/symfony/validator/Constraints/File.php:57 + + The file could not be found. A fájl nem található. - - + + + + + vendor/symfony/validator/Constraints/File.php:58 + + The file is not readable. A fájl nem olvasható. - - - The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}. - A fájl túl nagy ({{ size }} {{ suffix }}). A legnagyobb megengedett méret {{ limit }} {{ suffix }}. - - - The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}. - A fájl MIME típusa érvénytelen ({{ type }}). Az engedélyezett MIME típusok: {{ types }}. - - + + + + + vendor/symfony/validator/Constraints/Range.php:48 + + This value should be {{ limit }} or less. Ez az érték legfeljebb {{ limit }} lehet. - - - This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less. - Ez az érték túl hosszú. Legfeljebb {{ limit }} karaktert tartalmazhat.|Ez az érték túl hosszú. Legfeljebb {{ limit }} karaktert tartalmazhat. - - + + + + + vendor/symfony/validator/Constraints/Range.php:47 + + This value should be {{ limit }} or more. Ez az érték legalább {{ limit }} kell, hogy legyen. - - - This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more. - Ez az érték túl rövid. Legalább {{ limit }} karaktert kell tartalmaznia.|Ez az érték túl rövid. Legalább {{ limit }} karaktert kell tartalmaznia. - - + + + + + vendor/symfony/validator/Constraints/NotBlank.php:38 + + This value should not be blank. Ez az érték nem lehet üres. - - + + + + + vendor/symfony/validator/Constraints/NotNull.php:36 + + This value should not be null. Ez az érték nem lehet null. - - + + + + + vendor/symfony/validator/Constraints/IsNull.php:36 + + This value should be null. Ennek az értéknek nullnak kell lennie. - - + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + + This value is not valid. Ez az érték nem érvényes. - - + + + + + vendor/symfony/validator/Constraints/Time.php:39 + + This value is not a valid time. Ez az érték nem egy érvényes időpont. - - + + + + + vendor/symfony/validator/Constraints/Url.php:37 + + This value is not a valid URL. Ez az érték nem egy érvényes URL. - - + + + + The two values should be equal. A két értéknek azonosnak kell lennie. - - + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. A fájl túl nagy. A megengedett maximális méret: {{ limit }} {{ suffix }}. - - + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + + The file is too large. A fájl túl nagy. - - + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + + The file could not be uploaded. A fájl nem tölthető fel. - - + + + + + vendor/symfony/validator/Constraints/Range.php:49 + + This value should be a valid number. Ennek az értéknek érvényes számnak kell lennie. - - + + + + + vendor/symfony/validator/Constraints/Image.php:82 + + This file is not a valid image. Ez a fájl nem egy érvényes kép. - - + + + + + vendor/symfony/validator/Constraints/Ip.php:85 + + This is not a valid IP address. Ez az érték nem egy érvényes IP cím. - - + + + + + vendor/symfony/validator/Constraints/Language.php:38 + + This value is not a valid language. Ez az érték nem egy érvényes nyelv. - - + + + + + vendor/symfony/validator/Constraints/Locale.php:38 + + This value is not a valid locale. Ez az érték nem egy érvényes területi beállítás. - - + + + + + vendor/symfony/validator/Constraints/Country.php:38 + + This value is not a valid country. Ez az érték nem egy érvényes ország. - - + + + + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + + This value is already used. Ez az érték már használatban van. - - + + + + + vendor/symfony/validator/Constraints/Image.php:83 + + The size of the image could not be detected. A kép méretét nem lehet megállapítani. - - - The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px. - A kép szélessége túl nagy ({{ width }}px). A megengedett legnagyobb szélesség {{ max_width }}px. - - - The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px. - A kép szélessége túl kicsi ({{ width }}px). Az elvárt legkisebb szélesség {{ min_width }}px. - - - The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px. - A kép magassága túl nagy ({{ height }}px). A megengedett legnagyobb magasság {{ max_height }}px. - - - The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px. - A kép magassága túl kicsi ({{ height }}px). Az elvárt legkisebb magasság {{ min_height }}px. - - + + + + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + + This value should be the user's current password. Ez az érték a felhasználó jelenlegi jelszavával kell megegyezzen. - - - This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters. - Ennek az értéknek pontosan {{ limit }} karaktert kell tartalmaznia.|Ennek az értéknek pontosan {{ limit }} karaktert kell tartalmaznia. - - + + + + + vendor/symfony/validator/Constraints/File.php:67 + + The file was only partially uploaded. A fájl csak részben lett feltöltve. - - + + + + + vendor/symfony/validator/Constraints/File.php:68 + + No file was uploaded. Nem lett fájl feltöltve. - - + + + + + vendor/symfony/validator/Constraints/File.php:69 + + No temporary folder was configured in php.ini. Nincs ideiglenes könyvtár beállítva a php.ini-ben. - - + + + + + vendor/symfony/validator/Constraints/File.php:70 + + Cannot write temporary file to disk. Az ideiglenes fájl nem írható a lemezre. - - + + + + + vendor/symfony/validator/Constraints/File.php:71 + + A PHP extension caused the upload to fail. Egy PHP bővítmény miatt a feltöltés nem sikerült. - - - This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more. - Ennek a gyűjteménynek legalább {{ limit }} elemet kell tartalmaznia.|Ennek a gyűjteménynek legalább {{ limit }} elemet kell tartalmaznia. - - - This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less. - Ez a gyűjtemény legfeljebb {{ limit }} elemet tartalmazhat.|Ez a gyűjtemény legfeljebb {{ limit }} elemet tartalmazhat. - - - This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements. - Ennek a gyűjteménynek pontosan {{ limit }} elemet kell tartalmaznia.|Ennek a gyűjteménynek pontosan {{ limit }} elemet kell tartalmaznia. - - + + + + + vendor/symfony/validator/Constraints/Luhn.php:42 + + Invalid card number. Érvénytelen kártyaszám. - - + + + + + vendor/symfony/validator/Constraints/CardScheme.php:54 + + Unsupported card type or invalid card number. Nem támogatott kártyatípus vagy érvénytelen kártyaszám. - - + + + + + vendor/symfony/validator/Constraints/Iban.php:46 + + This is not a valid International Bank Account Number (IBAN). Érvénytelen nemzetközi bankszámlaszám (IBAN). - - + + + + + vendor/symfony/validator/Constraints/Isbn.php:49 + + This value is not a valid ISBN-10. Ez az érték nem egy érvényes ISBN-10. - - + + + + + vendor/symfony/validator/Constraints/Isbn.php:50 + + This value is not a valid ISBN-13. Ez az érték nem egy érvényes ISBN-13. - - + + + + + vendor/symfony/validator/Constraints/Isbn.php:51 + + This value is neither a valid ISBN-10 nor a valid ISBN-13. Ez az érték nem egy érvényes ISBN-10 vagy ISBN-13. - - + + + + + vendor/symfony/validator/Constraints/Issn.php:47 + + This value is not a valid ISSN. Ez az érték nem egy érvényes ISSN. - - + + + + + vendor/symfony/validator/Constraints/Currency.php:39 + + This value is not a valid currency. Ez az érték nem egy érvényes pénznem. - - + + + + + vendor/symfony/validator/Constraints/EqualTo.php:35 + + This value should be equal to {{ compared_value }}. Ez az érték legyen {{ compared_value }}. - - + + + + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + + This value should be greater than {{ compared_value }}. Ez az érték nagyobb legyen, mint {{ compared_value }}. - - + + + + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + + This value should be greater than or equal to {{ compared_value }}. Ez az érték nagyobb vagy egyenlő legyen, mint {{ compared_value }}. - - - This value should be identical to {{ compared_value_type }} {{ compared_value }}. - Ez az érték ugyanolyan legyen, mint {{ compared_value_type }} {{ compared_value }}. - - + + + + + vendor/symfony/validator/Constraints/LessThan.php:35 + + This value should be less than {{ compared_value }}. Ez az érték kisebb legyen, mint {{ compared_value }}. - - + + + + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + + This value should be less than or equal to {{ compared_value }}. Ez az érték kisebb vagy egyenlő legyen, mint {{ compared_value }}. - - + + + + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + + This value should not be equal to {{ compared_value }}. Ez az érték ne legyen {{ compared_value }}. - - - This value should not be identical to {{ compared_value_type }} {{ compared_value }}. - Ez az érték ne legyen ugyanolyan, mint {{ compared_value_type }} {{ compared_value }}. - - - The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}. - A képarány túl nagy ({{ ratio }}). A megengedett legnagyobb képarány {{ max_ratio }}. - - - The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}. - A képarány túl kicsi ({{ ratio }}). A megengedett legkisebb képarány {{ min_ratio }}. - - + + + + + vendor/symfony/validator/Constraints/Image.php:92 + + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. A kép négyzet alakú ({{ width }}x{{ height }}px). A négyzet alakú képek nem engedélyezettek. - - - The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed. - A kép fekvő tájolású ({{ width }}x{{ height }}px). A fekvő tájolású képek nem engedélyezettek. - - - The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. - A kép álló tájolású ({{ width }}x{{ height }}px). Az álló tájolású képek nem engedélyezettek. - - + + + + + vendor/symfony/validator/Constraints/File.php:62 + + An empty file is not allowed. Üres fájl nem megengedett. - - + + + + The host could not be resolved. Az állomásnevet nem lehet feloldani. - - + + + + + vendor/symfony/validator/Constraints/Length.php:57 + + This value does not match the expected {{ charset }} charset. Ez az érték nem az elvárt {{ charset }} karakterkódolást használja. - - + + + + + vendor/symfony/validator/Constraints/Bic.php:49 + + This is not a valid Business Identifier Code (BIC). Érvénytelen nemzetközi bankazonosító kód (BIC/SWIFT). - - + + + + + assets/js/app/ajax-save.js:37 + + Error Hiba - - + + + + + vendor/symfony/validator/Constraints/Uuid.php:80 + + This is not a valid UUID. Érvénytelen egyedi azonosító (UUID). - - + + + + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + + This value should be a multiple of {{ compared_value }}. Ennek az értéknek oszthatónak kell lennie a következővel: {{ compared_value }} - - + + + + + vendor/symfony/validator/Constraints/Bic.php:50 + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. Ez a Bankazonosító kód (BIC) nem kapcsolódik az IBAN kódhoz ({{ iban }}). - - + + + + + vendor/symfony/validator/Constraints/Json.php:36 + + This value should be valid JSON. Ez az érték érvényes JSON kell, hogy legyen. - - + + + + + vendor/symfony/validator/Constraints/Unique.php:39 + + + This collection should contain only unique elements. + Ez a gyűjtemény csak egyedi elemeket tartalmazhat. + + + + + vendor/symfony/validator/Constraints/Positive.php:25 + + This value should be positive. Ennek az értéknek pozitívnak kell lennie. - - + + + + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + + This value should be either positive or zero. Ennek az értéknek pozitívnak vagy nullának kell lennie. - - + + + + + vendor/symfony/validator/Constraints/Negative.php:25 + + This value should be negative. Ennek az értéknek negatívnak kell lennie. - - + + + + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + + This value should be either negative or zero. Ennek az értéknek negatívnak vagy nullának kell lennie. - - - This collection should contain only unique elements. - Ez a gyűjtemény csak egyedi elemeket tartalmazhat. - - + + + + + vendor/symfony/validator/Constraints/Timezone.php:35 + + This value is not a valid timezone. Ez az érték nem egy érvényes időzóna. - - - This password has been leaked in a data breach, it must not be used. Please use another password. - Ez a jelszó korábban egy adatvédelmi incidens során illetéktelenek kezébe került, így nem használható. Kérjük, használjon másik jelszót. - - + + + + + vendor/symfony/validator/Constraints/Range.php:46 + + This value should be between {{ min }} and {{ max }}. Ennek az értéknek {{ min }} és {{ max }} között kell lennie. - - - This value is not a valid hostname. - Ez az érték nem egy érvényes állomásnév (hosztnév). - - - The number of elements in this collection should be a multiple of {{ compared_value }}. - A gyűjteményben lévő elemek számának oszthatónak kell lennie a következővel: {{ compared_value }}. - - - This value should satisfy at least one of the following constraints: - Ennek az értéknek meg kell felelni legalább egynek a következő feltételek közül: - - - Each element of this collection should satisfy its own set of constraints. - A gyűjtemény minden elemének meg kell felelni a saját feltételeinek. - - + + + + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + + This form should not contain extra fields. Ez a mezőcsoport nem tartalmazhat extra mezőket. - - + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + + The uploaded file was too large. Please try to upload a smaller file. A feltöltött fájl túl nagy. Kérem, próbáljon egy kisebb fájlt feltölteni. - - + + + + + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 + + The CSRF token is invalid. Please try to resubmit the form. Érvénytelen CSRF token. Kérem, próbálja újra elküldeni az űrlapot. - - - This value is not a valid HTML5 color. - Ez az érték nem egy érvényes HTML5 szín. - - - post.blank_summary - Írj hozzá egy összefoglaló részt! - obsolete - - - post.blank_content - A posztnak tartalmaznia kell valami tartalmat! - obsolete - - - post.too_short_content - A poszt túl rövid! (minimum {{ limit }} karakter) - obsolete - - - post.too_many_tags - Túl sok cimke (maximum {{ limit }} cimke lehet) - obsolete - - - comment.blank - Kérlek ne hagyd üresen a kommentet! - obsolete - - - comment.too_short - A komment túl rövid! (minimum {{ limit }} karakter) - obsolete - - - comment.too_long - A komment túl hosszú! (maximum {{ limit }} karakter lehet) - obsolete - - - comment.is_spam - A komment tartalma spamnek tűnik. - obsolete - - + + + + + src/Entity/User.php:24 + + + user.duplicate_email + Már létezik felhasználó a következő e-mail címmel: {{ value }}. + + + + + src/Entity/User.php:25 + + + user.duplicate_username + Már létezik felhasználó a következő felhasználónévvel: {{ value }}. + + + + + src/Entity/User.php:57 + + + user.not_valid_password + Érvénytelen jelszó. A jelszónak legalább 6 karaktert kell tartalmaznia. + + + + + src/Entity/User.php:49 + + + user.not_valid_email + Érvénytelen e-mail cím + + + + + src/Entity/User.php:43 + + + user.username_invalid_characters + A felhasználónév csak kisbetűs latin karaktereket, számokat és aláhúzásjeleket tartalmazhat. + + + + + src/Entity/User.php:35 + src/Entity/User.php:36 + + + user.not_valid_display_name + Érvénytelen megjelenített név + +
diff --git a/translations/validators.it.xlf b/translations/validators.it.xlf index aa39b77c7..ee22a0c1b 100644 --- a/translations/validators.it.xlf +++ b/translations/validators.it.xlf @@ -1,67 +1,718 @@ - + - obsolete + vendor/symfony/validator/Constraints/IsFalse.php:36 - post.blank_summary - Da' una descrizione al tuo post! + This value should be false. + Questo valore dovrebbe essere falso. - + - obsolete + vendor/symfony/validator/Constraints/IsTrue.php:36 - post.blank_content - Da' un contenuto al tuo post! + This value should be true. + Questo valore dovrebbe essere vero. - + - obsolete + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 - post.too_short_content - Il contenuto del post è troppo breve (minimo {{ limit }} caratteri) + This value should be of type {{ type }}. + Questo valore dovrebbe essere di tipo {{ type }}. - + - obsolete + vendor/symfony/validator/Constraints/Blank.php:36 - comment.blank - Per favore non lasciare in bianco il tuo commento! + This value should be blank. + Questo valore dovrebbe essere vuoto. - + - obsolete + vendor/symfony/validator/Constraints/Choice.php:47 - comment.too_short - Il commento è troppo breve (minimo {{ limit }} caratteri) + The value you selected is not a valid choice. + Il valore selezionato non è una scelta valida. - + - obsolete + vendor/symfony/validator/Constraints/Choice.php:48 - comment.too_long - Il commento è troppo lungo (massimo {{ limit }} caratteri) + One or more of the given values is invalid. + Uno o più valori inseriti non sono validi. - + - obsolete + vendor/symfony/validator/Constraints/Collection.php:42 - comment.is_spam - Il contenuto di questo commento è considerato come spam. + This field was not expected. + Questo campo non è stato previsto. + + + + + vendor/symfony/validator/Constraints/Collection.php:43 + + + This field is missing. + Questo campo è mancante. + + + + + vendor/symfony/validator/Constraints/Date.php:38 + + + This value is not a valid date. + Questo valore non è una data valida. + + + + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + + + This value is not a valid datetime. + Questo valore non è una data e ora valida. + + + + + vendor/symfony/validator/Constraints/Email.php:54 + + + This value is not a valid email address. + Questo valore non è un indirizzo email valido. + + + + + vendor/symfony/validator/Constraints/File.php:57 + + + The file could not be found. + Non è stato possibile trovare il file. + + + + + vendor/symfony/validator/Constraints/File.php:58 + + + The file is not readable. + Il file non è leggibile. + + + + + vendor/symfony/validator/Constraints/Range.php:48 + + + This value should be {{ limit }} or less. + Questo valore dovrebbe essere {{ limit }} o inferiore. + + + + + vendor/symfony/validator/Constraints/Range.php:47 + + + This value should be {{ limit }} or more. + Questo valore dovrebbe essere {{ limit }} o superiore. + + + + + vendor/symfony/validator/Constraints/NotBlank.php:38 + + + This value should not be blank. + Questo valore non dovrebbe essere vuoto. + + + + + vendor/symfony/validator/Constraints/NotNull.php:36 + + + This value should not be null. + Questo valore non dovrebbe essere nullo. + + + + + vendor/symfony/validator/Constraints/IsNull.php:36 + + + This value should be null. + Questo valore dovrebbe essere nullo. + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + + + This value is not valid. + Questo valore non è valido. + + + + + vendor/symfony/validator/Constraints/Time.php:39 + + + This value is not a valid time. + Questo valore non è un'ora valida. + + + + + vendor/symfony/validator/Constraints/Url.php:37 + + + This value is not a valid URL. + Questo valore non è un URL valido. + + + + + The two values should be equal. + I due valori dovrebbero essere uguali. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + + + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. + Il file è troppo grande. La dimensione massima è {{ limit }} {{ suffix }}. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + + + The file is too large. + Il file è troppo grande. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + + + The file could not be uploaded. + Il file non può essere caricato. + + + + + vendor/symfony/validator/Constraints/Range.php:49 + + + This value should be a valid number. + Questo valore dovrebbe essere un numero. + + + + + vendor/symfony/validator/Constraints/Image.php:82 + + + This file is not a valid image. + Questo file non è una immagine valida. + + + + + vendor/symfony/validator/Constraints/Ip.php:85 + + + This is not a valid IP address. + Questo non è un indirizzo IP valido. + + + + + vendor/symfony/validator/Constraints/Language.php:38 + + + This value is not a valid language. + Questo valore non è una lingua valida. + + + + + vendor/symfony/validator/Constraints/Locale.php:38 + + + This value is not a valid locale. + Questo valore non è una impostazione regionale valida. + + + + + vendor/symfony/validator/Constraints/Country.php:38 + + + This value is not a valid country. + Questo valore non è una nazione valida. + + + + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + + + This value is already used. + Questo valore è già stato utilizzato. + + + + + vendor/symfony/validator/Constraints/Image.php:83 + + + The size of the image could not be detected. + La dimensione dell'immagine non può essere determinata. + + + + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + + + This value should be the user's current password. + Questo valore dovrebbe essere la password attuale dell'utente. + + + + + vendor/symfony/validator/Constraints/File.php:67 + + + The file was only partially uploaded. + Il file è stato caricato solo parzialmente. + + + + + vendor/symfony/validator/Constraints/File.php:68 + + + No file was uploaded. + Nessun file è stato caricato. + + + + + vendor/symfony/validator/Constraints/File.php:69 + + + No temporary folder was configured in php.ini. + Nessuna cartella temporanea è stata configurata in php.ini, o la cartella configurata non esiste. + + + + + vendor/symfony/validator/Constraints/File.php:70 + + + Cannot write temporary file to disk. + Impossibile scrivere il file temporaneo sul disco. + + + + + vendor/symfony/validator/Constraints/File.php:71 + + + A PHP extension caused the upload to fail. + Un'estensione PHP ha causato il fallimento del caricamento. + + + + + vendor/symfony/validator/Constraints/Luhn.php:42 + + + Invalid card number. + Numero di carta non valido. + + + + + vendor/symfony/validator/Constraints/CardScheme.php:54 + + + Unsupported card type or invalid card number. + Tipo di carta non supportato o numero non valido. + + + + + vendor/symfony/validator/Constraints/Iban.php:46 + + + This is not a valid International Bank Account Number (IBAN). + Questo non è un codice IBAN (International Bank Account Number) valido. + + + + + vendor/symfony/validator/Constraints/Isbn.php:49 + + + This value is not a valid ISBN-10. + Questo valore non è un codice ISBN-10 valido. + + + + + vendor/symfony/validator/Constraints/Isbn.php:50 + + + This value is not a valid ISBN-13. + Questo valore non è un codice ISBN-13 valido. + + + + + vendor/symfony/validator/Constraints/Isbn.php:51 + + + This value is neither a valid ISBN-10 nor a valid ISBN-13. + Questo valore non è un codice ISBN-10 o ISBN-13 valido. + + + + + vendor/symfony/validator/Constraints/Issn.php:47 + + + This value is not a valid ISSN. + Questo valore non è un codice ISSN valido. + + + + + vendor/symfony/validator/Constraints/Currency.php:39 + + + This value is not a valid currency. + Questo valore non è una valuta valida. + + + + + vendor/symfony/validator/Constraints/EqualTo.php:35 + + + This value should be equal to {{ compared_value }}. + Questo valore dovrebbe essere uguale a {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + + + This value should be greater than {{ compared_value }}. + Questo valore dovrebbe essere maggiore di {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + + + This value should be greater than or equal to {{ compared_value }}. + Questo valore dovrebbe essere maggiore o uguale a {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/LessThan.php:35 + + + This value should be less than {{ compared_value }}. + Questo valore dovrebbe essere minore di {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + + + This value should be less than or equal to {{ compared_value }}. + Questo valore dovrebbe essere minore o uguale a {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + + + This value should not be equal to {{ compared_value }}. + Questo valore dovrebbe essere diverso da {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/Image.php:92 + + + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. + L'immagine è quadrata ({{ width }}x{{ height }}px). Le immagini quadrate non sono consentite. + + + + + vendor/symfony/validator/Constraints/File.php:62 + + + An empty file is not allowed. + Un file vuoto non è consentito. + + + + + The host could not be resolved. + L'host non può essere risolto. + + + + + vendor/symfony/validator/Constraints/Length.php:57 + + + This value does not match the expected {{ charset }} charset. + Questo valore non corrisponde al charset {{ charset }} previsto. + + + + + vendor/symfony/validator/Constraints/Bic.php:49 + + + This is not a valid Business Identifier Code (BIC). + Questo non è un codice identificativo aziendale (BIC) valido. + + + + + assets/js/app/ajax-save.js:37 + + + Error + Errore + + + + + vendor/symfony/validator/Constraints/Uuid.php:80 + + + This is not a valid UUID. + Questo non è un UUID valido. + + + + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + + + This value should be a multiple of {{ compared_value }}. + Questo valore dovrebbe essere un multiplo di {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/Bic.php:50 + + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. + Questo codice identificativo bancario (BIC) non è associato all'IBAN {{ iban }}. + + + + + vendor/symfony/validator/Constraints/Json.php:36 + + + This value should be valid JSON. + Questo valore dovrebbe essere un JSON valido. + + + + + vendor/symfony/validator/Constraints/Unique.php:39 + + + This collection should contain only unique elements. + Questa collezione dovrebbe contenere solo elementi unici. + + + + + vendor/symfony/validator/Constraints/Positive.php:25 + + + This value should be positive. + Questo valore dovrebbe essere positivo. + + + + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + + + This value should be either positive or zero. + Questo valore dovrebbe essere positivo oppure zero. + + + + + vendor/symfony/validator/Constraints/Negative.php:25 + + + This value should be negative. + Questo valore dovrebbe essere negativo. + + + + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + + + This value should be either negative or zero. + Questo valore dovrebbe essere negativo oppure zero. + + + + + vendor/symfony/validator/Constraints/Timezone.php:35 + + + This value is not a valid timezone. + Questo valore non è un fuso orario valido. + + + + + vendor/symfony/validator/Constraints/Range.php:46 + + + This value should be between {{ min }} and {{ max }}. + Questo valore dovrebbe essere compreso tra {{ min }} e {{ max }}. + + + + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + + + This form should not contain extra fields. + Questo form non dovrebbe contenere nessun campo extra. + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + + + The uploaded file was too large. Please try to upload a smaller file. + Il file caricato è troppo grande. Per favore, carica un file più piccolo. + + + + + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 + + + The CSRF token is invalid. Please try to resubmit the form. + Il token CSRF non è valido. Prova a reinviare il form. + + + + + src/Entity/User.php:24 + + + user.duplicate_email + Esiste già un utente con l'email {{ value }}. + + + + + src/Entity/User.php:25 + + + user.duplicate_username + Esiste già un utente con il nome utente {{ value }}. + + + + + src/Entity/User.php:57 + + + user.not_valid_password + Password non valida. La password deve contenere almeno 6 caratteri. + + + + + src/Entity/User.php:49 + + + user.not_valid_email + Email non valida + + + + + src/Entity/User.php:43 + + + user.username_invalid_characters + Il nome utente deve contenere solo lettere latine minuscole, numeri e trattini bassi. + + + + + src/Entity/User.php:35 + src/Entity/User.php:36 + + + user.not_valid_display_name + Nome visualizzato non valido diff --git a/translations/validators.nl.xlf b/translations/validators.nl.xlf index 583d68c81..cef762c3e 100644 --- a/translations/validators.nl.xlf +++ b/translations/validators.nl.xlf @@ -1,163 +1,195 @@ - + + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. Deze waarde moet onwaar zijn. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. Deze waarde moet waar zijn. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. Deze waarde moet van het type {{ type }} zijn. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. Deze waarde moet leeg zijn. + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. De geselecteerde waarde is geen geldige optie. - - - 0d999f2 - Selecteer ten minste {{ limit }} optie.|Selecteer ten minste {{ limit }} opties. - - - - - 0824486 - Selecteer maximaal {{ limit }} optie.|Selecteer maximaal {{ limit }} opties. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. Eén of meer van de ingegeven waarden zijn ongeldig. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. Dit veld werd niet verwacht. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. Dit veld ontbreekt. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. Deze waarde is geen geldige datum. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. Deze waarde is geen geldige datum en tijd. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. Deze waarde is geen geldig e-mailadres. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. Het bestand kon niet gevonden worden. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. Het bestand is niet leesbaar. - - - 1ad411a - Het bestand is te groot ({{ size }} {{ suffix }}). Toegestane maximum grootte is {{ limit }} {{ suffix }}. - - - - - 30a318d - Het mime type van het bestand is ongeldig ({{ type }}). Toegestane mime types zijn {{ types }}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. Deze waarde moet {{ limit }} of minder zijn. - - - 0e0c1e1 - Deze waarde is te lang. Hij mag maximaal {{ limit }} teken bevatten.|Deze waarde is te lang. Hij mag maximaal {{ limit }} tekens bevatten. - - + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. Deze waarde moet {{ limit }} of meer zijn. - - - 5188ff9 - Deze waarde is te kort. Hij moet tenminste {{ limit }} teken bevatten.|Deze waarde is te kort. Hij moet tenminste {{ limit }} tekens bevatten. - - + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. Deze waarde mag niet leeg zijn. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. Deze waarde mag niet null zijn. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. Deze waarde moet null zijn. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. Deze waarde is niet geldig. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. Deze waarde is geen geldige tijd. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. Deze waarde is geen geldige URL. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. Het bestand is te groot. Toegestane maximum grootte is {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. Het bestand is te groot. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. Het bestand kon niet worden geüpload. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. Deze waarde moet een geldig getal zijn. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. Dit bestand is geen geldige afbeelding. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. Dit is geen geldig IP-adres. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. Deze waarde is geen geldige taal. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. Deze waarde is geen geldige locale. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. Deze waarde is geen geldig land. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. Deze waarde wordt al gebruikt. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. De grootte van de afbeelding kon niet bepaald worden. - - - 266051e - De afbeelding is te breed ({{ width }}px). De maximaal toegestane breedte is {{ max_width }}px. - - - - - c1c23f9 - De afbeelding is niet breed genoeg ({{ width }}px). De minimaal verwachte breedte is {{ min_width }}px. - - - - - 9a128f7 - De afbeelding is te hoog ({{ height }}px). De maximaal toegestane hoogte is {{ max_height }}px. - - - - - 8a4cd70 - De afbeelding is niet hoog genoeg ({{ height }}px). De minimaal verwachte hoogte is {{ min_height }}px. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. Deze waarde moet het huidige wachtwoord van de gebruiker zijn. - - - fd389d6 - Deze waarde moet exact {{ limit }} teken lang zijn.|Deze waarde moet exact {{ limit }} tekens lang zijn. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. Het bestand is slechts gedeeltelijk geüpload. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. Er is geen bestand geüpload. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. Er is geen tijdelijke map geconfigureerd in php.ini, of de gespecificeerde map bestaat niet. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. Kan het tijdelijke bestand niet wegschrijven op disk. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. De upload is mislukt vanwege een PHP-extensie. - - - b54c218 - Deze collectie moet {{ limit }} element of meer bevatten.|Deze collectie moet {{ limit }} elementen of meer bevatten. - - - - - 949632c - Deze collectie moet {{ limit }} element of minder bevatten.|Deze collectie moet {{ limit }} elementen of minder bevatten. - - - - - e0582dc - Deze collectie moet exact {{ limit }} element bevatten.|Deze collectie moet exact {{ limit }} elementen bevatten. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Ongeldig creditcardnummer. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Niet-ondersteund type creditcard of ongeldig nummer. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). Dit is geen geldig internationaal bankrekeningnummer (IBAN). + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. Deze waarde is geen geldige ISBN-10. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. Deze waarde is geen geldige ISBN-13. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. Deze waarde is geen geldige ISBN-10 of ISBN-13 waarde. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. Deze waarde is geen geldige ISSN waarde. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. Deze waarde is geen geldige valuta. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. Deze waarde moet gelijk zijn aan {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. Deze waarde moet groter zijn dan {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. Deze waarde moet groter dan of gelijk aan {{ compared_value }} zijn. - - - 9670078 - Deze waarde moet identiek zijn aan {{ compared_value_type }} {{ compared_value }}. - - + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. Deze waarde moet minder zijn dan {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. Deze waarde moet minder dan of gelijk aan {{ compared_value }} zijn. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. Deze waarde mag niet gelijk zijn aan {{ compared_value }}. - - - 0eedf91 - Deze waarde mag niet identiek zijn aan {{ compared_value_type }} {{ compared_value }}. - - - - - 9c3ad0f - De afbeeldingsverhouding is te groot ({{ ratio }}). Maximale verhouding is {{ max_ratio }}. - - - - - 4376d45 - De afbeeldingsverhouding is te klein ({{ ratio }}). Minimale verhouding is {{ min_ratio }}. - - + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. De afbeelding is vierkant ({{ width }}x{{ height }}px). Vierkante afbeeldingen zijn niet toegestaan. - - - 1dc128a - De afbeelding is liggend ({{ width }}x{{ height }}px). Liggende afbeeldingen zijn niet toegestaan. - - - - - 9e27714 - De afbeelding is staand ({{ width }}x{{ height }}px). Staande afbeeldingen zijn niet toegestaan. - - + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. Lege bestanden zijn niet toegestaan. @@ -458,174 +508,211 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. Deze waarde is niet in de verwachte tekencodering {{ charset }}. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). Dit is geen geldige bedrijfsidentificatiecode (BIC/SWIFT). + + assets/js/app/ajax-save.js:37 + Error Fout + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. Dit is geen geldige UUID. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. Deze waarde zou een meervoud van {{ compared_value }} moeten zijn. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. Deze bedrijfsidentificatiecode (BIC) is niet gekoppeld aan IBAN {{ iban }}. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. Deze waarde moet geldige JSON zijn. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. Deze collectie moet alleen unieke elementen bevatten. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. Deze waarde moet positief zijn. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. Deze waarde moet positief of gelijk aan nul zijn. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. Deze waarde moet negatief zijn. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. Deze waarde moet negatief of gelijk aan nul zijn. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. Deze waarde is geen geldige tijdzone. - - - 7e27e92 - Dit wachtwoord is gelekt vanwege een data-inbreuk, het moet niet worden gebruikt. Kies een ander wachtwoord. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. Deze waarde moet zich tussen {{ min }} en {{ max }} bevinden. + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. Dit formulier mag geen extra velden bevatten. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. Het geüploade bestand is te groot. Probeer een kleiner bestand te uploaden. - - The CSRF token is invalid. Please try to resubmit the form. - De CSRF-token is ongeldig. Probeer het formulier opnieuw te versturen. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - Geef uw bericht een samenvatting. + The CSRF token is invalid. Please try to resubmit the form. + De CSRF-token is ongeldig. Probeer het formulier opnieuw te versturen. - + - obsolete + src/Entity/User.php:24 - post.blank_content - Uw bericht heeft nog geen inhoud. + user.duplicate_email + Er bestaat al een gebruiker met het e-mailadres {{ value }}. - + - obsolete + src/Entity/User.php:25 - post.too_short_content - Bericht inhoud is te kort (minimaal {{ limit }} karakters) + user.duplicate_username + Er bestaat al een gebruiker met de gebruikersnaam {{ value }}. - + - obsolete + src/Entity/User.php:57 - comment.blank - Vul alstublieft een reactie in. + user.not_valid_password + Ongeldig wachtwoord. Het wachtwoord moet minstens 6 tekens bevatten. - + - obsolete + src/Entity/User.php:49 - comment.too_short - Reactie is te kort (minimaal {{ limit }} karakters) + user.not_valid_email + Ongeldig e-mailadres - + - obsolete + src/Entity/User.php:43 - comment.too_long - Reactie is te lang (maximaal {{ limit }} karakters) + user.username_invalid_characters + De gebruikersnaam mag alleen kleine Latijnse letters, cijfers en underscores bevatten. - + - obsolete + src/Entity/User.php:35 + src/Entity/User.php:36 - comment.is_spam - De inhoud van deze reactie wordt als spam gemarkeerd. + user.not_valid_display_name + Ongeldige weergavenaam diff --git a/translations/validators.pl.xlf b/translations/validators.pl.xlf index 03b4389ce..d401ce8d0 100644 --- a/translations/validators.pl.xlf +++ b/translations/validators.pl.xlf @@ -1,67 +1,718 @@ - + - + - obsolete + vendor/symfony/validator/Constraints/IsFalse.php:36 - post.blank_summary - Dodaj podsumowanie Twojego artykułu! + This value should be false. + Ta wartość powinna być fałszem. - + - obsolete + vendor/symfony/validator/Constraints/IsTrue.php:36 - post.blank_content - Treść artykułu nie może być pusta! + This value should be true. + Ta wartość powinna być prawdą. - + - obsolete + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 - post.too_short_content - Treść artykułu jest za krótka (minimum: {{ limit }} znak)|Treść artykułu jest za krótka (minimum: {{ limit }} znaki)|Treść artykułu jest za krótka (minimum: {{ limit }} znaków) + This value should be of type {{ type }}. + Ta wartość powinna być typu {{ type }}. - + - obsolete + vendor/symfony/validator/Constraints/Blank.php:36 - comment.blank - Pole komentarza nie może być puste! + This value should be blank. + Ta wartość powinna być pusta. - + - obsolete + vendor/symfony/validator/Constraints/Choice.php:47 - comment.too_short - Twój komentarz jest za krótki (minimum: {{ limit }} znak)|Twój komentarz jest za krótki (minimum: {{ limit }} znaki)|Twój komentarz jest za krótki (minimum: {{ limit }} znaków) + The value you selected is not a valid choice. + Ta wartość powinna być jedną z podanych opcji. - + - obsolete + vendor/symfony/validator/Constraints/Choice.php:48 - comment.too_long - Twój komentarz jest za długi (maksimum: {{ limit }} znak)|Twój komentarz jest za długi (maksimum: {{ limit }} znaki)|Twój komentarz jest za długi (maksimum: {{ limit }} znaków) + One or more of the given values is invalid. + Jedna lub więcej z podanych wartości jest nieprawidłowa. - + - obsolete + vendor/symfony/validator/Constraints/Collection.php:42 - comment.is_spam - Twój komentarz został uznany za spam. + This field was not expected. + Tego pola się nie spodziewano. + + + + + vendor/symfony/validator/Constraints/Collection.php:43 + + + This field is missing. + Tego pola brakuje. + + + + + vendor/symfony/validator/Constraints/Date.php:38 + + + This value is not a valid date. + Ta wartość nie jest prawidłową datą. + + + + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + + + This value is not a valid datetime. + Ta wartość nie jest prawidłową datą i czasem. + + + + + vendor/symfony/validator/Constraints/Email.php:54 + + + This value is not a valid email address. + Ta wartość nie jest prawidłowym adresem email. + + + + + vendor/symfony/validator/Constraints/File.php:57 + + + The file could not be found. + Plik nie mógł zostać odnaleziony. + + + + + vendor/symfony/validator/Constraints/File.php:58 + + + The file is not readable. + Nie można odczytać pliku. + + + + + vendor/symfony/validator/Constraints/Range.php:48 + + + This value should be {{ limit }} or less. + Ta wartość powinna wynosić {{ limit }} lub mniej. + + + + + vendor/symfony/validator/Constraints/Range.php:47 + + + This value should be {{ limit }} or more. + Ta wartość powinna wynosić {{ limit }} lub więcej. + + + + + vendor/symfony/validator/Constraints/NotBlank.php:38 + + + This value should not be blank. + Ta wartość nie powinna być pusta. + + + + + vendor/symfony/validator/Constraints/NotNull.php:36 + + + This value should not be null. + Ta wartość nie powinna być nullem. + + + + + vendor/symfony/validator/Constraints/IsNull.php:36 + + + This value should be null. + Ta wartość powinna być nullem. + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + + + This value is not valid. + Ta wartość jest nieprawidłowa. + + + + + vendor/symfony/validator/Constraints/Time.php:39 + + + This value is not a valid time. + Ta wartość nie jest prawidłowym czasem. + + + + + vendor/symfony/validator/Constraints/Url.php:37 + + + This value is not a valid URL. + Ta wartość nie jest prawidłowym adresem URL. + + + + + The two values should be equal. + Obie wartości powinny być równe. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + + + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. + Plik jest za duży. Maksymalny dozwolony rozmiar to {{ limit }} {{ suffix }}. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + + + The file is too large. + Plik jest za duży. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + + + The file could not be uploaded. + Plik nie mógł być wgrany. + + + + + vendor/symfony/validator/Constraints/Range.php:49 + + + This value should be a valid number. + Ta wartość powinna być prawidłową liczbą. + + + + + vendor/symfony/validator/Constraints/Image.php:82 + + + This file is not a valid image. + Ten plik nie jest obrazem. + + + + + vendor/symfony/validator/Constraints/Ip.php:85 + + + This is not a valid IP address. + To nie jest prawidłowy adres IP. + + + + + vendor/symfony/validator/Constraints/Language.php:38 + + + This value is not a valid language. + Ta wartość nie jest prawidłowym językiem. + + + + + vendor/symfony/validator/Constraints/Locale.php:38 + + + This value is not a valid locale. + Ta wartość nie jest prawidłową lokalizacją. + + + + + vendor/symfony/validator/Constraints/Country.php:38 + + + This value is not a valid country. + Ta wartość nie jest prawidłową nazwą kraju. + + + + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + + + This value is already used. + Ta wartość jest już wykorzystywana. + + + + + vendor/symfony/validator/Constraints/Image.php:83 + + + The size of the image could not be detected. + Nie można wykryć rozmiaru obrazka. + + + + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + + + This value should be the user's current password. + Ta wartość powinna być aktualnym hasłem użytkownika. + + + + + vendor/symfony/validator/Constraints/File.php:67 + + + The file was only partially uploaded. + Plik został wgrany tylko częściowo. + + + + + vendor/symfony/validator/Constraints/File.php:68 + + + No file was uploaded. + Żaden plik nie został wgrany. + + + + + vendor/symfony/validator/Constraints/File.php:69 + + + No temporary folder was configured in php.ini. + W php.ini nie skonfigurowano folderu tymczasowego lub skonfigurowany folder nie istnieje. + + + + + vendor/symfony/validator/Constraints/File.php:70 + + + Cannot write temporary file to disk. + Nie można zapisać pliku tymczasowego na dysku. + + + + + vendor/symfony/validator/Constraints/File.php:71 + + + A PHP extension caused the upload to fail. + Rozszerzenie PHP spowodowało błąd podczas wgrywania. + + + + + vendor/symfony/validator/Constraints/Luhn.php:42 + + + Invalid card number. + Nieprawidłowy numer karty. + + + + + vendor/symfony/validator/Constraints/CardScheme.php:54 + + + Unsupported card type or invalid card number. + Nieobsługiwany rodzaj karty lub nieprawidłowy numer karty. + + + + + vendor/symfony/validator/Constraints/Iban.php:46 + + + This is not a valid International Bank Account Number (IBAN). + To nie jest prawidłowy międzynarodowy numer rachunku bankowego (IBAN). + + + + + vendor/symfony/validator/Constraints/Isbn.php:49 + + + This value is not a valid ISBN-10. + Ta wartość nie jest prawidłowym numerem ISBN-10. + + + + + vendor/symfony/validator/Constraints/Isbn.php:50 + + + This value is not a valid ISBN-13. + Ta wartość nie jest prawidłowym numerem ISBN-13. + + + + + vendor/symfony/validator/Constraints/Isbn.php:51 + + + This value is neither a valid ISBN-10 nor a valid ISBN-13. + Ta wartość nie jest prawidłowym numerem ISBN-10 ani ISBN-13. + + + + + vendor/symfony/validator/Constraints/Issn.php:47 + + + This value is not a valid ISSN. + Ta wartość nie jest prawidłowym numerem ISSN. + + + + + vendor/symfony/validator/Constraints/Currency.php:39 + + + This value is not a valid currency. + Ta wartość nie jest prawidłową walutą. + + + + + vendor/symfony/validator/Constraints/EqualTo.php:35 + + + This value should be equal to {{ compared_value }}. + Ta wartość powinna być równa {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + + + This value should be greater than {{ compared_value }}. + Ta wartość powinna być większa niż {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + + + This value should be greater than or equal to {{ compared_value }}. + Ta wartość powinna być większa bądź równa {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/LessThan.php:35 + + + This value should be less than {{ compared_value }}. + Ta wartość powinna być mniejsza niż {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + + + This value should be less than or equal to {{ compared_value }}. + Ta wartość powinna być mniejsza bądź równa {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + + + This value should not be equal to {{ compared_value }}. + Ta wartość nie powinna być równa {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/Image.php:92 + + + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. + Obraz jest kwadratem ({{ width }}x{{ height }}px). Kwadratowe obrazy nie są akceptowane. + + + + + vendor/symfony/validator/Constraints/File.php:62 + + + An empty file is not allowed. + Plik nie może być pusty. + + + + + The host could not be resolved. + Nazwa hosta nie została rozpoznana. + + + + + vendor/symfony/validator/Constraints/Length.php:57 + + + This value does not match the expected {{ charset }} charset. + Ta wartość nie pasuje do oczekiwanego zestawu znaków {{ charset }}. + + + + + vendor/symfony/validator/Constraints/Bic.php:49 + + + This is not a valid Business Identifier Code (BIC). + To nie jest prawidłowy kod identyfikacyjny podmiotu (BIC). + + + + + assets/js/app/ajax-save.js:37 + + + Error + Błąd + + + + + vendor/symfony/validator/Constraints/Uuid.php:80 + + + This is not a valid UUID. + To nie jest prawidłowy identyfikator UUID. + + + + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + + + This value should be a multiple of {{ compared_value }}. + Ta wartość powinna być wielokrotnością {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/Bic.php:50 + + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. + Ten kod BIC (Business Identifier Code) nie jest powiązany z międzynarodowym numerem rachunku bankowego (IBAN) {{ iban }}. + + + + + vendor/symfony/validator/Constraints/Json.php:36 + + + This value should be valid JSON. + Ta wartość powinna być prawidłowym formatem JSON. + + + + + vendor/symfony/validator/Constraints/Unique.php:39 + + + This collection should contain only unique elements. + Ten zbiór powinien zawierać tylko unikalne elementy. + + + + + vendor/symfony/validator/Constraints/Positive.php:25 + + + This value should be positive. + Ta wartość powinna być dodatnia. + + + + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + + + This value should be either positive or zero. + Ta wartość powinna być dodatnia lub równa zero. + + + + + vendor/symfony/validator/Constraints/Negative.php:25 + + + This value should be negative. + Ta wartość powinna być ujemna. + + + + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + + + This value should be either negative or zero. + Ta wartość powinna być ujemna lub równa zero. + + + + + vendor/symfony/validator/Constraints/Timezone.php:35 + + + This value is not a valid timezone. + Ta wartość nie jest prawidłową strefą czasową. + + + + + vendor/symfony/validator/Constraints/Range.php:46 + + + This value should be between {{ min }} and {{ max }}. + Ta wartość powinna być pomiędzy {{ min }} a {{ max }}. + + + + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + + + This form should not contain extra fields. + Ten formularz nie powinien zawierać dodatkowych pól. + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + + + The uploaded file was too large. Please try to upload a smaller file. + Wgrany plik był za duży. Proszę spróbować wgrać mniejszy plik. + + + + + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 + + + The CSRF token is invalid. Please try to resubmit the form. + Token CSRF jest nieprawidłowy. Proszę spróbować wysłać formularz ponownie. + + + + + src/Entity/User.php:24 + + + user.duplicate_email + Użytkownik z adresem e-mail {{ value }} już istnieje. + + + + + src/Entity/User.php:25 + + + user.duplicate_username + Użytkownik o nazwie {{ value }} już istnieje. + + + + + src/Entity/User.php:57 + + + user.not_valid_password + Nieprawidłowe hasło. Hasło powinno zawierać co najmniej 6 znaków. + + + + + src/Entity/User.php:49 + + + user.not_valid_email + Nieprawidłowy adres e-mail + + + + + src/Entity/User.php:43 + + + user.username_invalid_characters + Nazwa użytkownika może zawierać tylko małe litery łacińskie, cyfry i podkreślenia. + + + + + src/Entity/User.php:35 + src/Entity/User.php:36 + + + user.not_valid_display_name + Nieprawidłowa nazwa wyświetlana diff --git a/translations/validators.pt_BR.xlf b/translations/validators.pt_BR.xlf index 0cf284bbf..16ba808d9 100644 --- a/translations/validators.pt_BR.xlf +++ b/translations/validators.pt_BR.xlf @@ -1,50 +1,719 @@ - - -
- -
- - - post.blank_summary - Informe um sumário para o seu post! - obsolete - - - post.blank_content - Informe um conteúdo para o seu post! - obsolete - - - post.too_short_content - O conteúdo do post está muito curto (mínimo de {{ limit }} caracteres) - obsolete - - - post.too_many_tags - Tags demais (adicione {{ limit }} tags ou menos) - obsolete - - - comment.blank - Por favor, não deixe seu comentário vazio! - obsolete - - - comment.too_short - O comentário está muito curto (mínimo de {{ limit }} caracteres) - obsolete - - - comment.too_long - O comentário está muito grande (máximo de {{ limit }} caracteres) - obsolete - - - comment.is_spam - O conteúdo desse comentário é considerado spam. - obsolete - - + + + + + vendor/symfony/validator/Constraints/IsFalse.php:36 + + + This value should be false. + Este valor deve ser falso. + + + + + vendor/symfony/validator/Constraints/IsTrue.php:36 + + + This value should be true. + Este valor deve ser verdadeiro. + + + + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + + + This value should be of type {{ type }}. + Este valor deve ser do tipo {{ type }}. + + + + + vendor/symfony/validator/Constraints/Blank.php:36 + + + This value should be blank. + Este valor deve ser vazio. + + + + + vendor/symfony/validator/Constraints/Choice.php:47 + + + The value you selected is not a valid choice. + O valor selecionado não é uma opção válida. + + + + + vendor/symfony/validator/Constraints/Choice.php:48 + + + One or more of the given values is invalid. + Um ou mais valores informados são inválidos. + + + + + vendor/symfony/validator/Constraints/Collection.php:42 + + + This field was not expected. + Este campo não era esperado. + + + + + vendor/symfony/validator/Constraints/Collection.php:43 + + + This field is missing. + Este campo está ausente. + + + + + vendor/symfony/validator/Constraints/Date.php:38 + + + This value is not a valid date. + Este valor não é uma data válida. + + + + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + + + This value is not a valid datetime. + Este valor não é uma data e hora válida. + + + + + vendor/symfony/validator/Constraints/Email.php:54 + + + This value is not a valid email address. + Este valor não é um endereço de e-mail válido. + + + + + vendor/symfony/validator/Constraints/File.php:57 + + + The file could not be found. + O arquivo não foi encontrado. + + + + + vendor/symfony/validator/Constraints/File.php:58 + + + The file is not readable. + O arquivo não pode ser lido. + + + + + vendor/symfony/validator/Constraints/Range.php:48 + + + This value should be {{ limit }} or less. + Este valor deve ser {{ limit }} ou menos. + + + + + vendor/symfony/validator/Constraints/Range.php:47 + + + This value should be {{ limit }} or more. + Este valor deve ser {{ limit }} ou mais. + + + + + vendor/symfony/validator/Constraints/NotBlank.php:38 + + + This value should not be blank. + Este valor não deve ser vazio. + + + + + vendor/symfony/validator/Constraints/NotNull.php:36 + + + This value should not be null. + Este valor não deve ser nulo. + + + + + vendor/symfony/validator/Constraints/IsNull.php:36 + + + This value should be null. + Este valor deve ser nulo. + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + + + This value is not valid. + Este valor não é válido. + + + + + vendor/symfony/validator/Constraints/Time.php:39 + + + This value is not a valid time. + Este valor não é uma hora válida. + + + + + vendor/symfony/validator/Constraints/Url.php:37 + + + This value is not a valid URL. + Este valor não é uma URL válida. + + + + + The two values should be equal. + Os dois valores devem ser iguais. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + + + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. + O arquivo é muito grande. O tamanho máximo permitido é de {{ limit }} {{ suffix }}. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + + + The file is too large. + O arquivo é muito grande. + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + + + The file could not be uploaded. + O arquivo não pode ser enviado. + + + + + vendor/symfony/validator/Constraints/Range.php:49 + + + This value should be a valid number. + Este valor deve ser um número válido. + + + + + vendor/symfony/validator/Constraints/Image.php:82 + + + This file is not a valid image. + Este arquivo não é uma imagem válida. + + + + + vendor/symfony/validator/Constraints/Ip.php:85 + + + This is not a valid IP address. + Este não é um endereço de IP válido. + + + + + vendor/symfony/validator/Constraints/Language.php:38 + + + This value is not a valid language. + Este valor não é um idioma válido. + + + + + vendor/symfony/validator/Constraints/Locale.php:38 + + + This value is not a valid locale. + Este valor não é uma localidade válida. + + + + + vendor/symfony/validator/Constraints/Country.php:38 + + + This value is not a valid country. + Este valor não é um país válido. + + + + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + + + This value is already used. + Este valor já está sendo usado. + + + + + vendor/symfony/validator/Constraints/Image.php:83 + + + The size of the image could not be detected. + O tamanho da imagem não pode ser detectado. + + + + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + + + This value should be the user's current password. + Este valor deve ser a senha atual do usuário. + + + + + vendor/symfony/validator/Constraints/File.php:67 + + + The file was only partially uploaded. + O arquivo foi enviado apenas parcialmente. + + + + + vendor/symfony/validator/Constraints/File.php:68 + + + No file was uploaded. + Nenhum arquivo foi enviado. + + + + + vendor/symfony/validator/Constraints/File.php:69 + + + No temporary folder was configured in php.ini. + Nenhuma pasta temporária foi configurada no php.ini, ou a pasta configurada não existe. + + + + + vendor/symfony/validator/Constraints/File.php:70 + + + Cannot write temporary file to disk. + Não foi possível escrever o arquivo temporário no disco. + + + + + vendor/symfony/validator/Constraints/File.php:71 + + + A PHP extension caused the upload to fail. + Uma extensão PHP fez com que o envio falhasse. + + + + + vendor/symfony/validator/Constraints/Luhn.php:42 + + + Invalid card number. + Número de cartão inválido. + + + + + vendor/symfony/validator/Constraints/CardScheme.php:54 + + + Unsupported card type or invalid card number. + Tipo de cartão não suportado ou número de cartão inválido. + + + + + vendor/symfony/validator/Constraints/Iban.php:46 + + + This is not a valid International Bank Account Number (IBAN). + Este não é um Número Internacional de Conta Bancária (IBAN) válido. + + + + + vendor/symfony/validator/Constraints/Isbn.php:49 + + + This value is not a valid ISBN-10. + Este valor não é um ISBN-10 válido. + + + + + vendor/symfony/validator/Constraints/Isbn.php:50 + + + This value is not a valid ISBN-13. + Este valor não é um ISBN-13 válido. + + + + + vendor/symfony/validator/Constraints/Isbn.php:51 + + + This value is neither a valid ISBN-10 nor a valid ISBN-13. + Este valor não é um ISBN-10 e nem um ISBN-13 válido. + + + + + vendor/symfony/validator/Constraints/Issn.php:47 + + + This value is not a valid ISSN. + Este valor não é um ISSN válido. + + + + + vendor/symfony/validator/Constraints/Currency.php:39 + + + This value is not a valid currency. + Este não é um valor monetário válido. + + + + + vendor/symfony/validator/Constraints/EqualTo.php:35 + + + This value should be equal to {{ compared_value }}. + Este valor deve ser igual a {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + + + This value should be greater than {{ compared_value }}. + Este valor deve ser maior que {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + + + This value should be greater than or equal to {{ compared_value }}. + Este valor deve ser maior ou igual a {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/LessThan.php:35 + + + This value should be less than {{ compared_value }}. + Este valor deve ser menor que {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + + + This value should be less than or equal to {{ compared_value }}. + Este valor deve ser menor ou igual a {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + + + This value should not be equal to {{ compared_value }}. + Este valor não deve ser igual a {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/Image.php:92 + + + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. + A imagem está num formato quadrado ({{ width }}x{{ height }}px). Imagens com formato quadrado não são permitidas. + + + + + vendor/symfony/validator/Constraints/File.php:62 + + + An empty file is not allowed. + Arquivo vazio não é permitido. + + + + + The host could not be resolved. + O host não pôde ser resolvido. + + + + + vendor/symfony/validator/Constraints/Length.php:57 + + + This value does not match the expected {{ charset }} charset. + Este valor não corresponde ao charset {{ charset }} esperado. + + + + + vendor/symfony/validator/Constraints/Bic.php:49 + + + This is not a valid Business Identifier Code (BIC). + Este não é um Código de Identificação de Negócio (BIC) válido. + + + + + assets/js/app/ajax-save.js:37 + + + Error + Erro + + + + + vendor/symfony/validator/Constraints/Uuid.php:80 + + + This is not a valid UUID. + Este não é um UUID válido. + + + + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + + + This value should be a multiple of {{ compared_value }}. + Este valor deve ser múltiplo de {{ compared_value }}. + + + + + vendor/symfony/validator/Constraints/Bic.php:50 + + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. + Este Código Identificador Bancário (BIC) não está associado ao IBAN {{ iban }}. + + + + + vendor/symfony/validator/Constraints/Json.php:36 + + + This value should be valid JSON. + Este valor deve ser um JSON válido. + + + + + vendor/symfony/validator/Constraints/Unique.php:39 + + + This collection should contain only unique elements. + Esta coleção deve conter somente elementos únicos. + + + + + vendor/symfony/validator/Constraints/Positive.php:25 + + + This value should be positive. + Este valor deve ser positivo. + + + + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + + + This value should be either positive or zero. + Este valor deve ser positivo ou zero. + + + + + vendor/symfony/validator/Constraints/Negative.php:25 + + + This value should be negative. + Este valor deve ser negativo. + + + + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + + + This value should be either negative or zero. + Este valor deve ser negativo ou zero. + + + + + vendor/symfony/validator/Constraints/Timezone.php:35 + + + This value is not a valid timezone. + Este valor não representa um fuso horário válido. + + + + + vendor/symfony/validator/Constraints/Range.php:46 + + + This value should be between {{ min }} and {{ max }}. + Este valor deve estar entre {{ min }} e {{ max }}. + + + + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + + + This form should not contain extra fields. + Este formulário não deve conter campos adicionais. + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + + + The uploaded file was too large. Please try to upload a smaller file. + O arquivo enviado é muito grande. Por favor, tente enviar um arquivo menor. + + + + + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 + + + The CSRF token is invalid. Please try to resubmit the form. + O token CSRF é inválido. Por favor, tente reenviar o formulário. + + + + + src/Entity/User.php:24 + + + user.duplicate_email + Já existe um usuário com o e-mail {{ value }}. + + + + + src/Entity/User.php:25 + + + user.duplicate_username + Já existe um usuário com o nome de usuário {{ value }}. + + + + + src/Entity/User.php:57 + + + user.not_valid_password + Senha inválida. A senha deve conter pelo menos 6 caracteres. + + + + + src/Entity/User.php:49 + + + user.not_valid_email + E-mail inválido + + + + + src/Entity/User.php:43 + + + user.username_invalid_characters + O nome de usuário deve conter apenas letras latinas minúsculas, números e sublinhados. + + + + + src/Entity/User.php:35 + src/Entity/User.php:36 + + + user.not_valid_display_name + Nome de exibição inválido + + diff --git a/translations/validators.ru.xlf b/translations/validators.ru.xlf index 61a981cde..b7dc50dd1 100644 --- a/translations/validators.ru.xlf +++ b/translations/validators.ru.xlf @@ -1,163 +1,195 @@ - + + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. Это значение должно быть ложным. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. Это значение должно быть верным. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. Это значение должно быть типа {{ type }}. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. Это значение должно быть пустым. + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. Выбранное вами значение не является допустимым. - - - 0d999f2 - Вы должны выбрать не менее {{ limit }} вариантов. | Вы должны выбрать не менее {{ limit }} вариантов. - - - - - 0824486 - Вы должны выбрать не более {{ limit }} вариантов. | Вы должны выбрать не более {{ limit }} вариантов. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. Одно или несколько указанных значений недопустимы. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. Это поле не ожидалось. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. Это поле отсутствует. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. Это значение не является действительной датой. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. Это значение не является допустимой датой и временем. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. Это значение не является действительным адресом электронной почты. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. Файл не найден. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. Файл не читается. - - - 1ad411a - Файл слишком большой ({{ size }} {{ suffix }}). Допустимый максимальный размер: {{ limit }} {{ suffix }}. - - - - - 30a318d - Недопустимый MIME-тип файла ({{ type }}). Допустимые MIME-типы: {{ types }}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. Это значение должно быть {{ limit }} или меньше. - - - 0e0c1e1 - Это слишком длинное значение. Оно должно содержать не более {{ limit }} символов. | Это значение слишком длинное. Оно должно содержать не более {{ limit }} символов. - - + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. Это значение должно быть {{ limit }} или больше. - - - 5188ff9 - Это слишком короткое значение. Оно должно содержать символ {{ limit }} или более. | Это значение слишком короткое. Оно должно содержать {{ limit }} символов или более. - - + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. Это значение не должно быть пустым. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. Это значение не должно быть нулевым. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. Это значение должно быть нулевым. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. Это недопустимое значение. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. Это значение не является допустимым временем. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. Это значение не является допустимым URL. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. - Файл слишком большой. Допустимый максимальный размер файла: {{ limit }} {{суффикс}}. + Файл слишком большой. Допустимый максимальный размер файла: {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. Файл слишком большой. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. Не удалось загрузить файл. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. Это значение должно быть действительным числом. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. Этот файл не является действительным изображением. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. Это недействительный IP-адрес. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. Это значение не является допустимым языком. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. Это значение не является допустимым языковым стандартом. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. Это значение не является допустимой страной. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. Это значение уже используется. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. Не удалось определить размер изображения. - - - 266051e - Ширина изображения слишком велика ({{ width }} пикселей). Допустимая максимальная ширина составляет {{ max_width }} пикселей. - - - - - c1c23f9 - Ширина изображения слишком мала ({{ width }} пикселей). Минимальная ожидаемая ширина составляет {{ min_width }} пикселей. - - - - - 9a128f7 - Высота изображения слишком велика ({{ height }} пикселей). Допустимая максимальная высота: {{ max_height }} пикселей. - - - - - 8a4cd70 - Высота изображения слишком мала ({{ height }} пикселей). Минимальная ожидаемая высота составляет {{ min_height }} пикселей. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. Это значение должно быть текущим паролем пользователя. - - - fd389d6 - Это значение должно содержать ровно {{ limit }} символов. | Это значение должно содержать ровно {{ limit }} символов. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. Файл был загружен только частично. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. Файл не загружен. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. В php.ini не была настроена временная папка или настроенная папка не существует. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. Невозможно записать временный файл на диск. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. Расширение PHP привело к сбою загрузки. - - - b54c218 - Эта коллекция должна содержать {{ limit }} элементов или больше. | Эта коллекция должна содержать {{ limit }} элементов или больше. - - - - - 949632c - Эта коллекция должна содержать {{ limit }} элементов или меньше. | Эта коллекция должна содержать {{ limit }} элементов или меньше. - - - - - e0582dc - Эта коллекция должна содержать ровно {{ limit }} элементов. | Эта коллекция должна содержать ровно {{ limit }} элементов. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Неверный номер карты. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Неподдерживаемый тип карты или неверный номер карты. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). Это недействительный международный номер банковского счёта (IBAN). + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. Это значение не является действительным ISBN-10. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. Это значение не является действительным ISBN-13. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. Это значение не является ни действительным ISBN-10, ни действительным ISBN-13. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. Это значение не является действительным ISSN. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. Это значение не является действующей валютой. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. - Это значение должно быть равно {{ compare_value }}. + Это значение должно быть равно {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. - Это значение должно быть больше {{ compare_value }}. + Это значение должно быть больше {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. - Это значение должно быть больше или равно {{ compare_value }}. - - - - - 9670078 - Это значение должно быть идентично {{ compare_value_type }} {{ compare_value }}. + Это значение должно быть больше или равно {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. - Это значение должно быть меньше {{ compare_value }}. + Это значение должно быть меньше {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. - Это значение должно быть меньше или равно {{ compare_value }}. + Это значение должно быть меньше или равно {{ compared_value }}. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. - Это значение не должно быть равным {{ compare_value }}. - - - - - 0eedf91 - Это значение не должно быть идентичным {{ compare_value_type }} {{ compare_value }}. - - - - - 9c3ad0f - Соотношение сторон изображения слишком велико ({{ ratio }}). Допустимое максимальное соотношение: {{ max_ratio }}. - - - - - 4376d45 - Коэффициент изображения слишком мал ({{ ratio }}). Ожидаемое минимальное соотношение: {{ min_ratio }}. + Это значение не должно быть равным {{ compared_value }}. + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. Изображение квадратное ({{ width }} x {{ height }} пикселей). Квадратные изображения не допускаются. - - - 1dc128a - Изображение ориентировано в альбомной ориентации ({{ width }} x {{ height }} пикселей). Изображения с альбомной ориентацией не допускаются. - - - - - 9e27714 - Изображение ориентировано в портретной ориентации ({{ width }} x {{ height }} пикселей). Портретно-ориентированные изображения не допускаются. - - + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. Пустой файл не допускается. @@ -458,216 +508,208 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. Это значение не соответствует ожидаемой кодировке {{ charset }}. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). Это недействительный код бизнес-идентификатора (BIC). + + assets/js/app/ajax-save.js:37 + Error Ошибка + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. Это недействительный UUID. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. - Это значение должно быть кратным {{ compare_value }}. + Это значение должно быть кратным {{ compared_value }}. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. Этот код бизнес-идентификатора (BIC) не связан с IBAN {{ iban }}. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. Это значение должно быть корректным JSON. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. Эта коллекция должна содержать только уникальные элементы. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. Это значение должно быть положительным. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. Это значение должно быть положительным или нулевым. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. Это значение должно быть отрицательным. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. Это значение должно быть либо отрицательным, либо нулевым. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. Это значение не является допустимым часовым поясом. - - - 7e27e92 - Этот пароль скомпрометирован в результате утечки данных, его нельзя использовать. Пожалуйста, используйте другой пароль. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. Это значение должно быть между {{ min }} и {{ max }}. + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. Эта форма не должна содержать лишних полей. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. Загруженный файл был слишком большим. Пожалуйста, попробуйте загрузить файл меньшего размера. - - The CSRF token is invalid. Please try to resubmit the form. - Токен CSRF недействителен. Пожалуйста, попробуйте повторно отправить форму. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - Дайте краткое содержание вашему посту! - - - - - obsolete - - - post.blank_content - Ваш пост должен содержать контент! - - - - - obsolete - - - post.too_short_content - Содержание сообщения слишком короткое (минимум {{ limit }} символов) - - - - - obsolete - - - post.too_many_tags - Слишком много тегов (добавьте тегов {{ limit }} или меньше) - - - - - obsolete - - - comment.blank - Пожалуйста, не оставляйте свой комментарий пустым! - - - - - obsolete - - - comment.too_short - Комментарий слишком короткий (минимум {{ limit }} символов) - - - - - obsolete - - - comment.too_long - Комментарий слишком длинный (максимум {{ limit }} символов) + The CSRF token is invalid. Please try to resubmit the form. + Токен CSRF недействителен. Пожалуйста, попробуйте повторно отправить форму. - + - obsolete + src/Entity/User.php:24 - - comment.is_spam - Содержание этого комментария считается спамом. - - - user.duplicate_email Пользователь с адресом электронной почты {{ value }} уже существует. + + src/Entity/User.php:25 + user.duplicate_username Пользователь с именем пользователя {{ value }} уже существует. + + src/Entity/User.php:57 + user.not_valid_password Неправильный пароль. Пароль должен содержать не менее 6 символов. + + src/Entity/User.php:49 + user.not_valid_email Неверный адрес электронной почты + + src/Entity/User.php:43 + user.username_invalid_characters Имя пользователя должно содержать только латинские символы нижнего регистра, цифры и символы подчеркивания. + + src/Entity/User.php:35 + src/Entity/User.php:36 + user.not_valid_display_name Недействительное отображаемое имя diff --git a/translations/validators.tr.xlf b/translations/validators.tr.xlf index 65e68c4f8..832c9046a 100644 --- a/translations/validators.tr.xlf +++ b/translations/validators.tr.xlf @@ -1,163 +1,195 @@ - - + + + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. Bu değer false olmalıdır. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. Bu değer true olmalıdır. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. Bu değer {{ type }} türünde olmalıdır. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. Bu değer boş olmalıdır. + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. Seçtiğiniz değer geçerli bir seçim değil. - - - 0d999f2 - En az {{ limit }} seçenek seçebilirsiniz.|En az {{ limit }} seçenek seçebilirsiniz. - - - - - 0824486 - En fazla {{ limit }} seçenek seçebilirsiniz.|En fazla {{ limit }} seçenek seçebilirsiniz.. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. Verilen değerlerden biri veya daha fazlası geçersiz. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. Bu alan beklenmiyordu. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. Bu alan eksik. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. Bu değer geçerli bir tarih değil. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. Bu değer geçerli bir tarih saat değil. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. Bu değer, geçerli bir e-posta adresi değil. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. Dosya bulunamadı. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. Dosya okunabilir değil. - - - 1ad411a - Dosya boyutu ({{ size }} {{ suffix }}) çok büyük. İzin verilen maksimum dosya boyutu {{ limit }} {{ suffix }}. - - - - - 30a318d - ({{ type }}) dosya tipi geçersiz. İzin verilen dosya türleri {{ types }}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. Bu değer {{ limit }} veya daha az olmalıdır. - - - 0e0c1e1 - Bu değer çok uzun. {{ limit }} veya daha az karakter içermelidir.|Bu değer çok uzun. {{ limit }} veya daha az karakter içermelidir. - - + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. Bu değer, {{ limit }} veya daha fazla olmalıdır. - - - 5188ff9 - Bu değer çok kıza. {{ limit }} veya daha fazla karakter içermelidir.|Bu değer çok kıza. {{ limit }} veya daha fazla karakter içermelidir. - - + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. Bu değer boş bırakılmamalıdır. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. Bu değer hükümsüz olmamalıdır. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. Bu değer hükümsüz olmalıdır. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. Bu değer geçerli değil. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. Bu değer geçerli bir zaman değil. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. Bu değer, geçerli bir URL değil. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. Dosya çok büyük. İzin verilen maksimum boyut {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. Dosya çok büyük. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. Dosya yüklenemedi. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. Bu değer geçerli bir sayı olmalıdır. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. Bu dosya geçerli bir resim değil. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. Bu geçerli bir IP adresi değil. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. Bu değer, geçerli bir dil değil. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. Bu değer, geçerli bir yerel ayar değil. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. Bu değer geçerli bir ülke değil. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. Bu değer zaten kullanılıyor. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. Görüntünün boyutu tespit edilemedi. - - - 266051e - Görüntü genişliği ({{ width }}px) çok büyük. İzin verilen maksimum genişlik {{ max_width }}px. - - - - - c1c23f9 - Görüntü genişliği ({{ width }}px) çok küçük. Beklenen minimum genişlik {{ min_width }}px. - - - - - 9a128f7 - Görüntü yüksekliği ({{ height }}px) çok büyük. İzin verilen maksimum yükseklik {{ max_height }}px. - - - - - 8a4cd70 - Görüntü yüksekliği ({{ height }}px) çok küçük. Beklenen minimum yükseklik {{ min_height }}px. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. Bu değer, kullanıcının mevcut şifresi olmalıdır. - - - fd389d6 - Bu değer tam olarak {{ limit }} karaktere sahip olmalıdır.|Bu değer tam olarak {{ limit }} karaktere sahip olmalıdır. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. Dosya yalnızca kısmen yüklendi. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. Dosya yüklenmedi. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. php.ini'de hiçbir geçici klasör yapılandırılmamış veya yapılandırılmış klasör mevcut değil. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. Geçici dosya diske yazılamıyor. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. Bir PHP uzantısı, yüklemenin başarısız olmasına neden oldu. - - - b54c218 - Bu koleksiyon, {{ limit }} öğesi veya daha fazlasını içermelidir.|Bu koleksiyon, {{ limit }} öğesi veya daha fazlasını içermelidir. - - - - - 949632c - Bu koleksiyon {{ limit }} veya daha az öğe içermelidir.|Bu koleksiyon {{ limit }} veya daha az öğe içermelidir. - - - - - e0582dc - Bu koleksiyon tam olarak {{ limit }} öğesini içermelidir.|Bu koleksiyon tam olarak {{ limit }} öğesini içermelidir. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Geçersiz kart numarası. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Desteklenmeyen kart türü veya geçersiz kart numarası. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). Bu geçerli bir Uluslararası Banka Hesap Numarası (IBAN) değil. + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. Bu değer, geçerli bir ISBN-10 değil. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. Bu değer, geçerli bir ISBN-13 değil. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. Bu değer ne geçerli bir ISBN-10 ne de geçerli bir ISBN-13'tür. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. Bu değer geçerli bir ISSN değil. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. Bu değer, geçerli bir para birimi değil. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. Bu değer {{ compared_value }} değerine eşit olmalıdır. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. Bu değer {{ compared_value }} değerinden büyük olmalıdır. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. Bu değer {{ compared_value }} değerine eşit veya daha büyük olmalıdır. - - - 9670078 - Bu değer {{ compared_value_type }} {{ compared_value }} değeriyle aynı olmalıdır. - - + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. Bu değer {{ compared_value }} değerinden küçük olmalıdır. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. Bu değer {{ compared_value }} değerinden küçük veya eşit olmalıdır. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. Bu değer {{ compared_value }} değerine eşit olmamalıdır. - - - 0eedf91 - Bu değer {{ compared_value_type }} {{ compared_value }} değeriyle aynı olmamalıdır. - - - - - 9c3ad0f - Görüntü oranı ({{ ratio }}) çok büyük. İzin verilen maksimum oran {{ max_ratio }}. - - - - - 4376d45 - Görüntü oranı ({{ ratio }}) çok küçük. İzin verilen minimum oran {{ max_ratio }}. - - + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. Görüntü kare ({{ width }}x{{ height }}px). Kare resimlere izin verilmez. - - - 1dc128a - Görüntü manzara odaklıdır ({{ width }}x{{ height }}px). Manzara odaklı resimlere izin verilmez. - - - - - 9e27714 - Görüntü portre odaklıdır ({{ width }}x{{ height }}px). Portre yönlü resimlere izin verilmez. - - + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. Boş bir dosyaya izin verilmez. @@ -458,216 +508,208 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. Bu değer beklenen {{ charset }} karakter kümesiyle eşleşmiyor. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). Bu, geçerli bir İşletme Tanımlama Kodu (BIC) değil. + + assets/js/app/ajax-save.js:37 + Error Hata + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. Bu geçerli bir UUID değil. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. Bu değer, {{ compared_value }} katı olmalıdır. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. Bu İşletme Tanımlama Kodu (BIC), IBAN {{ iban }} ile ilişkili değil. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. Bu değer geçerli JSON olmalıdır. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. Bu koleksiyon yalnızca benzersiz öğeler içermelidir. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. Bu değer pozitif olmalıdır. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. Bu değer pozitif veya sıfır olmalıdır. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. Bu değer negatif olmalıdır. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. Bu değer, negatif veya sıfır olmalıdır. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. Bu değer, geçerli bir saat dilimi değil. - - - 7e27e92 - Bu parola bir veri ihlalinde sızdırılmıştır, kullanılmamalıdır. Lütfen başka bir parola kullanın. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. Bu değer, {{ min }} ile {{ max }} arasında olmalıdır. + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. Bu form fazladan alan içermemelidir. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. Yüklenen dosya çok büyüktü. Lütfen daha küçük bir dosya yüklemeyi deneyin. - - The CSRF token is invalid. Please try to resubmit the form. - CSRF jetonu geçersiz. Lütfen formu yeniden göndermeyi deneyin. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - Gönderinize bir özet verin! - - - - - obsolete - - - post.blank_content - Gönderinizin bazı içerikler olmalı! - - - - - obsolete - - - post.too_short_content - Gönderi içeriği çok kısa (minimum {{ limit }} karakter) - - - - - obsolete - - - post.too_many_tags - Çok fazla etiket ({{ limit }} veya daha az etiket ekleyin) - - - - - obsolete - - - comment.blank - Lütfen yorumunuzu boş bırakmayın! - - - - - obsolete - - - comment.too_short - Yorum çok kısa (minimum {{ limit }} karakter) - - - - - obsolete - - - comment.too_long - Yorum çok uzun (maksimum {{ limit }} karakter) + The CSRF token is invalid. Please try to resubmit the form. + CSRF jetonu geçersiz. Lütfen formu yeniden göndermeyi deneyin. - + - obsolete + src/Entity/User.php:24 - - comment.is_spam - Bu yorumun içeriği spam olarak kabul edilir. - - - user.duplicate_email {{ value }} e-postasına sahip bir kullanıcı zaten var. + + src/Entity/User.php:25 + user.duplicate_username {{ value }} kullanıcı adına sahip bir kullanıcı zaten var. + + src/Entity/User.php:57 + user.not_valid_password Geçersiz parola. Parola en az 6 karakter içermelidir. + + src/Entity/User.php:49 + user.not_valid_email Geçersiz e-posta + + src/Entity/User.php:43 + user.username_invalid_characters Kullanıcı adı yalnızca küçük latin karakterler, sayılar ve alt çizgiler içermelidir. + + src/Entity/User.php:35 + src/Entity/User.php:36 + user.not_valid_display_name Geçersiz ekran ad diff --git a/translations/validators.uk.xlf b/translations/validators.uk.xlf index 42a6e26b0..46b2d0c2d 100644 --- a/translations/validators.uk.xlf +++ b/translations/validators.uk.xlf @@ -1,163 +1,195 @@ - - + + + + vendor/symfony/validator/Constraints/IsFalse.php:36 + This value should be false. Це значення повинно бути хибним. + + vendor/symfony/validator/Constraints/IsTrue.php:36 + This value should be true. Це значення повинно бути істинним. + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + This value should be of type {{ type }}. Це значення повинно бути типу {{ type }}. + + vendor/symfony/validator/Constraints/Blank.php:36 + This value should be blank. Це значення повинно бути порожнім. + + vendor/symfony/validator/Constraints/Choice.php:47 + The value you selected is not a valid choice. Вибране вами значення не є допустимим. - - - 0d999f2 - Ви повинні вибрати не менш, ніж {{ limit }} варіантів. | Ви повинні вибрати не менш, ніж {{ limit }} варіантів. - - - - - 0824486 - Ви повинні вибрати не більш, ніж {{ limit }} варіантів. | Ви повинні вибрати не більш, ніж {{ limit }} варіантів. - - + + vendor/symfony/validator/Constraints/Choice.php:48 + One or more of the given values is invalid. Одне або декілька зазначених значень неприпустимі. + + vendor/symfony/validator/Constraints/Collection.php:42 + This field was not expected. Це поле не очікувалося. + + vendor/symfony/validator/Constraints/Collection.php:43 + This field is missing. Це поле відсутнє. + + vendor/symfony/validator/Constraints/Date.php:38 + This value is not a valid date. Це значення не є дійсною датою. + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + This value is not a valid datetime. Це значення не є допустимою датою и часом. + + vendor/symfony/validator/Constraints/Email.php:54 + This value is not a valid email address. Це значення не є дійсною адресою електронної пошти. + + vendor/symfony/validator/Constraints/File.php:57 + The file could not be found. Файл не знайдено. + + vendor/symfony/validator/Constraints/File.php:58 + The file is not readable. Файл не може бути прочитаним. - - - 1ad411a - Файл занадто великий ({{ size }} {{ suffix }}). Допустимий максимальний розмір: {{ limit }} {{ suffix }}. - - - - - 30a318d - Неприпустимий MIME-тип файлу ({{ type }}). Допустимі MIME-типи: {{ types }}. - - + + vendor/symfony/validator/Constraints/Range.php:48 + This value should be {{ limit }} or less. Це значення повинно бути {{ limit }} або менше. - - - 0e0c1e1 - Це занадто довге значення. Воно повинно містити не більш, ніж {{ limit }} символів. | Це значення занадто довге. Воно повинно містити не більш, ніж {{ limit }} символів. - - + + vendor/symfony/validator/Constraints/Range.php:47 + This value should be {{ limit }} or more. Це значення повинно бути {{ limit }} або більше. - - - 5188ff9 - Це занадто коротке значення. Воно повинно містити символ {{ limit }} або більше. | Це значення занадто коротке. Воно повинно містити {{ limit }} символів або більше. - - + + vendor/symfony/validator/Constraints/NotBlank.php:38 + This value should not be blank. Це значення не повинно бути порожнім. + + vendor/symfony/validator/Constraints/NotNull.php:36 + This value should not be null. Це значення не повинно бути нульовим. + + vendor/symfony/validator/Constraints/IsNull.php:36 + This value should be null. Це значення повинно бути нульовим. + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + This value is not valid. Це неприпустиме значення. + + vendor/symfony/validator/Constraints/Time.php:39 + This value is not a valid time. Це значення не є допустимим часом. + + vendor/symfony/validator/Constraints/Url.php:37 + This value is not a valid URL. Це значення не є допустимим URL. @@ -170,282 +202,300 @@ + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. - Файл занадто великий. Допустимий максимальний розмір: {{ limit }} {{суффикс}}. + Файл занадто великий. Допустимий максимальний розмір: {{ limit }} {{ suffix }}. + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + The file is too large. Файл занадто великий. + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + The file could not be uploaded. Не вдалося завантажити файл. + + vendor/symfony/validator/Constraints/Range.php:49 + This value should be a valid number. Це значення повинно бути дійсним числом. + + vendor/symfony/validator/Constraints/Image.php:82 + This file is not a valid image. Цей файл не є дійсним зображенням. + + vendor/symfony/validator/Constraints/Ip.php:85 + This is not a valid IP address. Це недійсна IP-адреса. + + vendor/symfony/validator/Constraints/Language.php:38 + This value is not a valid language. Це значення не є допустимою мовою. + + vendor/symfony/validator/Constraints/Locale.php:38 + This value is not a valid locale. Це значення не є допустимим мовним стандартом. + + vendor/symfony/validator/Constraints/Country.php:38 + This value is not a valid country. - Це значення не є допустимою країною. + Це значення не є допустимою країною. + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + This value is already used. Це значення вже використовується. + + vendor/symfony/validator/Constraints/Image.php:83 + The size of the image could not be detected. Не вдалося визначити розмір зображення. - - - 266051e - Ширина зображення занадто велика ({{ width }} пікселів). Допустима максимальна ширина складає {{ max_width }} пікселів. - - - - - c1c23f9 - Ширина зображення занадто мала ({{ width }} пікселів). Мінімальна очікувана ширина складає {{ min_width }} пікселів. - - - - - 9a128f7 - Висота зображення занадто велика ({{ height }} пікселів). Допустима максимальна высота: {{ max_height }} пікселів. - - - - - 8a4cd70 - Висота зображення занадто мала ({{ height }} пікселів). Мінімальна очікувана высота складає {{ min_height }} пікселів. - - + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + This value should be the user's current password. Це значення повинно бути поточним паролем користувача. - - - fd389d6 - Це значення повинно містити рівно {{ limit }} символів. | Це значення повинно містити рівно {{ limit }} символів. - - + + vendor/symfony/validator/Constraints/File.php:67 + The file was only partially uploaded. Файл завантажено тільки частково. + + vendor/symfony/validator/Constraints/File.php:68 + No file was uploaded. Файл не завантажено. + + vendor/symfony/validator/Constraints/File.php:69 + No temporary folder was configured in php.ini. В php.ini не була налаштована тимчасова тека або налаштована тека не існує. + + vendor/symfony/validator/Constraints/File.php:70 + Cannot write temporary file to disk. Неможливо записати тимчасовий файл на диск. + + vendor/symfony/validator/Constraints/File.php:71 + A PHP extension caused the upload to fail. Розширення PHP привело до збою завантаження. - - - b54c218 - Ця колекція повинна містити {{ limit }} елементів або більше. | Ця колекція повинна містити {{ limit }} елементів або більше. - - - - - 949632c - Ця колекція повинна містити {{ limit }} елементів або менше. | Ця колекція повинна містити {{ limit }} елементів або менше. - - - - - e0582dc - Ця колекція повинна містити рівно {{ limit }} елементів. | Ця колекція повинна містити рівно {{ limit }} елементів. - - + + vendor/symfony/validator/Constraints/Luhn.php:42 + Invalid card number. Невірний номер карти. + + vendor/symfony/validator/Constraints/CardScheme.php:54 + Unsupported card type or invalid card number. Тип карти не підтримується або невірний номер карти. + + vendor/symfony/validator/Constraints/Iban.php:46 + This is not a valid International Bank Account Number (IBAN). Це недійсний міжнародний номер банківського рахунку (IBAN). + + vendor/symfony/validator/Constraints/Isbn.php:49 + This value is not a valid ISBN-10. Це значення не є дійсним ISBN-10. + + vendor/symfony/validator/Constraints/Isbn.php:50 + This value is not a valid ISBN-13. Це значення не є дійсним ISBN-13. + + vendor/symfony/validator/Constraints/Isbn.php:51 + This value is neither a valid ISBN-10 nor a valid ISBN-13. Це значення не є ни дійсним ISBN-10, ні дійсним ISBN-13. + + vendor/symfony/validator/Constraints/Issn.php:47 + This value is not a valid ISSN. Це значення не є дійсним ISSN. + + vendor/symfony/validator/Constraints/Currency.php:39 + This value is not a valid currency. Це значення не є чинною валютою. + + vendor/symfony/validator/Constraints/EqualTo.php:35 + This value should be equal to {{ compared_value }}. - Це значення повинно дорівнювати {{ compare_value }}. + Це значення повинно дорівнювати {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + This value should be greater than {{ compared_value }}. - Це значення повинно бути більше {{ compare_value }}. + Це значення повинно бути більше {{ compared_value }}. + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + This value should be greater than or equal to {{ compared_value }}. - Це значення повинно бути більше або дорівнювати {{ compare_value }}. - - - - - 9670078 - Це значення повинно бути ідентичним до {{ compare_value_type }} {{ compare_value }}. + Це значення повинно бути більше або дорівнювати {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThan.php:35 + This value should be less than {{ compared_value }}. - Це значення повинно бути менше {{ compare_value }}. + Це значення повинно бути менше {{ compared_value }}. + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + This value should be less than or equal to {{ compared_value }}. - Це значення повинно бути менше або дорівнювати {{ compare_value }}. + Це значення повинно бути менше або дорівнювати {{ compared_value }}. + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + This value should not be equal to {{ compared_value }}. - Це значення не повинно дорівнювати {{ compare_value }}. - - - - - 0eedf91 - Це значення не повинно бути ідентичним {{ compare_value_type }} {{ compare_value }}. - - - - - 9c3ad0f - Співвідношення сторін зображення занадто велике ({{ ratio }}). Допустиме максимальне співвідношення: {{ max_ratio }}. - - - - - 4376d45 - Коэффициент зображення занадто мал ({{ ratio }}). Ожидаемое минимальное співвідношення: {{ min_ratio }}. + Це значення не повинно дорівнювати {{ compared_value }}. + + vendor/symfony/validator/Constraints/Image.php:92 + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. Зображення квадратне ({{ width }} x {{ height }} пікселів). Квадратні зображення не допускаються. - - - 1dc128a - Зображення в альбомній орієнтації ({{ширина}} x {{высота}} пікселів). Зображення з альбомною орієнтацією не допускаються. - - - - - 9e27714 - Зображення в портретній орієнтації ({{ширина}} x {{высота}} пікселів). Портретно-орієнтовані зображення не допускаються. - - + + vendor/symfony/validator/Constraints/File.php:62 + An empty file is not allowed. Порожній файл не допускается. @@ -458,216 +508,208 @@ + + vendor/symfony/validator/Constraints/Length.php:57 + This value does not match the expected {{ charset }} charset. Це значення не відповідає очікуваному кодуванню {{ charset }}. + + vendor/symfony/validator/Constraints/Bic.php:49 + This is not a valid Business Identifier Code (BIC). Це недійсний код бізнес-ідентифікатора (BIC). + + assets/js/app/ajax-save.js:37 + Error Помилка + + vendor/symfony/validator/Constraints/Uuid.php:80 + This is not a valid UUID. Це недійсний UUID. + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + This value should be a multiple of {{ compared_value }}. - Це значення повинно бути кратним {{ compare_value }}. + Це значення повинно бути кратним {{ compared_value }}. + + vendor/symfony/validator/Constraints/Bic.php:50 + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. Цей код бізнес-ідентифікатора (BIC) не пов'язаний з IBAN {{ iban }}. + + vendor/symfony/validator/Constraints/Json.php:36 + This value should be valid JSON. Це значення повинно бути коректним JSON. + + vendor/symfony/validator/Constraints/Unique.php:39 + This collection should contain only unique elements. Ця колекція повинна містити тільки унікальні елементи. + + vendor/symfony/validator/Constraints/Positive.php:25 + This value should be positive. Це значення повинно бути позитивним. + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + This value should be either positive or zero. Це значення повинно бути позитивним або нульовим. + + vendor/symfony/validator/Constraints/Negative.php:25 + This value should be negative. Це значення повинно бути негативним. + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + This value should be either negative or zero. Це значення повинно бути либо негативним, либо нульовим. + + vendor/symfony/validator/Constraints/Timezone.php:35 + This value is not a valid timezone. Це значення не є допустимим часовым поясом. - - - 7e27e92 - Цей пароль просочився у результаті витоку даних, його не можна використовувати. Будь ласка, скористайтеся іншим паролем. - - + + vendor/symfony/validator/Constraints/Range.php:46 + This value should be between {{ min }} and {{ max }}. Це значення повинно бути між {{ min }} і {{ max }}. + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + This form should not contain extra fields. Ця форма не повинна містити зайвих полів. + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + The uploaded file was too large. Please try to upload a smaller file. Загруженный файл занадто великий. Будь ласка, спробуйте завантажити файл меншого розміру. - - The CSRF token is invalid. Please try to resubmit the form. - Токен CSRF недійсний. Будь ласка, спробуйте повторно надіслати форму. - - - - obsolete + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 - post.blank_summary - Дайте вашому посту резюме! - - - - - obsolete - - - post.blank_content - Ваш пост повинен містити контент! - - - - - obsolete - - - post.too_short_content - Зміст повідомлення занадто короткий (мінімум {{ limit }} символів) - - - - - obsolete - - - post.too_many_tags - Занадто багато тегів (додайте тегів {{ limit }} або менше) - - - - - obsolete - - - comment.blank - Будь ласка, не залишайте свій коментар порожнім! - - - - - obsolete - - - comment.too_short - Коментар занадто короткий (мінімум {{ limit }} символів) - - - - - obsolete - - - comment.too_long - Коментар занадто довгий (максимум {{ limit }} символів) + The CSRF token is invalid. Please try to resubmit the form. + Токен CSRF недійсний. Будь ласка, спробуйте повторно надіслати форму. - + - obsolete + src/Entity/User.php:24 - - comment.is_spam - Зміст цього коментаря вважається спамом. - - - user.duplicate_email Користувач з адресою електронної пошти {{ value }} вже існує. + + src/Entity/User.php:25 + user.duplicate_username Користувач з ім'ям користувача {{ value }} вже існує. + + src/Entity/User.php:57 + user.not_valid_password Неправильный пароль. Пароль повинен містити не менш ніж 6 символів. + + src/Entity/User.php:49 + user.not_valid_email Невірна адреса електронної пошти + + src/Entity/User.php:43 + user.username_invalid_characters Ім'я користувача повинно містити тільки латинські символи нижнього регістра, цифри і символи підкреслення. + + src/Entity/User.php:35 + src/Entity/User.php:36 + user.not_valid_display_name Недійсне відображене імʼя diff --git a/translations/validators.zh_CN.xlf b/translations/validators.zh_CN.xlf index 5d9b71dd0..f402db9eb 100644 --- a/translations/validators.zh_CN.xlf +++ b/translations/validators.zh_CN.xlf @@ -1,354 +1,719 @@ - - -
- -
- - + + + + + vendor/symfony/validator/Constraints/IsFalse.php:36 + + This value should be false. 该变量的值应为 false 。 - - +
+
+ + + vendor/symfony/validator/Constraints/IsTrue.php:36 + + This value should be true. 该变量的值应为 true 。 - - + + + + + vendor/symfony/validator/Constraints/Type.php:36 + vendor/symfony/validator/Validator/RecursiveContextualValidator.php:767 + + This value should be of type {{ type }}. 该变量的类型应为 {{ type }} 。 - - + + + + + vendor/symfony/validator/Constraints/Blank.php:36 + + This value should be blank. 该变量值应为空。 - - + + + + + vendor/symfony/validator/Constraints/Choice.php:47 + + The value you selected is not a valid choice. 选定变量的值不是有效的选项。 - - - You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices. - 您至少要选择 {{ limit }} 个选项。 - - - You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices. - 您最多能选择 {{ limit }} 个选项。 - - + + + + + vendor/symfony/validator/Constraints/Choice.php:48 + + One or more of the given values is invalid. 一个或者多个给定的值无效。 - - + + + + + vendor/symfony/validator/Constraints/Collection.php:42 + + This field was not expected. 此字段是多余的。 - - + + + + + vendor/symfony/validator/Constraints/Collection.php:43 + + This field is missing. 此字段缺失。 - - + + + + + vendor/symfony/validator/Constraints/Date.php:38 + + This value is not a valid date. 该值不是一个有效的日期(date)。 - - + + + + + vendor/symfony/validator/Constraints/DateTime.php:41 + vendor/symfony/validator/Constraints/Range.php:50 + + This value is not a valid datetime. 该值不是一个有效的日期时间(datetime)。 - - + + + + + vendor/symfony/validator/Constraints/Email.php:54 + + This value is not a valid email address. 该值不是一个有效的邮件地址。 - - + + + + + vendor/symfony/validator/Constraints/File.php:57 + + The file could not be found. 文件未找到。 - - + + + + + vendor/symfony/validator/Constraints/File.php:58 + + The file is not readable. 文件不可读。 - - - The file is too large ({{ size }} {{ suffix }}). Allowed maximum size is {{ limit }} {{ suffix }}. - 文件太大 ({{ size }} {{ suffix }})。文件大小不可以超过 {{ limit }} {{ suffix }} 。 - - - The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}. - 无效的文件类型 ({{ type }}) 。允许的文件类型有 {{ types }} 。 - - + + + + + vendor/symfony/validator/Constraints/Range.php:48 + + This value should be {{ limit }} or less. 这个变量的值应该小于或等于 {{ limit }}。 - - - This value is too long. It should have {{ limit }} character or less.|This value is too long. It should have {{ limit }} characters or less. - 字符串太长,长度不可超过 {{ limit }} 个字符。 - - + + + + + vendor/symfony/validator/Constraints/Range.php:47 + + This value should be {{ limit }} or more. 该变量的值应该大于或等于 {{ limit }}。 - - - This value is too short. It should have {{ limit }} character or more.|This value is too short. It should have {{ limit }} characters or more. - 字符串太短,长度不可少于 {{ limit }} 个字符。 - - + + + + + vendor/symfony/validator/Constraints/NotBlank.php:38 + + This value should not be blank. 该变量不应为空。 - - + + + + + vendor/symfony/validator/Constraints/NotNull.php:36 + + This value should not be null. 该变量不应为 null 。 - - + + + + + vendor/symfony/validator/Constraints/IsNull.php:36 + + This value should be null. 该变量应为空 null 。 - - + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:188 + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:61 + vendor/symfony/validator/Constraints/Expression.php:40 + vendor/symfony/validator/Constraints/Regex.php:37 + + This value is not valid. 该变量值无效 。 - - + + + + + vendor/symfony/validator/Constraints/Time.php:39 + + This value is not a valid time. 该值不是一个有效的时间。 - - + + + + + vendor/symfony/validator/Constraints/Url.php:37 + + This value is not a valid URL. 该值不是一个有效的 URL 。 - - + + + + The two values should be equal. 这两个变量的值应该相等。 - - + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:147 + vendor/symfony/validator/Constraints/File.php:65 + + The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}. 文件太大,文件大小不可以超过 {{ limit }} {{ suffix }}。 - - + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:153 + vendor/symfony/validator/Constraints/File.php:66 + + The file is too large. 文件太大。 - - + + + + + vendor/symfony/form/Extension/Core/Type/FileType.php:155 + vendor/symfony/validator/Constraints/File.php:72 + + The file could not be uploaded. 无法上传此文件。 - - + + + + + vendor/symfony/validator/Constraints/Range.php:49 + + This value should be a valid number. 该值应该为有效的数字。 - - - This value is not a valid country. - 该值不是有效的国家名。 - - + + + + + vendor/symfony/validator/Constraints/Image.php:82 + + This file is not a valid image. 该文件不是有效的图片。 - - + + + + + vendor/symfony/validator/Constraints/Ip.php:85 + + This is not a valid IP address. 该值不是有效的IP地址。 - - + + + + + vendor/symfony/validator/Constraints/Language.php:38 + + This value is not a valid language. 该值不是有效的语言名。 - - + + + + + vendor/symfony/validator/Constraints/Locale.php:38 + + This value is not a valid locale. 该值不是有效的区域值(locale)。 - - + + + + + vendor/symfony/validator/Constraints/Country.php:38 + + + This value is not a valid country. + 该值不是有效的国家名。 + + + + + vendor/symfony/doctrine-bridge/Validator/Constraints/UniqueEntity.php:33 + + This value is already used. 该值已经被使用。 - - + + + + + vendor/symfony/validator/Constraints/Image.php:83 + + The size of the image could not be detected. 不能解析图片大小。 - - - The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px. - 图片太宽 ({{ width }}px),最大宽度为 {{ max_width }}px 。 - - - The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px. - 图片宽度不够 ({{ width }}px),最小宽度为 {{ min_width }}px 。 - - - The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px. - 图片太高 ({{ height }}px),最大高度为 {{ max_height }}px 。 - - - The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px. - 图片高度不够 ({{ height }}px),最小高度为 {{ min_height }}px 。 - - + + + + + vendor/symfony/security-core/Validator/Constraints/UserPassword.php:29 + + This value should be the user's current password. 该变量的值应为用户当前的密码。 - - - This value should have exactly {{ limit }} character.|This value should have exactly {{ limit }} characters. - 该变量应为 {{ limit }} 个字符。 - - + + + + + vendor/symfony/validator/Constraints/File.php:67 + + The file was only partially uploaded. 该文件的上传不完整。 - - + + + + + vendor/symfony/validator/Constraints/File.php:68 + + No file was uploaded. 没有上传任何文件。 - - + + + + + vendor/symfony/validator/Constraints/File.php:69 + + No temporary folder was configured in php.ini. php.ini 里没有配置临时文件目录。 - - + + + + + vendor/symfony/validator/Constraints/File.php:70 + + Cannot write temporary file to disk. 临时文件写入磁盘失败。 - - + + + + + vendor/symfony/validator/Constraints/File.php:71 + + A PHP extension caused the upload to fail. 某个 PHP 扩展造成上传失败。 - - - This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more. - 该集合最少应包含 {{ limit }} 个元素。 - - - This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less. - 该集合最多包含 {{ limit }} 个元素。 - - - This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements. - 该集合应包含 {{ limit }} 个元素 element 。 - - + + + + + vendor/symfony/validator/Constraints/Luhn.php:42 + + Invalid card number. 无效的信用卡号。 - - + + + + + vendor/symfony/validator/Constraints/CardScheme.php:54 + + Unsupported card type or invalid card number. 不支持的信用卡类型或无效的信用卡号。 - - + + + + + vendor/symfony/validator/Constraints/Iban.php:46 + + This is not a valid International Bank Account Number (IBAN). 该值不是有效的国际银行帐号(IBAN)。 - - + + + + + vendor/symfony/validator/Constraints/Isbn.php:49 + + This value is not a valid ISBN-10. 该值不是有效的10位国际标准书号(ISBN-10)。 - - + + + + + vendor/symfony/validator/Constraints/Isbn.php:50 + + This value is not a valid ISBN-13. 该值不是有效的13位国际标准书号(ISBN-13)。 - - + + + + + vendor/symfony/validator/Constraints/Isbn.php:51 + + This value is neither a valid ISBN-10 nor a valid ISBN-13. 该值不是有效的国际标准书号(ISBN-10 或 ISBN-13)。 - - + + + + + vendor/symfony/validator/Constraints/Issn.php:47 + + This value is not a valid ISSN. 该值不是有效的国际标准期刊号(ISSN)。 - - + + + + + vendor/symfony/validator/Constraints/Currency.php:39 + + This value is not a valid currency. 该值不是有效的货币名(currency)。 - - + + + + + vendor/symfony/validator/Constraints/EqualTo.php:35 + + This value should be equal to {{ compared_value }}. 该值应等于 {{ compared_value }} 。 - - + + + + + vendor/symfony/validator/Constraints/GreaterThan.php:35 + + This value should be greater than {{ compared_value }}. 该值应大于 {{ compared_value }} 。 - - + + + + + vendor/symfony/validator/Constraints/GreaterThanOrEqual.php:35 + + This value should be greater than or equal to {{ compared_value }}. 该值应大于或等于 {{ compared_value }} 。 - - - This value should be identical to {{ compared_value_type }} {{ compared_value }}. - 该值应与 {{ compared_value_type }} {{ compared_value }} 相同。 - - + + + + + vendor/symfony/validator/Constraints/LessThan.php:35 + + This value should be less than {{ compared_value }}. 该值应小于 {{ compared_value }} 。 - - + + + + + vendor/symfony/validator/Constraints/LessThanOrEqual.php:35 + + This value should be less than or equal to {{ compared_value }}. 该值应小于或等于 {{ compared_value }} 。 - - + + + + + vendor/symfony/validator/Constraints/NotEqualTo.php:35 + + This value should not be equal to {{ compared_value }}. 该值不应先等于 {{ compared_value }} 。 - - - This value should not be identical to {{ compared_value_type }} {{ compared_value }}. - 该值不应与 {{ compared_value_type }} {{ compared_value }} 相同。 - - - The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}. - 图片宽高比太大 ({{ ratio }})。允许的最大宽高比为 {{ max_ratio }}。 - - - The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}. - 图片宽高比太小 ({{ ratio }})。允许的最大宽高比为 {{ min_ratio }}。 - - + + + + + vendor/symfony/validator/Constraints/Image.php:92 + + The image is square ({{ width }}x{{ height }}px). Square images are not allowed. 图片是方形的 ({{ width }}x{{ height }}px)。不允许使用方形的图片。 - - - The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed. - 图片是横向的 ({{ width }}x{{ height }}px)。不允许使用横向的图片。 - - - The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed. - 图片是纵向的 ({{ width }}x{{ height }}px)。不允许使用纵向的图片。 - - + + + + + vendor/symfony/validator/Constraints/File.php:62 + + An empty file is not allowed. 不允许使用空文件。 - - + + + + The host could not be resolved. 主机名无法解析。 - - + + + + + vendor/symfony/validator/Constraints/Length.php:57 + + This value does not match the expected {{ charset }} charset. 该值不符合 {{ charset }} 编码。 - - + + + + + vendor/symfony/validator/Constraints/Bic.php:49 + + This is not a valid Business Identifier Code (BIC). 这不是有效的业务标识符代码(BIC)。 - - + + + + + assets/js/app/ajax-save.js:37 + + Error 错误 - - + + + + + vendor/symfony/validator/Constraints/Uuid.php:80 + + This is not a valid UUID. 这不是有效的UUID。 - - + + + + + vendor/symfony/validator/Constraints/DivisibleBy.php:34 + + This value should be a multiple of {{ compared_value }}. 此值应为 {{ compared_value }} 的倍数。 - - + + + + + vendor/symfony/validator/Constraints/Bic.php:50 + + This Business Identifier Code (BIC) is not associated with IBAN {{ iban }}. 此业务标识符代码(BIC)与IBAN {{ iban }} 无关。 - - + + + + + vendor/symfony/validator/Constraints/Json.php:36 + + This value should be valid JSON. 该值应该是有效的JSON。 - - + + + + + vendor/symfony/validator/Constraints/Unique.php:39 + + + This collection should contain only unique elements. + 该集合不能包含重复项。 + + + + + vendor/symfony/validator/Constraints/Positive.php:25 + + + This value should be positive. + 该值应为正数。 + + + + + vendor/symfony/validator/Constraints/PositiveOrZero.php:25 + + + This value should be either positive or zero. + 该值应为正数或零。 + + + + + vendor/symfony/validator/Constraints/Negative.php:25 + + + This value should be negative. + 该值应为负数。 + + + + + vendor/symfony/validator/Constraints/NegativeOrZero.php:25 + + + This value should be either negative or zero. + 该值应为负数或零。 + + + + + vendor/symfony/validator/Constraints/Timezone.php:35 + + + This value is not a valid timezone. + 该值不是有效的时区。 + + + + + vendor/symfony/validator/Constraints/Range.php:46 + + + This value should be between {{ min }} and {{ max }}. + 该值应在 {{ min }} 和 {{ max }} 之间。 + + + + + vendor/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php:64 + + This form should not contain extra fields. 该表单中不可有额外字段. - - + + + + + vendor/symfony/form/Extension/Core/Type/FormType.php:181 + + The uploaded file was too large. Please try to upload a smaller file. 上传文件太大, 请重新尝试上传一个较小的文件. - - + + + + + vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php:101 + + The CSRF token is invalid. Please try to resubmit the form. CSRF 验证符无效, 请重新提交. - - + + + + + src/Entity/User.php:24 + + + user.duplicate_email + 使用电子邮件 {{ value }} 的用户已存在。 + + + + + src/Entity/User.php:25 + + + user.duplicate_username + 使用用户名 {{ value }} 的用户已存在。 + + + + + src/Entity/User.php:57 + + + user.not_valid_password + 密码无效。密码应至少包含 6 个字符。 + + + + + src/Entity/User.php:49 + + + user.not_valid_email + 电子邮件无效 + + + + + src/Entity/User.php:43 + + + user.username_invalid_characters + 用户名只能包含小写拉丁字母、数字和下划线。 + + + + + src/Entity/User.php:35 + src/Entity/User.php:36 + + + user.not_valid_display_name + 显示名称无效 + +