mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-05-07 02:26:23 +02:00
Go on with translations
This commit is contained in:
@@ -219,6 +219,48 @@ en:
|
||||
CUSTOM_ROUTES_HELP: "routes to alias to other pages. Standard Regex replacement is valid"
|
||||
CUSTOM_ROUTES_PLACEHOLDER_KEY: /your/alias
|
||||
CUSTOM_ROUTES_PLACEHOLDER_VALUE: /your/route
|
||||
FILE_STREAMS: File Streams
|
||||
DEFAULT: Default
|
||||
TITLE: Title
|
||||
PAGE_MEDIA: Page Media
|
||||
OPTIONS: Options
|
||||
PUBLISHED: Published
|
||||
PUBLISHED_HELP: "By default, a page is published unless you explicitly set published: false or via a publish_date being in the future, or unpublish_date in the past"
|
||||
DATE: Date
|
||||
DATE_HELP: "The date variable allows you to specifically set a date associated with this page."
|
||||
PUBLISHED_DATE: Published Date
|
||||
PUBLISHED_DATE_HELP: "Can provide a date to automatically trigger publication."
|
||||
UNPUBLISHED_DATE: Unpublished Date
|
||||
UNPUBLISHED_DATE_HELP: "can provide a date to automatically trigger un-publication."
|
||||
ROBOTS: Robots
|
||||
TAXONOMIES: Taxonomies
|
||||
TAXONOMY: Taxonomy
|
||||
ADVANCED: Advanced
|
||||
SETTINGS: Settings
|
||||
FOLDER_NUMERIC_PREFIX: Folder Numeric Prefix
|
||||
FOLDER_NUMERIC_PREFIX_HELP: Numeric prefix that provides manual ordering and implies visibility
|
||||
FOLDER_NAME: Folder Name
|
||||
PARENT: Parent
|
||||
ROOT: '- Root -'
|
||||
DISPLAY_TEMPLATE: Display Template
|
||||
BODY_CLASSES: Body Classes
|
||||
ORDERING: Ordering
|
||||
PAGE_ORDER: Page Order
|
||||
OVERRIDES: Overrides
|
||||
MENU: Menu
|
||||
MENU_HELP: "The string to be used in a menu. If not set, <b>Title</b> will be used."
|
||||
SLUG: Slug
|
||||
SLUG_HELP: "The slug variable allows you to specifically set the page's portion of the URL"
|
||||
SLUG_VALIDATE_MESSAGE: A slug must contain only lowercase alphanumeric characters and dashes
|
||||
PROCESS: Process
|
||||
DEFAULT_CHILD_TYPE: Default Child Type
|
||||
USE_GLOBAL: Use Global
|
||||
ROUTABLE: Routable
|
||||
ROUTABLE_HELP: If this page is reachable by a URL
|
||||
CACHING: Caching
|
||||
VISIBLE: Visible
|
||||
VISIBLE_HELP: "Determines if a page is visible in the navigation."
|
||||
DISABLED: Disabled
|
||||
|
||||
es:
|
||||
ADMIN_BETA_MSG: ¡Está es una versión Beta! Utilízala bajo tu propio riesgo...
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
{% if field.form %}form="{{ field.form }}"{% endif %}
|
||||
>
|
||||
{% for key, text in field.options %}
|
||||
<option {% if key == value or text in value %}selected="selected"{% endif %} value="{{ field.multiple ? text : key }}">{{ text }}</option>
|
||||
<option {% if key == value or text in value %}selected="selected"{% endif %} value="{{ field.multiple ? text : key }}">{{ text|tu }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
{% endif %}
|
||||
|
||||
{% if field.fields %}
|
||||
{% for tab in field.fields %}<input type="radio" name="tab" id="tab{{ loop.index }}" class="tab-head" {{ active == loop.index ? 'checked="checked"' : '' }}/><label for="tab{{ loop.index }}">{{ tab.title }}</label>{% endfor %}
|
||||
{% for tab in field.fields %}<input type="radio" name="tab" id="tab{{ loop.index }}" class="tab-head" {{ active == loop.index ? 'checked="checked"' : '' }}/><label for="tab{{ loop.index }}">{{ tab.title|tu }}</label>{% endfor %}
|
||||
<div class="tab-body-wrapper">
|
||||
{% for field in field.fields %}
|
||||
{% set value = data.value(field.name) %}
|
||||
|
||||
Reference in New Issue
Block a user