Version Description
Release Date 23rd February 2022
- View Release Post
- New - ACF blocks now support the new Full Site Editor included in WordPress 5.9
- New - ACF blocks now support the WordPress Query Loop block
- New - Added block caching system to reduce the number of AJAX calls in the block editor
- Enhancement - Block preloading can now be disabled by using "acf_update_setting( 'preload_blocks', false );" in the "acf/init" action hook
- Enhancement - ACF and ACF PRO will now detect if each other are active and deactivate the other plugin on plugin activation
- Fix - Fixed an issue with the media library not working correctly in ACF Blocks in WordPress 5.9.1
- Fix - Fixed an issue where anchors weren't working correctly in WordPress 5.9
- Fix - Fixed an issue where the "unfiltered_html" capability wasn't being used by ACF blocks
- Fix - Fixed an issue where it was impossible to update an ACF block inside the widget block editor
- Fix - Fixed an issue where ACF fields might not appear in REST API calls made via internal WordPress functions
- Fix - Warnings and PHP 8.1 deprecation notices in REST API
- Fix - Better support for double byte characters in "acf_get_truncated()" (props @cabradb)
- i18n - Broken link in the Croatian translation
- i18n - Automated building of acf.pot for translators in each release
Download this release
Release Info
Developer | deliciousbrains |
Plugin | Advanced Custom Fields |
Version | 5.12 |
Comparing to | |
See all releases |
Code changes from version 5.11.4 to 5.12
- acf.php +64 -2
- assets/build/css/acf-dark.css.js +0 -6
- assets/build/css/acf-field-group.css.js +0 -6
- assets/build/css/acf-global.css.js +0 -6
- assets/build/css/acf-input.css.js +0 -6
- includes/api/api-helpers.php +15 -25
- includes/forms/form-gutenberg.php +8 -1
- includes/rest-api/class-acf-rest-api.php +4 -4
- includes/rest-api/class-acf-rest-request.php +5 -5
- lang/acf-hr.mo +0 -0
- lang/acf-hr.po +2565 -2009
- lang/acf.pot +1497 -1765
- readme.txt +20 -1
acf.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: https://www.advancedcustomfields.com
|
5 |
Description: Customize WordPress with powerful, professional and intuitive fields.
|
6 |
-
Version: 5.
|
7 |
Author: Delicious Brains
|
8 |
Author URI: https://www.advancedcustomfields.com
|
9 |
Text Domain: acf
|
@@ -19,7 +19,7 @@ if ( ! class_exists( 'ACF' ) ) :
|
|
19 |
class ACF {
|
20 |
|
21 |
/** @var string The plugin version number. */
|
22 |
-
var $version = '5.
|
23 |
|
24 |
/** @var array The plugin settings array. */
|
25 |
var $settings = array();
|
@@ -100,6 +100,7 @@ if ( ! class_exists( 'ACF' ) ) :
|
|
100 |
'rest_api_enabled' => true,
|
101 |
'rest_api_format' => 'light',
|
102 |
'rest_api_embed_links' => true,
|
|
|
103 |
);
|
104 |
|
105 |
// Include utility functions.
|
@@ -193,6 +194,8 @@ if ( ! class_exists( 'ACF' ) ) :
|
|
193 |
add_action( 'init', array( $this, 'init' ), 5 );
|
194 |
add_action( 'init', array( $this, 'register_post_types' ), 5 );
|
195 |
add_action( 'init', array( $this, 'register_post_status' ), 5 );
|
|
|
|
|
196 |
|
197 |
// Add filters.
|
198 |
add_filter( 'posts_where', array( $this, 'posts_where' ), 10, 2 );
|
@@ -444,6 +447,65 @@ if ( ! class_exists( 'ACF' ) ) :
|
|
444 |
);
|
445 |
}
|
446 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
/**
|
448 |
* posts_where
|
449 |
*
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: https://www.advancedcustomfields.com
|
5 |
Description: Customize WordPress with powerful, professional and intuitive fields.
|
6 |
+
Version: 5.12
|
7 |
Author: Delicious Brains
|
8 |
Author URI: https://www.advancedcustomfields.com
|
9 |
Text Domain: acf
|
19 |
class ACF {
|
20 |
|
21 |
/** @var string The plugin version number. */
|
22 |
+
var $version = '5.12';
|
23 |
|
24 |
/** @var array The plugin settings array. */
|
25 |
var $settings = array();
|
100 |
'rest_api_enabled' => true,
|
101 |
'rest_api_format' => 'light',
|
102 |
'rest_api_embed_links' => true,
|
103 |
+
'preload_blocks' => true,
|
104 |
);
|
105 |
|
106 |
// Include utility functions.
|
194 |
add_action( 'init', array( $this, 'init' ), 5 );
|
195 |
add_action( 'init', array( $this, 'register_post_types' ), 5 );
|
196 |
add_action( 'init', array( $this, 'register_post_status' ), 5 );
|
197 |
+
add_action( 'activated_plugin', array( $this, 'deactivate_other_instances' ) );
|
198 |
+
add_action( 'pre_current_active_plugins', array( $this, 'plugin_deactivated_notice' ) );
|
199 |
|
200 |
// Add filters.
|
201 |
add_filter( 'posts_where', array( $this, 'posts_where' ), 10, 2 );
|
447 |
);
|
448 |
}
|
449 |
|
450 |
+
/**
|
451 |
+
* Checks if another version of ACF/ACF PRO is active and deactivates it.
|
452 |
+
* Hooked on `activated_plugin` so other plugin is deactivated when current plugin is activated.
|
453 |
+
*
|
454 |
+
* @param string $plugin The plugin being activated.
|
455 |
+
*/
|
456 |
+
public function deactivate_other_instances( $plugin ) {
|
457 |
+
if ( ! in_array( $plugin, array( 'advanced-custom-fields/acf.php', 'advanced-custom-fields-pro/acf.php' ) ) ) {
|
458 |
+
return;
|
459 |
+
}
|
460 |
+
|
461 |
+
$plugin_to_deactivate = 'advanced-custom-fields/acf.php';
|
462 |
+
$deactivated_notice_id = '1';
|
463 |
+
|
464 |
+
// If we just activated the free version, deactivate the pro version.
|
465 |
+
if ( $plugin === $plugin_to_deactivate ) {
|
466 |
+
$plugin_to_deactivate = 'advanced-custom-fields-pro/acf.php';
|
467 |
+
$deactivated_notice_id = '2';
|
468 |
+
}
|
469 |
+
|
470 |
+
if ( is_multisite() && is_network_admin() ) {
|
471 |
+
$active_plugins = (array) get_site_option( 'active_sitewide_plugins', array() );
|
472 |
+
$active_plugins = array_keys( $active_plugins );
|
473 |
+
} else {
|
474 |
+
$active_plugins = (array) get_option( 'active_plugins', array() );
|
475 |
+
}
|
476 |
+
|
477 |
+
foreach ( $active_plugins as $plugin_basename ) {
|
478 |
+
if ( $plugin_to_deactivate === $plugin_basename ) {
|
479 |
+
set_transient( 'acf_deactivated_notice_id', $deactivated_notice_id, 1 * HOUR_IN_SECONDS );
|
480 |
+
deactivate_plugins( $plugin_basename );
|
481 |
+
return;
|
482 |
+
}
|
483 |
+
}
|
484 |
+
}
|
485 |
+
|
486 |
+
/**
|
487 |
+
* Displays a notice when either ACF or ACF PRO is automatically deactivated.
|
488 |
+
*/
|
489 |
+
public function plugin_deactivated_notice() {
|
490 |
+
$deactivated_notice_id = get_transient( 'acf_deactivated_notice_id' );
|
491 |
+
if ( ! in_array( $deactivated_notice_id, array( '1', '2' ) ) ) {
|
492 |
+
return;
|
493 |
+
}
|
494 |
+
|
495 |
+
$message = __( "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields.", 'acf' );
|
496 |
+
if ( '2' === $deactivated_notice_id ) {
|
497 |
+
$message = __( "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields PRO.", 'acf' );
|
498 |
+
}
|
499 |
+
|
500 |
+
?>
|
501 |
+
<div class="updated" style="border-left: 4px solid #ffba00;">
|
502 |
+
<p><?php echo esc_html( $message ); ?></p>
|
503 |
+
</div>
|
504 |
+
<?php
|
505 |
+
|
506 |
+
delete_transient( 'acf_deactivated_notice_id' );
|
507 |
+
}
|
508 |
+
|
509 |
/**
|
510 |
* posts_where
|
511 |
*
|
assets/build/css/acf-dark.css.js
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
/******/ (function() { // webpackBootstrap
|
2 |
-
/******/ "use strict";
|
3 |
-
/******/
|
4 |
-
/******/
|
5 |
-
/******/ })()
|
6 |
-
;
|
|
|
|
|
|
|
|
|
|
|
|
assets/build/css/acf-field-group.css.js
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
/******/ (function() { // webpackBootstrap
|
2 |
-
/******/ "use strict";
|
3 |
-
/******/
|
4 |
-
/******/
|
5 |
-
/******/ })()
|
6 |
-
;
|
|
|
|
|
|
|
|
|
|
|
|
assets/build/css/acf-global.css.js
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
/******/ (function() { // webpackBootstrap
|
2 |
-
/******/ "use strict";
|
3 |
-
/******/
|
4 |
-
/******/
|
5 |
-
/******/ })()
|
6 |
-
;
|
|
|
|
|
|
|
|
|
|
|
|
assets/build/css/acf-input.css.js
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
/******/ (function() { // webpackBootstrap
|
2 |
-
/******/ "use strict";
|
3 |
-
/******/
|
4 |
-
/******/
|
5 |
-
/******/ })()
|
6 |
-
;
|
|
|
|
|
|
|
|
|
|
|
|
includes/api/api-helpers.php
CHANGED
@@ -3071,39 +3071,29 @@ function acf_get_attachment( $attachment ) {
|
|
3071 |
}
|
3072 |
|
3073 |
|
3074 |
-
|
3075 |
-
*
|
3076 |
-
*
|
3077 |
-
*
|
3078 |
-
*
|
3079 |
-
*
|
3080 |
-
* @
|
3081 |
-
* @
|
3082 |
-
*
|
3083 |
-
* @
|
3084 |
-
|
3085 |
-
* @return (string)
|
3086 |
-
*/
|
3087 |
-
|
3088 |
function acf_get_truncated( $text, $length = 64 ) {
|
3089 |
-
|
3090 |
-
// vars
|
3091 |
$text = trim( $text );
|
3092 |
-
$the_length = strlen( $text );
|
3093 |
-
|
3094 |
-
// cut
|
3095 |
-
$return = substr( $text, 0, ( $length - 3 ) );
|
3096 |
|
3097 |
-
|
3098 |
-
|
3099 |
|
|
|
3100 |
$return .= '...';
|
3101 |
-
|
3102 |
}
|
3103 |
|
3104 |
-
// return
|
3105 |
return $return;
|
3106 |
-
|
3107 |
}
|
3108 |
|
3109 |
/*
|
3071 |
}
|
3072 |
|
3073 |
|
3074 |
+
/**
|
3075 |
+
* This function will truncate and return a string
|
3076 |
+
*
|
3077 |
+
* @date 8/08/2014
|
3078 |
+
* @since 5.0.0
|
3079 |
+
*
|
3080 |
+
* @param string $text The text to truncate.
|
3081 |
+
* @param int $length The number of characters to allow in the string.
|
3082 |
+
*
|
3083 |
+
* @return string
|
3084 |
+
*/
|
|
|
|
|
|
|
3085 |
function acf_get_truncated( $text, $length = 64 ) {
|
|
|
|
|
3086 |
$text = trim( $text );
|
3087 |
+
$the_length = function_exists( 'mb_strlen' ) ? mb_strlen( $text ) : strlen( $text );
|
|
|
|
|
|
|
3088 |
|
3089 |
+
$cut_length = $length - 3;
|
3090 |
+
$return = function_exists( 'mb_substr' ) ? mb_substr( $text, 0, $cut_length ) : substr( $text, 0, $cut_length );
|
3091 |
|
3092 |
+
if ( $the_length > $cut_length ) {
|
3093 |
$return .= '...';
|
|
|
3094 |
}
|
3095 |
|
|
|
3096 |
return $return;
|
|
|
3097 |
}
|
3098 |
|
3099 |
/*
|
includes/forms/form-gutenberg.php
CHANGED
@@ -48,8 +48,15 @@ if ( ! class_exists( 'ACF_Form_Gutenberg' ) ) :
|
|
48 |
// Call edit_form_after_title manually.
|
49 |
add_action( 'block_editor_meta_box_hidden_fields', array( $this, 'block_editor_meta_box_hidden_fields' ) );
|
50 |
|
51 |
-
//
|
52 |
add_filter( 'filter_block_editor_meta_boxes', array( $this, 'filter_block_editor_meta_boxes' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
}
|
54 |
|
55 |
/**
|
48 |
// Call edit_form_after_title manually.
|
49 |
add_action( 'block_editor_meta_box_hidden_fields', array( $this, 'block_editor_meta_box_hidden_fields' ) );
|
50 |
|
51 |
+
// Customize editor metaboxes.
|
52 |
add_filter( 'filter_block_editor_meta_boxes', array( $this, 'filter_block_editor_meta_boxes' ) );
|
53 |
+
|
54 |
+
// Trigger ACF enqueue scripts as the site editor doesn't trigger this from form-post.php
|
55 |
+
acf_enqueue_scripts(
|
56 |
+
array(
|
57 |
+
'uploader' => true,
|
58 |
+
)
|
59 |
+
);
|
60 |
}
|
61 |
|
62 |
/**
|
includes/rest-api/class-acf-rest-api.php
CHANGED
@@ -19,17 +19,17 @@ class ACF_Rest_Api {
|
|
19 |
private $embed_links;
|
20 |
|
21 |
public function __construct() {
|
22 |
-
|
23 |
}
|
24 |
|
25 |
-
public function initialize() {
|
26 |
if ( ! acf_get_setting( 'rest_api_enabled' ) ) {
|
27 |
return;
|
28 |
}
|
29 |
|
30 |
// Parse request and set the object for local access.
|
31 |
$this->request = new ACF_Rest_Request();
|
32 |
-
$this->request->parse_request();
|
33 |
|
34 |
// Register the 'acf' REST property.
|
35 |
$this->register_field();
|
@@ -420,7 +420,7 @@ class ACF_Rest_Api {
|
|
420 |
$object_type_groups = array();
|
421 |
|
422 |
foreach ( $field_groups as $field_group ) {
|
423 |
-
if (
|
424 |
continue;
|
425 |
}
|
426 |
|
19 |
private $embed_links;
|
20 |
|
21 |
public function __construct() {
|
22 |
+
add_filter( 'rest_pre_dispatch', array( $this, 'initialize' ), 10, 3 );
|
23 |
}
|
24 |
|
25 |
+
public function initialize( $response, $handler, $request ) {
|
26 |
if ( ! acf_get_setting( 'rest_api_enabled' ) ) {
|
27 |
return;
|
28 |
}
|
29 |
|
30 |
// Parse request and set the object for local access.
|
31 |
$this->request = new ACF_Rest_Request();
|
32 |
+
$this->request->parse_request( $request );
|
33 |
|
34 |
// Register the 'acf' REST property.
|
35 |
$this->register_field();
|
420 |
$object_type_groups = array();
|
421 |
|
422 |
foreach ( $field_groups as $field_group ) {
|
423 |
+
if ( empty( $field_group['show_in_rest'] ) ) {
|
424 |
continue;
|
425 |
}
|
426 |
|
includes/rest-api/class-acf-rest-request.php
CHANGED
@@ -51,9 +51,9 @@ class ACF_Rest_Request {
|
|
51 |
/**
|
52 |
* Determine all required information from the current request.
|
53 |
*/
|
54 |
-
public function parse_request() {
|
55 |
$this->set_http_method();
|
56 |
-
$this->set_current_route();
|
57 |
$this->build_supported_routes();
|
58 |
$this->set_url_params();
|
59 |
$this->set_object_types();
|
@@ -102,8 +102,8 @@ class ACF_Rest_Request {
|
|
102 |
/**
|
103 |
* Get the current REST route as determined by WordPress.
|
104 |
*/
|
105 |
-
private function set_current_route() {
|
106 |
-
$this->current_route =
|
107 |
}
|
108 |
|
109 |
/**
|
@@ -147,7 +147,7 @@ class ACF_Rest_Request {
|
|
147 |
* Loop through supported routes to find matching pattern. Use matching pattern to determine any URL parameters.
|
148 |
*/
|
149 |
private function set_url_params() {
|
150 |
-
if ( ! $this->supported_routes ) {
|
151 |
return;
|
152 |
}
|
153 |
|
51 |
/**
|
52 |
* Determine all required information from the current request.
|
53 |
*/
|
54 |
+
public function parse_request( $request ) {
|
55 |
$this->set_http_method();
|
56 |
+
$this->set_current_route( $request );
|
57 |
$this->build_supported_routes();
|
58 |
$this->set_url_params();
|
59 |
$this->set_object_types();
|
102 |
/**
|
103 |
* Get the current REST route as determined by WordPress.
|
104 |
*/
|
105 |
+
private function set_current_route( $request ) {
|
106 |
+
$this->current_route = $request->get_route();
|
107 |
}
|
108 |
|
109 |
/**
|
147 |
* Loop through supported routes to find matching pattern. Use matching pattern to determine any URL parameters.
|
148 |
*/
|
149 |
private function set_url_params() {
|
150 |
+
if ( ! $this->supported_routes || ! is_string( $this->current_route ) ) {
|
151 |
return;
|
152 |
}
|
153 |
|
lang/acf-hr.mo
CHANGED
Binary file
|
lang/acf-hr.po
CHANGED
@@ -1,1536 +1,1196 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields\n"
|
4 |
-
"Report-Msgid-Bugs-To:
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: hr_HR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"
|
|
|
|
|
14 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
15 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
16 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-WPHeader: acf.php\n"
|
20 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
21 |
-
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
-
"X-Poedit-SearchPath-1: acf-pro-hr/acf.pot\n"
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
25 |
|
26 |
-
#: acf.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
-
#: acf.php:
|
31 |
msgid "Field Groups"
|
32 |
msgstr "Grupe polja"
|
33 |
|
34 |
-
#: acf.php:
|
35 |
msgid "Field Group"
|
36 |
msgstr "Grupa polja"
|
37 |
|
38 |
-
#: acf.php:
|
39 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
40 |
msgid "Add New"
|
41 |
msgstr "Dodaj"
|
42 |
|
43 |
-
#: acf.php:
|
44 |
msgid "Add New Field Group"
|
45 |
msgstr "Dodaj novo polje"
|
46 |
|
47 |
-
#: acf.php:
|
48 |
msgid "Edit Field Group"
|
49 |
msgstr "Uredi polje"
|
50 |
|
51 |
-
#: acf.php:
|
52 |
msgid "New Field Group"
|
53 |
msgstr "Novo polje"
|
54 |
|
55 |
-
#: acf.php:
|
56 |
msgid "View Field Group"
|
57 |
msgstr "Pregledaj polje"
|
58 |
|
59 |
-
#: acf.php:
|
60 |
msgid "Search Field Groups"
|
61 |
msgstr "Pretraži polja"
|
62 |
|
63 |
-
#: acf.php:
|
64 |
msgid "No Field Groups found"
|
65 |
msgstr "Niste dodali nijedno polje"
|
66 |
|
67 |
-
#: acf.php:
|
68 |
msgid "No Field Groups found in Trash"
|
69 |
msgstr "Nije pronađena nijedna stranica"
|
70 |
|
71 |
-
#: acf.php:
|
72 |
-
#: includes/admin/admin-field-
|
73 |
-
#:
|
74 |
-
#: pro/fields/class-acf-field-clone.php:811
|
75 |
msgid "Fields"
|
76 |
msgstr "Polja"
|
77 |
|
78 |
-
#: acf.php:
|
79 |
msgid "Field"
|
80 |
msgstr "Polje"
|
81 |
|
82 |
-
#: acf.php:
|
83 |
msgid "Add New Field"
|
84 |
msgstr "Dodaj polje"
|
85 |
|
86 |
-
#: acf.php:
|
87 |
msgid "Edit Field"
|
88 |
msgstr "Uredi polje"
|
89 |
|
90 |
-
#: acf.php:
|
91 |
-
#: includes/admin/views/settings-info.php:105
|
92 |
msgid "New Field"
|
93 |
msgstr "Dodaj polje"
|
94 |
|
95 |
-
#: acf.php:
|
96 |
msgid "View Field"
|
97 |
msgstr "Pregledaj polje"
|
98 |
|
99 |
-
#: acf.php:
|
100 |
msgid "Search Fields"
|
101 |
msgstr "Pretraži polja"
|
102 |
|
103 |
-
#: acf.php:
|
104 |
msgid "No Fields found"
|
105 |
msgstr "Nije pronađeno nijedno polje"
|
106 |
|
107 |
-
#: acf.php:
|
108 |
msgid "No Fields found in Trash"
|
109 |
msgstr "Nije pronađeno nijedno polje u smeću"
|
110 |
|
111 |
-
#: acf.php:
|
112 |
-
#: includes/admin/admin-field-groups.php:
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
115 |
|
116 |
-
#: acf.php:
|
117 |
-
#,
|
118 |
-
msgid "
|
119 |
-
msgid_plural "
|
120 |
-
|
121 |
-
|
122 |
-
msgstr[
|
123 |
-
|
124 |
-
|
125 |
-
#: includes/admin/admin-field-group.php:69
|
126 |
-
#: includes/admin/admin-field-group.php:71
|
127 |
-
msgid "Field group updated."
|
128 |
-
msgstr "Skup polja ažuriran."
|
129 |
|
130 |
-
#:
|
131 |
-
msgid "
|
132 |
-
|
|
|
|
|
133 |
|
134 |
-
#:
|
135 |
-
msgid "
|
136 |
-
|
|
|
|
|
137 |
|
138 |
-
#: includes/
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
141 |
|
142 |
-
#: includes/
|
143 |
-
|
144 |
-
|
|
|
145 |
|
146 |
-
#: includes/
|
147 |
-
msgid "
|
148 |
-
|
|
|
|
|
|
|
|
|
149 |
|
150 |
-
#: includes/
|
151 |
-
|
152 |
-
|
|
|
|
|
153 |
|
154 |
-
#: includes/
|
155 |
-
|
156 |
-
|
|
|
|
|
157 |
|
158 |
-
#: includes/
|
159 |
-
|
160 |
-
msgid "
|
161 |
-
|
|
|
162 |
|
163 |
-
#: includes/
|
164 |
-
|
165 |
-
|
|
|
166 |
|
167 |
-
#: includes/
|
168 |
-
|
169 |
-
|
|
|
|
|
170 |
|
171 |
-
#: includes/
|
172 |
-
|
173 |
-
|
|
|
174 |
|
175 |
-
#: includes/
|
176 |
-
|
177 |
-
|
|
|
|
|
178 |
|
179 |
-
#: includes/
|
180 |
-
|
181 |
-
msgid "
|
182 |
-
|
|
|
183 |
|
184 |
-
#: includes/
|
185 |
-
|
186 |
-
|
187 |
-
#: includes/admin/views/field-group-locations.php:29
|
188 |
-
#: includes/admin/views/html-location-group.php:3
|
189 |
-
#: includes/api/api-helpers.php:4048
|
190 |
-
msgid "or"
|
191 |
-
msgstr "ili"
|
192 |
|
193 |
-
#: includes/
|
194 |
-
|
195 |
-
|
|
|
|
|
196 |
|
197 |
-
#: includes/
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
200 |
|
201 |
-
#: includes/
|
202 |
-
|
203 |
-
|
|
|
|
|
204 |
|
205 |
-
#: includes/
|
206 |
-
|
207 |
-
|
|
|
|
|
208 |
|
209 |
-
#: includes/
|
210 |
-
|
211 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
|
213 |
-
#: includes/
|
214 |
msgid "The changes you made will be lost if you navigate away from this page"
|
215 |
msgstr ""
|
216 |
"Izmjene koje ste napravili bit će izgubljene ukoliko napustite ovu stranicu"
|
217 |
|
218 |
-
#: includes/
|
219 |
-
msgid "
|
220 |
-
msgstr "
|
221 |
-
|
222 |
-
#: includes/admin/admin-field-group.php:360
|
223 |
-
msgid "Field Keys"
|
224 |
-
msgstr "Oznaka polja"
|
225 |
-
|
226 |
-
#: includes/admin/admin-field-group.php:390
|
227 |
-
#: includes/admin/views/field-group-options.php:9
|
228 |
-
msgid "Active"
|
229 |
-
msgstr "Aktivan"
|
230 |
-
|
231 |
-
#: includes/admin/admin-field-group.php:801
|
232 |
-
msgid "Move Complete."
|
233 |
-
msgstr "Premještanje dovršeno."
|
234 |
|
235 |
-
#: includes/
|
236 |
-
|
237 |
-
msgid "
|
238 |
-
msgstr ""
|
239 |
-
"Polje %s od sada možete naći na drugoj lokacaiji, kao dio %s skupa polja"
|
240 |
|
241 |
-
#: includes/
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
244 |
|
245 |
-
#: includes/
|
246 |
-
msgid "
|
247 |
-
msgstr "
|
248 |
|
249 |
-
#: includes/
|
250 |
-
|
251 |
-
|
|
|
252 |
|
253 |
-
#: includes/
|
254 |
-
|
255 |
-
|
256 |
-
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
257 |
-
msgstr[0] "Aktivno <span class=“count”>(%s)</span>"
|
258 |
-
msgstr[1] "Aktivno <span class=“count”>(%s)</span>"
|
259 |
-
msgstr[2] "Aktivno <span class=“count”>(%s)</span>"
|
260 |
|
261 |
-
#: includes/
|
262 |
-
|
263 |
-
|
264 |
-
msgstr "Skup polja %s dupliciran"
|
265 |
|
266 |
-
#: includes/
|
267 |
-
|
268 |
-
|
269 |
-
msgid_plural "%s field groups duplicated."
|
270 |
-
msgstr[0] "Polja duplicirana (%s)."
|
271 |
-
msgstr[1] "Polja duplicirana (%s)."
|
272 |
-
msgstr[2] "Polja duplicirana (%s)."
|
273 |
|
274 |
-
#: includes/
|
275 |
-
|
276 |
-
|
277 |
-
msgstr "Skup polja sinkroniziran. %s"
|
278 |
|
279 |
-
#: includes/
|
280 |
-
|
281 |
-
|
282 |
-
msgid_plural "%s field groups synchronised."
|
283 |
-
msgstr[0] "Polja sinkronizirana (%s)."
|
284 |
-
msgstr[1] "Polja sinkronizirana (%s)."
|
285 |
-
msgstr[2] "Polja sinkronizirana (%s)."
|
286 |
|
287 |
-
#: includes/
|
288 |
-
|
289 |
-
|
290 |
-
msgstr "Sinkronizacija dostupna"
|
291 |
|
292 |
-
#: includes/
|
293 |
-
|
294 |
-
|
295 |
-
msgstr "Naziv"
|
296 |
|
297 |
-
#: includes/
|
298 |
-
#: includes/
|
299 |
-
#: includes/
|
300 |
-
#: includes/
|
301 |
-
#:
|
302 |
-
|
303 |
-
|
|
|
|
|
|
|
|
|
304 |
|
305 |
-
#: includes/
|
306 |
-
|
307 |
-
|
|
|
|
|
308 |
|
309 |
-
|
310 |
-
|
311 |
-
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
312 |
msgstr ""
|
313 |
-
"Prilagodite WordPress sa moćnim, profesionalnim i intuitivnim dodatnim "
|
314 |
-
"poljima."
|
315 |
|
316 |
-
#: includes/
|
317 |
-
|
318 |
-
|
319 |
-
msgid "Changelog"
|
320 |
-
msgstr "Popis izmjena"
|
321 |
|
322 |
-
#: includes/
|
323 |
-
|
324 |
-
msgid "
|
325 |
-
msgstr "
|
326 |
|
327 |
-
#: includes/
|
328 |
-
msgid "
|
329 |
-
msgstr "
|
330 |
|
331 |
-
#: includes/
|
332 |
-
msgid "
|
333 |
-
msgstr "
|
334 |
|
335 |
-
#: includes/
|
336 |
-
|
337 |
-
|
|
|
338 |
|
339 |
-
#: includes/
|
340 |
-
|
341 |
-
|
|
|
342 |
|
343 |
-
#: includes/
|
344 |
-
|
345 |
-
|
|
|
346 |
|
347 |
-
#: includes/
|
348 |
-
|
349 |
-
|
350 |
-
msgstr "Hvala što koristite <a href=\"%s\">ACF</a>."
|
351 |
|
352 |
-
#: includes/
|
353 |
-
msgid "
|
354 |
-
msgstr "
|
355 |
|
356 |
-
#: includes/
|
357 |
-
|
358 |
-
|
359 |
-
#: pro/fields/class-acf-field-flexible-content.php:558
|
360 |
-
msgid "Duplicate"
|
361 |
-
msgstr "Dupliciraj"
|
362 |
|
363 |
-
#: includes/
|
364 |
-
|
365 |
-
|
366 |
-
msgid "Search"
|
367 |
-
msgstr "Pretraži"
|
368 |
|
369 |
-
#: includes/
|
370 |
-
|
371 |
-
|
372 |
-
msgstr "Odaberi %s"
|
373 |
|
374 |
-
#: includes/
|
375 |
-
msgid "
|
376 |
-
msgstr "
|
377 |
|
378 |
-
#:
|
379 |
-
|
380 |
-
msgid "
|
381 |
-
|
|
|
382 |
|
383 |
-
#:
|
384 |
-
msgid "
|
385 |
-
msgstr "
|
386 |
|
387 |
-
#:
|
388 |
-
msgid "
|
389 |
-
msgstr "
|
390 |
|
391 |
-
#:
|
392 |
-
|
393 |
-
|
394 |
-
msgstr "Alati"
|
395 |
|
396 |
-
#:
|
397 |
-
|
398 |
-
|
399 |
-
msgstr "Dodatna polja"
|
400 |
|
401 |
-
|
402 |
-
#:
|
403 |
-
|
404 |
-
|
|
|
|
|
405 |
|
406 |
-
#: includes/
|
407 |
-
|
408 |
-
|
|
|
409 |
|
410 |
-
#:
|
411 |
-
msgid "
|
412 |
-
msgstr "
|
413 |
|
414 |
-
#:
|
415 |
-
|
416 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
|
418 |
-
#:
|
419 |
-
|
420 |
-
|
421 |
-
|
|
|
422 |
|
423 |
-
#:
|
424 |
-
msgid "
|
425 |
-
|
|
|
|
|
426 |
|
427 |
-
#:
|
428 |
-
msgid "
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#:
|
432 |
-
|
433 |
-
|
|
|
|
|
|
|
|
|
434 |
|
435 |
-
#:
|
436 |
-
msgid "
|
437 |
-
msgstr "
|
438 |
|
439 |
-
#:
|
440 |
-
|
441 |
-
|
442 |
-
msgid "
|
443 |
-
msgstr "
|
444 |
|
445 |
-
#: includes/admin/
|
446 |
-
#: includes/admin/
|
447 |
-
|
448 |
-
|
|
|
449 |
|
450 |
-
#: includes/admin/
|
451 |
-
|
452 |
-
|
453 |
-
msgid_plural "Exported %s field groups."
|
454 |
-
msgstr[0] ""
|
455 |
-
msgstr[1] ""
|
456 |
-
msgstr[2] ""
|
457 |
|
458 |
-
#: includes/admin/
|
459 |
-
|
460 |
-
|
461 |
-
msgstr "Odaberite skup polja"
|
462 |
|
463 |
-
#: includes/admin/
|
464 |
-
msgid ""
|
465 |
-
"
|
466 |
-
"method. Use the download button to export to a .json file which you can then "
|
467 |
-
"import to another ACF installation. Use the generate button to export to PHP "
|
468 |
-
"code which you can place in your theme."
|
469 |
-
msgstr ""
|
470 |
-
"Odaberite polja koja želite izvesti i zatim odaberite željeni format. Klikom "
|
471 |
-
"na gumb “preuzimanje”, preuzmite .json datoteku sa poljima koju zatim možete "
|
472 |
-
"uvesti u drugu ACF instalaciju.\n"
|
473 |
-
"Klikom na “generiraj” gumb, izvezite PHP kod koji možete uključiti u "
|
474 |
-
"WordPress temu."
|
475 |
|
476 |
-
#: includes/admin/
|
477 |
-
msgid "
|
478 |
-
msgstr "
|
479 |
|
480 |
-
#: includes/admin/
|
481 |
-
msgid ""
|
482 |
-
"
|
483 |
-
"field group(s). A local field group can provide many benefits such as faster "
|
484 |
-
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
485 |
-
"the following code to your theme's functions.php file or include it within "
|
486 |
-
"an external file."
|
487 |
-
msgstr ""
|
488 |
-
"Navedeni kod možete koristiti kako bi registrirali lokalnu verziju odabranih "
|
489 |
-
"polja ili skupine polja. Lokalna polje pružaju dodatne mogućnosti kao što je "
|
490 |
-
"brže očitavanje, verzioniranje i dinamičke postavke polja. Jednostavno "
|
491 |
-
"kopirajte navedeni kod u functions.php datoteku u vašoj temi ili uključite "
|
492 |
-
"ih kao vanjsku datoteku."
|
493 |
|
494 |
-
#: includes/admin/
|
495 |
-
msgid "
|
496 |
-
msgstr "
|
497 |
|
498 |
-
#: includes/admin/
|
499 |
-
msgid "
|
500 |
-
msgstr "
|
501 |
|
502 |
-
#: includes/admin/
|
503 |
-
msgid ""
|
504 |
-
"
|
505 |
-
"you click the import button below, ACF will import the field groups."
|
506 |
-
msgstr ""
|
507 |
-
"Odaberite ACF JSON datoteku koju želite uvesti. Nakon što kliknete ‘Uvezi’ "
|
508 |
-
"gumb, ACF će uvesti sva polja iz odabrane datoteke."
|
509 |
|
510 |
-
#: includes/admin/
|
511 |
-
|
512 |
-
|
513 |
-
msgstr "Odaberite datoteku"
|
514 |
|
515 |
-
#: includes/admin/
|
516 |
-
msgid "
|
517 |
-
msgstr "
|
518 |
|
519 |
-
#: includes/admin/
|
520 |
-
|
521 |
-
|
522 |
-
msgstr "Niste odabrali datoteku"
|
523 |
|
524 |
-
#: includes/admin/
|
525 |
-
msgid "
|
526 |
-
msgstr "
|
527 |
|
528 |
-
#: includes/admin/
|
529 |
-
|
530 |
-
|
|
|
|
|
531 |
|
532 |
-
#: includes/admin/
|
533 |
-
|
534 |
-
|
|
|
|
|
535 |
|
536 |
-
#: includes/admin/
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
msgstr
|
543 |
|
544 |
-
#: includes/admin/
|
545 |
-
|
546 |
-
|
|
|
547 |
|
548 |
-
#: includes/admin/
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
|
552 |
-
#: includes/admin/
|
553 |
-
|
554 |
-
|
555 |
-
msgstr "je jednako"
|
556 |
|
557 |
-
#: includes/admin/
|
558 |
-
|
559 |
-
|
560 |
-
msgstr "je drukčije"
|
561 |
|
562 |
-
#: includes/admin/
|
563 |
-
|
564 |
-
msgid "
|
565 |
-
|
|
|
566 |
|
567 |
-
#: includes/admin/
|
568 |
-
|
569 |
-
msgid "
|
570 |
-
|
|
|
571 |
|
572 |
-
#: includes/admin/
|
573 |
-
|
574 |
-
|
575 |
-
msgid "
|
576 |
-
msgstr "
|
577 |
|
578 |
-
#: includes/admin/
|
579 |
-
|
580 |
-
|
581 |
-
msgstr "Uredi polje"
|
582 |
|
583 |
-
#: includes/admin/
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
msgid "Edit"
|
589 |
-
msgstr "Uredi"
|
590 |
|
591 |
-
#: includes/admin/
|
592 |
-
|
593 |
-
|
|
|
|
|
594 |
|
595 |
-
#: includes/admin/
|
596 |
-
msgid "
|
597 |
-
msgstr "
|
598 |
|
599 |
-
#: includes/admin/
|
600 |
-
|
601 |
-
|
|
|
|
|
602 |
|
603 |
-
#: includes/admin/
|
604 |
-
msgid "
|
605 |
-
msgstr "
|
606 |
|
607 |
-
#: includes/admin/
|
608 |
-
|
609 |
-
msgid "
|
610 |
-
|
|
|
611 |
|
612 |
-
#: includes/admin/
|
613 |
-
msgid "
|
614 |
-
msgstr "
|
615 |
|
616 |
-
#: includes/admin/
|
617 |
-
msgid "
|
618 |
-
msgstr "
|
619 |
|
620 |
-
#: includes/admin/
|
621 |
-
|
622 |
-
|
|
|
623 |
|
624 |
-
#: includes/admin/
|
625 |
-
|
626 |
-
|
|
|
627 |
|
628 |
-
#: includes/admin/
|
629 |
-
msgid "Field
|
630 |
-
msgstr "
|
631 |
|
632 |
-
#: includes/admin/
|
633 |
-
|
634 |
-
|
|
|
|
|
|
|
635 |
|
636 |
-
#: includes/admin/
|
637 |
-
msgid "
|
638 |
-
msgstr "
|
639 |
|
640 |
-
#: includes/admin/
|
641 |
-
|
642 |
-
|
|
|
|
|
|
|
643 |
|
644 |
-
#: includes/admin/
|
645 |
-
msgid "
|
646 |
-
msgstr "
|
647 |
|
648 |
-
#: includes/admin/
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#: includes/admin/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
655 |
|
656 |
-
#: includes/admin/
|
657 |
-
msgid "
|
658 |
-
|
|
|
|
|
|
|
659 |
|
660 |
-
#: includes/admin/
|
661 |
-
msgid "
|
662 |
-
msgstr "
|
663 |
|
664 |
-
#: includes/admin/
|
665 |
-
|
666 |
-
|
|
|
|
|
667 |
|
668 |
-
#: includes/admin/
|
669 |
-
#: includes/
|
670 |
-
|
671 |
-
|
672 |
-
#: includes/fields/class-acf-field-select.php:432
|
673 |
-
#: pro/fields/class-acf-field-flexible-content.php:584
|
674 |
-
msgid "Label"
|
675 |
-
msgstr "Oznaka"
|
676 |
|
677 |
-
#: includes/admin/
|
678 |
-
#:
|
679 |
-
#:
|
680 |
-
|
681 |
-
|
|
|
|
|
682 |
|
|
|
683 |
#: includes/admin/views/field-group-fields.php:7
|
684 |
msgid "Key"
|
685 |
msgstr "Ključ"
|
686 |
|
687 |
-
#: includes/admin/
|
688 |
-
msgid "
|
689 |
-
msgstr "
|
690 |
|
691 |
-
#: includes/admin/
|
692 |
-
msgid ""
|
693 |
-
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
694 |
-
"first field."
|
695 |
msgstr ""
|
696 |
-
"Nema polja. Kliknite gumb <strong>+ Dodaj polje</strong> da bi kreirali "
|
697 |
-
"polje."
|
698 |
|
699 |
-
#: includes/admin/
|
700 |
-
|
701 |
-
|
|
|
|
|
702 |
|
703 |
-
#: includes/admin/
|
704 |
-
msgid "
|
705 |
-
msgstr "
|
706 |
|
707 |
-
#: includes/admin/
|
708 |
-
msgid ""
|
709 |
-
|
710 |
-
"advanced custom fields"
|
711 |
-
msgstr "Odaberite pravila koja određuju koji prikaz će koristiti ACF polja"
|
712 |
|
713 |
-
#: includes/admin/
|
714 |
-
msgid "
|
715 |
-
msgstr "
|
716 |
|
717 |
-
#: includes/admin/
|
718 |
-
msgid "
|
719 |
-
msgstr "
|
720 |
|
721 |
-
#: includes/admin/
|
722 |
-
|
723 |
-
|
|
|
724 |
|
725 |
-
#: includes/admin/
|
726 |
-
msgid "
|
727 |
-
msgstr "
|
728 |
|
729 |
-
#: includes/admin/
|
730 |
-
msgid "
|
731 |
-
msgstr "
|
732 |
|
733 |
-
#: includes/admin/
|
734 |
-
msgid "
|
735 |
-
msgstr "
|
736 |
|
737 |
-
#: includes/admin/
|
738 |
-
msgid "
|
739 |
-
msgstr "
|
740 |
|
741 |
-
#: includes/admin/
|
742 |
-
|
743 |
-
|
|
|
|
|
|
|
744 |
|
745 |
-
#: includes/admin/
|
746 |
-
|
747 |
-
msgid "
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
msgid "
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
msgstr "
|
762 |
-
|
763 |
-
#: includes/admin/views/field-group-options.php:78
|
764 |
-
msgid "Below fields"
|
765 |
-
msgstr "Iznad oznake"
|
766 |
|
767 |
-
#: includes/admin/
|
768 |
-
msgid "
|
769 |
-
msgstr "
|
770 |
|
771 |
-
#: includes/admin/
|
772 |
-
|
773 |
-
|
|
|
774 |
|
775 |
-
#: includes/admin/
|
776 |
-
|
777 |
-
|
|
|
|
|
|
|
778 |
|
779 |
-
#: includes/admin/
|
780 |
-
msgid "
|
781 |
-
msgstr "
|
782 |
|
783 |
-
#: includes/admin/
|
784 |
-
|
785 |
-
|
|
|
786 |
|
787 |
-
#: includes/admin/
|
788 |
-
msgid ""
|
789 |
-
"If multiple field groups appear on an edit screen, the first field group's "
|
790 |
-
"options will be used (the one with the lowest order number)"
|
791 |
msgstr ""
|
792 |
-
"Ukoliko je više skupova polja prikazano na istom ekranu, postavke prvog "
|
793 |
-
"skupa polja će biti korištene (postavke polja sa nižim brojem u redosljedu)"
|
794 |
-
|
795 |
-
#: includes/admin/views/field-group-options.php:115
|
796 |
-
msgid "Permalink"
|
797 |
-
msgstr "Stalna veza"
|
798 |
-
|
799 |
-
#: includes/admin/views/field-group-options.php:116
|
800 |
-
msgid "Content Editor"
|
801 |
-
msgstr "Uređivač sadržaja"
|
802 |
-
|
803 |
-
#: includes/admin/views/field-group-options.php:117
|
804 |
-
msgid "Excerpt"
|
805 |
-
msgstr "Izvadak"
|
806 |
-
|
807 |
-
#: includes/admin/views/field-group-options.php:119
|
808 |
-
msgid "Discussion"
|
809 |
-
msgstr "Rasprava"
|
810 |
-
|
811 |
-
#: includes/admin/views/field-group-options.php:120
|
812 |
-
msgid "Comments"
|
813 |
-
msgstr "Komentari"
|
814 |
-
|
815 |
-
#: includes/admin/views/field-group-options.php:121
|
816 |
-
msgid "Revisions"
|
817 |
-
msgstr "Revizija"
|
818 |
-
|
819 |
-
#: includes/admin/views/field-group-options.php:122
|
820 |
-
msgid "Slug"
|
821 |
-
msgstr "Slug"
|
822 |
-
|
823 |
-
#: includes/admin/views/field-group-options.php:123
|
824 |
-
msgid "Author"
|
825 |
-
msgstr "Autor"
|
826 |
-
|
827 |
-
#: includes/admin/views/field-group-options.php:124
|
828 |
-
msgid "Format"
|
829 |
-
msgstr "Format"
|
830 |
-
|
831 |
-
#: includes/admin/views/field-group-options.php:125
|
832 |
-
msgid "Page Attributes"
|
833 |
-
msgstr "Atributi stranice"
|
834 |
-
|
835 |
-
#: includes/admin/views/field-group-options.php:126
|
836 |
-
#: includes/fields/class-acf-field-relationship.php:670
|
837 |
-
msgid "Featured Image"
|
838 |
-
msgstr "Istaknuta slika"
|
839 |
-
|
840 |
-
#: includes/admin/views/field-group-options.php:127
|
841 |
-
msgid "Categories"
|
842 |
-
msgstr "Kategorije"
|
843 |
-
|
844 |
-
#: includes/admin/views/field-group-options.php:128
|
845 |
-
msgid "Tags"
|
846 |
-
msgstr "Oznake"
|
847 |
-
|
848 |
-
#: includes/admin/views/field-group-options.php:129
|
849 |
-
msgid "Send Trackbacks"
|
850 |
-
msgstr "Pošalji povratnu vezu"
|
851 |
-
|
852 |
-
#: includes/admin/views/html-location-group.php:3
|
853 |
-
msgid "Show this field group if"
|
854 |
-
msgstr "Prikaži ovaj skup polja ako"
|
855 |
-
|
856 |
-
#: includes/admin/views/install-network.php:4
|
857 |
-
msgid "Upgrade Sites"
|
858 |
-
msgstr "Ažuriraj stranice"
|
859 |
-
|
860 |
-
#: includes/admin/views/install-network.php:9
|
861 |
-
#: includes/admin/views/install.php:3
|
862 |
-
msgid "Advanced Custom Fields Database Upgrade"
|
863 |
-
msgstr "Nadogradnja baze ACF"
|
864 |
|
865 |
-
#: includes/admin/
|
866 |
-
#, php-format
|
867 |
msgid ""
|
868 |
-
"The
|
869 |
-
"and
|
870 |
-
|
871 |
-
"Ažuriranje baze podatak dovršeno. Provjerite koje web stranice u svojoj "
|
872 |
-
"mreži želite nadograditi i zatim kliknite %s."
|
873 |
-
|
874 |
-
#: includes/admin/views/install-network.php:20
|
875 |
-
#: includes/admin/views/install-network.php:28
|
876 |
-
msgid "Site"
|
877 |
-
msgstr "Web stranica"
|
878 |
-
|
879 |
-
#: includes/admin/views/install-network.php:48
|
880 |
-
#, php-format
|
881 |
-
msgid "Site requires database upgrade from %s to %s"
|
882 |
msgstr ""
|
883 |
-
"Za web stranicu je potrebna nadogradnja baze podataka iz %s na verziju %s"
|
884 |
|
885 |
-
#: includes/admin/
|
886 |
-
msgid "Site is up to date"
|
887 |
-
msgstr "Nema novih ažuriranja za web stranica"
|
888 |
-
|
889 |
-
#: includes/admin/views/install-network.php:63
|
890 |
-
#, php-format
|
891 |
msgid ""
|
892 |
-
"
|
|
|
|
|
893 |
msgstr ""
|
894 |
-
"Baza podataka je nadograđena. <a href=“%s”>Kliknite ovdje za povratak na "
|
895 |
-
"administraciju WordPress mreže</a>"
|
896 |
|
897 |
-
#: includes/admin/
|
898 |
-
#: includes/admin/views/install-notice.php:42
|
899 |
msgid ""
|
900 |
-
"
|
901 |
-
"
|
902 |
msgstr ""
|
903 |
-
"Prije nego nastavite preporučamo da napravite sigurnosnu kopiju baze "
|
904 |
-
"podataka. Jeste li sigurni da želite nastaviti ažuriranje?"
|
905 |
-
|
906 |
-
#: includes/admin/views/install-network.php:158
|
907 |
-
msgid "Upgrade complete"
|
908 |
-
msgstr "Nadogradnja završena"
|
909 |
-
|
910 |
-
#: includes/admin/views/install-network.php:162
|
911 |
-
#: includes/admin/views/install.php:9
|
912 |
-
#, php-format
|
913 |
-
msgid "Upgrading data to version %s"
|
914 |
-
msgstr "Nadogradnja na verziju %s"
|
915 |
-
|
916 |
-
#: includes/admin/views/install-notice.php:8
|
917 |
-
#: pro/fields/class-acf-field-repeater.php:25
|
918 |
-
msgid "Repeater"
|
919 |
-
msgstr "Ponavljajuće polje"
|
920 |
|
921 |
-
#: includes/admin/
|
922 |
-
|
923 |
-
msgid "
|
924 |
-
|
925 |
-
|
926 |
-
#: includes/admin/views/install-notice.php:10
|
927 |
-
#: pro/fields/class-acf-field-gallery.php:25
|
928 |
-
msgid "Gallery"
|
929 |
-
msgstr "Galerija"
|
930 |
-
|
931 |
-
#: includes/admin/views/install-notice.php:11
|
932 |
-
#: pro/locations/class-acf-location-options-page.php:26
|
933 |
-
msgid "Options Page"
|
934 |
-
msgstr "Postavke"
|
935 |
-
|
936 |
-
#: includes/admin/views/install-notice.php:26
|
937 |
-
msgid "Database Upgrade Required"
|
938 |
-
msgstr "Potrebno je nadograditi bazu podataka"
|
939 |
-
|
940 |
-
#: includes/admin/views/install-notice.php:28
|
941 |
-
#, php-format
|
942 |
-
msgid "Thank you for updating to %s v%s!"
|
943 |
-
msgstr "Hvala što ste nadogradili %s na v%s!"
|
944 |
|
945 |
-
#: includes/admin/
|
946 |
msgid ""
|
947 |
-
"
|
948 |
-
"
|
|
|
949 |
msgstr ""
|
950 |
-
"Prije nego što počnete koristiti nove mogućnosti, molimo ažurirajte bazu "
|
951 |
-
"podataka na posljednju verziju."
|
952 |
|
953 |
-
#: includes/admin/
|
954 |
-
#, php-format
|
955 |
msgid ""
|
956 |
-
"
|
957 |
-
"
|
|
|
958 |
msgstr ""
|
959 |
-
"Molimo provjerite da su svi premium dodaci (%s) ažurirani na najnoviju "
|
960 |
-
"verziju."
|
961 |
-
|
962 |
-
#: includes/admin/views/install.php:7
|
963 |
-
msgid "Reading upgrade tasks..."
|
964 |
-
msgstr "Učitavam podatke za nadogradnju…"
|
965 |
-
|
966 |
-
#: includes/admin/views/install.php:11
|
967 |
-
#, php-format
|
968 |
-
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
969 |
-
msgstr ""
|
970 |
-
"Nadogradnja baze je dovršena. <a href=\"%s\">Pogledajte što je novo</a>"
|
971 |
-
|
972 |
-
#: includes/admin/views/settings-addons.php:17
|
973 |
-
msgid "Download & Install"
|
974 |
-
msgstr "Preuzimam datoteke"
|
975 |
-
|
976 |
-
#: includes/admin/views/settings-addons.php:36
|
977 |
-
msgid "Installed"
|
978 |
-
msgstr "Instalirano"
|
979 |
-
|
980 |
-
#: includes/admin/views/settings-info.php:3
|
981 |
-
msgid "Welcome to Advanced Custom Fields"
|
982 |
-
msgstr "Advanced Custom Fields vam želi dobrodošlicu"
|
983 |
|
984 |
-
#: includes/admin/
|
985 |
-
#, php-format
|
986 |
msgid ""
|
987 |
-
"
|
988 |
-
"
|
|
|
989 |
msgstr ""
|
990 |
-
"Ažuriranje dovršeno, hvala! ACF %s je veći i bolji nego ikad prije. Nadamo "
|
991 |
-
"se da će vam se svidjet."
|
992 |
-
|
993 |
-
#: includes/admin/views/settings-info.php:17
|
994 |
-
msgid "A smoother custom field experience"
|
995 |
-
msgstr "Bolje korisničko iskustvo korištenja prilagođenih polja"
|
996 |
|
997 |
-
#: includes/admin/
|
998 |
-
msgid "Improved Usability"
|
999 |
-
msgstr "Poboljšana uporabljivost"
|
1000 |
-
|
1001 |
-
#: includes/admin/views/settings-info.php:23
|
1002 |
msgid ""
|
1003 |
-
"
|
1004 |
-
"
|
1005 |
-
"and select."
|
1006 |
msgstr ""
|
1007 |
-
"Uključivanje popularne biblioteke Select2 poboljšano je korisničko iskustvo "
|
1008 |
-
"i brzina na velikom broju polja."
|
1009 |
-
|
1010 |
-
#: includes/admin/views/settings-info.php:27
|
1011 |
-
msgid "Improved Design"
|
1012 |
-
msgstr "Unaprijeđen dizajn"
|
1013 |
|
1014 |
-
#: includes/admin/
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
"
|
1019 |
-
msgstr ""
|
1020 |
-
"Mnoga polja su vizualno osvježena te time ACF sada izgleda bolje nego ikad "
|
1021 |
-
"prije!"
|
1022 |
|
1023 |
-
#: includes/admin/
|
1024 |
-
|
1025 |
-
|
|
|
|
|
1026 |
|
1027 |
-
#: includes/admin/
|
1028 |
-
|
1029 |
-
|
1030 |
-
"
|
1031 |
-
"
|
1032 |
-
msgstr ""
|
1033 |
-
"Nova arhitektura polja omogućuje pod poljima da budu korištena zasebno bez "
|
1034 |
-
"obzira kojem skupu polja pripadaju. Ovo vam omogućuje premještanje polja iz "
|
1035 |
-
"jednog skupa u drugi!"
|
1036 |
|
1037 |
-
#: includes/admin/
|
1038 |
-
|
1039 |
-
|
|
|
|
|
1040 |
|
1041 |
-
#: includes/admin/
|
1042 |
-
|
1043 |
-
|
|
|
|
|
1044 |
|
1045 |
-
#: includes/
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1050 |
|
1051 |
-
#: includes/
|
1052 |
-
|
1053 |
-
msgid ""
|
1054 |
-
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
1055 |
-
"version of ACF</a>. With both personal and developer licenses available, "
|
1056 |
-
"premium functionality is more affordable and accessible than ever before!"
|
1057 |
msgstr ""
|
1058 |
-
"Sva 4 premium dodakta od sada su ukomponiranu u novu <a href=“%s”>Pro "
|
1059 |
-
"verziju ACF</a>. Sa novim osobnom i razvojnom opcijom licenciranja, premium "
|
1060 |
-
"funkcionalnost je dosupnija i povoljnija nego prije!"
|
1061 |
|
1062 |
-
#: includes/
|
1063 |
-
|
1064 |
-
|
|
|
|
|
1065 |
|
1066 |
-
#: includes/
|
1067 |
-
|
1068 |
-
|
1069 |
-
"
|
1070 |
-
"
|
1071 |
-
msgstr ""
|
1072 |
-
"ACF PRO uključuje napredne funkcionalnosti kao ponavljajuća polja, modularni "
|
1073 |
-
"raspored, galerija slika i mogućnost dodavanja novih stranica u postavkama "
|
1074 |
-
"administracije!"
|
1075 |
|
1076 |
-
#: includes/
|
1077 |
-
#,
|
1078 |
-
msgid "
|
1079 |
-
|
|
|
1080 |
|
1081 |
-
#: includes/
|
1082 |
-
|
1083 |
-
|
|
|
1084 |
|
1085 |
-
#: includes/
|
1086 |
-
|
1087 |
-
msgid ""
|
1088 |
-
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
1089 |
-
"and claim a free copy of ACF PRO!"
|
1090 |
msgstr ""
|
1091 |
-
"Kako bi pojednostavili ažuriranje, <a href=“%s”>prijavite se s vašim "
|
1092 |
-
"računom</a> i osigurajte besplatnu verziju ACF PRO!"
|
1093 |
|
1094 |
-
#: includes/
|
1095 |
-
|
1096 |
-
|
1097 |
-
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
1098 |
-
"but if you do have one, please contact our support team via the <a href=\"%s"
|
1099 |
-
"\">help desk</a>"
|
1100 |
-
msgstr ""
|
1101 |
-
"Provjeriti <a href=“%s”>upute za ažuriranje</a> ako imate dodatnih pitanja, "
|
1102 |
-
"ili kontaktirajte našu <a href=“%s”>tim za podršku</a>"
|
1103 |
|
1104 |
-
#: includes/
|
1105 |
-
msgid "
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
-
#: includes/
|
1109 |
-
msgid "
|
1110 |
-
msgstr "
|
1111 |
|
1112 |
-
#: includes/
|
1113 |
-
msgid "
|
1114 |
-
msgstr "
|
1115 |
|
1116 |
-
#: includes/
|
1117 |
-
|
1118 |
-
|
|
|
1119 |
|
1120 |
-
#: includes/
|
1121 |
-
msgid "
|
1122 |
-
msgstr ""
|
1123 |
-
"Više polja koristi asinkrono pretraživanje kako bi učitavanje stranice bilo "
|
1124 |
-
"brže"
|
1125 |
|
1126 |
-
#: includes/
|
1127 |
-
msgid "
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
-
#: includes/
|
1131 |
-
msgid "
|
1132 |
-
msgstr "
|
1133 |
|
1134 |
-
#: includes/
|
1135 |
-
msgid "
|
1136 |
-
msgstr "
|
1137 |
|
1138 |
-
#: includes/
|
1139 |
-
|
1140 |
-
|
1141 |
-
"
|
1142 |
-
msgstr "
|
1143 |
|
1144 |
-
#: includes/
|
1145 |
-
msgid "
|
1146 |
-
msgstr "
|
1147 |
|
1148 |
-
#: includes/
|
1149 |
-
msgid "
|
1150 |
-
msgstr "
|
1151 |
|
1152 |
-
#: includes/
|
1153 |
-
msgid "
|
1154 |
-
msgstr "
|
1155 |
|
1156 |
-
#: includes/
|
1157 |
-
msgid "
|
1158 |
-
msgstr ""
|
1159 |
-
"Od sada je moguće dodati polja na sve stranice, uključujući komentare, "
|
1160 |
-
"stranice za uređivanje korisnika i widgete!"
|
1161 |
|
1162 |
-
#: includes/
|
1163 |
-
msgid "
|
1164 |
-
msgstr "
|
1165 |
|
1166 |
-
#: includes/
|
1167 |
-
msgid "
|
1168 |
-
msgstr "
|
1169 |
|
1170 |
-
#: includes/
|
1171 |
-
msgid "
|
1172 |
-
msgstr "
|
1173 |
|
1174 |
-
#: includes/
|
1175 |
-
|
1176 |
-
|
|
|
1177 |
|
1178 |
-
#: includes/
|
1179 |
msgid ""
|
1180 |
-
"
|
1181 |
-
"
|
1182 |
msgstr ""
|
1183 |
-
"
|
1184 |
-
"
|
1185 |
|
1186 |
-
#: includes/
|
1187 |
-
msgid "
|
1188 |
-
msgstr "
|
1189 |
|
1190 |
-
#: includes/
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
"
|
|
|
1195 |
|
1196 |
-
#: includes/
|
1197 |
-
|
1198 |
-
|
|
|
|
|
|
|
1199 |
|
1200 |
-
#: includes/
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
"
|
|
|
1205 |
|
1206 |
-
#: includes/
|
1207 |
-
|
1208 |
-
|
|
|
|
|
|
|
1209 |
|
1210 |
-
#: includes/
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
|
|
|
|
|
|
|
|
1215 |
|
1216 |
-
#: includes/
|
1217 |
-
|
1218 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
|
1220 |
-
#: includes/
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1225 |
|
1226 |
-
#: includes/
|
1227 |
-
#: includes/fields/class-acf-field-
|
1228 |
-
|
1229 |
-
msgstr "URL stranice"
|
1230 |
-
|
1231 |
-
#: includes/admin/views/settings-info.php:145
|
1232 |
-
msgid "New archives group in page_link field selection"
|
1233 |
-
msgstr "Nova skupina ‘arhiva’ prilikom odabira polja page_link"
|
1234 |
-
|
1235 |
-
#: includes/admin/views/settings-info.php:149
|
1236 |
-
msgid "Better Options Pages"
|
1237 |
-
msgstr "Bolja upravljanje stranica sa postavkama"
|
1238 |
-
|
1239 |
-
#: includes/admin/views/settings-info.php:150
|
1240 |
-
msgid ""
|
1241 |
-
"New functions for options page allow creation of both parent and child menu "
|
1242 |
-
"pages"
|
1243 |
-
msgstr ""
|
1244 |
-
"Nova funkcionalnost kod dodavanja stranica za postavke omogućuju dodavanje "
|
1245 |
-
"izvornih i pod stranica izbornika"
|
1246 |
-
|
1247 |
-
#: includes/admin/views/settings-info.php:159
|
1248 |
-
#, php-format
|
1249 |
-
msgid "We think you'll love the changes in %s."
|
1250 |
-
msgstr "Mislimo da će vam se svidjeti promjene u %s."
|
1251 |
-
|
1252 |
-
#: includes/api/api-helpers.php:947
|
1253 |
-
msgid "Thumbnail"
|
1254 |
-
msgstr "Sličica"
|
1255 |
-
|
1256 |
-
#: includes/api/api-helpers.php:948
|
1257 |
-
msgid "Medium"
|
1258 |
-
msgstr "Srednja"
|
1259 |
-
|
1260 |
-
#: includes/api/api-helpers.php:949
|
1261 |
-
msgid "Large"
|
1262 |
-
msgstr "Velika"
|
1263 |
-
|
1264 |
-
#: includes/api/api-helpers.php:998
|
1265 |
-
msgid "Full Size"
|
1266 |
-
msgstr "Puna veličina"
|
1267 |
-
|
1268 |
-
#: includes/api/api-helpers.php:1339 includes/api/api-helpers.php:1912
|
1269 |
-
#: pro/fields/class-acf-field-clone.php:996
|
1270 |
-
msgid "(no title)"
|
1271 |
-
msgstr "(bez naziva)"
|
1272 |
-
|
1273 |
-
#: includes/api/api-helpers.php:3969
|
1274 |
-
#, php-format
|
1275 |
-
msgid "Image width must be at least %dpx."
|
1276 |
-
msgstr "Širina slike mora biti najmanje %dpx."
|
1277 |
-
|
1278 |
-
#: includes/api/api-helpers.php:3974
|
1279 |
-
#, php-format
|
1280 |
-
msgid "Image width must not exceed %dpx."
|
1281 |
-
msgstr "Širina slike ne smije biti veća od %dpx."
|
1282 |
-
|
1283 |
-
#: includes/api/api-helpers.php:3990
|
1284 |
-
#, php-format
|
1285 |
-
msgid "Image height must be at least %dpx."
|
1286 |
-
msgstr "Visina slike mora biti najmanje %dpx."
|
1287 |
-
|
1288 |
-
#: includes/api/api-helpers.php:3995
|
1289 |
-
#, php-format
|
1290 |
-
msgid "Image height must not exceed %dpx."
|
1291 |
-
msgstr "Visina slike ne smije biti veća od %dpx."
|
1292 |
-
|
1293 |
-
#: includes/api/api-helpers.php:4013
|
1294 |
-
#, php-format
|
1295 |
-
msgid "File size must be at least %s."
|
1296 |
-
msgstr "Veličina datoteke mora biti najmanje %s."
|
1297 |
-
|
1298 |
-
#: includes/api/api-helpers.php:4018
|
1299 |
-
#, php-format
|
1300 |
-
msgid "File size must must not exceed %s."
|
1301 |
-
msgstr "Datoteke ne smije biti veća od %s."
|
1302 |
-
|
1303 |
-
#: includes/api/api-helpers.php:4052
|
1304 |
-
#, php-format
|
1305 |
-
msgid "File type must be %s."
|
1306 |
-
msgstr "Tip datoteke mora biti %s."
|
1307 |
-
|
1308 |
-
#: includes/fields.php:144
|
1309 |
-
msgid "Basic"
|
1310 |
-
msgstr "Osnovno"
|
1311 |
-
|
1312 |
-
#: includes/fields.php:145 includes/forms/form-front.php:47
|
1313 |
-
msgid "Content"
|
1314 |
-
msgstr "Sadržaj"
|
1315 |
-
|
1316 |
-
#: includes/fields.php:146
|
1317 |
-
msgid "Choice"
|
1318 |
-
msgstr "Odabir"
|
1319 |
-
|
1320 |
-
#: includes/fields.php:147
|
1321 |
-
msgid "Relational"
|
1322 |
-
msgstr "Relacijski"
|
1323 |
-
|
1324 |
-
#: includes/fields.php:148
|
1325 |
-
msgid "jQuery"
|
1326 |
-
msgstr "jQuery"
|
1327 |
-
|
1328 |
-
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
1329 |
-
#: includes/fields/class-acf-field-checkbox.php:384
|
1330 |
-
#: includes/fields/class-acf-field-group.php:474
|
1331 |
-
#: includes/fields/class-acf-field-radio.php:285
|
1332 |
-
#: pro/fields/class-acf-field-clone.php:843
|
1333 |
-
#: pro/fields/class-acf-field-flexible-content.php:554
|
1334 |
-
#: pro/fields/class-acf-field-flexible-content.php:603
|
1335 |
-
#: pro/fields/class-acf-field-repeater.php:450
|
1336 |
-
msgid "Layout"
|
1337 |
-
msgstr "Format"
|
1338 |
-
|
1339 |
-
#: includes/fields.php:326
|
1340 |
-
msgid "Field type does not exist"
|
1341 |
-
msgstr "Tip polja ne postoji"
|
1342 |
-
|
1343 |
-
#: includes/fields.php:326
|
1344 |
-
msgid "Unknown"
|
1345 |
-
msgstr "Nepoznato polje"
|
1346 |
-
|
1347 |
-
#: includes/fields/class-acf-field-accordion.php:24
|
1348 |
-
msgid "Accordion"
|
1349 |
-
msgstr "Multi prošireno"
|
1350 |
-
|
1351 |
-
#: includes/fields/class-acf-field-accordion.php:99
|
1352 |
-
msgid "Open"
|
1353 |
-
msgstr "Otvori"
|
1354 |
-
|
1355 |
-
#: includes/fields/class-acf-field-accordion.php:100
|
1356 |
-
msgid "Display this accordion as open on page load."
|
1357 |
-
msgstr "Prikaži accordion polje kao otvoreno prilikom učitavanja."
|
1358 |
-
|
1359 |
-
#: includes/fields/class-acf-field-accordion.php:109
|
1360 |
-
msgid "Multi-expand"
|
1361 |
-
msgstr "Mulit-proširenje"
|
1362 |
-
|
1363 |
-
#: includes/fields/class-acf-field-accordion.php:110
|
1364 |
-
msgid "Allow this accordion to open without closing others."
|
1365 |
-
msgstr "Omogući prikaz ovog accordion polja bez zatvaranje ostalih."
|
1366 |
-
|
1367 |
-
#: includes/fields/class-acf-field-accordion.php:119
|
1368 |
-
#: includes/fields/class-acf-field-tab.php:114
|
1369 |
-
msgid "Endpoint"
|
1370 |
-
msgstr "Prijelomna točka"
|
1371 |
-
|
1372 |
-
#: includes/fields/class-acf-field-accordion.php:120
|
1373 |
-
msgid ""
|
1374 |
-
"Define an endpoint for the previous accordion to stop. This accordion will "
|
1375 |
-
"not be visible."
|
1376 |
-
msgstr ""
|
1377 |
-
"Preciziraj prijelomnu točku za prethoda polja accordion. Ovo će omogućiti "
|
1378 |
-
"novi skup polja nakon prijelomne točke."
|
1379 |
-
|
1380 |
-
#: includes/fields/class-acf-field-button-group.php:24
|
1381 |
-
msgid "Button Group"
|
1382 |
-
msgstr "Skup dugmadi"
|
1383 |
-
|
1384 |
-
#: includes/fields/class-acf-field-button-group.php:149
|
1385 |
-
#: includes/fields/class-acf-field-checkbox.php:344
|
1386 |
-
#: includes/fields/class-acf-field-radio.php:235
|
1387 |
-
#: includes/fields/class-acf-field-select.php:368
|
1388 |
-
msgid "Choices"
|
1389 |
-
msgstr "Mogući odabiri"
|
1390 |
-
|
1391 |
-
#: includes/fields/class-acf-field-button-group.php:150
|
1392 |
-
#: includes/fields/class-acf-field-checkbox.php:345
|
1393 |
-
#: includes/fields/class-acf-field-radio.php:236
|
1394 |
-
#: includes/fields/class-acf-field-select.php:369
|
1395 |
-
msgid "Enter each choice on a new line."
|
1396 |
-
msgstr "Svaki odabir je potrebno dodati kao novi red."
|
1397 |
-
|
1398 |
-
#: includes/fields/class-acf-field-button-group.php:150
|
1399 |
-
#: includes/fields/class-acf-field-checkbox.php:345
|
1400 |
-
#: includes/fields/class-acf-field-radio.php:236
|
1401 |
-
#: includes/fields/class-acf-field-select.php:369
|
1402 |
-
msgid "For more control, you may specify both a value and label like this:"
|
1403 |
-
msgstr "Za bolju kontrolu unesite oboje, vrijednost i naziv, kao npr:"
|
1404 |
-
|
1405 |
-
#: includes/fields/class-acf-field-button-group.php:150
|
1406 |
-
#: includes/fields/class-acf-field-checkbox.php:345
|
1407 |
-
#: includes/fields/class-acf-field-radio.php:236
|
1408 |
-
#: includes/fields/class-acf-field-select.php:369
|
1409 |
-
msgid "red : Red"
|
1410 |
-
msgstr "crvena : Crvena"
|
1411 |
-
|
1412 |
-
#: includes/fields/class-acf-field-button-group.php:158
|
1413 |
-
#: includes/fields/class-acf-field-page_link.php:513
|
1414 |
-
#: includes/fields/class-acf-field-post_object.php:412
|
1415 |
-
#: includes/fields/class-acf-field-radio.php:244
|
1416 |
-
#: includes/fields/class-acf-field-select.php:386
|
1417 |
-
#: includes/fields/class-acf-field-taxonomy.php:793
|
1418 |
-
#: includes/fields/class-acf-field-user.php:408
|
1419 |
-
msgid "Allow Null?"
|
1420 |
-
msgstr "Dozvoli null vrijednost?"
|
1421 |
-
|
1422 |
-
#: includes/fields/class-acf-field-button-group.php:168
|
1423 |
-
#: includes/fields/class-acf-field-checkbox.php:375
|
1424 |
-
#: includes/fields/class-acf-field-color_picker.php:131
|
1425 |
-
#: includes/fields/class-acf-field-email.php:118
|
1426 |
-
#: includes/fields/class-acf-field-number.php:127
|
1427 |
-
#: includes/fields/class-acf-field-radio.php:276
|
1428 |
-
#: includes/fields/class-acf-field-range.php:148
|
1429 |
-
#: includes/fields/class-acf-field-select.php:377
|
1430 |
-
#: includes/fields/class-acf-field-text.php:119
|
1431 |
-
#: includes/fields/class-acf-field-textarea.php:102
|
1432 |
-
#: includes/fields/class-acf-field-true_false.php:135
|
1433 |
-
#: includes/fields/class-acf-field-url.php:100
|
1434 |
-
#: includes/fields/class-acf-field-wysiwyg.php:410
|
1435 |
-
msgid "Default Value"
|
1436 |
-
msgstr "Zadana vrijednost"
|
1437 |
-
|
1438 |
-
#: includes/fields/class-acf-field-button-group.php:169
|
1439 |
-
#: includes/fields/class-acf-field-email.php:119
|
1440 |
-
#: includes/fields/class-acf-field-number.php:128
|
1441 |
-
#: includes/fields/class-acf-field-radio.php:277
|
1442 |
-
#: includes/fields/class-acf-field-range.php:149
|
1443 |
-
#: includes/fields/class-acf-field-text.php:120
|
1444 |
-
#: includes/fields/class-acf-field-textarea.php:103
|
1445 |
-
#: includes/fields/class-acf-field-url.php:101
|
1446 |
-
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1447 |
-
msgid "Appears when creating a new post"
|
1448 |
-
msgstr "Prikazuje se prilikom kreiranje nove objave"
|
1449 |
-
|
1450 |
-
#: includes/fields/class-acf-field-button-group.php:183
|
1451 |
-
#: includes/fields/class-acf-field-checkbox.php:391
|
1452 |
-
#: includes/fields/class-acf-field-radio.php:292
|
1453 |
msgid "Horizontal"
|
1454 |
msgstr "Horizontalno"
|
1455 |
|
1456 |
-
#: includes/fields/class-acf-field-button-group.php:
|
1457 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1458 |
-
#: includes/fields/class-acf-field-radio.php:
|
1459 |
msgid "Vertical"
|
1460 |
msgstr "Vertikalno"
|
1461 |
|
1462 |
-
#: includes/fields/class-acf-field-button-group.php:
|
1463 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1464 |
-
#: includes/fields/class-acf-field-file.php:
|
1465 |
-
#: includes/fields/class-acf-field-
|
1466 |
-
#: includes/fields/class-acf-field-
|
1467 |
-
#: includes/fields/class-acf-field-
|
1468 |
-
#: includes/fields/class-acf-field-taxonomy.php:833
|
1469 |
msgid "Return Value"
|
1470 |
msgstr "Vrati vrijednost"
|
1471 |
|
1472 |
-
#: includes/fields/class-acf-field-button-group.php:
|
1473 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1474 |
-
#: includes/fields/class-acf-field-file.php:
|
1475 |
-
#: includes/fields/class-acf-field-
|
1476 |
-
#: includes/fields/class-acf-field-
|
1477 |
-
#: includes/fields/class-acf-field-radio.php:300
|
1478 |
msgid "Specify the returned value on front end"
|
1479 |
msgstr "Vrijednost koja će biti vraćena na pristupnom dijelu"
|
1480 |
|
1481 |
-
#: includes/fields/class-acf-field-button-group.php:
|
1482 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1483 |
-
#: includes/fields/class-acf-field-radio.php:
|
1484 |
-
#: includes/fields/class-acf-field-select.php:
|
1485 |
msgid "Value"
|
1486 |
msgstr "Vrijednost"
|
1487 |
|
1488 |
-
#: includes/fields/class-acf-field-button-group.php:
|
1489 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1490 |
-
#: includes/fields/class-acf-field-radio.php:
|
1491 |
-
#: includes/fields/class-acf-field-select.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1492 |
msgid "Both (Array)"
|
1493 |
msgstr "Oboje (podatkovni niz)"
|
1494 |
|
1495 |
-
#: includes/fields/class-acf-field-checkbox.php:25
|
1496 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1497 |
msgid "Checkbox"
|
1498 |
msgstr "Skup dugmadi"
|
1499 |
|
1500 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1501 |
msgid "Toggle All"
|
1502 |
msgstr "Sakrij sve"
|
1503 |
|
1504 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1505 |
msgid "Add new choice"
|
1506 |
msgstr "Dodaj odabir"
|
1507 |
|
1508 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1509 |
msgid "Allow Custom"
|
1510 |
msgstr "Obogući dodatne"
|
1511 |
|
1512 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1513 |
msgid "Allow 'custom' values to be added"
|
1514 |
msgstr "Omogući ‘dodatne’ vrijednosti"
|
1515 |
|
1516 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1517 |
msgid "Save Custom"
|
1518 |
msgstr "Spremi"
|
1519 |
|
1520 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1521 |
msgid "Save 'custom' values to the field's choices"
|
1522 |
msgstr "Spremi ‘dodatne’ vrijednosti i prikaži ih omogući njihov odabir"
|
1523 |
|
1524 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1525 |
-
#: includes/fields/class-acf-field-select.php:
|
1526 |
msgid "Enter each default value on a new line"
|
1527 |
msgstr "Unesite svaku novu vrijednost u zasebnu liniju"
|
1528 |
|
1529 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1530 |
msgid "Toggle"
|
1531 |
msgstr "Prikaži/Sakrij"
|
1532 |
|
1533 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1534 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1535 |
msgstr "Dodaj okvir za izbor koji omogućje odabir svih opcija"
|
1536 |
|
@@ -1538,97 +1198,134 @@ msgstr "Dodaj okvir za izbor koji omogućje odabir svih opcija"
|
|
1538 |
msgid "Color Picker"
|
1539 |
msgstr "Odabir boje"
|
1540 |
|
1541 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1542 |
msgid "Clear"
|
1543 |
msgstr "Ukloni"
|
1544 |
|
1545 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1546 |
msgid "Default"
|
1547 |
msgstr "Zadano"
|
1548 |
|
1549 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1550 |
msgid "Select Color"
|
1551 |
msgstr "Odaberite boju"
|
1552 |
|
1553 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1554 |
-
|
1555 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1556 |
|
1557 |
#: includes/fields/class-acf-field-date_picker.php:25
|
1558 |
msgid "Date Picker"
|
1559 |
msgstr "Odabir datuma"
|
1560 |
|
1561 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1562 |
msgctxt "Date Picker JS closeText"
|
1563 |
msgid "Done"
|
1564 |
msgstr "Završeno"
|
1565 |
|
1566 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1567 |
msgctxt "Date Picker JS currentText"
|
1568 |
msgid "Today"
|
1569 |
msgstr "Danas"
|
1570 |
|
1571 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1572 |
msgctxt "Date Picker JS nextText"
|
1573 |
msgid "Next"
|
1574 |
msgstr "Slijedeći"
|
1575 |
|
1576 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1577 |
msgctxt "Date Picker JS prevText"
|
1578 |
msgid "Prev"
|
1579 |
msgstr "Prethodni"
|
1580 |
|
1581 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1582 |
msgctxt "Date Picker JS weekHeader"
|
1583 |
msgid "Wk"
|
1584 |
msgstr "Tjedan"
|
1585 |
|
1586 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1587 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1588 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1589 |
msgid "Display Format"
|
1590 |
msgstr "Format prikaza"
|
1591 |
|
1592 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1593 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1594 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1595 |
msgid "The format displayed when editing a post"
|
1596 |
msgstr "Format za prikaz prilikom administracije"
|
1597 |
|
1598 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1599 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1600 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1601 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1602 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1603 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1604 |
msgid "Custom:"
|
1605 |
msgstr "Prilagođeno:"
|
1606 |
|
1607 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1608 |
msgid "Save Format"
|
1609 |
msgstr "Spremi format"
|
1610 |
|
1611 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1612 |
msgid "The format used when saving a value"
|
1613 |
msgstr "Format koji će biti spremljen"
|
1614 |
|
1615 |
-
#: includes/fields/class-acf-field-date_picker.php:237
|
1616 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1617 |
-
#: includes/fields/class-acf-field-post_object.php:432
|
1618 |
-
#: includes/fields/class-acf-field-relationship.php:697
|
1619 |
-
#: includes/fields/class-acf-field-select.php:426
|
1620 |
-
#: includes/fields/class-acf-field-time_picker.php:124
|
1621 |
-
msgid "Return Format"
|
1622 |
-
msgstr "Format za prikaz na web stranici"
|
1623 |
-
|
1624 |
-
#: includes/fields/class-acf-field-date_picker.php:238
|
1625 |
-
#: includes/fields/class-acf-field-date_time_picker.php:199
|
1626 |
-
#: includes/fields/class-acf-field-time_picker.php:125
|
1627 |
-
msgid "The format returned via template functions"
|
1628 |
-
msgstr "Format koji vraća funkcija"
|
1629 |
-
|
1630 |
-
#: includes/fields/class-acf-field-date_picker.php:256
|
1631 |
-
#: includes/fields/class-acf-field-date_time_picker.php:215
|
1632 |
msgid "Week Starts On"
|
1633 |
msgstr "Tjedan počinje"
|
1634 |
|
@@ -1636,77 +1333,77 @@ msgstr "Tjedan počinje"
|
|
1636 |
msgid "Date Time Picker"
|
1637 |
msgstr "Odabir datuma i sata"
|
1638 |
|
1639 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1640 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1641 |
msgid "Choose Time"
|
1642 |
msgstr "Odaberi vrijeme"
|
1643 |
|
1644 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1645 |
msgctxt "Date Time Picker JS timeText"
|
1646 |
msgid "Time"
|
1647 |
msgstr "Vrijeme"
|
1648 |
|
1649 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1650 |
msgctxt "Date Time Picker JS hourText"
|
1651 |
msgid "Hour"
|
1652 |
msgstr "Sat"
|
1653 |
|
1654 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1655 |
msgctxt "Date Time Picker JS minuteText"
|
1656 |
msgid "Minute"
|
1657 |
msgstr "Minuta"
|
1658 |
|
1659 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1660 |
msgctxt "Date Time Picker JS secondText"
|
1661 |
msgid "Second"
|
1662 |
msgstr "Sekunda"
|
1663 |
|
1664 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1665 |
msgctxt "Date Time Picker JS millisecText"
|
1666 |
msgid "Millisecond"
|
1667 |
msgstr "Milisekunda"
|
1668 |
|
1669 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1670 |
msgctxt "Date Time Picker JS microsecText"
|
1671 |
msgid "Microsecond"
|
1672 |
msgstr "Mikrosekunda"
|
1673 |
|
1674 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1675 |
msgctxt "Date Time Picker JS timezoneText"
|
1676 |
msgid "Time Zone"
|
1677 |
msgstr "Vremenska zona"
|
1678 |
|
1679 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1680 |
msgctxt "Date Time Picker JS currentText"
|
1681 |
msgid "Now"
|
1682 |
msgstr "Trenutno vrijeme"
|
1683 |
|
1684 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1685 |
msgctxt "Date Time Picker JS closeText"
|
1686 |
msgid "Done"
|
1687 |
msgstr "Završeno"
|
1688 |
|
1689 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1690 |
msgctxt "Date Time Picker JS selectText"
|
1691 |
msgid "Select"
|
1692 |
msgstr "Odaberi"
|
1693 |
|
1694 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1695 |
msgctxt "Date Time Picker JS amText"
|
1696 |
msgid "AM"
|
1697 |
msgstr "Prije podne"
|
1698 |
|
1699 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1700 |
msgctxt "Date Time Picker JS amTextShort"
|
1701 |
msgid "A"
|
1702 |
msgstr "Prije podne"
|
1703 |
|
1704 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1705 |
msgctxt "Date Time Picker JS pmText"
|
1706 |
msgid "PM"
|
1707 |
msgstr "Poslije podne"
|
1708 |
|
1709 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1710 |
msgctxt "Date Time Picker JS pmTextShort"
|
1711 |
msgid "P"
|
1712 |
msgstr "Poslije podne"
|
@@ -1715,261 +1412,278 @@ msgstr "Poslije podne"
|
|
1715 |
msgid "Email"
|
1716 |
msgstr "Email"
|
1717 |
|
1718 |
-
#: includes/fields/class-acf-field-email.php:
|
1719 |
-
#: includes/fields/class-acf-field-number.php:136
|
1720 |
-
#: includes/fields/class-acf-field-password.php:
|
1721 |
-
#: includes/fields/class-acf-field-text.php:
|
1722 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1723 |
-
#: includes/fields/class-acf-field-url.php:
|
1724 |
msgid "Placeholder Text"
|
1725 |
msgstr "Zadana vrijednost"
|
1726 |
|
1727 |
-
#: includes/fields/class-acf-field-email.php:
|
1728 |
-
#: includes/fields/class-acf-field-number.php:137
|
1729 |
-
#: includes/fields/class-acf-field-password.php:
|
1730 |
-
#: includes/fields/class-acf-field-text.php:
|
1731 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1732 |
-
#: includes/fields/class-acf-field-url.php:
|
1733 |
msgid "Appears within the input"
|
1734 |
msgstr "Prikazuje se unutar polja"
|
1735 |
|
1736 |
-
#: includes/fields/class-acf-field-email.php:
|
1737 |
-
#: includes/fields/class-acf-field-number.php:
|
1738 |
-
#: includes/fields/class-acf-field-password.php:
|
1739 |
-
#: includes/fields/class-acf-field-range.php:
|
1740 |
-
#: includes/fields/class-acf-field-text.php:
|
1741 |
msgid "Prepend"
|
1742 |
msgstr "Umetni ispred"
|
1743 |
|
1744 |
-
#: includes/fields/class-acf-field-email.php:
|
1745 |
-
#: includes/fields/class-acf-field-number.php:
|
1746 |
-
#: includes/fields/class-acf-field-password.php:
|
1747 |
-
#: includes/fields/class-acf-field-range.php:
|
1748 |
-
#: includes/fields/class-acf-field-text.php:
|
1749 |
msgid "Appears before the input"
|
1750 |
msgstr "Prijazuje se ispred polja"
|
1751 |
|
1752 |
-
#: includes/fields/class-acf-field-email.php:
|
1753 |
-
#: includes/fields/class-acf-field-number.php:
|
1754 |
-
#: includes/fields/class-acf-field-password.php:
|
1755 |
-
#: includes/fields/class-acf-field-range.php:
|
1756 |
-
#: includes/fields/class-acf-field-text.php:
|
1757 |
msgid "Append"
|
1758 |
msgstr "Umetni na kraj"
|
1759 |
|
1760 |
-
#: includes/fields/class-acf-field-email.php:
|
1761 |
-
#: includes/fields/class-acf-field-number.php:
|
1762 |
-
#: includes/fields/class-acf-field-password.php:
|
1763 |
-
#: includes/fields/class-acf-field-range.php:
|
1764 |
-
#: includes/fields/class-acf-field-text.php:
|
1765 |
msgid "Appears after the input"
|
1766 |
msgstr "Prikazuje se iza polja"
|
1767 |
|
|
|
|
|
|
|
|
|
1768 |
#: includes/fields/class-acf-field-file.php:25
|
1769 |
msgid "File"
|
1770 |
msgstr "Datoteka"
|
1771 |
|
1772 |
-
#: includes/fields/class-acf-field-file.php:
|
|
|
|
|
|
|
|
|
|
|
1773 |
msgid "Edit File"
|
1774 |
msgstr "Uredi datoteku"
|
1775 |
|
1776 |
-
#: includes/fields/class-acf-field-file.php:
|
1777 |
msgid "Update File"
|
1778 |
msgstr "Ažuriraj datoteku"
|
1779 |
|
1780 |
-
#: includes/fields/class-acf-field-file.php:
|
1781 |
-
#: includes/fields/class-acf-field-image.php:43 includes/media.php:57
|
1782 |
-
#: pro/fields/class-acf-field-gallery.php:44
|
1783 |
-
msgid "Uploaded to this post"
|
1784 |
-
msgstr "Postavljeno uz ovu objavu"
|
1785 |
-
|
1786 |
-
#: includes/fields/class-acf-field-file.php:130
|
1787 |
msgid "File name"
|
1788 |
msgstr "Naziv datoteke"
|
1789 |
|
1790 |
-
#: includes/fields/class-acf-field-file.php:
|
1791 |
-
#: includes/fields/class-acf-field-file.php:
|
1792 |
-
#: includes/fields/class-acf-field-file.php:
|
1793 |
-
#: includes/fields/class-acf-field-image.php:
|
1794 |
-
#: includes/fields/class-acf-field-image.php:
|
1795 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1796 |
#: pro/fields/class-acf-field-gallery.php:719
|
1797 |
msgid "File size"
|
1798 |
msgstr "Veličina datoteke"
|
1799 |
|
1800 |
-
#: includes/fields/class-acf-field-file.php:
|
1801 |
-
#: includes/fields/class-acf-field-image.php:
|
1802 |
-
#: includes/fields/class-acf-field-link.php:
|
1803 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1804 |
-
#:
|
1805 |
-
msgid "
|
1806 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
1807 |
|
1808 |
-
#: includes/fields/class-acf-field-file.php:
|
1809 |
msgid "Add File"
|
1810 |
msgstr "Dodaj datoteku"
|
1811 |
|
1812 |
-
#: includes/fields/class-acf-field-file.php:
|
1813 |
msgid "File Array"
|
1814 |
msgstr "Vrijednost kao niz"
|
1815 |
|
1816 |
-
#: includes/fields/class-acf-field-file.php:
|
1817 |
msgid "File URL"
|
1818 |
msgstr "Putanja datoteke"
|
1819 |
|
1820 |
-
#: includes/fields/class-acf-field-file.php:
|
1821 |
msgid "File ID"
|
1822 |
msgstr "Vrijednost kao ID"
|
1823 |
|
1824 |
-
#: includes/fields/class-acf-field-file.php:
|
1825 |
-
#: includes/fields/class-acf-field-image.php:
|
1826 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1827 |
msgid "Library"
|
1828 |
msgstr "Zbirka"
|
1829 |
|
1830 |
-
#: includes/fields/class-acf-field-file.php:
|
1831 |
-
#: includes/fields/class-acf-field-image.php:
|
1832 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1833 |
msgid "Limit the media library choice"
|
1834 |
msgstr "Ograniči odabir iz zbirke"
|
1835 |
|
1836 |
-
#: includes/fields/class-acf-field-file.php:
|
1837 |
-
#: includes/fields/class-acf-field-image.php:
|
1838 |
-
#: includes/locations/class-acf-location-attachment.php:
|
1839 |
-
#: includes/locations/class-acf-location-comment.php:
|
1840 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
1841 |
-
#: includes/locations/class-acf-location-taxonomy.php:
|
1842 |
-
#: includes/locations/class-acf-location-user-form.php:
|
1843 |
-
#: includes/locations/class-acf-location-user-role.php:
|
1844 |
-
#: includes/locations/class-acf-location-widget.php:
|
1845 |
-
#: pro/fields/class-acf-field-gallery.php:
|
|
|
1846 |
msgid "All"
|
1847 |
msgstr "Sve"
|
1848 |
|
1849 |
-
#: includes/fields/class-acf-field-file.php:
|
1850 |
-
#: includes/fields/class-acf-field-image.php:
|
1851 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1852 |
msgid "Uploaded to post"
|
1853 |
msgstr "Dodani uz trenutnu objavu"
|
1854 |
|
1855 |
-
#: includes/fields/class-acf-field-file.php:
|
1856 |
-
#: includes/fields/class-acf-field-image.php:
|
1857 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1858 |
msgid "Minimum"
|
1859 |
msgstr "Minimum"
|
1860 |
|
1861 |
-
#: includes/fields/class-acf-field-file.php:
|
1862 |
-
#: includes/fields/class-acf-field-file.php:
|
1863 |
msgid "Restrict which files can be uploaded"
|
1864 |
msgstr "Ograniči tip datoteka koji se smije uvesti"
|
1865 |
|
1866 |
-
#: includes/fields/class-acf-field-file.php:
|
1867 |
-
#: includes/fields/class-acf-field-image.php:
|
1868 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1869 |
msgid "Maximum"
|
1870 |
msgstr "Maksimum"
|
1871 |
|
1872 |
-
#: includes/fields/class-acf-field-file.php:
|
1873 |
-
#: includes/fields/class-acf-field-image.php:
|
1874 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1875 |
msgid "Allowed file types"
|
1876 |
msgstr "Dozvoljeni tipovi datoteka"
|
1877 |
|
1878 |
-
#: includes/fields/class-acf-field-file.php:
|
1879 |
-
#: includes/fields/class-acf-field-image.php:
|
1880 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1881 |
msgid "Comma separated list. Leave blank for all types"
|
1882 |
msgstr ""
|
1883 |
"Dodaj kao niz odvojen zarezom, npr: .txt, .jpg, ... Ukoliko je prazno, sve "
|
1884 |
"datoteke su dozvoljene"
|
1885 |
|
|
|
|
|
|
|
|
|
1886 |
#: includes/fields/class-acf-field-google-map.php:25
|
1887 |
msgid "Google Map"
|
1888 |
msgstr "Google mapa"
|
1889 |
|
1890 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1891 |
-
msgid "Locating"
|
1892 |
-
msgstr "Lociranje u tijeku"
|
1893 |
-
|
1894 |
-
#: includes/fields/class-acf-field-google-map.php:41
|
1895 |
msgid "Sorry, this browser does not support geolocation"
|
1896 |
msgstr "Nažalost, ovaj preglednik ne podržava geo lociranje"
|
1897 |
|
1898 |
-
#: includes/fields/class-acf-field-google-map.php:
|
|
|
|
|
|
|
|
|
|
|
1899 |
msgid "Clear location"
|
1900 |
msgstr "Ukloni lokaciju"
|
1901 |
|
1902 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1903 |
msgid "Find current location"
|
1904 |
msgstr "Pronađi trenutnu lokaciju"
|
1905 |
|
1906 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1907 |
msgid "Search for address..."
|
1908 |
msgstr "Pretraži po adresi..."
|
1909 |
|
1910 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1911 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1912 |
msgid "Center"
|
1913 |
msgstr "Centriraj"
|
1914 |
|
1915 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1916 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1917 |
msgid "Center the initial map"
|
1918 |
msgstr "Centriraj prilikom učitavanja"
|
1919 |
|
1920 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1921 |
msgid "Zoom"
|
1922 |
msgstr "Uvećaj"
|
1923 |
|
1924 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1925 |
msgid "Set the initial zoom level"
|
1926 |
msgstr "Postavi zadanu vrijednost uvećanja"
|
1927 |
|
1928 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1929 |
-
#: includes/fields/class-acf-field-image.php:
|
1930 |
-
#: includes/fields/class-acf-field-image.php:
|
1931 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1932 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1933 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1934 |
msgid "Height"
|
1935 |
msgstr "Visina"
|
1936 |
|
1937 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1938 |
-
|
|
|
|
|
1939 |
msgstr "Uredi visinu mape"
|
1940 |
|
1941 |
#: includes/fields/class-acf-field-group.php:25
|
1942 |
msgid "Group"
|
1943 |
msgstr "Skup polja"
|
1944 |
|
1945 |
-
#: includes/fields/class-acf-field-group.php:
|
1946 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1947 |
msgid "Sub Fields"
|
1948 |
msgstr "Pod polja"
|
1949 |
|
1950 |
-
#: includes/fields/class-acf-field-group.php:
|
1951 |
-
#: pro/fields/class-acf-field-clone.php:
|
1952 |
msgid "Specify the style used to render the selected fields"
|
1953 |
msgstr "Odaberite način prikaza odabranih polja"
|
1954 |
|
1955 |
-
#: includes/fields/class-acf-field-group.php:
|
1956 |
-
#: pro/fields/class-acf-field-clone.php:
|
1957 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1958 |
-
#: pro/fields/class-acf-field-repeater.php:
|
|
|
1959 |
msgid "Block"
|
1960 |
msgstr "Blok"
|
1961 |
|
1962 |
-
#: includes/fields/class-acf-field-group.php:
|
1963 |
-
#: pro/fields/class-acf-field-clone.php:
|
1964 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1965 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1966 |
msgid "Table"
|
1967 |
msgstr "Tablica"
|
1968 |
|
1969 |
-
#: includes/fields/class-acf-field-group.php:
|
1970 |
-
#: pro/fields/class-acf-field-clone.php:
|
1971 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1972 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1973 |
msgid "Row"
|
1974 |
msgstr "Red"
|
1975 |
|
@@ -1977,64 +1691,58 @@ msgstr "Red"
|
|
1977 |
msgid "Image"
|
1978 |
msgstr "Slika"
|
1979 |
|
1980 |
-
#: includes/fields/class-acf-field-image.php:
|
1981 |
msgid "Select Image"
|
1982 |
msgstr "Odaberi sliku"
|
1983 |
|
1984 |
-
#: includes/fields/class-acf-field-image.php:
|
1985 |
-
#: pro/fields/class-acf-field-gallery.php:42
|
1986 |
msgid "Edit Image"
|
1987 |
msgstr "Uredi sliku"
|
1988 |
|
1989 |
-
#: includes/fields/class-acf-field-image.php:
|
1990 |
-
#: pro/fields/class-acf-field-gallery.php:43
|
1991 |
msgid "Update Image"
|
1992 |
msgstr "Ažuriraj sliku"
|
1993 |
|
1994 |
-
#: includes/fields/class-acf-field-image.php:
|
1995 |
-
msgid "All images"
|
1996 |
-
msgstr "Sve slike"
|
1997 |
-
|
1998 |
-
#: includes/fields/class-acf-field-image.php:140
|
1999 |
msgid "No image selected"
|
2000 |
msgstr "Nema odabranih slika"
|
2001 |
|
2002 |
-
#: includes/fields/class-acf-field-image.php:
|
2003 |
msgid "Add Image"
|
2004 |
msgstr "Dodaj sliku"
|
2005 |
|
2006 |
-
#: includes/fields/class-acf-field-image.php:
|
|
|
2007 |
msgid "Image Array"
|
2008 |
msgstr "Podaci kao niz"
|
2009 |
|
2010 |
-
#: includes/fields/class-acf-field-image.php:
|
|
|
2011 |
msgid "Image URL"
|
2012 |
msgstr "Putanja slike"
|
2013 |
|
2014 |
-
#: includes/fields/class-acf-field-image.php:
|
|
|
2015 |
msgid "Image ID"
|
2016 |
msgstr "ID slike"
|
2017 |
|
2018 |
-
#: includes/fields/class-acf-field-image.php:
|
|
|
2019 |
msgid "Preview Size"
|
2020 |
msgstr "Veličina prikaza prilikom uređivanja stranice"
|
2021 |
|
2022 |
-
#: includes/fields/class-acf-field-image.php:
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
#: includes/fields/class-acf-field-image.php:228
|
2027 |
-
#: includes/fields/class-acf-field-image.php:257
|
2028 |
-
#: pro/fields/class-acf-field-gallery.php:670
|
2029 |
-
#: pro/fields/class-acf-field-gallery.php:699
|
2030 |
msgid "Restrict which images can be uploaded"
|
2031 |
msgstr "Ograniči koje slike mogu biti dodane"
|
2032 |
|
2033 |
-
#: includes/fields/class-acf-field-image.php:
|
2034 |
-
#: includes/fields/class-acf-field-image.php:
|
2035 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2036 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2037 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2038 |
msgid "Width"
|
2039 |
msgstr "Širina"
|
2040 |
|
@@ -2042,58 +1750,58 @@ msgstr "Širina"
|
|
2042 |
msgid "Link"
|
2043 |
msgstr "Poveznica"
|
2044 |
|
2045 |
-
#: includes/fields/class-acf-field-link.php:
|
2046 |
msgid "Select Link"
|
2047 |
msgstr "Odaberite poveznicu"
|
2048 |
|
2049 |
-
#: includes/fields/class-acf-field-link.php:
|
2050 |
msgid "Opens in a new window/tab"
|
2051 |
msgstr "Otvori u novom prozoru/kartici"
|
2052 |
|
2053 |
-
#: includes/fields/class-acf-field-link.php:
|
2054 |
msgid "Link Array"
|
2055 |
msgstr "Vrijednost kao niz"
|
2056 |
|
2057 |
-
#: includes/fields/class-acf-field-link.php:
|
2058 |
msgid "Link URL"
|
2059 |
msgstr "Putanja poveznice"
|
2060 |
|
2061 |
-
#: includes/fields/class-acf-field-message.php:
|
2062 |
-
#: includes/fields/class-acf-field-message.php:
|
2063 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2064 |
msgid "Message"
|
2065 |
msgstr "Poruka"
|
2066 |
|
2067 |
-
#: includes/fields/class-acf-field-message.php:
|
2068 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2069 |
msgid "New Lines"
|
2070 |
msgstr "Broj linija"
|
2071 |
|
2072 |
-
#: includes/fields/class-acf-field-message.php:
|
2073 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2074 |
msgid "Controls how new lines are rendered"
|
2075 |
msgstr "Određuje način prikaza novih linija"
|
2076 |
|
2077 |
-
#: includes/fields/class-acf-field-message.php:
|
2078 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2079 |
msgid "Automatically add paragraphs"
|
2080 |
msgstr "Dodaj paragraf"
|
2081 |
|
2082 |
-
#: includes/fields/class-acf-field-message.php:
|
2083 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2084 |
msgid "Automatically add <br>"
|
2085 |
msgstr "Dodaj novi red - <br>"
|
2086 |
|
2087 |
-
#: includes/fields/class-acf-field-message.php:
|
2088 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2089 |
msgid "No Formatting"
|
2090 |
msgstr "Bez obrade"
|
2091 |
|
2092 |
-
#: includes/fields/class-acf-field-message.php:
|
2093 |
msgid "Escape HTML"
|
2094 |
msgstr "Onemogući HTML"
|
2095 |
|
2096 |
-
#: includes/fields/class-acf-field-message.php:
|
2097 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2098 |
msgstr "Prikažite HTML kodove kao tekst umjesto iscrtavanja"
|
2099 |
|
@@ -2101,32 +1809,30 @@ msgstr "Prikažite HTML kodove kao tekst umjesto iscrtavanja"
|
|
2101 |
msgid "Number"
|
2102 |
msgstr "Broj"
|
2103 |
|
2104 |
-
#: includes/fields/class-acf-field-number.php:
|
2105 |
-
#: includes/fields/class-acf-field-range.php:
|
2106 |
msgid "Minimum Value"
|
2107 |
msgstr "Minimum"
|
2108 |
|
2109 |
-
#: includes/fields/class-acf-field-number.php:
|
2110 |
-
#: includes/fields/class-acf-field-range.php:
|
2111 |
msgid "Maximum Value"
|
2112 |
msgstr "Maksimum"
|
2113 |
|
2114 |
-
#: includes/fields/class-acf-field-number.php:
|
2115 |
-
#: includes/fields/class-acf-field-range.php:
|
2116 |
msgid "Step Size"
|
2117 |
msgstr "Korak"
|
2118 |
|
2119 |
-
#: includes/fields/class-acf-field-number.php:
|
2120 |
msgid "Value must be a number"
|
2121 |
msgstr "Vrijednost mora biti broj"
|
2122 |
|
2123 |
-
#: includes/fields/class-acf-field-number.php:
|
2124 |
-
#, php-format
|
2125 |
msgid "Value must be equal to or higher than %d"
|
2126 |
msgstr "Unešena vrijednost mora biti jednaka ili viša od %d"
|
2127 |
|
2128 |
-
#: includes/fields/class-acf-field-number.php:
|
2129 |
-
#, php-format
|
2130 |
msgid "Value must be equal to or lower than %d"
|
2131 |
msgstr "Unešena vrijednost mora biti jednaka ili niža od %d"
|
2132 |
|
@@ -2134,66 +1840,61 @@ msgstr "Unešena vrijednost mora biti jednaka ili niža od %d"
|
|
2134 |
msgid "oEmbed"
|
2135 |
msgstr "oEmbed"
|
2136 |
|
2137 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2138 |
msgid "Enter URL"
|
2139 |
msgstr "Poveznica"
|
2140 |
|
2141 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2142 |
-
#: includes/fields/class-acf-field-
|
2143 |
-
msgid "Error."
|
2144 |
-
msgstr "Greška."
|
2145 |
-
|
2146 |
-
#: includes/fields/class-acf-field-oembed.php:234
|
2147 |
-
msgid "No embed found for the given URL."
|
2148 |
-
msgstr "Nije pronađen nijedan umetak za unesenu adresu."
|
2149 |
-
|
2150 |
-
#: includes/fields/class-acf-field-oembed.php:267
|
2151 |
-
#: includes/fields/class-acf-field-oembed.php:278
|
2152 |
msgid "Embed Size"
|
2153 |
msgstr "Dimenzija umetka"
|
2154 |
|
2155 |
-
#: includes/fields/class-acf-field-page_link.php:
|
|
|
|
|
|
|
|
|
2156 |
msgid "Archives"
|
2157 |
msgstr "Arhiva"
|
2158 |
|
2159 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2160 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2161 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2162 |
msgid "Parent"
|
2163 |
msgstr "Matični"
|
2164 |
|
2165 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2166 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2167 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2168 |
msgid "Filter by Post Type"
|
2169 |
msgstr "Filtriraj po tipu posta"
|
2170 |
|
2171 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2172 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2173 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2174 |
msgid "All post types"
|
2175 |
msgstr "Svi tipovi"
|
2176 |
|
2177 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2178 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2179 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2180 |
msgid "Filter by Taxonomy"
|
2181 |
msgstr "Filtriraj prema taksonomiji"
|
2182 |
|
2183 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2184 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2185 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2186 |
msgid "All taxonomies"
|
2187 |
msgstr "Sve taksonomije"
|
2188 |
|
2189 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2190 |
msgid "Allow Archives URLs"
|
2191 |
msgstr "Omogući odabir arhive tipova"
|
2192 |
|
2193 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2194 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2195 |
-
#: includes/fields/class-acf-field-select.php:
|
2196 |
-
#: includes/fields/class-acf-field-user.php:
|
2197 |
msgid "Select multiple values?"
|
2198 |
msgstr "Dozvoli odabir više vrijednosti?"
|
2199 |
|
@@ -2201,34 +1902,52 @@ msgstr "Dozvoli odabir više vrijednosti?"
|
|
2201 |
msgid "Password"
|
2202 |
msgstr "Lozinka"
|
2203 |
|
2204 |
-
#: includes/fields/class-acf-field-post_object.php:25
|
2205 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2206 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2207 |
msgid "Post Object"
|
2208 |
msgstr "Objekt"
|
2209 |
|
2210 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2211 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2212 |
msgid "Post ID"
|
2213 |
msgstr "ID objave"
|
2214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2215 |
#: includes/fields/class-acf-field-radio.php:25
|
2216 |
msgid "Radio Button"
|
2217 |
msgstr "Radiogumb"
|
2218 |
|
2219 |
-
#: includes/fields/class-acf-field-radio.php:
|
2220 |
msgid "Other"
|
2221 |
msgstr "Drugo"
|
2222 |
|
2223 |
-
#: includes/fields/class-acf-field-radio.php:
|
2224 |
msgid "Add 'other' choice to allow for custom values"
|
2225 |
msgstr "Dodaj odabir ’ostalo’ za slobodan unost"
|
2226 |
|
2227 |
-
#: includes/fields/class-acf-field-radio.php:
|
2228 |
msgid "Save Other"
|
2229 |
msgstr "Spremi ostale"
|
2230 |
|
2231 |
-
#: includes/fields/class-acf-field-radio.php:
|
2232 |
msgid "Save 'other' values to the field's choices"
|
2233 |
msgstr "Spremi ostale vrijednosti i omogući njihov odabir"
|
2234 |
|
@@ -2240,175 +1959,183 @@ msgstr "Raspon"
|
|
2240 |
msgid "Relationship"
|
2241 |
msgstr "Veza"
|
2242 |
|
2243 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2244 |
-
msgid "Minimum values reached ( {min} values )"
|
2245 |
-
msgstr "Minimalna vrijednost je {min}"
|
2246 |
-
|
2247 |
-
#: includes/fields/class-acf-field-relationship.php:38
|
2248 |
msgid "Maximum values reached ( {max} values )"
|
2249 |
msgstr "Već ste dodali najviše dozvoljenih vrijednosti (najviše: {max})"
|
2250 |
|
2251 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2252 |
msgid "Loading"
|
2253 |
msgstr "Učitavanje"
|
2254 |
|
2255 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2256 |
msgid "No matches found"
|
2257 |
msgstr "Nema rezultata"
|
2258 |
|
2259 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2260 |
msgid "Select post type"
|
2261 |
msgstr "Odaberi tip posta"
|
2262 |
|
2263 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2264 |
msgid "Select taxonomy"
|
2265 |
msgstr "Odebarite taksonomiju"
|
2266 |
|
2267 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2268 |
msgid "Search..."
|
2269 |
msgstr "Pretraga…"
|
2270 |
|
2271 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2272 |
msgid "Filters"
|
2273 |
msgstr "Filteri"
|
2274 |
|
2275 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2276 |
-
#: includes/locations/class-acf-location-post-type.php:
|
2277 |
msgid "Post Type"
|
2278 |
msgstr "Tip objave"
|
2279 |
|
2280 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2281 |
-
#: includes/fields/class-acf-field-taxonomy.php:28
|
2282 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
|
|
2283 |
msgid "Taxonomy"
|
2284 |
msgstr "Taksonomija"
|
2285 |
|
2286 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2287 |
msgid "Elements"
|
2288 |
msgstr "Elementi"
|
2289 |
|
2290 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2291 |
msgid "Selected elements will be displayed in each result"
|
2292 |
msgstr "Odabrani elementi bit će prikazani u svakom rezultatu"
|
2293 |
|
2294 |
-
#: includes/fields/class-acf-field-relationship.php:
|
|
|
|
|
|
|
|
|
|
|
2295 |
msgid "Minimum posts"
|
2296 |
msgstr "Minimalno"
|
2297 |
|
2298 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2299 |
msgid "Maximum posts"
|
2300 |
msgstr "Maksimalno"
|
2301 |
|
2302 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2303 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2304 |
-
#,
|
2305 |
-
msgid "
|
2306 |
-
|
2307 |
-
|
2308 |
-
msgstr[
|
2309 |
-
msgstr[
|
2310 |
-
|
2311 |
-
|
2312 |
-
#: includes/fields/class-acf-field-
|
|
|
2313 |
msgctxt "noun"
|
2314 |
msgid "Select"
|
2315 |
msgstr "Odaberi"
|
2316 |
|
2317 |
-
#: includes/fields/class-acf-field-select.php:
|
2318 |
msgctxt "Select2 JS matches_1"
|
2319 |
msgid "One result is available, press enter to select it."
|
2320 |
msgstr "Jedan rezultat dostupan, pritisnite enter za odabir."
|
2321 |
|
2322 |
-
#: includes/fields/class-acf-field-select.php:
|
2323 |
-
#, php-format
|
2324 |
msgctxt "Select2 JS matches_n"
|
2325 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2326 |
msgstr "%d rezultata dostupno, za pomicanje koristite strelice gore/dole."
|
2327 |
|
2328 |
-
#: includes/fields/class-acf-field-select.php:
|
2329 |
msgctxt "Select2 JS matches_0"
|
2330 |
msgid "No matches found"
|
2331 |
msgstr "Nema rezultata"
|
2332 |
|
2333 |
-
#: includes/fields/class-acf-field-select.php:
|
2334 |
msgctxt "Select2 JS input_too_short_1"
|
2335 |
msgid "Please enter 1 or more characters"
|
2336 |
msgstr "Molimo unesite 1 ili više znakova"
|
2337 |
|
2338 |
-
#: includes/fields/class-acf-field-select.php:
|
2339 |
-
#, php-format
|
2340 |
msgctxt "Select2 JS input_too_short_n"
|
2341 |
msgid "Please enter %d or more characters"
|
2342 |
msgstr "Molimo unesite najmanje %d ili više znakova"
|
2343 |
|
2344 |
-
#: includes/fields/class-acf-field-select.php:
|
2345 |
msgctxt "Select2 JS input_too_long_1"
|
2346 |
msgid "Please delete 1 character"
|
2347 |
msgstr "Molimo obrišite 1 znak"
|
2348 |
|
2349 |
-
#: includes/fields/class-acf-field-select.php:
|
2350 |
-
#, php-format
|
2351 |
msgctxt "Select2 JS input_too_long_n"
|
2352 |
msgid "Please delete %d characters"
|
2353 |
msgstr "Molimo obrišite višak znakova - %d znak(ova) je višak"
|
2354 |
|
2355 |
-
#: includes/fields/class-acf-field-select.php:
|
2356 |
msgctxt "Select2 JS selection_too_long_1"
|
2357 |
msgid "You can only select 1 item"
|
2358 |
msgstr "Moguće je odabrati samo jednu opciju"
|
2359 |
|
2360 |
-
#: includes/fields/class-acf-field-select.php:
|
2361 |
-
#, php-format
|
2362 |
msgctxt "Select2 JS selection_too_long_n"
|
2363 |
msgid "You can only select %d items"
|
2364 |
msgstr "Odabir opcija je ograničen na najviše %d"
|
2365 |
|
2366 |
-
#: includes/fields/class-acf-field-select.php:
|
2367 |
msgctxt "Select2 JS load_more"
|
2368 |
msgid "Loading more results…"
|
2369 |
msgstr "Učitavam rezultate…"
|
2370 |
|
2371 |
-
#: includes/fields/class-acf-field-select.php:
|
2372 |
msgctxt "Select2 JS searching"
|
2373 |
msgid "Searching…"
|
2374 |
msgstr "Pretražujem…"
|
2375 |
|
2376 |
-
#: includes/fields/class-acf-field-select.php:
|
2377 |
msgctxt "Select2 JS load_fail"
|
2378 |
msgid "Loading failed"
|
2379 |
msgstr "Neuspješno učitavanje"
|
2380 |
|
2381 |
-
#: includes/fields/class-acf-field-select.php:
|
2382 |
-
|
2383 |
-
msgid "Select"
|
2384 |
-
msgstr "Odaberi"
|
2385 |
-
|
2386 |
-
#: includes/fields/class-acf-field-select.php:406
|
2387 |
-
#: includes/fields/class-acf-field-true_false.php:144
|
2388 |
msgid "Stylised UI"
|
2389 |
msgstr "Stilizirano sučelje"
|
2390 |
|
2391 |
-
#: includes/fields/class-acf-field-select.php:
|
2392 |
msgid "Use AJAX to lazy load choices?"
|
2393 |
msgstr "Asinkrono učitaj dostupne odabire?"
|
2394 |
|
2395 |
-
#: includes/fields/class-acf-field-select.php:
|
2396 |
msgid "Specify the value returned"
|
2397 |
msgstr "Preciziraj vrijednost za povrat"
|
2398 |
|
|
|
|
|
|
|
|
|
2399 |
#: includes/fields/class-acf-field-separator.php:25
|
2400 |
msgid "Separator"
|
2401 |
msgstr "Razdjelnik"
|
2402 |
|
2403 |
-
#: includes/fields/class-acf-field-tab.php:
|
2404 |
msgid "Tab"
|
2405 |
msgstr "Kartica"
|
2406 |
|
2407 |
-
#: includes/fields/class-acf-field-tab.php:
|
2408 |
msgid "Placement"
|
2409 |
msgstr "Pozicija"
|
2410 |
|
2411 |
-
#: includes/fields/class-acf-field-tab.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2412 |
msgid ""
|
2413 |
"Define an endpoint for the previous tabs to stop. This will start a new "
|
2414 |
"group of tabs."
|
@@ -2416,92 +2143,91 @@ msgstr ""
|
|
2416 |
"Preciziraj prijelomnu točku za prethodne kartice. Ovo će omogućiti novi skup "
|
2417 |
"kartica nakon prijelomne točke."
|
2418 |
|
2419 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2420 |
-
#, php-format
|
2421 |
msgctxt "No terms"
|
2422 |
msgid "No %s"
|
2423 |
msgstr "Nema %s"
|
2424 |
|
2425 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2426 |
-
msgid "None"
|
2427 |
-
msgstr "Bez odabira"
|
2428 |
-
|
2429 |
-
#: includes/fields/class-acf-field-taxonomy.php:764
|
2430 |
msgid "Select the taxonomy to be displayed"
|
2431 |
msgstr "Odaberite taksonomiju za prikaz"
|
2432 |
|
2433 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2434 |
msgid "Appearance"
|
2435 |
msgstr "Prikaz"
|
2436 |
|
2437 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2438 |
msgid "Select the appearance of this field"
|
2439 |
msgstr "Odaberite izgled polja"
|
2440 |
|
2441 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2442 |
msgid "Multiple Values"
|
2443 |
msgstr "Omogući odabir više vrijednosti"
|
2444 |
|
2445 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2446 |
msgid "Multi Select"
|
2447 |
msgstr "Više odabira"
|
2448 |
|
2449 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2450 |
msgid "Single Value"
|
2451 |
msgstr "Jedan odabir"
|
2452 |
|
2453 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2454 |
msgid "Radio Buttons"
|
2455 |
msgstr "Radiogumbi"
|
2456 |
|
2457 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2458 |
msgid "Create Terms"
|
2459 |
msgstr "Kreiraj pojmove"
|
2460 |
|
2461 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2462 |
msgid "Allow new terms to be created whilst editing"
|
2463 |
msgstr "Omogući kreiranje pojmova prilikom uređivanja"
|
2464 |
|
2465 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2466 |
msgid "Save Terms"
|
2467 |
msgstr "Spremi pojmove"
|
2468 |
|
2469 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2470 |
msgid "Connect selected terms to the post"
|
2471 |
msgstr "Spoji odabrane pojmove sa objavom"
|
2472 |
|
2473 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2474 |
msgid "Load Terms"
|
2475 |
msgstr "Učitaj pojmove"
|
2476 |
|
2477 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2478 |
msgid "Load value from posts terms"
|
2479 |
msgstr "Učitaj pojmove iz objave"
|
2480 |
|
2481 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2482 |
msgid "Term Object"
|
2483 |
msgstr "Vrijednost pojma kao objekt"
|
2484 |
|
2485 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2486 |
msgid "Term ID"
|
2487 |
msgstr "Vrijednost kao: ID pojma"
|
2488 |
|
2489 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2490 |
-
#, php-format
|
2491 |
msgid "User unable to add new %s"
|
2492 |
msgstr "Korisnik nije u mogućnosti dodati %s"
|
2493 |
|
2494 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2495 |
-
#, php-format
|
2496 |
msgid "%s already exists"
|
2497 |
msgstr "%s već postoji"
|
2498 |
|
2499 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2500 |
-
#, php-format
|
2501 |
msgid "%s added"
|
2502 |
msgstr "Dodano: %s"
|
2503 |
|
2504 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2505 |
msgid "Add"
|
2506 |
msgstr "Dodaj"
|
2507 |
|
@@ -2509,25 +2235,33 @@ msgstr "Dodaj"
|
|
2509 |
msgid "Text"
|
2510 |
msgstr "Tekst"
|
2511 |
|
2512 |
-
#: includes/fields/class-acf-field-text.php:
|
2513 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2514 |
msgid "Character Limit"
|
2515 |
msgstr "Ograniči broj znakova"
|
2516 |
|
2517 |
-
#: includes/fields/class-acf-field-text.php:
|
2518 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2519 |
msgid "Leave blank for no limit"
|
2520 |
msgstr "Ostavite prazno za neograničeno"
|
2521 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2522 |
#: includes/fields/class-acf-field-textarea.php:25
|
2523 |
msgid "Text Area"
|
2524 |
msgstr "Tekst polje"
|
2525 |
|
2526 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2527 |
msgid "Rows"
|
2528 |
msgstr "Broj redova"
|
2529 |
|
2530 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2531 |
msgid "Sets the textarea height"
|
2532 |
msgstr "Podesi visinu tekstualnog polja"
|
2533 |
|
@@ -2539,35 +2273,23 @@ msgstr "Odabri vremena (sat i minute)"
|
|
2539 |
msgid "True / False"
|
2540 |
msgstr "True / False"
|
2541 |
|
2542 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2543 |
-
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2544 |
-
#: pro/admin/views/html-settings-updates.php:89
|
2545 |
-
msgid "Yes"
|
2546 |
-
msgstr "Da"
|
2547 |
-
|
2548 |
-
#: includes/fields/class-acf-field-true_false.php:80
|
2549 |
-
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2550 |
-
#: pro/admin/views/html-settings-updates.php:99
|
2551 |
-
msgid "No"
|
2552 |
-
msgstr "Ne"
|
2553 |
-
|
2554 |
-
#: includes/fields/class-acf-field-true_false.php:127
|
2555 |
msgid "Displays text alongside the checkbox"
|
2556 |
msgstr "Prikazuje tekst uz odabirni okvir"
|
2557 |
|
2558 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2559 |
msgid "On Text"
|
2560 |
msgstr "Tekst za aktivno stanje"
|
2561 |
|
2562 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2563 |
msgid "Text shown when active"
|
2564 |
msgstr "Tekst prikazan dok je polje aktivno"
|
2565 |
|
2566 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2567 |
msgid "Off Text"
|
2568 |
msgstr "Tekst za neaktivno stanje"
|
2569 |
|
2570 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2571 |
msgid "Text shown when inactive"
|
2572 |
msgstr "Tekst prikazan dok je polje neaktivno"
|
2573 |
|
@@ -2575,333 +2297,1121 @@ msgstr "Tekst prikazan dok je polje neaktivno"
|
|
2575 |
msgid "Url"
|
2576 |
msgstr "Poveznica"
|
2577 |
|
2578 |
-
#: includes/fields/class-acf-field-url.php:
|
2579 |
msgid "Value must be a valid URL"
|
2580 |
msgstr "Vrijednost molja biti valjana"
|
2581 |
|
2582 |
-
#: includes/fields/class-acf-field-user.php:
|
2583 |
-
msgid "User"
|
2584 |
-
msgstr "Korisnik"
|
2585 |
-
|
2586 |
-
#: includes/fields/class-acf-field-user.php:393
|
2587 |
msgid "Filter by role"
|
2588 |
msgstr "Filtar prema ulozi"
|
2589 |
|
2590 |
-
#: includes/fields/class-acf-field-user.php:
|
2591 |
msgid "All user roles"
|
2592 |
msgstr "Sve uloge"
|
2593 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2594 |
#: includes/fields/class-acf-field-wysiwyg.php:25
|
2595 |
msgid "Wysiwyg Editor"
|
2596 |
msgstr "Vizualno uređivanje"
|
2597 |
|
2598 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2599 |
msgid "Visual"
|
2600 |
msgstr "Vizualno"
|
2601 |
|
2602 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2603 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
2604 |
msgid "Text"
|
2605 |
msgstr "Tekst polje"
|
2606 |
|
2607 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2608 |
msgid "Click to initialize TinyMCE"
|
2609 |
msgstr "Aktiviraj vizualno uređivanje na klik"
|
2610 |
|
2611 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2612 |
msgid "Tabs"
|
2613 |
msgstr "Kartice"
|
2614 |
|
2615 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2616 |
msgid "Visual & Text"
|
2617 |
msgstr "Vizualno i tekstualno"
|
2618 |
|
2619 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2620 |
msgid "Visual Only"
|
2621 |
msgstr "Samo vizualni"
|
2622 |
|
2623 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2624 |
msgid "Text Only"
|
2625 |
msgstr "Samo tekstualno"
|
2626 |
|
2627 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2628 |
msgid "Toolbar"
|
2629 |
msgstr "Alatna traka"
|
2630 |
|
2631 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2632 |
msgid "Show Media Upload Buttons?"
|
2633 |
msgstr "Prikaži gumb za odabir datoteka?"
|
2634 |
|
2635 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2636 |
msgid "Delay initialization?"
|
2637 |
msgstr "Odgodi učitavanje?"
|
2638 |
|
2639 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2640 |
-
|
|
|
|
|
2641 |
msgstr "TinyMCE neće biti učitan dok korisnik ne klikne na polje"
|
2642 |
|
2643 |
-
#: includes/forms/form-
|
2644 |
-
|
2645 |
-
|
2646 |
-
msgstr "Uredi skup polja"
|
2647 |
|
2648 |
-
#: includes/forms/form-front.php:
|
2649 |
msgid "Validate Email"
|
2650 |
msgstr "Verificiraj email"
|
2651 |
|
2652 |
-
#: includes/forms/form-front.php:
|
2653 |
-
#: pro/options-page.php:81
|
2654 |
-
msgid "Update"
|
2655 |
-
msgstr "Ažuriraj"
|
2656 |
-
|
2657 |
-
#: includes/forms/form-front.php:104
|
2658 |
msgid "Post updated"
|
2659 |
msgstr "Objava ažurirana"
|
2660 |
|
2661 |
-
#: includes/forms/form-front.php:
|
2662 |
msgid "Spam Detected"
|
2663 |
msgstr "Spam"
|
2664 |
|
2665 |
-
#: includes/
|
2666 |
-
msgid "
|
2667 |
-
msgstr "
|
2668 |
-
|
2669 |
-
#: includes/input.php:260
|
2670 |
-
msgid "Collapse Details"
|
2671 |
-
msgstr "Sakrij detalje"
|
2672 |
-
|
2673 |
-
#: includes/input.php:261
|
2674 |
-
msgid "Validation successful"
|
2675 |
-
msgstr "Uspješna verifikacija"
|
2676 |
-
|
2677 |
-
#: includes/input.php:262 includes/validation.php:285
|
2678 |
-
#: includes/validation.php:296
|
2679 |
-
msgid "Validation failed"
|
2680 |
-
msgstr "Verifikacija nije uspjela"
|
2681 |
-
|
2682 |
-
#: includes/input.php:263
|
2683 |
-
msgid "1 field requires attention"
|
2684 |
-
msgstr "1 polje treba vašu pažnju"
|
2685 |
-
|
2686 |
-
#: includes/input.php:264
|
2687 |
-
#, php-format
|
2688 |
-
msgid "%d fields require attention"
|
2689 |
-
msgstr "Nekoliko polja treba vašu pažnje: %d"
|
2690 |
-
|
2691 |
-
#: includes/input.php:265
|
2692 |
-
msgid "Restricted"
|
2693 |
-
msgstr "Ograničen pristup"
|
2694 |
-
|
2695 |
-
#: includes/input.php:266
|
2696 |
-
msgid "Are you sure?"
|
2697 |
-
msgstr "Jeste li sigurni?"
|
2698 |
-
|
2699 |
-
#: includes/input.php:270
|
2700 |
-
msgid "Cancel"
|
2701 |
-
msgstr "Otkaži"
|
2702 |
-
|
2703 |
-
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
2704 |
-
msgid "Post"
|
2705 |
-
msgstr "Objava"
|
2706 |
|
2707 |
-
#: includes/locations
|
2708 |
-
msgid "
|
2709 |
-
msgstr "
|
2710 |
|
2711 |
-
#: includes/locations.php:
|
2712 |
-
msgid "
|
2713 |
-
msgstr "
|
2714 |
|
2715 |
-
#: includes/locations/class-acf-location-attachment.php:
|
2716 |
msgid "Attachment"
|
2717 |
msgstr "Prilog"
|
2718 |
|
2719 |
-
#: includes/locations/class-acf-location-attachment.php:
|
2720 |
-
#, php-format
|
2721 |
msgid "All %s formats"
|
2722 |
msgstr "Svi oblici %s"
|
2723 |
|
2724 |
-
#: includes/locations/class-acf-location-comment.php:
|
2725 |
msgid "Comment"
|
2726 |
msgstr "Komentar"
|
2727 |
|
2728 |
-
#: includes/locations/class-acf-location-current-user-role.php:
|
2729 |
msgid "Current User Role"
|
2730 |
msgstr "Trenutni tip korisnika"
|
2731 |
|
2732 |
-
#: includes/locations/class-acf-location-current-user-role.php:
|
2733 |
msgid "Super Admin"
|
2734 |
msgstr "Super Admin"
|
2735 |
|
2736 |
-
#: includes/locations/class-acf-location-current-user.php:
|
2737 |
msgid "Current User"
|
2738 |
msgstr "Trenutni korisnik"
|
2739 |
|
2740 |
-
#: includes/locations/class-acf-location-current-user.php:
|
2741 |
msgid "Logged in"
|
2742 |
msgstr "Prijavljen"
|
2743 |
|
2744 |
-
#: includes/locations/class-acf-location-current-user.php:
|
2745 |
msgid "Viewing front end"
|
2746 |
msgstr "Prikazuje web stranicu"
|
2747 |
|
2748 |
-
#: includes/locations/class-acf-location-current-user.php:
|
2749 |
msgid "Viewing back end"
|
2750 |
msgstr "Prikazuje administracijki dio"
|
2751 |
|
2752 |
-
#: includes/locations/class-acf-location-nav-menu-item.php:
|
2753 |
msgid "Menu Item"
|
2754 |
msgstr "Stavka izbornika"
|
2755 |
|
2756 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
2757 |
msgid "Menu"
|
2758 |
msgstr "Izbornik"
|
2759 |
|
2760 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
2761 |
msgid "Menu Locations"
|
2762 |
msgstr "Lokacije izbornika"
|
2763 |
|
2764 |
-
#: includes/locations/class-acf-location-
|
2765 |
-
msgid "Menus"
|
2766 |
-
msgstr "Izbornici"
|
2767 |
-
|
2768 |
-
#: includes/locations/class-acf-location-page-parent.php:27
|
2769 |
msgid "Page Parent"
|
2770 |
msgstr "Matična stranica"
|
2771 |
|
2772 |
-
#: includes/locations/class-acf-location-page-template.php:
|
2773 |
msgid "Page Template"
|
2774 |
msgstr "Predložak stranice"
|
2775 |
|
2776 |
-
#: includes/locations/class-acf-location-page-template.php:
|
2777 |
-
#: includes/locations/class-acf-location-post-template.php:
|
2778 |
msgid "Default Template"
|
2779 |
msgstr "Zadani predložak"
|
2780 |
|
2781 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2782 |
msgid "Page Type"
|
2783 |
msgstr "Tip stranice"
|
2784 |
|
2785 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2786 |
msgid "Front Page"
|
2787 |
msgstr "Početna stranica"
|
2788 |
|
2789 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2790 |
msgid "Posts Page"
|
2791 |
msgstr "Stranica za objave"
|
2792 |
|
2793 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2794 |
msgid "Top Level Page (no parent)"
|
2795 |
msgstr "Matična stranica (Nije podstranica)"
|
2796 |
|
2797 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2798 |
msgid "Parent Page (has children)"
|
2799 |
msgstr "Matičan stranica (Ima podstranice)"
|
2800 |
|
2801 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2802 |
msgid "Child Page (has parent)"
|
2803 |
msgstr "Pod-stranica (Ima matičnu stranicu)"
|
2804 |
|
2805 |
-
#: includes/locations/class-acf-location-post-category.php:
|
2806 |
msgid "Post Category"
|
2807 |
msgstr "Kategorija objave"
|
2808 |
|
2809 |
-
#: includes/locations/class-acf-location-post-format.php:
|
2810 |
msgid "Post Format"
|
2811 |
msgstr "Format objave"
|
2812 |
|
2813 |
-
#: includes/locations/class-acf-location-post-status.php:
|
2814 |
msgid "Post Status"
|
2815 |
msgstr "Status objave"
|
2816 |
|
2817 |
-
#: includes/locations/class-acf-location-post-taxonomy.php:
|
2818 |
msgid "Post Taxonomy"
|
2819 |
msgstr "Taksonomija objave"
|
2820 |
|
2821 |
-
#: includes/locations/class-acf-location-post-template.php:
|
2822 |
msgid "Post Template"
|
2823 |
msgstr "Predložak stranice"
|
2824 |
|
2825 |
-
#: includes/locations/class-acf-location-
|
2826 |
-
msgid "
|
2827 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2828 |
|
2829 |
-
#: includes/
|
2830 |
-
msgid "
|
2831 |
-
msgstr "
|
2832 |
|
2833 |
-
#: includes/
|
2834 |
-
|
2835 |
-
|
|
|
|
|
|
|
|
|
|
|
2836 |
|
2837 |
-
#: includes/
|
2838 |
-
|
2839 |
-
|
|
|
2840 |
|
2841 |
-
#: includes/
|
2842 |
-
|
2843 |
-
|
|
|
|
|
2844 |
|
2845 |
-
#: includes/
|
2846 |
-
|
2847 |
-
|
|
|
|
|
|
|
2848 |
|
2849 |
-
#: includes/
|
2850 |
-
|
2851 |
-
|
2852 |
-
msgstr "Uredi"
|
2853 |
|
2854 |
-
#: includes/
|
2855 |
-
|
2856 |
-
msgid "
|
2857 |
-
|
|
|
|
|
2858 |
|
2859 |
-
#: includes/
|
2860 |
-
|
2861 |
-
|
2862 |
-
msgstr "%s je obavezno"
|
2863 |
|
2864 |
-
|
2865 |
-
|
2866 |
-
|
2867 |
-
msgstr "Advanced Custom Fields PRO"
|
2868 |
|
2869 |
-
#:
|
2870 |
-
|
2871 |
-
|
|
|
|
|
2872 |
|
2873 |
-
#:
|
2874 |
-
#, php-format
|
2875 |
msgid ""
|
2876 |
-
"
|
2877 |
-
"Custom Field Group</a>"
|
2878 |
msgstr ""
|
2879 |
-
"Niste dodali nijedan skup polja na ovu stranicu, <a href=“%s”>Dodaj skup "
|
2880 |
-
"polja</a>"
|
2881 |
-
|
2882 |
-
#: pro/admin/admin-settings-updates.php:78
|
2883 |
-
msgid "<b>Error</b>. Could not connect to update server"
|
2884 |
-
msgstr "<b>Greška</b>. Greška prilikom spajanja na server"
|
2885 |
|
2886 |
-
#:
|
2887 |
-
|
2888 |
-
msgid "
|
2889 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2890 |
|
2891 |
-
#: pro/admin/views/html-settings-updates.php:
|
2892 |
msgid "Deactivate License"
|
2893 |
msgstr "Deaktiviraj licencu"
|
2894 |
|
2895 |
-
#: pro/admin/views/html-settings-updates.php:
|
2896 |
msgid "Activate License"
|
2897 |
msgstr "Aktiviraj licencu"
|
2898 |
|
2899 |
-
#: pro/admin/views/html-settings-updates.php:
|
2900 |
msgid "License Information"
|
2901 |
msgstr "Informacije o licenci"
|
2902 |
|
2903 |
-
#: pro/admin/views/html-settings-updates.php:
|
2904 |
-
#, php-format
|
2905 |
msgid ""
|
2906 |
"To unlock updates, please enter your license key below. If you don't have a "
|
2907 |
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
@@ -2911,342 +3421,391 @@ msgstr ""
|
|
2911 |
"Ukoliko ne posjedujete licencu, molimo posjetite <a href=“%s” "
|
2912 |
"target=“_blank”>detalji i cijene</a>."
|
2913 |
|
2914 |
-
#: pro/admin/views/html-settings-updates.php:
|
2915 |
msgid "License Key"
|
2916 |
msgstr "Licenca"
|
2917 |
|
2918 |
-
#: pro/admin/views/html-settings-updates.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2919 |
msgid "Update Information"
|
2920 |
msgstr "Ažuriraj informacije"
|
2921 |
|
2922 |
-
#: pro/admin/views/html-settings-updates.php:
|
2923 |
msgid "Current Version"
|
2924 |
msgstr "Trenutna vezija"
|
2925 |
|
2926 |
-
#: pro/admin/views/html-settings-updates.php:
|
2927 |
msgid "Latest Version"
|
2928 |
msgstr "Posljednja dostupna verzija"
|
2929 |
|
2930 |
-
#: pro/admin/views/html-settings-updates.php:
|
2931 |
msgid "Update Available"
|
2932 |
msgstr "Dostupna nadogradnja"
|
2933 |
|
2934 |
-
#: pro/admin/views/html-settings-updates.php:
|
|
|
|
|
|
|
|
|
2935 |
msgid "Update Plugin"
|
2936 |
msgstr "Nadogradi dodatak"
|
2937 |
|
2938 |
-
#: pro/admin/views/html-settings-updates.php:
|
2939 |
-
|
|
|
|
|
2940 |
msgstr "Unesite licencu kako bi mogli izvršiti nadogradnju"
|
2941 |
|
2942 |
-
#: pro/admin/views/html-settings-updates.php:
|
2943 |
-
msgid "
|
2944 |
-
msgstr "
|
2945 |
|
2946 |
-
#: pro/admin/views/html-settings-updates.php:
|
2947 |
msgid "Upgrade Notice"
|
2948 |
msgstr "Obavijest od nadogradnjama"
|
2949 |
|
2950 |
-
|
2951 |
-
|
2952 |
-
msgid "Clone"
|
2953 |
-
msgstr "Kloniraj"
|
2954 |
-
|
2955 |
-
#: pro/fields/class-acf-field-clone.php:812
|
2956 |
-
msgid "Select one or more fields you wish to clone"
|
2957 |
-
msgstr "Odaberite jedno ili više polja koja želite klonirati"
|
2958 |
-
|
2959 |
-
#: pro/fields/class-acf-field-clone.php:829
|
2960 |
-
msgid "Display"
|
2961 |
-
msgstr "Prikaz"
|
2962 |
|
2963 |
-
|
2964 |
-
msgid "
|
2965 |
-
|
|
|
|
|
|
|
2966 |
|
2967 |
-
|
2968 |
-
|
2969 |
-
msgstr ""
|
2970 |
-
"Skupno (Prikazuje odabrana polja kao dodatni skup unutar trenutnog polja)"
|
2971 |
|
2972 |
-
|
2973 |
-
|
2974 |
-
msgstr "Zamjena (Prikazuje odabrana polja umjesto trenutnog polja)"
|
2975 |
|
2976 |
-
#: pro/fields/class-acf-field-clone.php:857
|
2977 |
#, php-format
|
2978 |
-
msgid "
|
2979 |
-
|
|
|
|
|
|
|
2980 |
|
2981 |
-
|
2982 |
-
|
2983 |
-
msgstr "Dodaj prefiks ispred oznake"
|
2984 |
|
2985 |
-
#: pro/fields/class-acf-field-clone.php:871
|
2986 |
#, php-format
|
2987 |
-
msgid "
|
2988 |
-
msgstr "
|
2989 |
|
2990 |
-
|
2991 |
-
|
2992 |
-
msgstr "Dodaj prefiks ispred naziva polja"
|
2993 |
|
2994 |
-
|
2995 |
-
|
2996 |
-
msgstr "Nepoznato polje"
|
2997 |
|
2998 |
-
|
2999 |
-
|
3000 |
-
msgstr "Nepoznat skup polja"
|
3001 |
|
3002 |
-
#: pro/fields/class-acf-field-clone.php:1035
|
3003 |
#, php-format
|
3004 |
-
msgid "
|
3005 |
-
msgstr "
|
3006 |
|
3007 |
-
|
3008 |
-
|
3009 |
-
#: pro/fields/class-acf-field-repeater.php:470
|
3010 |
-
msgid "Add Row"
|
3011 |
-
msgstr "Dodaj red"
|
3012 |
|
3013 |
-
|
3014 |
-
|
3015 |
-
msgstr "raspored"
|
3016 |
|
3017 |
-
|
3018 |
-
|
3019 |
-
msgstr "rasporedi"
|
3020 |
|
3021 |
-
|
3022 |
-
|
3023 |
-
msgstr "ukloni {layout}?"
|
3024 |
|
3025 |
-
|
3026 |
-
|
3027 |
-
msgstr "Polje mora sadržavati najmanje {min} {identifier}"
|
3028 |
|
3029 |
-
|
3030 |
-
|
3031 |
-
msgstr "Polje je ograničeno na najviše {max} {identifier}"
|
3032 |
|
3033 |
-
|
3034 |
-
|
3035 |
-
msgstr "Polje mora sadržavati najmanje {min} {label} {identifier}"
|
3036 |
|
3037 |
-
|
3038 |
-
|
3039 |
-
msgstr "Polje {label} smije sadržavati najviše {max} {identifier}"
|
3040 |
|
3041 |
-
|
3042 |
-
|
3043 |
-
|
|
|
|
|
|
|
3044 |
|
3045 |
-
|
3046 |
-
|
3047 |
-
msgstr "{required} {label} {identifier} obavezno (najmanje {min})"
|
3048 |
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
|
|
|
|
3052 |
|
3053 |
-
#: pro/fields/class-acf-field-flexible-content.php:273
|
3054 |
#, php-format
|
3055 |
-
msgid "
|
3056 |
-
|
|
|
|
|
|
|
|
|
3057 |
|
3058 |
-
|
3059 |
-
|
3060 |
-
msgstr "Dodaj razmještaj"
|
3061 |
|
3062 |
-
|
3063 |
-
|
3064 |
-
msgstr "Ukloni razmještaj"
|
3065 |
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
|
|
|
|
|
|
3070 |
|
3071 |
-
|
3072 |
-
|
3073 |
-
msgstr "Presloži polja povlačenjem"
|
3074 |
|
3075 |
-
|
3076 |
-
|
3077 |
-
|
|
|
|
|
|
|
|
|
3078 |
|
3079 |
-
|
3080 |
-
|
3081 |
-
msgstr "Obriši"
|
3082 |
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
|
|
|
|
|
|
|
|
|
|
3086 |
|
3087 |
-
|
3088 |
-
|
3089 |
-
msgstr "Dodaj novi razmještaj"
|
3090 |
|
3091 |
-
|
3092 |
-
|
3093 |
-
msgstr "Minimum"
|
3094 |
|
3095 |
-
|
3096 |
-
|
3097 |
-
|
|
|
|
|
|
|
3098 |
|
3099 |
-
|
3100 |
-
|
3101 |
-
|
3102 |
-
|
|
|
|
|
|
|
|
|
|
|
3103 |
|
3104 |
-
|
3105 |
-
|
3106 |
-
msgstr "Najmanje"
|
3107 |
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
|
|
|
|
|
|
|
|
|
|
3111 |
|
3112 |
-
|
3113 |
-
msgid "
|
3114 |
-
msgstr "
|
3115 |
|
3116 |
-
|
3117 |
-
|
3118 |
-
msgstr "Već ste dodali najviše dozovoljenih polja"
|
3119 |
|
3120 |
-
|
3121 |
-
msgid "
|
3122 |
-
|
|
|
|
|
|
|
|
|
3123 |
|
3124 |
-
|
3125 |
-
msgid "
|
3126 |
-
|
|
|
|
|
|
|
|
|
|
|
3127 |
|
3128 |
-
|
3129 |
-
|
3130 |
-
msgstr "Alternativni tekst"
|
3131 |
|
3132 |
-
|
3133 |
-
|
3134 |
-
msgstr "Dodaj u galeriju"
|
3135 |
|
3136 |
-
|
3137 |
-
|
3138 |
-
msgstr "Grupne akcije"
|
3139 |
|
3140 |
-
|
3141 |
-
|
3142 |
-
msgstr "Razvrstaj po datumu dodavanja"
|
3143 |
|
3144 |
-
|
3145 |
-
|
3146 |
-
|
|
|
3147 |
|
3148 |
-
|
3149 |
-
|
3150 |
-
msgstr "Razvrstaj po naslovu"
|
3151 |
|
3152 |
-
|
3153 |
-
|
3154 |
-
msgstr "Obrnuti redosljed"
|
3155 |
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
|
|
3159 |
|
3160 |
-
|
3161 |
-
|
3162 |
-
msgstr "Minimalni odabri"
|
3163 |
|
3164 |
-
|
3165 |
-
|
3166 |
-
msgstr "Maksimalni odabir"
|
3167 |
|
3168 |
-
|
3169 |
-
|
3170 |
-
msgstr "Umetni"
|
3171 |
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
|
|
3175 |
|
3176 |
-
|
3177 |
-
|
3178 |
-
msgstr "Umetni na kraj"
|
3179 |
|
3180 |
-
|
3181 |
-
|
3182 |
-
msgstr "Umetni na početak"
|
3183 |
|
3184 |
-
|
3185 |
-
|
3186 |
-
msgstr "Minimalni broj redova je već odabran ({min})"
|
3187 |
|
3188 |
-
|
3189 |
-
|
3190 |
-
msgstr "Maksimalni broj redova je već odabran ({max})"
|
3191 |
|
3192 |
-
|
3193 |
-
|
3194 |
-
|
|
|
|
|
|
|
3195 |
|
3196 |
-
|
3197 |
-
|
3198 |
-
msgstr "Ukloni red"
|
3199 |
|
3200 |
-
|
3201 |
-
|
3202 |
-
|
|
|
3203 |
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
|
|
3207 |
|
3208 |
-
|
3209 |
-
|
3210 |
-
msgstr "Minimalno redova"
|
3211 |
|
3212 |
-
|
3213 |
-
|
3214 |
-
msgstr "
|
|
|
3215 |
|
3216 |
-
|
3217 |
-
|
3218 |
-
msgstr "Ne postoji stranica sa postavkama"
|
3219 |
|
3220 |
-
|
3221 |
-
|
3222 |
-
|
|
|
|
|
3223 |
|
3224 |
-
|
3225 |
-
|
3226 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3227 |
|
3228 |
-
#: pro/updates.php:97
|
3229 |
#, php-format
|
3230 |
-
msgid ""
|
3231 |
-
|
3232 |
-
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
3233 |
-
"\">details & pricing</a>."
|
3234 |
-
msgstr ""
|
3235 |
-
"Da bi omogućili automatsko ažuriranje, molimo unesite licencu na stranici <a "
|
3236 |
-
"href=“%s”>ažuriranja</a>. Ukoliko nemate licencu, pogledajte <a "
|
3237 |
-
"href=“%s”>opcije i cijene</a>."
|
3238 |
|
3239 |
-
|
3240 |
-
|
3241 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3242 |
|
3243 |
-
|
3244 |
-
|
3245 |
-
msgstr "Elliot Condon"
|
3246 |
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3250 |
|
3251 |
#~ msgid "Getting Started"
|
3252 |
#~ msgstr "Kako početi"
|
@@ -3284,9 +3843,6 @@ msgstr "http://www.elliotcondon.com/"
|
|
3284 |
#~ msgid "Generate export code"
|
3285 |
#~ msgstr "Stvori kod za izvoz"
|
3286 |
|
3287 |
-
#~ msgid "Import"
|
3288 |
-
#~ msgstr "Uvoz"
|
3289 |
-
|
3290 |
#~ msgid "Term meta upgrade not possible (termmeta table does not exist)"
|
3291 |
#~ msgstr ""
|
3292 |
#~ "Nije moguće dovrišti nadogradnju tablice 'termmeta', tablica ne postoji u "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields\n"
|
4 |
+
"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2022-02-10 13:29+0000\n"
|
7 |
+
"Last-Translator: Delicious Brains <support@advancedcustomfields.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: hr_HR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
15 |
+
"X-Generator: Poedit 3.0.1\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
18 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-Basepath: ..\n"
|
21 |
"X-Poedit-WPHeader: acf.php\n"
|
|
|
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
+
#: acf.php:3, pro/acf-pro.php:27
|
26 |
+
msgid "Advanced Custom Fields PRO"
|
27 |
+
msgstr "Advanced Custom Fields PRO"
|
28 |
+
|
29 |
+
#: acf.php:4, acf.php:8
|
30 |
+
#, fuzzy
|
31 |
+
#| msgid "https://www.advancedcustomfields.com/"
|
32 |
+
msgid "https://www.advancedcustomfields.com"
|
33 |
+
msgstr "https://www.advancedcustomfields.com/"
|
34 |
+
|
35 |
+
#: acf.php:5
|
36 |
+
#, fuzzy
|
37 |
+
#| msgid ""
|
38 |
+
#| "Customise WordPress with powerful, professional and intuitive fields."
|
39 |
+
msgid "Customize WordPress with powerful, professional and intuitive fields."
|
40 |
+
msgstr ""
|
41 |
+
"Prilagodite WordPress sa moćnim, profesionalnim i intuitivnim dodatnim "
|
42 |
+
"poljima."
|
43 |
+
|
44 |
+
#: acf.php:7
|
45 |
+
msgid "Delicious Brains"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: acf.php:70
|
49 |
msgid "Advanced Custom Fields"
|
50 |
msgstr "Advanced Custom Fields"
|
51 |
|
52 |
+
#: acf.php:359, includes/admin/admin.php:50, includes/admin/admin.php:50
|
53 |
msgid "Field Groups"
|
54 |
msgstr "Grupe polja"
|
55 |
|
56 |
+
#: acf.php:360
|
57 |
msgid "Field Group"
|
58 |
msgstr "Grupa polja"
|
59 |
|
60 |
+
#: acf.php:361, acf.php:395, includes/admin/admin.php:51,
|
61 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
62 |
msgid "Add New"
|
63 |
msgstr "Dodaj"
|
64 |
|
65 |
+
#: acf.php:362
|
66 |
msgid "Add New Field Group"
|
67 |
msgstr "Dodaj novo polje"
|
68 |
|
69 |
+
#: acf.php:363
|
70 |
msgid "Edit Field Group"
|
71 |
msgstr "Uredi polje"
|
72 |
|
73 |
+
#: acf.php:364
|
74 |
msgid "New Field Group"
|
75 |
msgstr "Novo polje"
|
76 |
|
77 |
+
#: acf.php:365
|
78 |
msgid "View Field Group"
|
79 |
msgstr "Pregledaj polje"
|
80 |
|
81 |
+
#: acf.php:366
|
82 |
msgid "Search Field Groups"
|
83 |
msgstr "Pretraži polja"
|
84 |
|
85 |
+
#: acf.php:367
|
86 |
msgid "No Field Groups found"
|
87 |
msgstr "Niste dodali nijedno polje"
|
88 |
|
89 |
+
#: acf.php:368
|
90 |
msgid "No Field Groups found in Trash"
|
91 |
msgstr "Nije pronađena nijedna stranica"
|
92 |
|
93 |
+
#: acf.php:393, includes/admin/admin-field-group.php:233,
|
94 |
+
#: includes/admin/admin-field-groups.php:266,
|
95 |
+
#: pro/fields/class-acf-field-clone.php:814
|
|
|
96 |
msgid "Fields"
|
97 |
msgstr "Polja"
|
98 |
|
99 |
+
#: acf.php:394
|
100 |
msgid "Field"
|
101 |
msgstr "Polje"
|
102 |
|
103 |
+
#: acf.php:396
|
104 |
msgid "Add New Field"
|
105 |
msgstr "Dodaj polje"
|
106 |
|
107 |
+
#: acf.php:397
|
108 |
msgid "Edit Field"
|
109 |
msgstr "Uredi polje"
|
110 |
|
111 |
+
#: acf.php:398, includes/admin/views/field-group-fields.php:56
|
|
|
112 |
msgid "New Field"
|
113 |
msgstr "Dodaj polje"
|
114 |
|
115 |
+
#: acf.php:399
|
116 |
msgid "View Field"
|
117 |
msgstr "Pregledaj polje"
|
118 |
|
119 |
+
#: acf.php:400
|
120 |
msgid "Search Fields"
|
121 |
msgstr "Pretraži polja"
|
122 |
|
123 |
+
#: acf.php:401
|
124 |
msgid "No Fields found"
|
125 |
msgstr "Nije pronađeno nijedno polje"
|
126 |
|
127 |
+
#: acf.php:402
|
128 |
msgid "No Fields found in Trash"
|
129 |
msgstr "Nije pronađeno nijedno polje u smeću"
|
130 |
|
131 |
+
#: acf.php:440, includes/admin/admin-field-group.php:385,
|
132 |
+
#: includes/admin/admin-field-groups.php:230
|
133 |
+
#, fuzzy
|
134 |
+
#| msgid "Table"
|
135 |
+
msgctxt "post status"
|
136 |
+
msgid "Disabled"
|
137 |
+
msgstr "Tablica"
|
138 |
|
139 |
+
#: acf.php:445
|
140 |
+
#, fuzzy
|
141 |
+
#| msgid "Active <span class=\"count\">(%s)</span>"
|
142 |
+
#| msgid_plural "Active <span class=\"count\">(%s)</span>"
|
143 |
+
msgid "Disabled <span class=\"count\">(%s)</span>"
|
144 |
+
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
145 |
+
msgstr[0] "Aktivno <span class=“count”>(%s)</span>"
|
146 |
+
msgstr[1] "Aktivno <span class=“count”>(%s)</span>"
|
147 |
+
msgstr[2] "Aktivno <span class=“count”>(%s)</span>"
|
|
|
|
|
|
|
|
|
148 |
|
149 |
+
#: acf.php:495
|
150 |
+
msgid ""
|
151 |
+
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
152 |
+
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
153 |
+
msgstr ""
|
154 |
|
155 |
+
#: acf.php:497
|
156 |
+
msgid ""
|
157 |
+
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
158 |
+
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
159 |
+
msgstr ""
|
160 |
|
161 |
+
#: includes/acf-field-functions.php:841,
|
162 |
+
#: includes/admin/admin-field-group.php:171
|
163 |
+
#, fuzzy
|
164 |
+
#| msgid "(no title)"
|
165 |
+
msgid "(no label)"
|
166 |
+
msgstr "(bez naziva)"
|
167 |
|
168 |
+
#: includes/acf-field-group-functions.php:846,
|
169 |
+
#: includes/admin/admin-field-group.php:173
|
170 |
+
msgid "copy"
|
171 |
+
msgstr "kopiraj"
|
172 |
|
173 |
+
#: includes/acf-value-functions.php:353
|
174 |
+
msgid ""
|
175 |
+
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
176 |
+
"field values before ACF has been initialized. This is not supported and can "
|
177 |
+
"result in malformed or missing data. <a href=\"%2$s\" target=\"_blank"
|
178 |
+
"\">Learn how to fix this</a>."
|
179 |
+
msgstr ""
|
180 |
|
181 |
+
#: includes/acf-wp-functions.php:41
|
182 |
+
#, fuzzy
|
183 |
+
#| msgid "Post"
|
184 |
+
msgid "Posts"
|
185 |
+
msgstr "Objava"
|
186 |
|
187 |
+
#: includes/acf-wp-functions.php:54
|
188 |
+
#, fuzzy
|
189 |
+
#| msgid "Taxonomy"
|
190 |
+
msgid "Taxonomies"
|
191 |
+
msgstr "Taksonomija"
|
192 |
|
193 |
+
#: includes/acf-wp-functions.php:59
|
194 |
+
#, fuzzy
|
195 |
+
#| msgid "Attachment"
|
196 |
+
msgid "Attachments"
|
197 |
+
msgstr "Prilog"
|
198 |
|
199 |
+
#: includes/acf-wp-functions.php:63,
|
200 |
+
#: includes/admin/views/field-group-options.php:144
|
201 |
+
msgid "Comments"
|
202 |
+
msgstr "Komentari"
|
203 |
|
204 |
+
#: includes/acf-wp-functions.php:67
|
205 |
+
#, fuzzy
|
206 |
+
#| msgid "Widget"
|
207 |
+
msgid "Widgets"
|
208 |
+
msgstr "Widget"
|
209 |
|
210 |
+
#: includes/acf-wp-functions.php:71,
|
211 |
+
#: includes/locations/class-acf-location-nav-menu.php:89
|
212 |
+
msgid "Menus"
|
213 |
+
msgstr "Izbornici"
|
214 |
|
215 |
+
#: includes/acf-wp-functions.php:75
|
216 |
+
#, fuzzy
|
217 |
+
#| msgid "Menu Item"
|
218 |
+
msgid "Menu items"
|
219 |
+
msgstr "Stavka izbornika"
|
220 |
|
221 |
+
#: includes/acf-wp-functions.php:79
|
222 |
+
#, fuzzy
|
223 |
+
#| msgid "User"
|
224 |
+
msgid "Users"
|
225 |
+
msgstr "Korisnik"
|
226 |
|
227 |
+
#: includes/acf-wp-functions.php:83, pro/options-page.php:47
|
228 |
+
msgid "Options"
|
229 |
+
msgstr "Postavke"
|
|
|
|
|
|
|
|
|
|
|
230 |
|
231 |
+
#: includes/acf-wp-functions.php:87
|
232 |
+
#, fuzzy
|
233 |
+
#| msgid "Block"
|
234 |
+
msgid "Blocks"
|
235 |
+
msgstr "Blok"
|
236 |
|
237 |
+
#: includes/assets.php:348
|
238 |
+
msgid "Are you sure?"
|
239 |
+
msgstr "Jeste li sigurni?"
|
240 |
|
241 |
+
#: includes/assets.php:349, includes/fields/class-acf-field-true_false.php:80,
|
242 |
+
#: includes/fields/class-acf-field-true_false.php:176,
|
243 |
+
#: pro/admin/views/html-settings-updates.php:104
|
244 |
+
msgid "Yes"
|
245 |
+
msgstr "Da"
|
246 |
|
247 |
+
#: includes/assets.php:350, includes/fields/class-acf-field-true_false.php:83,
|
248 |
+
#: includes/fields/class-acf-field-true_false.php:193,
|
249 |
+
#: pro/admin/views/html-settings-updates.php:116
|
250 |
+
msgid "No"
|
251 |
+
msgstr "Ne"
|
252 |
|
253 |
+
#: includes/assets.php:351, includes/fields/class-acf-field-file.php:159,
|
254 |
+
#: includes/fields/class-acf-field-image.php:139,
|
255 |
+
#: includes/fields/class-acf-field-link.php:142,
|
256 |
+
#: pro/fields/class-acf-field-gallery.php:336,
|
257 |
+
#: pro/fields/class-acf-field-gallery.php:491
|
258 |
+
msgid "Remove"
|
259 |
+
msgstr "Ukloni"
|
260 |
+
|
261 |
+
#: includes/assets.php:352
|
262 |
+
msgid "Cancel"
|
263 |
+
msgstr "Otkaži"
|
264 |
|
265 |
+
#: includes/assets.php:362
|
266 |
msgid "The changes you made will be lost if you navigate away from this page"
|
267 |
msgstr ""
|
268 |
"Izmjene koje ste napravili bit će izgubljene ukoliko napustite ovu stranicu"
|
269 |
|
270 |
+
#: includes/assets.php:365
|
271 |
+
msgid "Validation successful"
|
272 |
+
msgstr "Uspješna verifikacija"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
|
274 |
+
#: includes/assets.php:366, includes/validation.php:286,
|
275 |
+
#: includes/validation.php:296
|
276 |
+
msgid "Validation failed"
|
277 |
+
msgstr "Verifikacija nije uspjela"
|
|
|
278 |
|
279 |
+
#: includes/assets.php:367
|
280 |
+
msgid "1 field requires attention"
|
281 |
+
msgstr "1 polje treba vašu pažnju"
|
282 |
|
283 |
+
#: includes/assets.php:368
|
284 |
+
msgid "%d fields require attention"
|
285 |
+
msgstr "Nekoliko polja treba vašu pažnje: %d"
|
286 |
|
287 |
+
#: includes/assets.php:371, includes/forms/form-comment.php:160,
|
288 |
+
#: pro/admin/admin-options-page.php:309
|
289 |
+
msgid "Edit field group"
|
290 |
+
msgstr "Uredi skup polja"
|
291 |
|
292 |
+
#: includes/fields.php:313
|
293 |
+
msgid "Field type does not exist"
|
294 |
+
msgstr "Tip polja ne postoji"
|
|
|
|
|
|
|
|
|
295 |
|
296 |
+
#: includes/fields.php:313
|
297 |
+
msgid "Unknown"
|
298 |
+
msgstr "Nepoznato polje"
|
|
|
299 |
|
300 |
+
#: includes/fields.php:354
|
301 |
+
msgid "Basic"
|
302 |
+
msgstr "Osnovno"
|
|
|
|
|
|
|
|
|
303 |
|
304 |
+
#: includes/fields.php:355, includes/forms/form-front.php:49
|
305 |
+
msgid "Content"
|
306 |
+
msgstr "Sadržaj"
|
|
|
307 |
|
308 |
+
#: includes/fields.php:356
|
309 |
+
msgid "Choice"
|
310 |
+
msgstr "Odabir"
|
|
|
|
|
|
|
|
|
311 |
|
312 |
+
#: includes/fields.php:357
|
313 |
+
msgid "Relational"
|
314 |
+
msgstr "Relacijski"
|
|
|
315 |
|
316 |
+
#: includes/fields.php:358
|
317 |
+
msgid "jQuery"
|
318 |
+
msgstr "jQuery"
|
|
|
319 |
|
320 |
+
#: includes/fields.php:359,
|
321 |
+
#: includes/fields/class-acf-field-button-group.php:181,
|
322 |
+
#: includes/fields/class-acf-field-checkbox.php:377,
|
323 |
+
#: includes/fields/class-acf-field-group.php:462,
|
324 |
+
#: includes/fields/class-acf-field-radio.php:256,
|
325 |
+
#: pro/fields/class-acf-field-clone.php:850,
|
326 |
+
#: pro/fields/class-acf-field-flexible-content.php:549,
|
327 |
+
#: pro/fields/class-acf-field-flexible-content.php:604,
|
328 |
+
#: pro/fields/class-acf-field-repeater.php:451
|
329 |
+
msgid "Layout"
|
330 |
+
msgstr "Format"
|
331 |
|
332 |
+
#: includes/locations.php:25
|
333 |
+
#, fuzzy
|
334 |
+
#| msgid "Field type does not exist"
|
335 |
+
msgid "Class \"%s\" does not exist."
|
336 |
+
msgstr "Tip polja ne postoji"
|
337 |
|
338 |
+
#: includes/locations.php:36
|
339 |
+
msgid "Location type \"%s\" is already registered."
|
|
|
340 |
msgstr ""
|
|
|
|
|
341 |
|
342 |
+
#: includes/locations.php:99, includes/locations/class-acf-location-post.php:22
|
343 |
+
msgid "Post"
|
344 |
+
msgstr "Objava"
|
|
|
|
|
345 |
|
346 |
+
#: includes/locations.php:100,
|
347 |
+
#: includes/locations/class-acf-location-page.php:22
|
348 |
+
msgid "Page"
|
349 |
+
msgstr "Stranice"
|
350 |
|
351 |
+
#: includes/locations.php:101, includes/fields/class-acf-field-user.php:20
|
352 |
+
msgid "User"
|
353 |
+
msgstr "Korisnik"
|
354 |
|
355 |
+
#: includes/locations.php:102
|
356 |
+
msgid "Forms"
|
357 |
+
msgstr "Forme"
|
358 |
|
359 |
+
#: includes/media.php:48, includes/fields/class-acf-field-select.php:255
|
360 |
+
msgctxt "verb"
|
361 |
+
msgid "Select"
|
362 |
+
msgstr "Odaberi"
|
363 |
|
364 |
+
#: includes/media.php:49
|
365 |
+
msgctxt "verb"
|
366 |
+
msgid "Edit"
|
367 |
+
msgstr "Uredi"
|
368 |
|
369 |
+
#: includes/media.php:50
|
370 |
+
msgctxt "verb"
|
371 |
+
msgid "Update"
|
372 |
+
msgstr "Ažuriraj"
|
373 |
|
374 |
+
#: includes/media.php:51
|
375 |
+
msgid "Uploaded to this post"
|
376 |
+
msgstr "Postavljeno uz ovu objavu"
|
|
|
377 |
|
378 |
+
#: includes/media.php:52
|
379 |
+
msgid "Expand Details"
|
380 |
+
msgstr "Prošireni prikaz"
|
381 |
|
382 |
+
#: includes/media.php:53
|
383 |
+
msgid "Collapse Details"
|
384 |
+
msgstr "Sakrij detalje"
|
|
|
|
|
|
|
385 |
|
386 |
+
#: includes/media.php:54
|
387 |
+
msgid "Restricted"
|
388 |
+
msgstr "Ograničen pristup"
|
|
|
|
|
389 |
|
390 |
+
#: includes/media.php:55, includes/fields/class-acf-field-image.php:67
|
391 |
+
msgid "All images"
|
392 |
+
msgstr "Sve slike"
|
|
|
393 |
|
394 |
+
#: includes/validation.php:364
|
395 |
+
msgid "%s value is required"
|
396 |
+
msgstr "%s je obavezno"
|
397 |
|
398 |
+
#: pro/blocks.php:37
|
399 |
+
#, fuzzy
|
400 |
+
#| msgid "%s value is required"
|
401 |
+
msgid "Block type name is required."
|
402 |
+
msgstr "%s je obavezno"
|
403 |
|
404 |
+
#: pro/blocks.php:44
|
405 |
+
msgid "Block type \"%s\" is already registered."
|
406 |
+
msgstr ""
|
407 |
|
408 |
+
#: pro/blocks.php:495
|
409 |
+
msgid "Switch to Edit"
|
410 |
+
msgstr ""
|
411 |
|
412 |
+
#: pro/blocks.php:496
|
413 |
+
msgid "Switch to Preview"
|
414 |
+
msgstr ""
|
|
|
415 |
|
416 |
+
#: pro/blocks.php:497
|
417 |
+
msgid "Change content alignment"
|
418 |
+
msgstr ""
|
|
|
419 |
|
420 |
+
#. translators: %s: Block type title
|
421 |
+
#: pro/blocks.php:500
|
422 |
+
#, fuzzy
|
423 |
+
#| msgid "Settings"
|
424 |
+
msgid "%s settings"
|
425 |
+
msgstr "Postavke"
|
426 |
|
427 |
+
#: pro/options-page.php:77, includes/forms/form-front.php:106,
|
428 |
+
#: pro/fields/class-acf-field-gallery.php:523
|
429 |
+
msgid "Update"
|
430 |
+
msgstr "Ažuriraj"
|
431 |
|
432 |
+
#: pro/options-page.php:78
|
433 |
+
msgid "Options Updated"
|
434 |
+
msgstr "Postavke spremljene"
|
435 |
|
436 |
+
#: pro/updates.php:99
|
437 |
+
#, fuzzy
|
438 |
+
#| msgid ""
|
439 |
+
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
440 |
+
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
441 |
+
#| "\"%s\">details & pricing</a>."
|
442 |
+
msgid ""
|
443 |
+
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
444 |
+
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
445 |
+
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
446 |
+
msgstr ""
|
447 |
+
"Da bi omogućili automatsko ažuriranje, molimo unesite licencu na stranici <a "
|
448 |
+
"href=“%s”>ažuriranja</a>. Ukoliko nemate licencu, pogledajte <a "
|
449 |
+
"href=“%s”>opcije i cijene</a>."
|
450 |
|
451 |
+
#: pro/updates.php:159
|
452 |
+
msgid ""
|
453 |
+
"<b>ACF Activation Error</b>. Your defined license key has changed, but an "
|
454 |
+
"error occurred when deactivating your old licence"
|
455 |
+
msgstr ""
|
456 |
|
457 |
+
#: pro/updates.php:154
|
458 |
+
msgid ""
|
459 |
+
"<b>ACF Activation Error</b>. Your defined license key has changed, but an "
|
460 |
+
"error occurred when connecting to activation server"
|
461 |
+
msgstr ""
|
462 |
|
463 |
+
#: pro/updates.php:192
|
464 |
+
msgid "<b>ACF Activation Error</b>"
|
465 |
+
msgstr ""
|
466 |
|
467 |
+
#: pro/updates.php:187
|
468 |
+
#, fuzzy
|
469 |
+
#| msgid "<b>Error</b>. Could not connect to update server"
|
470 |
+
msgid ""
|
471 |
+
"<b>ACF Activation Error</b>. An error occurred when connecting to activation "
|
472 |
+
"server"
|
473 |
+
msgstr "<b>Greška</b>. Greška prilikom spajanja na server"
|
474 |
|
475 |
+
#: pro/updates.php:279, pro/admin/views/html-settings-updates.php:117
|
476 |
+
msgid "Check Again"
|
477 |
+
msgstr "Provjeri ponovno"
|
478 |
|
479 |
+
#: pro/updates.php:561
|
480 |
+
#, fuzzy
|
481 |
+
#| msgid "<b>Error</b>. Could not connect to update server"
|
482 |
+
msgid "<b>ACF Activation Error</b>. Could not connect to activation server"
|
483 |
+
msgstr "<b>Greška</b>. Greška prilikom spajanja na server"
|
484 |
|
485 |
+
#: includes/admin/admin-field-group.php:84,
|
486 |
+
#: includes/admin/admin-field-group.php:85,
|
487 |
+
#: includes/admin/admin-field-group.php:87
|
488 |
+
msgid "Field group updated."
|
489 |
+
msgstr "Skup polja ažuriran."
|
490 |
|
491 |
+
#: includes/admin/admin-field-group.php:86
|
492 |
+
msgid "Field group deleted."
|
493 |
+
msgstr "Skup polja izbrisan."
|
|
|
|
|
|
|
|
|
494 |
|
495 |
+
#: includes/admin/admin-field-group.php:89
|
496 |
+
msgid "Field group published."
|
497 |
+
msgstr "Skup polja objavljen."
|
|
|
498 |
|
499 |
+
#: includes/admin/admin-field-group.php:90
|
500 |
+
msgid "Field group saved."
|
501 |
+
msgstr "Skup polja spremljen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
|
503 |
+
#: includes/admin/admin-field-group.php:91
|
504 |
+
msgid "Field group submitted."
|
505 |
+
msgstr "Skup polja je spremljen."
|
506 |
|
507 |
+
#: includes/admin/admin-field-group.php:92
|
508 |
+
msgid "Field group scheduled for."
|
509 |
+
msgstr "Skup polja je označen za."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
|
511 |
+
#: includes/admin/admin-field-group.php:93
|
512 |
+
msgid "Field group draft updated."
|
513 |
+
msgstr "Skica ažurirana."
|
514 |
|
515 |
+
#: includes/admin/admin-field-group.php:164
|
516 |
+
msgid "The string \"field_\" may not be used at the start of a field name"
|
517 |
+
msgstr "Polje ne može započinjati sa “field_”, odabrite drugi naziv"
|
518 |
|
519 |
+
#: includes/admin/admin-field-group.php:165
|
520 |
+
msgid "This field cannot be moved until its changes have been saved"
|
521 |
+
msgstr "Potrebno je spremiti izmjene prije nego možete premjestiti polje"
|
|
|
|
|
|
|
|
|
522 |
|
523 |
+
#: includes/admin/admin-field-group.php:166
|
524 |
+
msgid "Field group title is required"
|
525 |
+
msgstr "Naziv polja je obavezna"
|
|
|
526 |
|
527 |
+
#: includes/admin/admin-field-group.php:167
|
528 |
+
msgid "Move to trash. Are you sure?"
|
529 |
+
msgstr "Premjesti u smeće?"
|
530 |
|
531 |
+
#: includes/admin/admin-field-group.php:168
|
532 |
+
msgid "No toggle fields available"
|
533 |
+
msgstr "Nema polja koji omoguću korisniku odabir"
|
|
|
534 |
|
535 |
+
#: includes/admin/admin-field-group.php:169
|
536 |
+
msgid "Move Custom Field"
|
537 |
+
msgstr "Premjesti polje"
|
538 |
|
539 |
+
#: includes/admin/admin-field-group.php:170
|
540 |
+
#, fuzzy
|
541 |
+
#| msgid "checked"
|
542 |
+
msgid "Checked"
|
543 |
+
msgstr "odabrano"
|
544 |
|
545 |
+
#: includes/admin/admin-field-group.php:172
|
546 |
+
#, fuzzy
|
547 |
+
#| msgid "Show this field if"
|
548 |
+
msgid "(this field)"
|
549 |
+
msgstr "Prikaži polje ako"
|
550 |
|
551 |
+
#: includes/admin/admin-field-group.php:174, includes/api/api-helpers.php:3419,
|
552 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:60,
|
553 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:170,
|
554 |
+
#: includes/admin/views/field-group-locations.php:36,
|
555 |
+
#: includes/admin/views/html-location-group.php:3
|
556 |
+
msgid "or"
|
557 |
+
msgstr "ili"
|
558 |
|
559 |
+
#: includes/admin/admin-field-group.php:175,
|
560 |
+
#: includes/admin/views/html-location-group.php:3
|
561 |
+
msgid "Show this field group if"
|
562 |
+
msgstr "Prikaži ovaj skup polja ako"
|
563 |
|
564 |
+
#: includes/admin/admin-field-group.php:176
|
565 |
+
msgid "Null"
|
566 |
+
msgstr "Null"
|
567 |
|
568 |
+
#: includes/admin/admin-field-group.php:179
|
569 |
+
msgid "Has any value"
|
570 |
+
msgstr ""
|
|
|
571 |
|
572 |
+
#: includes/admin/admin-field-group.php:180
|
573 |
+
msgid "Has no value"
|
574 |
+
msgstr ""
|
|
|
575 |
|
576 |
+
#: includes/admin/admin-field-group.php:181
|
577 |
+
#, fuzzy
|
578 |
+
#| msgid "is equal to"
|
579 |
+
msgid "Value is equal to"
|
580 |
+
msgstr "je jednako"
|
581 |
|
582 |
+
#: includes/admin/admin-field-group.php:182
|
583 |
+
#, fuzzy
|
584 |
+
#| msgid "is not equal to"
|
585 |
+
msgid "Value is not equal to"
|
586 |
+
msgstr "je drukčije"
|
587 |
|
588 |
+
#: includes/admin/admin-field-group.php:183
|
589 |
+
#, fuzzy
|
590 |
+
#| msgid "Value must be a number"
|
591 |
+
msgid "Value matches pattern"
|
592 |
+
msgstr "Vrijednost mora biti broj"
|
593 |
|
594 |
+
#: includes/admin/admin-field-group.php:184
|
595 |
+
msgid "Value contains"
|
596 |
+
msgstr ""
|
|
|
597 |
|
598 |
+
#: includes/admin/admin-field-group.php:185
|
599 |
+
#, fuzzy
|
600 |
+
#| msgid "Value must be equal to or lower than %d"
|
601 |
+
msgid "Value is greater than"
|
602 |
+
msgstr "Unešena vrijednost mora biti jednaka ili niža od %d"
|
|
|
|
|
603 |
|
604 |
+
#: includes/admin/admin-field-group.php:186
|
605 |
+
#, fuzzy
|
606 |
+
#| msgid "Value must be a number"
|
607 |
+
msgid "Value is less than"
|
608 |
+
msgstr "Vrijednost mora biti broj"
|
609 |
|
610 |
+
#: includes/admin/admin-field-group.php:187
|
611 |
+
msgid "Selection is greater than"
|
612 |
+
msgstr ""
|
613 |
|
614 |
+
#: includes/admin/admin-field-group.php:188
|
615 |
+
#, fuzzy
|
616 |
+
#| msgid "Select File"
|
617 |
+
msgid "Selection is less than"
|
618 |
+
msgstr "Odaberite datoteku"
|
619 |
|
620 |
+
#: includes/admin/admin-field-group.php:191
|
621 |
+
msgid "Repeater (Pro only)"
|
622 |
+
msgstr ""
|
623 |
|
624 |
+
#: includes/admin/admin-field-group.php:192
|
625 |
+
#, fuzzy
|
626 |
+
#| msgid "Flexible Content"
|
627 |
+
msgid "Flexible Content (Pro only)"
|
628 |
+
msgstr "Fleksibilno polje"
|
629 |
|
630 |
+
#: includes/admin/admin-field-group.php:193
|
631 |
+
msgid "Clone (Pro only)"
|
632 |
+
msgstr ""
|
633 |
|
634 |
+
#: includes/admin/admin-field-group.php:194
|
635 |
+
msgid "Gallery (Pro only)"
|
636 |
+
msgstr ""
|
637 |
|
638 |
+
#: includes/admin/admin-field-group.php:234,
|
639 |
+
#: includes/admin/admin-field-groups.php:265
|
640 |
+
msgid "Location"
|
641 |
+
msgstr "Lokacija"
|
642 |
|
643 |
+
#: includes/admin/admin-field-group.php:235,
|
644 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:288
|
645 |
+
msgid "Settings"
|
646 |
+
msgstr "Postavke"
|
647 |
|
648 |
+
#: includes/admin/admin-field-group.php:361
|
649 |
+
msgid "Field Keys"
|
650 |
+
msgstr "Oznaka polja"
|
651 |
|
652 |
+
#: includes/admin/admin-field-group.php:385
|
653 |
+
#, fuzzy
|
654 |
+
#| msgid "Active"
|
655 |
+
msgctxt "post status"
|
656 |
+
msgid "Active"
|
657 |
+
msgstr "Aktivan"
|
658 |
|
659 |
+
#: includes/admin/admin-field-group.php:752
|
660 |
+
msgid "Move Complete."
|
661 |
+
msgstr "Premještanje dovršeno."
|
662 |
|
663 |
+
#: includes/admin/admin-field-group.php:754
|
664 |
+
#, fuzzy
|
665 |
+
#| msgid "The %s field can now be found in the %s field group"
|
666 |
+
msgid "The %1$s field can now be found in the %2$s field group"
|
667 |
+
msgstr ""
|
668 |
+
"Polje %s od sada možete naći na drugoj lokacaiji, kao dio %s skupa polja"
|
669 |
|
670 |
+
#: includes/admin/admin-field-group.php:758
|
671 |
+
msgid "Close Window"
|
672 |
+
msgstr "Zatvori prozor"
|
673 |
|
674 |
+
#: includes/admin/admin-field-group.php:797
|
675 |
+
msgid "Please select the destination for this field"
|
676 |
+
msgstr "Odaberite lokaciju za ovo polje"
|
677 |
|
678 |
+
#: includes/admin/admin-field-group.php:804
|
679 |
+
msgid "Move Field"
|
680 |
+
msgstr "Premjesti polje"
|
681 |
|
682 |
+
#: includes/admin/admin-field-groups.php:116
|
683 |
+
msgid "Active <span class=\"count\">(%s)</span>"
|
684 |
+
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
685 |
+
msgstr[0] "Aktivno <span class=“count”>(%s)</span>"
|
686 |
+
msgstr[1] "Aktivno <span class=“count”>(%s)</span>"
|
687 |
+
msgstr[2] "Aktivno <span class=“count”>(%s)</span>"
|
688 |
|
689 |
+
#: includes/admin/admin-field-groups.php:196
|
690 |
+
msgid "Review local JSON changes"
|
691 |
+
msgstr ""
|
692 |
|
693 |
+
#: includes/admin/admin-field-groups.php:197
|
694 |
+
#, fuzzy
|
695 |
+
#| msgid "Loading"
|
696 |
+
msgid "Loading diff"
|
697 |
+
msgstr "Učitavanje"
|
698 |
|
699 |
+
#: includes/admin/admin-field-groups.php:198,
|
700 |
+
#: includes/admin/admin-field-groups.php:533
|
701 |
+
msgid "Sync changes"
|
702 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
703 |
|
704 |
+
#: includes/admin/admin-field-groups.php:263,
|
705 |
+
#: pro/fields/class-acf-field-gallery.php:388,
|
706 |
+
#: includes/admin/views/field-group-options.php:127,
|
707 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:38,
|
708 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:49
|
709 |
+
msgid "Description"
|
710 |
+
msgstr "Opis"
|
711 |
|
712 |
+
#: includes/admin/admin-field-groups.php:264,
|
713 |
#: includes/admin/views/field-group-fields.php:7
|
714 |
msgid "Key"
|
715 |
msgstr "Ključ"
|
716 |
|
717 |
+
#: includes/admin/admin-field-groups.php:269
|
718 |
+
msgid "Local JSON"
|
719 |
+
msgstr "Učitavanje polja iz JSON datoteke"
|
720 |
|
721 |
+
#: includes/admin/admin-field-groups.php:419
|
722 |
+
msgid "Various"
|
|
|
|
|
723 |
msgstr ""
|
|
|
|
|
724 |
|
725 |
+
#: includes/admin/admin-field-groups.php:449
|
726 |
+
#, fuzzy
|
727 |
+
#| msgid "Location"
|
728 |
+
msgid "Located in: %s"
|
729 |
+
msgstr "Lokacija"
|
730 |
|
731 |
+
#: includes/admin/admin-field-groups.php:445
|
732 |
+
msgid "Located in plugin: %s"
|
733 |
+
msgstr ""
|
734 |
|
735 |
+
#: includes/admin/admin-field-groups.php:441
|
736 |
+
msgid "Located in theme: %s"
|
737 |
+
msgstr ""
|
|
|
|
|
738 |
|
739 |
+
#: includes/admin/admin-field-groups.php:484
|
740 |
+
msgid "Awaiting save"
|
741 |
+
msgstr ""
|
742 |
|
743 |
+
#: includes/admin/admin-field-groups.php:481
|
744 |
+
msgid "Saved"
|
745 |
+
msgstr ""
|
746 |
|
747 |
+
#: includes/admin/admin-field-groups.php:469,
|
748 |
+
#: includes/admin/admin-field-groups.php:687
|
749 |
+
msgid "Sync available"
|
750 |
+
msgstr "Sinkronizacija dostupna"
|
751 |
|
752 |
+
#: includes/admin/admin-field-groups.php:477
|
753 |
+
msgid "Import"
|
754 |
+
msgstr "Uvoz"
|
755 |
|
756 |
+
#: includes/admin/admin-field-groups.php:472
|
757 |
+
msgid "Sync"
|
758 |
+
msgstr "Sinkroniziraj"
|
759 |
|
760 |
+
#: includes/admin/admin-field-groups.php:473
|
761 |
+
msgid "Review changes"
|
762 |
+
msgstr ""
|
763 |
|
764 |
+
#: includes/admin/admin-field-groups.php:505
|
765 |
+
msgid "Duplicate this item"
|
766 |
+
msgstr "Dupliciraj"
|
767 |
|
768 |
+
#: includes/admin/admin-field-groups.php:505,
|
769 |
+
#: includes/admin/admin-field-groups.php:525,
|
770 |
+
#: pro/fields/class-acf-field-flexible-content.php:553,
|
771 |
+
#: includes/admin/views/field-group-field.php:57
|
772 |
+
msgid "Duplicate"
|
773 |
+
msgstr "Dupliciraj"
|
774 |
|
775 |
+
#: includes/admin/admin-field-groups.php:555
|
776 |
+
#, fuzzy
|
777 |
+
#| msgid "Field group duplicated. %s"
|
778 |
+
msgid "Field group duplicated."
|
779 |
+
msgid_plural "%s field groups duplicated."
|
780 |
+
msgstr[0] "Skup polja %s dupliciran"
|
781 |
+
msgstr[1] "Skup polja %s dupliciran"
|
782 |
+
msgstr[2] "Skup polja %s dupliciran"
|
783 |
+
|
784 |
+
#: includes/admin/admin-field-groups.php:612
|
785 |
+
#, fuzzy
|
786 |
+
#| msgid "Field group synchronised. %s"
|
787 |
+
msgid "Field group synchronised."
|
788 |
+
msgid_plural "%s field groups synchronised."
|
789 |
+
msgstr[0] "Skup polja sinkroniziran. %s"
|
790 |
+
msgstr[1] "Skup polja sinkroniziran. %s"
|
791 |
+
msgstr[2] "Skup polja sinkroniziran. %s"
|
|
|
|
|
|
|
|
|
792 |
|
793 |
+
#: includes/admin/admin-field-groups.php:800
|
794 |
+
msgid "Select %s"
|
795 |
+
msgstr "Odaberi %s"
|
796 |
|
797 |
+
#: includes/admin/admin-tools.php:119,
|
798 |
+
#: includes/admin/views/html-admin-tools.php:21
|
799 |
+
msgid "Tools"
|
800 |
+
msgstr "Alati"
|
801 |
|
802 |
+
#: includes/admin/admin-upgrade.php:51, includes/admin/admin-upgrade.php:113,
|
803 |
+
#: includes/admin/admin-upgrade.php:114, includes/admin/admin-upgrade.php:177,
|
804 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:24,
|
805 |
+
#: includes/admin/views/html-admin-page-upgrade.php:26
|
806 |
+
msgid "Upgrade Database"
|
807 |
+
msgstr "Nadogradi bazu podataka"
|
808 |
|
809 |
+
#: includes/admin/admin-upgrade.php:201
|
810 |
+
msgid "Review sites & upgrade"
|
811 |
+
msgstr "Pregledaj stranice i nadogradi"
|
812 |
|
813 |
+
#: includes/admin/admin.php:49,
|
814 |
+
#: includes/admin/views/field-group-options.php:142
|
815 |
+
msgid "Custom Fields"
|
816 |
+
msgstr "Dodatna polja"
|
817 |
|
818 |
+
#: includes/admin/admin.php:129, includes/admin/admin.php:131
|
819 |
+
msgid "Overview"
|
|
|
|
|
820 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
|
822 |
+
#: includes/admin/admin.php:132
|
|
|
823 |
msgid ""
|
824 |
+
"The Advanced Custom Fields plugin provides a visual form builder to "
|
825 |
+
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
826 |
+
"display custom field values in any theme template file."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
827 |
msgstr ""
|
|
|
828 |
|
829 |
+
#: includes/admin/admin.php:134
|
|
|
|
|
|
|
|
|
|
|
830 |
msgid ""
|
831 |
+
"Before creating your first Field Group, we recommend first reading our <a "
|
832 |
+
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
833 |
+
"yourself with the plugin's philosophy and best practises."
|
834 |
msgstr ""
|
|
|
|
|
835 |
|
836 |
+
#: includes/admin/admin.php:137
|
|
|
837 |
msgid ""
|
838 |
+
"Please use the Help & Support tab to get in touch should you find yourself "
|
839 |
+
"requiring assistance."
|
840 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
841 |
|
842 |
+
#: includes/admin/admin.php:146, includes/admin/admin.php:148
|
843 |
+
#, fuzzy
|
844 |
+
#| msgid "Support"
|
845 |
+
msgid "Help & Support"
|
846 |
+
msgstr "Podrška"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
847 |
|
848 |
+
#: includes/admin/admin.php:149
|
849 |
msgid ""
|
850 |
+
"We are fanatical about support, and want you to get the best out of your "
|
851 |
+
"website with ACF. If you run into any difficulties, there are several places "
|
852 |
+
"you can find help:"
|
853 |
msgstr ""
|
|
|
|
|
854 |
|
855 |
+
#: includes/admin/admin.php:152
|
|
|
856 |
msgid ""
|
857 |
+
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
858 |
+
"documentation contains references and guides for most situations you may "
|
859 |
+
"encounter."
|
860 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
861 |
|
862 |
+
#: includes/admin/admin.php:156
|
|
|
863 |
msgid ""
|
864 |
+
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
865 |
+
"friendly community on our Community Forums who may be able to help you "
|
866 |
+
"figure out the ‘how-tos’ of the ACF world."
|
867 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
868 |
|
869 |
+
#: includes/admin/admin.php:160
|
|
|
|
|
|
|
|
|
870 |
msgid ""
|
871 |
+
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
|
872 |
+
"our Help Desk will assist with your more in depth, technical challenges."
|
|
|
873 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
874 |
|
875 |
+
#: includes/admin/admin.php:169
|
876 |
+
#, fuzzy
|
877 |
+
#| msgid "Update Information"
|
878 |
+
msgid "Information"
|
879 |
+
msgstr "Ažuriraj informacije"
|
|
|
|
|
|
|
880 |
|
881 |
+
#: includes/admin/admin.php:170
|
882 |
+
#, fuzzy
|
883 |
+
#| msgid "Revisions"
|
884 |
+
msgid "Version %s"
|
885 |
+
msgstr "Revizija"
|
886 |
|
887 |
+
#: includes/admin/admin.php:171
|
888 |
+
#, fuzzy
|
889 |
+
#| msgid "View Field"
|
890 |
+
msgid "View details"
|
891 |
+
msgstr "Pregledaj polje"
|
|
|
|
|
|
|
|
|
892 |
|
893 |
+
#: includes/admin/admin.php:172
|
894 |
+
#, fuzzy
|
895 |
+
#| msgid "Website"
|
896 |
+
msgid "Visit website"
|
897 |
+
msgstr "Web mjesto"
|
898 |
|
899 |
+
#: includes/admin/admin.php:201,
|
900 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:157,
|
901 |
+
#: includes/admin/views/html-location-rule.php:92
|
902 |
+
msgid "and"
|
903 |
+
msgstr "i"
|
904 |
|
905 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:36
|
906 |
+
#, fuzzy
|
907 |
+
#| msgid "%s field group duplicated."
|
908 |
+
#| msgid_plural "%s field groups duplicated."
|
909 |
+
msgid "Invalid field group parameter(s)."
|
910 |
+
msgstr "Polja duplicirana (%s)."
|
911 |
+
|
912 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:43
|
913 |
+
#, fuzzy
|
914 |
+
#| msgid "Edit field group"
|
915 |
+
msgid "Invalid field group ID."
|
916 |
+
msgstr "Uredi skup polja"
|
917 |
|
918 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:53
|
919 |
+
msgid "Sorry, this field group is unavailable for diff comparison."
|
|
|
|
|
|
|
|
|
920 |
msgstr ""
|
|
|
|
|
|
|
921 |
|
922 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:59
|
923 |
+
#, fuzzy
|
924 |
+
#| msgid "Post updated"
|
925 |
+
msgid "Last updated: %s"
|
926 |
+
msgstr "Objava ažurirana"
|
927 |
|
928 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:64
|
929 |
+
#, fuzzy
|
930 |
+
#| msgid "Edit field group"
|
931 |
+
msgid "Original field group"
|
932 |
+
msgstr "Uredi skup polja"
|
|
|
|
|
|
|
|
|
933 |
|
934 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:68
|
935 |
+
#, fuzzy
|
936 |
+
#| msgid "No field groups selected"
|
937 |
+
msgid "JSON field group (newer)"
|
938 |
+
msgstr "Niste odabrali polje"
|
939 |
|
940 |
+
#: includes/ajax/class-acf-ajax-upgrade.php:34,
|
941 |
+
#: includes/admin/views/html-admin-page-upgrade.php:94
|
942 |
+
msgid "No updates available."
|
943 |
+
msgstr "Nema novih nadogradnji."
|
944 |
|
945 |
+
#: includes/ajax/class-acf-ajax.php:157
|
946 |
+
msgid "Invalid nonce."
|
|
|
|
|
|
|
947 |
msgstr ""
|
|
|
|
|
948 |
|
949 |
+
#: includes/api/api-helpers.php:821
|
950 |
+
msgid "Thumbnail"
|
951 |
+
msgstr "Sličica"
|
|
|
|
|
|
|
|
|
|
|
|
|
952 |
|
953 |
+
#: includes/api/api-helpers.php:822
|
954 |
+
msgid "Medium"
|
955 |
+
msgstr "Srednja"
|
956 |
|
957 |
+
#: includes/api/api-helpers.php:823
|
958 |
+
msgid "Large"
|
959 |
+
msgstr "Velika"
|
960 |
|
961 |
+
#: includes/api/api-helpers.php:864
|
962 |
+
msgid "Full Size"
|
963 |
+
msgstr "Puna veličina"
|
964 |
|
965 |
+
#: includes/api/api-helpers.php:1569, includes/api/api-term.php:147,
|
966 |
+
#: pro/fields/class-acf-field-clone.php:1005
|
967 |
+
msgid "(no title)"
|
968 |
+
msgstr "(bez naziva)"
|
969 |
|
970 |
+
#: includes/api/api-helpers.php:3353
|
971 |
+
msgid "Image width must not exceed %dpx."
|
972 |
+
msgstr "Širina slike ne smije biti veća od %dpx."
|
|
|
|
|
973 |
|
974 |
+
#: includes/api/api-helpers.php:3348
|
975 |
+
msgid "Image width must be at least %dpx."
|
976 |
+
msgstr "Širina slike mora biti najmanje %dpx."
|
977 |
|
978 |
+
#: includes/api/api-helpers.php:3372
|
979 |
+
msgid "Image height must not exceed %dpx."
|
980 |
+
msgstr "Visina slike ne smije biti veća od %dpx."
|
981 |
|
982 |
+
#: includes/api/api-helpers.php:3367
|
983 |
+
msgid "Image height must be at least %dpx."
|
984 |
+
msgstr "Visina slike mora biti najmanje %dpx."
|
985 |
|
986 |
+
#: includes/api/api-helpers.php:3392
|
987 |
+
#, fuzzy
|
988 |
+
#| msgid "File size must must not exceed %s."
|
989 |
+
msgid "File size must not exceed %s."
|
990 |
+
msgstr "Datoteke ne smije biti veća od %s."
|
991 |
|
992 |
+
#: includes/api/api-helpers.php:3387
|
993 |
+
msgid "File size must be at least %s."
|
994 |
+
msgstr "Veličina datoteke mora biti najmanje %s."
|
995 |
|
996 |
+
#: includes/api/api-helpers.php:3423
|
997 |
+
msgid "File type must be %s."
|
998 |
+
msgstr "Tip datoteke mora biti %s."
|
999 |
|
1000 |
+
#: includes/fields/class-acf-field-accordion.php:25
|
1001 |
+
msgid "Accordion"
|
1002 |
+
msgstr "Multi prošireno"
|
1003 |
|
1004 |
+
#: includes/fields/class-acf-field-accordion.php:102
|
1005 |
+
msgid "Open"
|
1006 |
+
msgstr "Otvori"
|
|
|
|
|
1007 |
|
1008 |
+
#: includes/fields/class-acf-field-accordion.php:103
|
1009 |
+
msgid "Display this accordion as open on page load."
|
1010 |
+
msgstr "Prikaži accordion polje kao otvoreno prilikom učitavanja."
|
1011 |
|
1012 |
+
#: includes/fields/class-acf-field-accordion.php:114
|
1013 |
+
msgid "Multi-expand"
|
1014 |
+
msgstr "Mulit-proširenje"
|
1015 |
|
1016 |
+
#: includes/fields/class-acf-field-accordion.php:115
|
1017 |
+
msgid "Allow this accordion to open without closing others."
|
1018 |
+
msgstr "Omogući prikaz ovog accordion polja bez zatvaranje ostalih."
|
1019 |
|
1020 |
+
#: includes/fields/class-acf-field-accordion.php:126,
|
1021 |
+
#: includes/fields/class-acf-field-tab.php:117
|
1022 |
+
msgid "Endpoint"
|
1023 |
+
msgstr "Prijelomna točka"
|
1024 |
|
1025 |
+
#: includes/fields/class-acf-field-accordion.php:127
|
1026 |
msgid ""
|
1027 |
+
"Define an endpoint for the previous accordion to stop. This accordion will "
|
1028 |
+
"not be visible."
|
1029 |
msgstr ""
|
1030 |
+
"Preciziraj prijelomnu točku za prethoda polja accordion. Ovo će omogućiti "
|
1031 |
+
"novi skup polja nakon prijelomne točke."
|
1032 |
|
1033 |
+
#: includes/fields/class-acf-field-button-group.php:24
|
1034 |
+
msgid "Button Group"
|
1035 |
+
msgstr "Skup dugmadi"
|
1036 |
|
1037 |
+
#: includes/fields/class-acf-field-button-group.php:147,
|
1038 |
+
#: includes/fields/class-acf-field-checkbox.php:324,
|
1039 |
+
#: includes/fields/class-acf-field-radio.php:191,
|
1040 |
+
#: includes/fields/class-acf-field-select.php:364
|
1041 |
+
msgid "Choices"
|
1042 |
+
msgstr "Mogući odabiri"
|
1043 |
|
1044 |
+
#: includes/fields/class-acf-field-button-group.php:148,
|
1045 |
+
#: includes/fields/class-acf-field-checkbox.php:325,
|
1046 |
+
#: includes/fields/class-acf-field-radio.php:192,
|
1047 |
+
#: includes/fields/class-acf-field-select.php:365
|
1048 |
+
msgid "Enter each choice on a new line."
|
1049 |
+
msgstr "Svaki odabir je potrebno dodati kao novi red."
|
1050 |
|
1051 |
+
#: includes/fields/class-acf-field-button-group.php:148,
|
1052 |
+
#: includes/fields/class-acf-field-checkbox.php:325,
|
1053 |
+
#: includes/fields/class-acf-field-radio.php:192,
|
1054 |
+
#: includes/fields/class-acf-field-select.php:365
|
1055 |
+
msgid "For more control, you may specify both a value and label like this:"
|
1056 |
+
msgstr "Za bolju kontrolu unesite oboje, vrijednost i naziv, kao npr:"
|
1057 |
|
1058 |
+
#: includes/fields/class-acf-field-button-group.php:148,
|
1059 |
+
#: includes/fields/class-acf-field-checkbox.php:325,
|
1060 |
+
#: includes/fields/class-acf-field-radio.php:192,
|
1061 |
+
#: includes/fields/class-acf-field-select.php:365
|
1062 |
+
msgid "red : Red"
|
1063 |
+
msgstr "crvena : Crvena"
|
1064 |
|
1065 |
+
#: includes/fields/class-acf-field-button-group.php:158,
|
1066 |
+
#: includes/fields/class-acf-field-page_link.php:482,
|
1067 |
+
#: includes/fields/class-acf-field-post_object.php:394,
|
1068 |
+
#: includes/fields/class-acf-field-radio.php:202,
|
1069 |
+
#: includes/fields/class-acf-field-select.php:386,
|
1070 |
+
#: includes/fields/class-acf-field-taxonomy.php:748,
|
1071 |
+
#: includes/fields/class-acf-field-user.php:68
|
1072 |
+
msgid "Allow Null?"
|
1073 |
+
msgstr "Dozvoli null vrijednost?"
|
1074 |
|
1075 |
+
#: includes/fields/class-acf-field-button-group.php:170,
|
1076 |
+
#: includes/fields/class-acf-field-checkbox.php:366,
|
1077 |
+
#: includes/fields/class-acf-field-color_picker.php:155,
|
1078 |
+
#: includes/fields/class-acf-field-email.php:117,
|
1079 |
+
#: includes/fields/class-acf-field-number.php:125,
|
1080 |
+
#: includes/fields/class-acf-field-radio.php:245,
|
1081 |
+
#: includes/fields/class-acf-field-range.php:163,
|
1082 |
+
#: includes/fields/class-acf-field-select.php:375,
|
1083 |
+
#: includes/fields/class-acf-field-text.php:97,
|
1084 |
+
#: includes/fields/class-acf-field-textarea.php:103,
|
1085 |
+
#: includes/fields/class-acf-field-true_false.php:148,
|
1086 |
+
#: includes/fields/class-acf-field-url.php:101,
|
1087 |
+
#: includes/fields/class-acf-field-wysiwyg.php:334
|
1088 |
+
msgid "Default Value"
|
1089 |
+
msgstr "Zadana vrijednost"
|
1090 |
|
1091 |
+
#: includes/fields/class-acf-field-button-group.php:171,
|
1092 |
+
#: includes/fields/class-acf-field-email.php:118,
|
1093 |
+
#: includes/fields/class-acf-field-number.php:126,
|
1094 |
+
#: includes/fields/class-acf-field-radio.php:246,
|
1095 |
+
#: includes/fields/class-acf-field-range.php:164,
|
1096 |
+
#: includes/fields/class-acf-field-text.php:98,
|
1097 |
+
#: includes/fields/class-acf-field-textarea.php:104,
|
1098 |
+
#: includes/fields/class-acf-field-url.php:102,
|
1099 |
+
#: includes/fields/class-acf-field-wysiwyg.php:335
|
1100 |
+
msgid "Appears when creating a new post"
|
1101 |
+
msgstr "Prikazuje se prilikom kreiranje nove objave"
|
1102 |
|
1103 |
+
#: includes/fields/class-acf-field-button-group.php:187,
|
1104 |
+
#: includes/fields/class-acf-field-checkbox.php:384,
|
1105 |
+
#: includes/fields/class-acf-field-radio.php:263
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1106 |
msgid "Horizontal"
|
1107 |
msgstr "Horizontalno"
|
1108 |
|
1109 |
+
#: includes/fields/class-acf-field-button-group.php:188,
|
1110 |
+
#: includes/fields/class-acf-field-checkbox.php:383,
|
1111 |
+
#: includes/fields/class-acf-field-radio.php:262
|
1112 |
msgid "Vertical"
|
1113 |
msgstr "Vertikalno"
|
1114 |
|
1115 |
+
#: includes/fields/class-acf-field-button-group.php:197,
|
1116 |
+
#: includes/fields/class-acf-field-checkbox.php:405,
|
1117 |
+
#: includes/fields/class-acf-field-file.php:227,
|
1118 |
+
#: includes/fields/class-acf-field-link.php:170,
|
1119 |
+
#: includes/fields/class-acf-field-radio.php:272,
|
1120 |
+
#: includes/fields/class-acf-field-taxonomy.php:801
|
|
|
1121 |
msgid "Return Value"
|
1122 |
msgstr "Vrati vrijednost"
|
1123 |
|
1124 |
+
#: includes/fields/class-acf-field-button-group.php:198,
|
1125 |
+
#: includes/fields/class-acf-field-checkbox.php:406,
|
1126 |
+
#: includes/fields/class-acf-field-file.php:228,
|
1127 |
+
#: includes/fields/class-acf-field-link.php:171,
|
1128 |
+
#: includes/fields/class-acf-field-radio.php:273
|
|
|
1129 |
msgid "Specify the returned value on front end"
|
1130 |
msgstr "Vrijednost koja će biti vraćena na pristupnom dijelu"
|
1131 |
|
1132 |
+
#: includes/fields/class-acf-field-button-group.php:203,
|
1133 |
+
#: includes/fields/class-acf-field-checkbox.php:411,
|
1134 |
+
#: includes/fields/class-acf-field-radio.php:278,
|
1135 |
+
#: includes/fields/class-acf-field-select.php:444
|
1136 |
msgid "Value"
|
1137 |
msgstr "Vrijednost"
|
1138 |
|
1139 |
+
#: includes/fields/class-acf-field-button-group.php:204,
|
1140 |
+
#: includes/fields/class-acf-field-checkbox.php:412,
|
1141 |
+
#: includes/fields/class-acf-field-radio.php:279,
|
1142 |
+
#: includes/fields/class-acf-field-select.php:445,
|
1143 |
+
#: pro/fields/class-acf-field-flexible-content.php:581,
|
1144 |
+
#: includes/admin/views/field-group-fields.php:5
|
1145 |
+
msgid "Label"
|
1146 |
+
msgstr "Oznaka"
|
1147 |
+
|
1148 |
+
#: includes/fields/class-acf-field-button-group.php:205,
|
1149 |
+
#: includes/fields/class-acf-field-checkbox.php:413,
|
1150 |
+
#: includes/fields/class-acf-field-radio.php:280,
|
1151 |
+
#: includes/fields/class-acf-field-select.php:446
|
1152 |
msgid "Both (Array)"
|
1153 |
msgstr "Oboje (podatkovni niz)"
|
1154 |
|
1155 |
+
#: includes/fields/class-acf-field-checkbox.php:25,
|
1156 |
+
#: includes/fields/class-acf-field-taxonomy.php:733
|
1157 |
msgid "Checkbox"
|
1158 |
msgstr "Skup dugmadi"
|
1159 |
|
1160 |
+
#: includes/fields/class-acf-field-checkbox.php:144
|
1161 |
msgid "Toggle All"
|
1162 |
msgstr "Sakrij sve"
|
1163 |
|
1164 |
+
#: includes/fields/class-acf-field-checkbox.php:207
|
1165 |
msgid "Add new choice"
|
1166 |
msgstr "Dodaj odabir"
|
1167 |
|
1168 |
+
#: includes/fields/class-acf-field-checkbox.php:335
|
1169 |
msgid "Allow Custom"
|
1170 |
msgstr "Obogući dodatne"
|
1171 |
|
1172 |
+
#: includes/fields/class-acf-field-checkbox.php:340
|
1173 |
msgid "Allow 'custom' values to be added"
|
1174 |
msgstr "Omogući ‘dodatne’ vrijednosti"
|
1175 |
|
1176 |
+
#: includes/fields/class-acf-field-checkbox.php:348
|
1177 |
msgid "Save Custom"
|
1178 |
msgstr "Spremi"
|
1179 |
|
1180 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1181 |
msgid "Save 'custom' values to the field's choices"
|
1182 |
msgstr "Spremi ‘dodatne’ vrijednosti i prikaži ih omogući njihov odabir"
|
1183 |
|
1184 |
+
#: includes/fields/class-acf-field-checkbox.php:367,
|
1185 |
+
#: includes/fields/class-acf-field-select.php:376
|
1186 |
msgid "Enter each default value on a new line"
|
1187 |
msgstr "Unesite svaku novu vrijednost u zasebnu liniju"
|
1188 |
|
1189 |
+
#: includes/fields/class-acf-field-checkbox.php:393
|
1190 |
msgid "Toggle"
|
1191 |
msgstr "Prikaži/Sakrij"
|
1192 |
|
1193 |
+
#: includes/fields/class-acf-field-checkbox.php:394
|
1194 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1195 |
msgstr "Dodaj okvir za izbor koji omogućje odabir svih opcija"
|
1196 |
|
1198 |
msgid "Color Picker"
|
1199 |
msgstr "Odabir boje"
|
1200 |
|
1201 |
+
#: includes/fields/class-acf-field-color_picker.php:69
|
1202 |
msgid "Clear"
|
1203 |
msgstr "Ukloni"
|
1204 |
|
1205 |
+
#: includes/fields/class-acf-field-color_picker.php:70
|
1206 |
+
#, fuzzy
|
1207 |
+
#| msgid "Clear location"
|
1208 |
+
msgid "Clear color"
|
1209 |
+
msgstr "Ukloni lokaciju"
|
1210 |
+
|
1211 |
+
#: includes/fields/class-acf-field-color_picker.php:71
|
1212 |
msgid "Default"
|
1213 |
msgstr "Zadano"
|
1214 |
|
1215 |
+
#: includes/fields/class-acf-field-color_picker.php:72
|
1216 |
+
#, fuzzy
|
1217 |
+
#| msgid "Select Color"
|
1218 |
+
msgid "Select default color"
|
1219 |
+
msgstr "Odaberite boju"
|
1220 |
+
|
1221 |
+
#: includes/fields/class-acf-field-color_picker.php:73
|
1222 |
msgid "Select Color"
|
1223 |
msgstr "Odaberite boju"
|
1224 |
|
1225 |
+
#: includes/fields/class-acf-field-color_picker.php:74
|
1226 |
+
#, fuzzy
|
1227 |
+
#| msgid "Color Picker"
|
1228 |
+
msgid "Color value"
|
1229 |
+
msgstr "Odabir boje"
|
1230 |
+
|
1231 |
+
#: includes/fields/class-acf-field-color_picker.php:95,
|
1232 |
+
#: includes/fields/class-acf-field-color_picker.php:185
|
1233 |
+
msgid "Hex String"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: includes/fields/class-acf-field-color_picker.php:96
|
1237 |
+
msgid "RGBA String"
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: includes/fields/class-acf-field-color_picker.php:167
|
1241 |
+
msgid "Enable Transparency"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: includes/fields/class-acf-field-color_picker.php:179,
|
1245 |
+
#: includes/fields/class-acf-field-date_picker.php:216,
|
1246 |
+
#: includes/fields/class-acf-field-date_time_picker.php:201,
|
1247 |
+
#: includes/fields/class-acf-field-image.php:204,
|
1248 |
+
#: includes/fields/class-acf-field-post_object.php:418,
|
1249 |
+
#: includes/fields/class-acf-field-relationship.php:662,
|
1250 |
+
#: includes/fields/class-acf-field-select.php:439,
|
1251 |
+
#: includes/fields/class-acf-field-time_picker.php:131,
|
1252 |
+
#: includes/fields/class-acf-field-user.php:90,
|
1253 |
+
#: pro/fields/class-acf-field-gallery.php:573
|
1254 |
+
msgid "Return Format"
|
1255 |
+
msgstr "Format za prikaz na web stranici"
|
1256 |
+
|
1257 |
+
#: includes/fields/class-acf-field-color_picker.php:186
|
1258 |
+
#, fuzzy
|
1259 |
+
#| msgid "Both (Array)"
|
1260 |
+
msgid "RGBA Array"
|
1261 |
+
msgstr "Oboje (podatkovni niz)"
|
1262 |
|
1263 |
#: includes/fields/class-acf-field-date_picker.php:25
|
1264 |
msgid "Date Picker"
|
1265 |
msgstr "Odabir datuma"
|
1266 |
|
1267 |
+
#: includes/fields/class-acf-field-date_picker.php:60
|
1268 |
msgctxt "Date Picker JS closeText"
|
1269 |
msgid "Done"
|
1270 |
msgstr "Završeno"
|
1271 |
|
1272 |
+
#: includes/fields/class-acf-field-date_picker.php:61
|
1273 |
msgctxt "Date Picker JS currentText"
|
1274 |
msgid "Today"
|
1275 |
msgstr "Danas"
|
1276 |
|
1277 |
+
#: includes/fields/class-acf-field-date_picker.php:62
|
1278 |
msgctxt "Date Picker JS nextText"
|
1279 |
msgid "Next"
|
1280 |
msgstr "Slijedeći"
|
1281 |
|
1282 |
+
#: includes/fields/class-acf-field-date_picker.php:63
|
1283 |
msgctxt "Date Picker JS prevText"
|
1284 |
msgid "Prev"
|
1285 |
msgstr "Prethodni"
|
1286 |
|
1287 |
+
#: includes/fields/class-acf-field-date_picker.php:64
|
1288 |
msgctxt "Date Picker JS weekHeader"
|
1289 |
msgid "Wk"
|
1290 |
msgstr "Tjedan"
|
1291 |
|
1292 |
+
#: includes/fields/class-acf-field-date_picker.php:181,
|
1293 |
+
#: includes/fields/class-acf-field-date_time_picker.php:182,
|
1294 |
+
#: includes/fields/class-acf-field-time_picker.php:114
|
1295 |
msgid "Display Format"
|
1296 |
msgstr "Format prikaza"
|
1297 |
|
1298 |
+
#: includes/fields/class-acf-field-date_picker.php:182,
|
1299 |
+
#: includes/fields/class-acf-field-date_time_picker.php:183,
|
1300 |
+
#: includes/fields/class-acf-field-time_picker.php:115
|
1301 |
msgid "The format displayed when editing a post"
|
1302 |
msgstr "Format za prikaz prilikom administracije"
|
1303 |
|
1304 |
+
#: includes/fields/class-acf-field-date_picker.php:190,
|
1305 |
+
#: includes/fields/class-acf-field-date_picker.php:226,
|
1306 |
+
#: includes/fields/class-acf-field-date_time_picker.php:192,
|
1307 |
+
#: includes/fields/class-acf-field-date_time_picker.php:211,
|
1308 |
+
#: includes/fields/class-acf-field-time_picker.php:122,
|
1309 |
+
#: includes/fields/class-acf-field-time_picker.php:139
|
1310 |
msgid "Custom:"
|
1311 |
msgstr "Prilagođeno:"
|
1312 |
|
1313 |
+
#: includes/fields/class-acf-field-date_picker.php:217,
|
1314 |
+
#: includes/fields/class-acf-field-date_time_picker.php:202,
|
1315 |
+
#: includes/fields/class-acf-field-time_picker.php:132
|
1316 |
+
msgid "The format returned via template functions"
|
1317 |
+
msgstr "Format koji vraća funkcija"
|
1318 |
+
|
1319 |
+
#: includes/fields/class-acf-field-date_picker.php:202
|
1320 |
msgid "Save Format"
|
1321 |
msgstr "Spremi format"
|
1322 |
|
1323 |
+
#: includes/fields/class-acf-field-date_picker.php:203
|
1324 |
msgid "The format used when saving a value"
|
1325 |
msgstr "Format koji će biti spremljen"
|
1326 |
|
1327 |
+
#: includes/fields/class-acf-field-date_picker.php:237,
|
1328 |
+
#: includes/fields/class-acf-field-date_time_picker.php:220
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1329 |
msgid "Week Starts On"
|
1330 |
msgstr "Tjedan počinje"
|
1331 |
|
1333 |
msgid "Date Time Picker"
|
1334 |
msgstr "Odabir datuma i sata"
|
1335 |
|
1336 |
+
#: includes/fields/class-acf-field-date_time_picker.php:68
|
1337 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1338 |
msgid "Choose Time"
|
1339 |
msgstr "Odaberi vrijeme"
|
1340 |
|
1341 |
+
#: includes/fields/class-acf-field-date_time_picker.php:69
|
1342 |
msgctxt "Date Time Picker JS timeText"
|
1343 |
msgid "Time"
|
1344 |
msgstr "Vrijeme"
|
1345 |
|
1346 |
+
#: includes/fields/class-acf-field-date_time_picker.php:70
|
1347 |
msgctxt "Date Time Picker JS hourText"
|
1348 |
msgid "Hour"
|
1349 |
msgstr "Sat"
|
1350 |
|
1351 |
+
#: includes/fields/class-acf-field-date_time_picker.php:71
|
1352 |
msgctxt "Date Time Picker JS minuteText"
|
1353 |
msgid "Minute"
|
1354 |
msgstr "Minuta"
|
1355 |
|
1356 |
+
#: includes/fields/class-acf-field-date_time_picker.php:72
|
1357 |
msgctxt "Date Time Picker JS secondText"
|
1358 |
msgid "Second"
|
1359 |
msgstr "Sekunda"
|
1360 |
|
1361 |
+
#: includes/fields/class-acf-field-date_time_picker.php:73
|
1362 |
msgctxt "Date Time Picker JS millisecText"
|
1363 |
msgid "Millisecond"
|
1364 |
msgstr "Milisekunda"
|
1365 |
|
1366 |
+
#: includes/fields/class-acf-field-date_time_picker.php:74
|
1367 |
msgctxt "Date Time Picker JS microsecText"
|
1368 |
msgid "Microsecond"
|
1369 |
msgstr "Mikrosekunda"
|
1370 |
|
1371 |
+
#: includes/fields/class-acf-field-date_time_picker.php:75
|
1372 |
msgctxt "Date Time Picker JS timezoneText"
|
1373 |
msgid "Time Zone"
|
1374 |
msgstr "Vremenska zona"
|
1375 |
|
1376 |
+
#: includes/fields/class-acf-field-date_time_picker.php:76
|
1377 |
msgctxt "Date Time Picker JS currentText"
|
1378 |
msgid "Now"
|
1379 |
msgstr "Trenutno vrijeme"
|
1380 |
|
1381 |
+
#: includes/fields/class-acf-field-date_time_picker.php:77
|
1382 |
msgctxt "Date Time Picker JS closeText"
|
1383 |
msgid "Done"
|
1384 |
msgstr "Završeno"
|
1385 |
|
1386 |
+
#: includes/fields/class-acf-field-date_time_picker.php:78
|
1387 |
msgctxt "Date Time Picker JS selectText"
|
1388 |
msgid "Select"
|
1389 |
msgstr "Odaberi"
|
1390 |
|
1391 |
+
#: includes/fields/class-acf-field-date_time_picker.php:80
|
1392 |
msgctxt "Date Time Picker JS amText"
|
1393 |
msgid "AM"
|
1394 |
msgstr "Prije podne"
|
1395 |
|
1396 |
+
#: includes/fields/class-acf-field-date_time_picker.php:81
|
1397 |
msgctxt "Date Time Picker JS amTextShort"
|
1398 |
msgid "A"
|
1399 |
msgstr "Prije podne"
|
1400 |
|
1401 |
+
#: includes/fields/class-acf-field-date_time_picker.php:84
|
1402 |
msgctxt "Date Time Picker JS pmText"
|
1403 |
msgid "PM"
|
1404 |
msgstr "Poslije podne"
|
1405 |
|
1406 |
+
#: includes/fields/class-acf-field-date_time_picker.php:85
|
1407 |
msgctxt "Date Time Picker JS pmTextShort"
|
1408 |
msgid "P"
|
1409 |
msgstr "Poslije podne"
|
1412 |
msgid "Email"
|
1413 |
msgstr "Email"
|
1414 |
|
1415 |
+
#: includes/fields/class-acf-field-email.php:128,
|
1416 |
+
#: includes/fields/class-acf-field-number.php:136,
|
1417 |
+
#: includes/fields/class-acf-field-password.php:73,
|
1418 |
+
#: includes/fields/class-acf-field-text.php:108,
|
1419 |
+
#: includes/fields/class-acf-field-textarea.php:114,
|
1420 |
+
#: includes/fields/class-acf-field-url.php:112
|
1421 |
msgid "Placeholder Text"
|
1422 |
msgstr "Zadana vrijednost"
|
1423 |
|
1424 |
+
#: includes/fields/class-acf-field-email.php:129,
|
1425 |
+
#: includes/fields/class-acf-field-number.php:137,
|
1426 |
+
#: includes/fields/class-acf-field-password.php:74,
|
1427 |
+
#: includes/fields/class-acf-field-text.php:109,
|
1428 |
+
#: includes/fields/class-acf-field-textarea.php:115,
|
1429 |
+
#: includes/fields/class-acf-field-url.php:113
|
1430 |
msgid "Appears within the input"
|
1431 |
msgstr "Prikazuje se unutar polja"
|
1432 |
|
1433 |
+
#: includes/fields/class-acf-field-email.php:139,
|
1434 |
+
#: includes/fields/class-acf-field-number.php:147,
|
1435 |
+
#: includes/fields/class-acf-field-password.php:84,
|
1436 |
+
#: includes/fields/class-acf-field-range.php:210,
|
1437 |
+
#: includes/fields/class-acf-field-text.php:119
|
1438 |
msgid "Prepend"
|
1439 |
msgstr "Umetni ispred"
|
1440 |
|
1441 |
+
#: includes/fields/class-acf-field-email.php:140,
|
1442 |
+
#: includes/fields/class-acf-field-number.php:148,
|
1443 |
+
#: includes/fields/class-acf-field-password.php:85,
|
1444 |
+
#: includes/fields/class-acf-field-range.php:211,
|
1445 |
+
#: includes/fields/class-acf-field-text.php:120
|
1446 |
msgid "Appears before the input"
|
1447 |
msgstr "Prijazuje se ispred polja"
|
1448 |
|
1449 |
+
#: includes/fields/class-acf-field-email.php:150,
|
1450 |
+
#: includes/fields/class-acf-field-number.php:158,
|
1451 |
+
#: includes/fields/class-acf-field-password.php:95,
|
1452 |
+
#: includes/fields/class-acf-field-range.php:221,
|
1453 |
+
#: includes/fields/class-acf-field-text.php:130
|
1454 |
msgid "Append"
|
1455 |
msgstr "Umetni na kraj"
|
1456 |
|
1457 |
+
#: includes/fields/class-acf-field-email.php:151,
|
1458 |
+
#: includes/fields/class-acf-field-number.php:159,
|
1459 |
+
#: includes/fields/class-acf-field-password.php:96,
|
1460 |
+
#: includes/fields/class-acf-field-range.php:222,
|
1461 |
+
#: includes/fields/class-acf-field-text.php:131
|
1462 |
msgid "Appears after the input"
|
1463 |
msgstr "Prikazuje se iza polja"
|
1464 |
|
1465 |
+
#: includes/fields/class-acf-field-email.php:175
|
1466 |
+
msgid "'%s' is not a valid email address"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
#: includes/fields/class-acf-field-file.php:25
|
1470 |
msgid "File"
|
1471 |
msgstr "Datoteka"
|
1472 |
|
1473 |
+
#: includes/fields/class-acf-field-file.php:58,
|
1474 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:55
|
1475 |
+
msgid "Select File"
|
1476 |
+
msgstr "Odaberite datoteku"
|
1477 |
+
|
1478 |
+
#: includes/fields/class-acf-field-file.php:59
|
1479 |
msgid "Edit File"
|
1480 |
msgstr "Uredi datoteku"
|
1481 |
|
1482 |
+
#: includes/fields/class-acf-field-file.php:60
|
1483 |
msgid "Update File"
|
1484 |
msgstr "Ažuriraj datoteku"
|
1485 |
|
1486 |
+
#: includes/fields/class-acf-field-file.php:147
|
|
|
|
|
|
|
|
|
|
|
|
|
1487 |
msgid "File name"
|
1488 |
msgstr "Naziv datoteke"
|
1489 |
|
1490 |
+
#: includes/fields/class-acf-field-file.php:151,
|
1491 |
+
#: includes/fields/class-acf-field-file.php:264,
|
1492 |
+
#: includes/fields/class-acf-field-file.php:277,
|
1493 |
+
#: includes/fields/class-acf-field-image.php:276,
|
1494 |
+
#: includes/fields/class-acf-field-image.php:313,
|
1495 |
+
#: pro/fields/class-acf-field-gallery.php:682,
|
1496 |
#: pro/fields/class-acf-field-gallery.php:719
|
1497 |
msgid "File size"
|
1498 |
msgstr "Veličina datoteke"
|
1499 |
|
1500 |
+
#: includes/fields/class-acf-field-file.php:157,
|
1501 |
+
#: includes/fields/class-acf-field-image.php:137,
|
1502 |
+
#: includes/fields/class-acf-field-link.php:142,
|
1503 |
+
#: pro/fields/class-acf-field-gallery.php:335,
|
1504 |
+
#: includes/admin/views/field-group-field.php:56
|
1505 |
+
msgid "Edit"
|
1506 |
+
msgstr "Uredi"
|
1507 |
+
|
1508 |
+
#: includes/fields/class-acf-field-file.php:182,
|
1509 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:89
|
1510 |
+
msgid "No file selected"
|
1511 |
+
msgstr "Niste odabrali datoteku"
|
1512 |
|
1513 |
+
#: includes/fields/class-acf-field-file.php:182
|
1514 |
msgid "Add File"
|
1515 |
msgstr "Dodaj datoteku"
|
1516 |
|
1517 |
+
#: includes/fields/class-acf-field-file.php:233
|
1518 |
msgid "File Array"
|
1519 |
msgstr "Vrijednost kao niz"
|
1520 |
|
1521 |
+
#: includes/fields/class-acf-field-file.php:234
|
1522 |
msgid "File URL"
|
1523 |
msgstr "Putanja datoteke"
|
1524 |
|
1525 |
+
#: includes/fields/class-acf-field-file.php:235
|
1526 |
msgid "File ID"
|
1527 |
msgstr "Vrijednost kao ID"
|
1528 |
|
1529 |
+
#: includes/fields/class-acf-field-file.php:244,
|
1530 |
+
#: includes/fields/class-acf-field-image.php:233,
|
1531 |
+
#: pro/fields/class-acf-field-gallery.php:617
|
1532 |
msgid "Library"
|
1533 |
msgstr "Zbirka"
|
1534 |
|
1535 |
+
#: includes/fields/class-acf-field-file.php:245,
|
1536 |
+
#: includes/fields/class-acf-field-image.php:234,
|
1537 |
+
#: pro/fields/class-acf-field-gallery.php:618
|
1538 |
msgid "Limit the media library choice"
|
1539 |
msgstr "Ograniči odabir iz zbirke"
|
1540 |
|
1541 |
+
#: includes/fields/class-acf-field-file.php:250,
|
1542 |
+
#: includes/fields/class-acf-field-image.php:239,
|
1543 |
+
#: includes/locations/class-acf-location-attachment.php:73,
|
1544 |
+
#: includes/locations/class-acf-location-comment.php:61,
|
1545 |
+
#: includes/locations/class-acf-location-nav-menu.php:74,
|
1546 |
+
#: includes/locations/class-acf-location-taxonomy.php:63,
|
1547 |
+
#: includes/locations/class-acf-location-user-form.php:71,
|
1548 |
+
#: includes/locations/class-acf-location-user-role.php:78,
|
1549 |
+
#: includes/locations/class-acf-location-widget.php:65,
|
1550 |
+
#: pro/fields/class-acf-field-gallery.php:623,
|
1551 |
+
#: pro/locations/class-acf-location-block.php:66
|
1552 |
msgid "All"
|
1553 |
msgstr "Sve"
|
1554 |
|
1555 |
+
#: includes/fields/class-acf-field-file.php:251,
|
1556 |
+
#: includes/fields/class-acf-field-image.php:240,
|
1557 |
+
#: pro/fields/class-acf-field-gallery.php:624
|
1558 |
msgid "Uploaded to post"
|
1559 |
msgstr "Dodani uz trenutnu objavu"
|
1560 |
|
1561 |
+
#: includes/fields/class-acf-field-file.php:260,
|
1562 |
+
#: includes/fields/class-acf-field-image.php:249,
|
1563 |
+
#: pro/fields/class-acf-field-gallery.php:655
|
1564 |
msgid "Minimum"
|
1565 |
msgstr "Minimum"
|
1566 |
|
1567 |
+
#: includes/fields/class-acf-field-file.php:261,
|
1568 |
+
#: includes/fields/class-acf-field-file.php:274
|
1569 |
msgid "Restrict which files can be uploaded"
|
1570 |
msgstr "Ograniči tip datoteka koji se smije uvesti"
|
1571 |
|
1572 |
+
#: includes/fields/class-acf-field-file.php:273,
|
1573 |
+
#: includes/fields/class-acf-field-image.php:286,
|
1574 |
+
#: pro/fields/class-acf-field-gallery.php:692
|
1575 |
msgid "Maximum"
|
1576 |
msgstr "Maksimum"
|
1577 |
|
1578 |
+
#: includes/fields/class-acf-field-file.php:286,
|
1579 |
+
#: includes/fields/class-acf-field-image.php:323,
|
1580 |
+
#: pro/fields/class-acf-field-gallery.php:729
|
1581 |
msgid "Allowed file types"
|
1582 |
msgstr "Dozvoljeni tipovi datoteka"
|
1583 |
|
1584 |
+
#: includes/fields/class-acf-field-file.php:287,
|
1585 |
+
#: includes/fields/class-acf-field-image.php:324,
|
1586 |
+
#: pro/fields/class-acf-field-gallery.php:730
|
1587 |
msgid "Comma separated list. Leave blank for all types"
|
1588 |
msgstr ""
|
1589 |
"Dodaj kao niz odvojen zarezom, npr: .txt, .jpg, ... Ukoliko je prazno, sve "
|
1590 |
"datoteke su dozvoljene"
|
1591 |
|
1592 |
+
#: includes/fields/class-acf-field-file.php:469
|
1593 |
+
msgid "%s requires a valid attachment ID."
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
#: includes/fields/class-acf-field-google-map.php:25
|
1597 |
msgid "Google Map"
|
1598 |
msgstr "Google mapa"
|
1599 |
|
1600 |
+
#: includes/fields/class-acf-field-google-map.php:60
|
|
|
|
|
|
|
|
|
1601 |
msgid "Sorry, this browser does not support geolocation"
|
1602 |
msgstr "Nažalost, ovaj preglednik ne podržava geo lociranje"
|
1603 |
|
1604 |
+
#: includes/fields/class-acf-field-google-map.php:155,
|
1605 |
+
#: includes/fields/class-acf-field-relationship.php:615
|
1606 |
+
msgid "Search"
|
1607 |
+
msgstr "Pretraži"
|
1608 |
+
|
1609 |
+
#: includes/fields/class-acf-field-google-map.php:156
|
1610 |
msgid "Clear location"
|
1611 |
msgstr "Ukloni lokaciju"
|
1612 |
|
1613 |
+
#: includes/fields/class-acf-field-google-map.php:157
|
1614 |
msgid "Find current location"
|
1615 |
msgstr "Pronađi trenutnu lokaciju"
|
1616 |
|
1617 |
+
#: includes/fields/class-acf-field-google-map.php:160
|
1618 |
msgid "Search for address..."
|
1619 |
msgstr "Pretraži po adresi..."
|
1620 |
|
1621 |
+
#: includes/fields/class-acf-field-google-map.php:192,
|
1622 |
+
#: includes/fields/class-acf-field-google-map.php:205
|
1623 |
msgid "Center"
|
1624 |
msgstr "Centriraj"
|
1625 |
|
1626 |
+
#: includes/fields/class-acf-field-google-map.php:193,
|
1627 |
+
#: includes/fields/class-acf-field-google-map.php:206
|
1628 |
msgid "Center the initial map"
|
1629 |
msgstr "Centriraj prilikom učitavanja"
|
1630 |
|
1631 |
+
#: includes/fields/class-acf-field-google-map.php:219
|
1632 |
msgid "Zoom"
|
1633 |
msgstr "Uvećaj"
|
1634 |
|
1635 |
+
#: includes/fields/class-acf-field-google-map.php:220
|
1636 |
msgid "Set the initial zoom level"
|
1637 |
msgstr "Postavi zadanu vrijednost uvećanja"
|
1638 |
|
1639 |
+
#: includes/fields/class-acf-field-google-map.php:231,
|
1640 |
+
#: includes/fields/class-acf-field-image.php:264,
|
1641 |
+
#: includes/fields/class-acf-field-image.php:301,
|
1642 |
+
#: includes/fields/class-acf-field-oembed.php:292,
|
1643 |
+
#: pro/fields/class-acf-field-gallery.php:670,
|
1644 |
+
#: pro/fields/class-acf-field-gallery.php:707
|
1645 |
msgid "Height"
|
1646 |
msgstr "Visina"
|
1647 |
|
1648 |
+
#: includes/fields/class-acf-field-google-map.php:232
|
1649 |
+
#, fuzzy
|
1650 |
+
#| msgid "Customise the map height"
|
1651 |
+
msgid "Customize the map height"
|
1652 |
msgstr "Uredi visinu mape"
|
1653 |
|
1654 |
#: includes/fields/class-acf-field-group.php:25
|
1655 |
msgid "Group"
|
1656 |
msgstr "Skup polja"
|
1657 |
|
1658 |
+
#: includes/fields/class-acf-field-group.php:446,
|
1659 |
+
#: pro/fields/class-acf-field-repeater.php:381
|
1660 |
msgid "Sub Fields"
|
1661 |
msgstr "Pod polja"
|
1662 |
|
1663 |
+
#: includes/fields/class-acf-field-group.php:463,
|
1664 |
+
#: pro/fields/class-acf-field-clone.php:851
|
1665 |
msgid "Specify the style used to render the selected fields"
|
1666 |
msgstr "Odaberite način prikaza odabranih polja"
|
1667 |
|
1668 |
+
#: includes/fields/class-acf-field-group.php:468,
|
1669 |
+
#: pro/fields/class-acf-field-clone.php:856,
|
1670 |
+
#: pro/fields/class-acf-field-flexible-content.php:617,
|
1671 |
+
#: pro/fields/class-acf-field-repeater.php:459,
|
1672 |
+
#: pro/locations/class-acf-location-block.php:22
|
1673 |
msgid "Block"
|
1674 |
msgstr "Blok"
|
1675 |
|
1676 |
+
#: includes/fields/class-acf-field-group.php:469,
|
1677 |
+
#: pro/fields/class-acf-field-clone.php:857,
|
1678 |
+
#: pro/fields/class-acf-field-flexible-content.php:616,
|
1679 |
+
#: pro/fields/class-acf-field-repeater.php:458
|
1680 |
msgid "Table"
|
1681 |
msgstr "Tablica"
|
1682 |
|
1683 |
+
#: includes/fields/class-acf-field-group.php:470,
|
1684 |
+
#: pro/fields/class-acf-field-clone.php:858,
|
1685 |
+
#: pro/fields/class-acf-field-flexible-content.php:618,
|
1686 |
+
#: pro/fields/class-acf-field-repeater.php:460
|
1687 |
msgid "Row"
|
1688 |
msgstr "Red"
|
1689 |
|
1691 |
msgid "Image"
|
1692 |
msgstr "Slika"
|
1693 |
|
1694 |
+
#: includes/fields/class-acf-field-image.php:64
|
1695 |
msgid "Select Image"
|
1696 |
msgstr "Odaberi sliku"
|
1697 |
|
1698 |
+
#: includes/fields/class-acf-field-image.php:65
|
|
|
1699 |
msgid "Edit Image"
|
1700 |
msgstr "Uredi sliku"
|
1701 |
|
1702 |
+
#: includes/fields/class-acf-field-image.php:66
|
|
|
1703 |
msgid "Update Image"
|
1704 |
msgstr "Ažuriraj sliku"
|
1705 |
|
1706 |
+
#: includes/fields/class-acf-field-image.php:158
|
|
|
|
|
|
|
|
|
1707 |
msgid "No image selected"
|
1708 |
msgstr "Nema odabranih slika"
|
1709 |
|
1710 |
+
#: includes/fields/class-acf-field-image.php:158
|
1711 |
msgid "Add Image"
|
1712 |
msgstr "Dodaj sliku"
|
1713 |
|
1714 |
+
#: includes/fields/class-acf-field-image.php:210,
|
1715 |
+
#: pro/fields/class-acf-field-gallery.php:579
|
1716 |
msgid "Image Array"
|
1717 |
msgstr "Podaci kao niz"
|
1718 |
|
1719 |
+
#: includes/fields/class-acf-field-image.php:211,
|
1720 |
+
#: pro/fields/class-acf-field-gallery.php:580
|
1721 |
msgid "Image URL"
|
1722 |
msgstr "Putanja slike"
|
1723 |
|
1724 |
+
#: includes/fields/class-acf-field-image.php:212,
|
1725 |
+
#: pro/fields/class-acf-field-gallery.php:581
|
1726 |
msgid "Image ID"
|
1727 |
msgstr "ID slike"
|
1728 |
|
1729 |
+
#: includes/fields/class-acf-field-image.php:221,
|
1730 |
+
#: pro/fields/class-acf-field-gallery.php:590
|
1731 |
msgid "Preview Size"
|
1732 |
msgstr "Veličina prikaza prilikom uređivanja stranice"
|
1733 |
|
1734 |
+
#: includes/fields/class-acf-field-image.php:250,
|
1735 |
+
#: includes/fields/class-acf-field-image.php:287,
|
1736 |
+
#: pro/fields/class-acf-field-gallery.php:656,
|
1737 |
+
#: pro/fields/class-acf-field-gallery.php:693
|
|
|
|
|
|
|
|
|
1738 |
msgid "Restrict which images can be uploaded"
|
1739 |
msgstr "Ograniči koje slike mogu biti dodane"
|
1740 |
|
1741 |
+
#: includes/fields/class-acf-field-image.php:253,
|
1742 |
+
#: includes/fields/class-acf-field-image.php:290,
|
1743 |
+
#: includes/fields/class-acf-field-oembed.php:279,
|
1744 |
+
#: pro/fields/class-acf-field-gallery.php:659,
|
1745 |
+
#: pro/fields/class-acf-field-gallery.php:696
|
1746 |
msgid "Width"
|
1747 |
msgstr "Širina"
|
1748 |
|
1750 |
msgid "Link"
|
1751 |
msgstr "Poveznica"
|
1752 |
|
1753 |
+
#: includes/fields/class-acf-field-link.php:137
|
1754 |
msgid "Select Link"
|
1755 |
msgstr "Odaberite poveznicu"
|
1756 |
|
1757 |
+
#: includes/fields/class-acf-field-link.php:142
|
1758 |
msgid "Opens in a new window/tab"
|
1759 |
msgstr "Otvori u novom prozoru/kartici"
|
1760 |
|
1761 |
+
#: includes/fields/class-acf-field-link.php:176
|
1762 |
msgid "Link Array"
|
1763 |
msgstr "Vrijednost kao niz"
|
1764 |
|
1765 |
+
#: includes/fields/class-acf-field-link.php:177
|
1766 |
msgid "Link URL"
|
1767 |
msgstr "Putanja poveznice"
|
1768 |
|
1769 |
+
#: includes/fields/class-acf-field-message.php:26,
|
1770 |
+
#: includes/fields/class-acf-field-message.php:100,
|
1771 |
+
#: includes/fields/class-acf-field-true_false.php:137
|
1772 |
msgid "Message"
|
1773 |
msgstr "Poruka"
|
1774 |
|
1775 |
+
#: includes/fields/class-acf-field-message.php:111,
|
1776 |
+
#: includes/fields/class-acf-field-textarea.php:148
|
1777 |
msgid "New Lines"
|
1778 |
msgstr "Broj linija"
|
1779 |
|
1780 |
+
#: includes/fields/class-acf-field-message.php:112,
|
1781 |
+
#: includes/fields/class-acf-field-textarea.php:149
|
1782 |
msgid "Controls how new lines are rendered"
|
1783 |
msgstr "Određuje način prikaza novih linija"
|
1784 |
|
1785 |
+
#: includes/fields/class-acf-field-message.php:116,
|
1786 |
+
#: includes/fields/class-acf-field-textarea.php:153
|
1787 |
msgid "Automatically add paragraphs"
|
1788 |
msgstr "Dodaj paragraf"
|
1789 |
|
1790 |
+
#: includes/fields/class-acf-field-message.php:117,
|
1791 |
+
#: includes/fields/class-acf-field-textarea.php:154
|
1792 |
msgid "Automatically add <br>"
|
1793 |
msgstr "Dodaj novi red - <br>"
|
1794 |
|
1795 |
+
#: includes/fields/class-acf-field-message.php:118,
|
1796 |
+
#: includes/fields/class-acf-field-textarea.php:155
|
1797 |
msgid "No Formatting"
|
1798 |
msgstr "Bez obrade"
|
1799 |
|
1800 |
+
#: includes/fields/class-acf-field-message.php:127
|
1801 |
msgid "Escape HTML"
|
1802 |
msgstr "Onemogući HTML"
|
1803 |
|
1804 |
+
#: includes/fields/class-acf-field-message.php:128
|
1805 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
1806 |
msgstr "Prikažite HTML kodove kao tekst umjesto iscrtavanja"
|
1807 |
|
1809 |
msgid "Number"
|
1810 |
msgstr "Broj"
|
1811 |
|
1812 |
+
#: includes/fields/class-acf-field-number.php:169,
|
1813 |
+
#: includes/fields/class-acf-field-range.php:174
|
1814 |
msgid "Minimum Value"
|
1815 |
msgstr "Minimum"
|
1816 |
|
1817 |
+
#: includes/fields/class-acf-field-number.php:180,
|
1818 |
+
#: includes/fields/class-acf-field-range.php:186
|
1819 |
msgid "Maximum Value"
|
1820 |
msgstr "Maksimum"
|
1821 |
|
1822 |
+
#: includes/fields/class-acf-field-number.php:191,
|
1823 |
+
#: includes/fields/class-acf-field-range.php:198
|
1824 |
msgid "Step Size"
|
1825 |
msgstr "Korak"
|
1826 |
|
1827 |
+
#: includes/fields/class-acf-field-number.php:229
|
1828 |
msgid "Value must be a number"
|
1829 |
msgstr "Vrijednost mora biti broj"
|
1830 |
|
1831 |
+
#: includes/fields/class-acf-field-number.php:244
|
|
|
1832 |
msgid "Value must be equal to or higher than %d"
|
1833 |
msgstr "Unešena vrijednost mora biti jednaka ili viša od %d"
|
1834 |
|
1835 |
+
#: includes/fields/class-acf-field-number.php:251
|
|
|
1836 |
msgid "Value must be equal to or lower than %d"
|
1837 |
msgstr "Unešena vrijednost mora biti jednaka ili niža od %d"
|
1838 |
|
1840 |
msgid "oEmbed"
|
1841 |
msgstr "oEmbed"
|
1842 |
|
1843 |
+
#: includes/fields/class-acf-field-oembed.php:230
|
1844 |
msgid "Enter URL"
|
1845 |
msgstr "Poveznica"
|
1846 |
|
1847 |
+
#: includes/fields/class-acf-field-oembed.php:276,
|
1848 |
+
#: includes/fields/class-acf-field-oembed.php:289
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1849 |
msgid "Embed Size"
|
1850 |
msgstr "Dimenzija umetka"
|
1851 |
|
1852 |
+
#: includes/fields/class-acf-field-page_link.php:25
|
1853 |
+
msgid "Page Link"
|
1854 |
+
msgstr "URL stranice"
|
1855 |
+
|
1856 |
+
#: includes/fields/class-acf-field-page_link.php:165
|
1857 |
msgid "Archives"
|
1858 |
msgstr "Arhiva"
|
1859 |
|
1860 |
+
#: includes/fields/class-acf-field-page_link.php:249,
|
1861 |
+
#: includes/fields/class-acf-field-post_object.php:250,
|
1862 |
+
#: includes/fields/class-acf-field-taxonomy.php:948
|
1863 |
msgid "Parent"
|
1864 |
msgstr "Matični"
|
1865 |
|
1866 |
+
#: includes/fields/class-acf-field-page_link.php:450,
|
1867 |
+
#: includes/fields/class-acf-field-post_object.php:362,
|
1868 |
+
#: includes/fields/class-acf-field-relationship.php:578
|
1869 |
msgid "Filter by Post Type"
|
1870 |
msgstr "Filtriraj po tipu posta"
|
1871 |
|
1872 |
+
#: includes/fields/class-acf-field-page_link.php:458,
|
1873 |
+
#: includes/fields/class-acf-field-post_object.php:370,
|
1874 |
+
#: includes/fields/class-acf-field-relationship.php:586
|
1875 |
msgid "All post types"
|
1876 |
msgstr "Svi tipovi"
|
1877 |
|
1878 |
+
#: includes/fields/class-acf-field-page_link.php:466,
|
1879 |
+
#: includes/fields/class-acf-field-post_object.php:378,
|
1880 |
+
#: includes/fields/class-acf-field-relationship.php:594
|
1881 |
msgid "Filter by Taxonomy"
|
1882 |
msgstr "Filtriraj prema taksonomiji"
|
1883 |
|
1884 |
+
#: includes/fields/class-acf-field-page_link.php:474,
|
1885 |
+
#: includes/fields/class-acf-field-post_object.php:386,
|
1886 |
+
#: includes/fields/class-acf-field-relationship.php:602
|
1887 |
msgid "All taxonomies"
|
1888 |
msgstr "Sve taksonomije"
|
1889 |
|
1890 |
+
#: includes/fields/class-acf-field-page_link.php:494
|
1891 |
msgid "Allow Archives URLs"
|
1892 |
msgstr "Omogući odabir arhive tipova"
|
1893 |
|
1894 |
+
#: includes/fields/class-acf-field-page_link.php:506,
|
1895 |
+
#: includes/fields/class-acf-field-post_object.php:406,
|
1896 |
+
#: includes/fields/class-acf-field-select.php:398,
|
1897 |
+
#: includes/fields/class-acf-field-user.php:79
|
1898 |
msgid "Select multiple values?"
|
1899 |
msgstr "Dozvoli odabir više vrijednosti?"
|
1900 |
|
1902 |
msgid "Password"
|
1903 |
msgstr "Lozinka"
|
1904 |
|
1905 |
+
#: includes/fields/class-acf-field-post_object.php:25,
|
1906 |
+
#: includes/fields/class-acf-field-post_object.php:423,
|
1907 |
+
#: includes/fields/class-acf-field-relationship.php:667
|
1908 |
msgid "Post Object"
|
1909 |
msgstr "Objekt"
|
1910 |
|
1911 |
+
#: includes/fields/class-acf-field-post_object.php:424,
|
1912 |
+
#: includes/fields/class-acf-field-relationship.php:668
|
1913 |
msgid "Post ID"
|
1914 |
msgstr "ID objave"
|
1915 |
|
1916 |
+
#: includes/fields/class-acf-field-post_object.php:642
|
1917 |
+
msgid "%1$s must have a valid post ID."
|
1918 |
+
msgstr ""
|
1919 |
+
|
1920 |
+
#: includes/fields/class-acf-field-post_object.php:651
|
1921 |
+
msgid "%1$s must be of post type %2$s."
|
1922 |
+
msgid_plural "%1$s must be of one of the following post types: %2$s"
|
1923 |
+
msgstr[0] ""
|
1924 |
+
msgstr[1] ""
|
1925 |
+
msgstr[2] ""
|
1926 |
+
|
1927 |
+
#: includes/fields/class-acf-field-post_object.php:667
|
1928 |
+
msgid "%1$s must have term %2$s."
|
1929 |
+
msgid_plural "%1$s must have one of the following terms: %2$s"
|
1930 |
+
msgstr[0] ""
|
1931 |
+
msgstr[1] ""
|
1932 |
+
msgstr[2] ""
|
1933 |
+
|
1934 |
#: includes/fields/class-acf-field-radio.php:25
|
1935 |
msgid "Radio Button"
|
1936 |
msgstr "Radiogumb"
|
1937 |
|
1938 |
+
#: includes/fields/class-acf-field-radio.php:214
|
1939 |
msgid "Other"
|
1940 |
msgstr "Drugo"
|
1941 |
|
1942 |
+
#: includes/fields/class-acf-field-radio.php:219
|
1943 |
msgid "Add 'other' choice to allow for custom values"
|
1944 |
msgstr "Dodaj odabir ’ostalo’ za slobodan unost"
|
1945 |
|
1946 |
+
#: includes/fields/class-acf-field-radio.php:227
|
1947 |
msgid "Save Other"
|
1948 |
msgstr "Spremi ostale"
|
1949 |
|
1950 |
+
#: includes/fields/class-acf-field-radio.php:232
|
1951 |
msgid "Save 'other' values to the field's choices"
|
1952 |
msgstr "Spremi ostale vrijednosti i omogući njihov odabir"
|
1953 |
|
1959 |
msgid "Relationship"
|
1960 |
msgstr "Veza"
|
1961 |
|
1962 |
+
#: includes/fields/class-acf-field-relationship.php:63
|
|
|
|
|
|
|
|
|
1963 |
msgid "Maximum values reached ( {max} values )"
|
1964 |
msgstr "Već ste dodali najviše dozvoljenih vrijednosti (najviše: {max})"
|
1965 |
|
1966 |
+
#: includes/fields/class-acf-field-relationship.php:64
|
1967 |
msgid "Loading"
|
1968 |
msgstr "Učitavanje"
|
1969 |
|
1970 |
+
#: includes/fields/class-acf-field-relationship.php:65
|
1971 |
msgid "No matches found"
|
1972 |
msgstr "Nema rezultata"
|
1973 |
|
1974 |
+
#: includes/fields/class-acf-field-relationship.php:390
|
1975 |
msgid "Select post type"
|
1976 |
msgstr "Odaberi tip posta"
|
1977 |
|
1978 |
+
#: includes/fields/class-acf-field-relationship.php:399
|
1979 |
msgid "Select taxonomy"
|
1980 |
msgstr "Odebarite taksonomiju"
|
1981 |
|
1982 |
+
#: includes/fields/class-acf-field-relationship.php:469
|
1983 |
msgid "Search..."
|
1984 |
msgstr "Pretraga…"
|
1985 |
|
1986 |
+
#: includes/fields/class-acf-field-relationship.php:610
|
1987 |
msgid "Filters"
|
1988 |
msgstr "Filteri"
|
1989 |
|
1990 |
+
#: includes/fields/class-acf-field-relationship.php:616,
|
1991 |
+
#: includes/locations/class-acf-location-post-type.php:22
|
1992 |
msgid "Post Type"
|
1993 |
msgstr "Tip objave"
|
1994 |
|
1995 |
+
#: includes/fields/class-acf-field-relationship.php:617,
|
1996 |
+
#: includes/fields/class-acf-field-taxonomy.php:28,
|
1997 |
+
#: includes/fields/class-acf-field-taxonomy.php:714,
|
1998 |
+
#: includes/locations/class-acf-location-taxonomy.php:22
|
1999 |
msgid "Taxonomy"
|
2000 |
msgstr "Taksonomija"
|
2001 |
|
2002 |
+
#: includes/fields/class-acf-field-relationship.php:626
|
2003 |
msgid "Elements"
|
2004 |
msgstr "Elementi"
|
2005 |
|
2006 |
+
#: includes/fields/class-acf-field-relationship.php:627
|
2007 |
msgid "Selected elements will be displayed in each result"
|
2008 |
msgstr "Odabrani elementi bit će prikazani u svakom rezultatu"
|
2009 |
|
2010 |
+
#: includes/fields/class-acf-field-relationship.php:631,
|
2011 |
+
#: includes/admin/views/field-group-options.php:150
|
2012 |
+
msgid "Featured Image"
|
2013 |
+
msgstr "Istaknuta slika"
|
2014 |
+
|
2015 |
+
#: includes/fields/class-acf-field-relationship.php:640
|
2016 |
msgid "Minimum posts"
|
2017 |
msgstr "Minimalno"
|
2018 |
|
2019 |
+
#: includes/fields/class-acf-field-relationship.php:651
|
2020 |
msgid "Maximum posts"
|
2021 |
msgstr "Maksimalno"
|
2022 |
|
2023 |
+
#: includes/fields/class-acf-field-relationship.php:752,
|
2024 |
+
#: pro/fields/class-acf-field-gallery.php:832
|
2025 |
+
#, fuzzy
|
2026 |
+
#| msgid "1 field requires attention"
|
2027 |
+
msgid "%1$s requires at least %2$s selection"
|
2028 |
+
msgid_plural "%1$s requires at least %2$s selections"
|
2029 |
+
msgstr[0] "1 polje treba vašu pažnju"
|
2030 |
+
msgstr[1] "1 polje treba vašu pažnju"
|
2031 |
+
msgstr[2] "1 polje treba vašu pažnju"
|
2032 |
+
|
2033 |
+
#: includes/fields/class-acf-field-select.php:25,
|
2034 |
+
#: includes/fields/class-acf-field-taxonomy.php:738
|
2035 |
msgctxt "noun"
|
2036 |
msgid "Select"
|
2037 |
msgstr "Odaberi"
|
2038 |
|
2039 |
+
#: includes/fields/class-acf-field-select.php:107
|
2040 |
msgctxt "Select2 JS matches_1"
|
2041 |
msgid "One result is available, press enter to select it."
|
2042 |
msgstr "Jedan rezultat dostupan, pritisnite enter za odabir."
|
2043 |
|
2044 |
+
#: includes/fields/class-acf-field-select.php:108
|
|
|
2045 |
msgctxt "Select2 JS matches_n"
|
2046 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2047 |
msgstr "%d rezultata dostupno, za pomicanje koristite strelice gore/dole."
|
2048 |
|
2049 |
+
#: includes/fields/class-acf-field-select.php:109
|
2050 |
msgctxt "Select2 JS matches_0"
|
2051 |
msgid "No matches found"
|
2052 |
msgstr "Nema rezultata"
|
2053 |
|
2054 |
+
#: includes/fields/class-acf-field-select.php:110
|
2055 |
msgctxt "Select2 JS input_too_short_1"
|
2056 |
msgid "Please enter 1 or more characters"
|
2057 |
msgstr "Molimo unesite 1 ili više znakova"
|
2058 |
|
2059 |
+
#: includes/fields/class-acf-field-select.php:111
|
|
|
2060 |
msgctxt "Select2 JS input_too_short_n"
|
2061 |
msgid "Please enter %d or more characters"
|
2062 |
msgstr "Molimo unesite najmanje %d ili više znakova"
|
2063 |
|
2064 |
+
#: includes/fields/class-acf-field-select.php:112
|
2065 |
msgctxt "Select2 JS input_too_long_1"
|
2066 |
msgid "Please delete 1 character"
|
2067 |
msgstr "Molimo obrišite 1 znak"
|
2068 |
|
2069 |
+
#: includes/fields/class-acf-field-select.php:113
|
|
|
2070 |
msgctxt "Select2 JS input_too_long_n"
|
2071 |
msgid "Please delete %d characters"
|
2072 |
msgstr "Molimo obrišite višak znakova - %d znak(ova) je višak"
|
2073 |
|
2074 |
+
#: includes/fields/class-acf-field-select.php:114
|
2075 |
msgctxt "Select2 JS selection_too_long_1"
|
2076 |
msgid "You can only select 1 item"
|
2077 |
msgstr "Moguće je odabrati samo jednu opciju"
|
2078 |
|
2079 |
+
#: includes/fields/class-acf-field-select.php:115
|
|
|
2080 |
msgctxt "Select2 JS selection_too_long_n"
|
2081 |
msgid "You can only select %d items"
|
2082 |
msgstr "Odabir opcija je ograničen na najviše %d"
|
2083 |
|
2084 |
+
#: includes/fields/class-acf-field-select.php:116
|
2085 |
msgctxt "Select2 JS load_more"
|
2086 |
msgid "Loading more results…"
|
2087 |
msgstr "Učitavam rezultate…"
|
2088 |
|
2089 |
+
#: includes/fields/class-acf-field-select.php:117
|
2090 |
msgctxt "Select2 JS searching"
|
2091 |
msgid "Searching…"
|
2092 |
msgstr "Pretražujem…"
|
2093 |
|
2094 |
+
#: includes/fields/class-acf-field-select.php:118
|
2095 |
msgctxt "Select2 JS load_fail"
|
2096 |
msgid "Loading failed"
|
2097 |
msgstr "Neuspješno učitavanje"
|
2098 |
|
2099 |
+
#: includes/fields/class-acf-field-select.php:410,
|
2100 |
+
#: includes/fields/class-acf-field-true_false.php:159
|
|
|
|
|
|
|
|
|
|
|
2101 |
msgid "Stylised UI"
|
2102 |
msgstr "Stilizirano sučelje"
|
2103 |
|
2104 |
+
#: includes/fields/class-acf-field-select.php:422
|
2105 |
msgid "Use AJAX to lazy load choices?"
|
2106 |
msgstr "Asinkrono učitaj dostupne odabire?"
|
2107 |
|
2108 |
+
#: includes/fields/class-acf-field-select.php:440
|
2109 |
msgid "Specify the value returned"
|
2110 |
msgstr "Preciziraj vrijednost za povrat"
|
2111 |
|
2112 |
+
#: includes/fields/class-acf-field-select.php:663
|
2113 |
+
msgid "%1$s is not one of %2$s"
|
2114 |
+
msgstr ""
|
2115 |
+
|
2116 |
#: includes/fields/class-acf-field-separator.php:25
|
2117 |
msgid "Separator"
|
2118 |
msgstr "Razdjelnik"
|
2119 |
|
2120 |
+
#: includes/fields/class-acf-field-tab.php:26
|
2121 |
msgid "Tab"
|
2122 |
msgstr "Kartica"
|
2123 |
|
2124 |
+
#: includes/fields/class-acf-field-tab.php:103
|
2125 |
msgid "Placement"
|
2126 |
msgstr "Pozicija"
|
2127 |
|
2128 |
+
#: includes/fields/class-acf-field-tab.php:107,
|
2129 |
+
#: includes/admin/views/field-group-options.php:87
|
2130 |
+
msgid "Top aligned"
|
2131 |
+
msgstr "Poravnato sa vrhom"
|
2132 |
+
|
2133 |
+
#: includes/fields/class-acf-field-tab.php:108,
|
2134 |
+
#: includes/admin/views/field-group-options.php:88
|
2135 |
+
msgid "Left aligned"
|
2136 |
+
msgstr "Lijevo poravnato"
|
2137 |
+
|
2138 |
+
#: includes/fields/class-acf-field-tab.php:118
|
2139 |
msgid ""
|
2140 |
"Define an endpoint for the previous tabs to stop. This will start a new "
|
2141 |
"group of tabs."
|
2143 |
"Preciziraj prijelomnu točku za prethodne kartice. Ovo će omogućiti novi skup "
|
2144 |
"kartica nakon prijelomne točke."
|
2145 |
|
2146 |
+
#: includes/fields/class-acf-field-taxonomy.php:673
|
|
|
2147 |
msgctxt "No terms"
|
2148 |
msgid "No %s"
|
2149 |
msgstr "Nema %s"
|
2150 |
|
2151 |
+
#: includes/fields/class-acf-field-taxonomy.php:715
|
|
|
|
|
|
|
|
|
2152 |
msgid "Select the taxonomy to be displayed"
|
2153 |
msgstr "Odaberite taksonomiju za prikaz"
|
2154 |
|
2155 |
+
#: includes/fields/class-acf-field-taxonomy.php:726
|
2156 |
msgid "Appearance"
|
2157 |
msgstr "Prikaz"
|
2158 |
|
2159 |
+
#: includes/fields/class-acf-field-taxonomy.php:727
|
2160 |
msgid "Select the appearance of this field"
|
2161 |
msgstr "Odaberite izgled polja"
|
2162 |
|
2163 |
+
#: includes/fields/class-acf-field-taxonomy.php:732
|
2164 |
msgid "Multiple Values"
|
2165 |
msgstr "Omogući odabir više vrijednosti"
|
2166 |
|
2167 |
+
#: includes/fields/class-acf-field-taxonomy.php:734
|
2168 |
msgid "Multi Select"
|
2169 |
msgstr "Više odabira"
|
2170 |
|
2171 |
+
#: includes/fields/class-acf-field-taxonomy.php:736
|
2172 |
msgid "Single Value"
|
2173 |
msgstr "Jedan odabir"
|
2174 |
|
2175 |
+
#: includes/fields/class-acf-field-taxonomy.php:737
|
2176 |
msgid "Radio Buttons"
|
2177 |
msgstr "Radiogumbi"
|
2178 |
|
2179 |
+
#: includes/fields/class-acf-field-taxonomy.php:765
|
2180 |
msgid "Create Terms"
|
2181 |
msgstr "Kreiraj pojmove"
|
2182 |
|
2183 |
+
#: includes/fields/class-acf-field-taxonomy.php:766
|
2184 |
msgid "Allow new terms to be created whilst editing"
|
2185 |
msgstr "Omogući kreiranje pojmova prilikom uređivanja"
|
2186 |
|
2187 |
+
#: includes/fields/class-acf-field-taxonomy.php:777
|
2188 |
msgid "Save Terms"
|
2189 |
msgstr "Spremi pojmove"
|
2190 |
|
2191 |
+
#: includes/fields/class-acf-field-taxonomy.php:778
|
2192 |
msgid "Connect selected terms to the post"
|
2193 |
msgstr "Spoji odabrane pojmove sa objavom"
|
2194 |
|
2195 |
+
#: includes/fields/class-acf-field-taxonomy.php:789
|
2196 |
msgid "Load Terms"
|
2197 |
msgstr "Učitaj pojmove"
|
2198 |
|
2199 |
+
#: includes/fields/class-acf-field-taxonomy.php:790
|
2200 |
msgid "Load value from posts terms"
|
2201 |
msgstr "Učitaj pojmove iz objave"
|
2202 |
|
2203 |
+
#: includes/fields/class-acf-field-taxonomy.php:806
|
2204 |
msgid "Term Object"
|
2205 |
msgstr "Vrijednost pojma kao objekt"
|
2206 |
|
2207 |
+
#: includes/fields/class-acf-field-taxonomy.php:807
|
2208 |
msgid "Term ID"
|
2209 |
msgstr "Vrijednost kao: ID pojma"
|
2210 |
|
2211 |
+
#: includes/fields/class-acf-field-taxonomy.php:862
|
|
|
2212 |
msgid "User unable to add new %s"
|
2213 |
msgstr "Korisnik nije u mogućnosti dodati %s"
|
2214 |
|
2215 |
+
#: includes/fields/class-acf-field-taxonomy.php:874
|
|
|
2216 |
msgid "%s already exists"
|
2217 |
msgstr "%s već postoji"
|
2218 |
|
2219 |
+
#: includes/fields/class-acf-field-taxonomy.php:910
|
|
|
2220 |
msgid "%s added"
|
2221 |
msgstr "Dodano: %s"
|
2222 |
|
2223 |
+
#: includes/fields/class-acf-field-taxonomy.php:926,
|
2224 |
+
#: pro/fields/class-acf-field-flexible-content.php:597,
|
2225 |
+
#: includes/admin/views/field-group-fields.php:6
|
2226 |
+
msgid "Name"
|
2227 |
+
msgstr "Naziv"
|
2228 |
+
|
2229 |
+
#: includes/fields/class-acf-field-taxonomy.php:961,
|
2230 |
+
#: includes/locations/class-acf-location-user-form.php:72
|
2231 |
msgid "Add"
|
2232 |
msgstr "Dodaj"
|
2233 |
|
2235 |
msgid "Text"
|
2236 |
msgstr "Tekst"
|
2237 |
|
2238 |
+
#: includes/fields/class-acf-field-text.php:141,
|
2239 |
+
#: includes/fields/class-acf-field-textarea.php:125
|
2240 |
msgid "Character Limit"
|
2241 |
msgstr "Ograniči broj znakova"
|
2242 |
|
2243 |
+
#: includes/fields/class-acf-field-text.php:142,
|
2244 |
+
#: includes/fields/class-acf-field-textarea.php:126
|
2245 |
msgid "Leave blank for no limit"
|
2246 |
msgstr "Ostavite prazno za neograničeno"
|
2247 |
|
2248 |
+
#: includes/fields/class-acf-field-text.php:168,
|
2249 |
+
#: includes/fields/class-acf-field-textarea.php:221
|
2250 |
+
#, fuzzy
|
2251 |
+
#| msgctxt "Select2 JS input_too_long_n"
|
2252 |
+
#| msgid "Please delete %d characters"
|
2253 |
+
msgid "Value must not exceed %d characters"
|
2254 |
+
msgstr "Molimo obrišite višak znakova - %d znak(ova) je višak"
|
2255 |
+
|
2256 |
#: includes/fields/class-acf-field-textarea.php:25
|
2257 |
msgid "Text Area"
|
2258 |
msgstr "Tekst polje"
|
2259 |
|
2260 |
+
#: includes/fields/class-acf-field-textarea.php:136
|
2261 |
msgid "Rows"
|
2262 |
msgstr "Broj redova"
|
2263 |
|
2264 |
+
#: includes/fields/class-acf-field-textarea.php:137
|
2265 |
msgid "Sets the textarea height"
|
2266 |
msgstr "Podesi visinu tekstualnog polja"
|
2267 |
|
2273 |
msgid "True / False"
|
2274 |
msgstr "True / False"
|
2275 |
|
2276 |
+
#: includes/fields/class-acf-field-true_false.php:138
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2277 |
msgid "Displays text alongside the checkbox"
|
2278 |
msgstr "Prikazuje tekst uz odabirni okvir"
|
2279 |
|
2280 |
+
#: includes/fields/class-acf-field-true_false.php:172
|
2281 |
msgid "On Text"
|
2282 |
msgstr "Tekst za aktivno stanje"
|
2283 |
|
2284 |
+
#: includes/fields/class-acf-field-true_false.php:173
|
2285 |
msgid "Text shown when active"
|
2286 |
msgstr "Tekst prikazan dok je polje aktivno"
|
2287 |
|
2288 |
+
#: includes/fields/class-acf-field-true_false.php:189
|
2289 |
msgid "Off Text"
|
2290 |
msgstr "Tekst za neaktivno stanje"
|
2291 |
|
2292 |
+
#: includes/fields/class-acf-field-true_false.php:190
|
2293 |
msgid "Text shown when inactive"
|
2294 |
msgstr "Tekst prikazan dok je polje neaktivno"
|
2295 |
|
2297 |
msgid "Url"
|
2298 |
msgstr "Poveznica"
|
2299 |
|
2300 |
+
#: includes/fields/class-acf-field-url.php:154
|
2301 |
msgid "Value must be a valid URL"
|
2302 |
msgstr "Vrijednost molja biti valjana"
|
2303 |
|
2304 |
+
#: includes/fields/class-acf-field-user.php:53
|
|
|
|
|
|
|
|
|
2305 |
msgid "Filter by role"
|
2306 |
msgstr "Filtar prema ulozi"
|
2307 |
|
2308 |
+
#: includes/fields/class-acf-field-user.php:61
|
2309 |
msgid "All user roles"
|
2310 |
msgstr "Sve uloge"
|
2311 |
|
2312 |
+
#: includes/fields/class-acf-field-user.php:95
|
2313 |
+
#, fuzzy
|
2314 |
+
#| msgid "File Array"
|
2315 |
+
msgid "User Array"
|
2316 |
+
msgstr "Vrijednost kao niz"
|
2317 |
+
|
2318 |
+
#: includes/fields/class-acf-field-user.php:96
|
2319 |
+
#, fuzzy
|
2320 |
+
#| msgid "Term Object"
|
2321 |
+
msgid "User Object"
|
2322 |
+
msgstr "Vrijednost pojma kao objekt"
|
2323 |
+
|
2324 |
+
#: includes/fields/class-acf-field-user.php:97
|
2325 |
+
#, fuzzy
|
2326 |
+
#| msgid "User"
|
2327 |
+
msgid "User ID"
|
2328 |
+
msgstr "Korisnik"
|
2329 |
+
|
2330 |
+
#: includes/fields/class-acf-field-user.php:350
|
2331 |
+
#, fuzzy
|
2332 |
+
#| msgctxt "Select2 JS load_fail"
|
2333 |
+
#| msgid "Loading failed"
|
2334 |
+
msgid "Error loading field."
|
2335 |
+
msgstr "Neuspješno učitavanje"
|
2336 |
+
|
2337 |
+
#: includes/fields/class-acf-field-user.php:355
|
2338 |
+
#, fuzzy
|
2339 |
+
#| msgid "Error validating request"
|
2340 |
+
msgid "Invalid request."
|
2341 |
+
msgstr "Greška prilikom verifikacije"
|
2342 |
+
|
2343 |
+
#: includes/fields/class-acf-field-user.php:517
|
2344 |
+
msgid "%1$s must have a valid user ID."
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: includes/fields/class-acf-field-user.php:526
|
2348 |
+
msgid "%1$s must have a user with the %2$s role."
|
2349 |
+
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
2350 |
+
msgstr[0] ""
|
2351 |
+
msgstr[1] ""
|
2352 |
+
msgstr[2] ""
|
2353 |
+
|
2354 |
#: includes/fields/class-acf-field-wysiwyg.php:25
|
2355 |
msgid "Wysiwyg Editor"
|
2356 |
msgstr "Vizualno uređivanje"
|
2357 |
|
2358 |
+
#: includes/fields/class-acf-field-wysiwyg.php:282
|
2359 |
msgid "Visual"
|
2360 |
msgstr "Vizualno"
|
2361 |
|
2362 |
+
#: includes/fields/class-acf-field-wysiwyg.php:283
|
2363 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
2364 |
msgid "Text"
|
2365 |
msgstr "Tekst polje"
|
2366 |
|
2367 |
+
#: includes/fields/class-acf-field-wysiwyg.php:289
|
2368 |
msgid "Click to initialize TinyMCE"
|
2369 |
msgstr "Aktiviraj vizualno uređivanje na klik"
|
2370 |
|
2371 |
+
#: includes/fields/class-acf-field-wysiwyg.php:345
|
2372 |
msgid "Tabs"
|
2373 |
msgstr "Kartice"
|
2374 |
|
2375 |
+
#: includes/fields/class-acf-field-wysiwyg.php:350
|
2376 |
msgid "Visual & Text"
|
2377 |
msgstr "Vizualno i tekstualno"
|
2378 |
|
2379 |
+
#: includes/fields/class-acf-field-wysiwyg.php:351
|
2380 |
msgid "Visual Only"
|
2381 |
msgstr "Samo vizualni"
|
2382 |
|
2383 |
+
#: includes/fields/class-acf-field-wysiwyg.php:352
|
2384 |
msgid "Text Only"
|
2385 |
msgstr "Samo tekstualno"
|
2386 |
|
2387 |
+
#: includes/fields/class-acf-field-wysiwyg.php:361
|
2388 |
msgid "Toolbar"
|
2389 |
msgstr "Alatna traka"
|
2390 |
|
2391 |
+
#: includes/fields/class-acf-field-wysiwyg.php:378
|
2392 |
msgid "Show Media Upload Buttons?"
|
2393 |
msgstr "Prikaži gumb za odabir datoteka?"
|
2394 |
|
2395 |
+
#: includes/fields/class-acf-field-wysiwyg.php:390
|
2396 |
msgid "Delay initialization?"
|
2397 |
msgstr "Odgodi učitavanje?"
|
2398 |
|
2399 |
+
#: includes/fields/class-acf-field-wysiwyg.php:391
|
2400 |
+
#, fuzzy
|
2401 |
+
#| msgid "TinyMCE will not be initalized until field is clicked"
|
2402 |
+
msgid "TinyMCE will not be initialized until field is clicked"
|
2403 |
msgstr "TinyMCE neće biti učitan dok korisnik ne klikne na polje"
|
2404 |
|
2405 |
+
#: includes/forms/form-front.php:40, pro/fields/class-acf-field-gallery.php:352
|
2406 |
+
msgid "Title"
|
2407 |
+
msgstr "Naziv"
|
|
|
2408 |
|
2409 |
+
#: includes/forms/form-front.php:57
|
2410 |
msgid "Validate Email"
|
2411 |
msgstr "Verificiraj email"
|
2412 |
|
2413 |
+
#: includes/forms/form-front.php:107
|
|
|
|
|
|
|
|
|
|
|
2414 |
msgid "Post updated"
|
2415 |
msgstr "Objava ažurirana"
|
2416 |
|
2417 |
+
#: includes/forms/form-front.php:236
|
2418 |
msgid "Spam Detected"
|
2419 |
msgstr "Spam"
|
2420 |
|
2421 |
+
#: includes/forms/form-user.php:353
|
2422 |
+
msgid "<strong>Error</strong>: %s"
|
2423 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2424 |
|
2425 |
+
#: includes/locations/abstract-acf-location.php:105
|
2426 |
+
msgid "is equal to"
|
2427 |
+
msgstr "je jednako"
|
2428 |
|
2429 |
+
#: includes/locations/abstract-acf-location.php:106
|
2430 |
+
msgid "is not equal to"
|
2431 |
+
msgstr "je drukčije"
|
2432 |
|
2433 |
+
#: includes/locations/class-acf-location-attachment.php:22
|
2434 |
msgid "Attachment"
|
2435 |
msgstr "Prilog"
|
2436 |
|
2437 |
+
#: includes/locations/class-acf-location-attachment.php:84
|
|
|
2438 |
msgid "All %s formats"
|
2439 |
msgstr "Svi oblici %s"
|
2440 |
|
2441 |
+
#: includes/locations/class-acf-location-comment.php:22
|
2442 |
msgid "Comment"
|
2443 |
msgstr "Komentar"
|
2444 |
|
2445 |
+
#: includes/locations/class-acf-location-current-user-role.php:22
|
2446 |
msgid "Current User Role"
|
2447 |
msgstr "Trenutni tip korisnika"
|
2448 |
|
2449 |
+
#: includes/locations/class-acf-location-current-user-role.php:77
|
2450 |
msgid "Super Admin"
|
2451 |
msgstr "Super Admin"
|
2452 |
|
2453 |
+
#: includes/locations/class-acf-location-current-user.php:22
|
2454 |
msgid "Current User"
|
2455 |
msgstr "Trenutni korisnik"
|
2456 |
|
2457 |
+
#: includes/locations/class-acf-location-current-user.php:71
|
2458 |
msgid "Logged in"
|
2459 |
msgstr "Prijavljen"
|
2460 |
|
2461 |
+
#: includes/locations/class-acf-location-current-user.php:72
|
2462 |
msgid "Viewing front end"
|
2463 |
msgstr "Prikazuje web stranicu"
|
2464 |
|
2465 |
+
#: includes/locations/class-acf-location-current-user.php:73
|
2466 |
msgid "Viewing back end"
|
2467 |
msgstr "Prikazuje administracijki dio"
|
2468 |
|
2469 |
+
#: includes/locations/class-acf-location-nav-menu-item.php:22
|
2470 |
msgid "Menu Item"
|
2471 |
msgstr "Stavka izbornika"
|
2472 |
|
2473 |
+
#: includes/locations/class-acf-location-nav-menu.php:22
|
2474 |
msgid "Menu"
|
2475 |
msgstr "Izbornik"
|
2476 |
|
2477 |
+
#: includes/locations/class-acf-location-nav-menu.php:80
|
2478 |
msgid "Menu Locations"
|
2479 |
msgstr "Lokacije izbornika"
|
2480 |
|
2481 |
+
#: includes/locations/class-acf-location-page-parent.php:22
|
|
|
|
|
|
|
|
|
2482 |
msgid "Page Parent"
|
2483 |
msgstr "Matična stranica"
|
2484 |
|
2485 |
+
#: includes/locations/class-acf-location-page-template.php:22
|
2486 |
msgid "Page Template"
|
2487 |
msgstr "Predložak stranice"
|
2488 |
|
2489 |
+
#: includes/locations/class-acf-location-page-template.php:73,
|
2490 |
+
#: includes/locations/class-acf-location-post-template.php:85
|
2491 |
msgid "Default Template"
|
2492 |
msgstr "Zadani predložak"
|
2493 |
|
2494 |
+
#: includes/locations/class-acf-location-page-type.php:22
|
2495 |
msgid "Page Type"
|
2496 |
msgstr "Tip stranice"
|
2497 |
|
2498 |
+
#: includes/locations/class-acf-location-page-type.php:110
|
2499 |
msgid "Front Page"
|
2500 |
msgstr "Početna stranica"
|
2501 |
|
2502 |
+
#: includes/locations/class-acf-location-page-type.php:111
|
2503 |
msgid "Posts Page"
|
2504 |
msgstr "Stranica za objave"
|
2505 |
|
2506 |
+
#: includes/locations/class-acf-location-page-type.php:112
|
2507 |
msgid "Top Level Page (no parent)"
|
2508 |
msgstr "Matična stranica (Nije podstranica)"
|
2509 |
|
2510 |
+
#: includes/locations/class-acf-location-page-type.php:113
|
2511 |
msgid "Parent Page (has children)"
|
2512 |
msgstr "Matičan stranica (Ima podstranice)"
|
2513 |
|
2514 |
+
#: includes/locations/class-acf-location-page-type.php:114
|
2515 |
msgid "Child Page (has parent)"
|
2516 |
msgstr "Pod-stranica (Ima matičnu stranicu)"
|
2517 |
|
2518 |
+
#: includes/locations/class-acf-location-post-category.php:22
|
2519 |
msgid "Post Category"
|
2520 |
msgstr "Kategorija objave"
|
2521 |
|
2522 |
+
#: includes/locations/class-acf-location-post-format.php:22
|
2523 |
msgid "Post Format"
|
2524 |
msgstr "Format objave"
|
2525 |
|
2526 |
+
#: includes/locations/class-acf-location-post-status.php:22
|
2527 |
msgid "Post Status"
|
2528 |
msgstr "Status objave"
|
2529 |
|
2530 |
+
#: includes/locations/class-acf-location-post-taxonomy.php:22
|
2531 |
msgid "Post Taxonomy"
|
2532 |
msgstr "Taksonomija objave"
|
2533 |
|
2534 |
+
#: includes/locations/class-acf-location-post-template.php:22
|
2535 |
msgid "Post Template"
|
2536 |
msgstr "Predložak stranice"
|
2537 |
|
2538 |
+
#: includes/locations/class-acf-location-user-form.php:22
|
2539 |
+
msgid "User Form"
|
2540 |
+
msgstr "Korisnički obrazac"
|
2541 |
+
|
2542 |
+
#: includes/locations/class-acf-location-user-form.php:73
|
2543 |
+
msgid "Add / Edit"
|
2544 |
+
msgstr "Dodaj / Uredi"
|
2545 |
+
|
2546 |
+
#: includes/locations/class-acf-location-user-form.php:74
|
2547 |
+
msgid "Register"
|
2548 |
+
msgstr "Registriraj"
|
2549 |
+
|
2550 |
+
#: includes/locations/class-acf-location-user-role.php:24
|
2551 |
+
msgid "User Role"
|
2552 |
+
msgstr "Tip korisnika"
|
2553 |
+
|
2554 |
+
#: includes/locations/class-acf-location-widget.php:22
|
2555 |
+
msgid "Widget"
|
2556 |
+
msgstr "Widget"
|
2557 |
+
|
2558 |
+
#: pro/admin/admin-options-page.php:195
|
2559 |
+
msgid "Publish"
|
2560 |
+
msgstr "Objavi"
|
2561 |
+
|
2562 |
+
#: pro/admin/admin-options-page.php:199
|
2563 |
+
msgid ""
|
2564 |
+
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
2565 |
+
"Custom Field Group</a>"
|
2566 |
+
msgstr ""
|
2567 |
+
"Niste dodali nijedan skup polja na ovu stranicu, <a href=\"%s\">Dodaj skup "
|
2568 |
+
"polja</a>"
|
2569 |
+
|
2570 |
+
#: pro/admin/admin-updates.php:52
|
2571 |
+
msgid "<b>Error</b>. Could not connect to update server"
|
2572 |
+
msgstr "<b>Greška</b>. Greška prilikom spajanja na server"
|
2573 |
+
|
2574 |
+
#: pro/admin/admin-updates.php:122,
|
2575 |
+
#: pro/admin/views/html-settings-updates.php:12
|
2576 |
+
msgid "Updates"
|
2577 |
+
msgstr "Ažuriranja"
|
2578 |
+
|
2579 |
+
#: pro/admin/admin-updates.php:209
|
2580 |
+
msgid ""
|
2581 |
+
"<b>Error</b>. Could not authenticate update package. Please check again or "
|
2582 |
+
"deactivate and reactivate your ACF PRO license."
|
2583 |
+
msgstr ""
|
2584 |
+
|
2585 |
+
#: pro/admin/admin-updates.php:196
|
2586 |
+
msgid ""
|
2587 |
+
"<b>Error</b>. Your license for this site has expired or been deactivated. "
|
2588 |
+
"Please reactivate your ACF PRO license."
|
2589 |
+
msgstr ""
|
2590 |
+
|
2591 |
+
#: pro/fields/class-acf-field-clone.php:25
|
2592 |
+
msgctxt "noun"
|
2593 |
+
msgid "Clone"
|
2594 |
+
msgstr "Kloniraj"
|
2595 |
+
|
2596 |
+
#: pro/fields/class-acf-field-clone.php:815
|
2597 |
+
msgid "Select one or more fields you wish to clone"
|
2598 |
+
msgstr "Odaberite jedno ili više polja koja želite klonirati"
|
2599 |
+
|
2600 |
+
#: pro/fields/class-acf-field-clone.php:834
|
2601 |
+
msgid "Display"
|
2602 |
+
msgstr "Prikaz"
|
2603 |
+
|
2604 |
+
#: pro/fields/class-acf-field-clone.php:835
|
2605 |
+
msgid "Specify the style used to render the clone field"
|
2606 |
+
msgstr "Odaberite način prikaza kloniranog polja"
|
2607 |
+
|
2608 |
+
#: pro/fields/class-acf-field-clone.php:840
|
2609 |
+
msgid "Group (displays selected fields in a group within this field)"
|
2610 |
+
msgstr ""
|
2611 |
+
"Skupno (Prikazuje odabrana polja kao dodatni skup unutar trenutnog polja)"
|
2612 |
+
|
2613 |
+
#: pro/fields/class-acf-field-clone.php:841
|
2614 |
+
msgid "Seamless (replaces this field with selected fields)"
|
2615 |
+
msgstr "Zamjena (Prikazuje odabrana polja umjesto trenutnog polja)"
|
2616 |
+
|
2617 |
+
#: pro/fields/class-acf-field-clone.php:864
|
2618 |
+
msgid "Labels will be displayed as %s"
|
2619 |
+
msgstr "Oznake će biti prikazane kao %s"
|
2620 |
+
|
2621 |
+
#: pro/fields/class-acf-field-clone.php:869
|
2622 |
+
msgid "Prefix Field Labels"
|
2623 |
+
msgstr "Dodaj prefiks ispred oznake"
|
2624 |
+
|
2625 |
+
#: pro/fields/class-acf-field-clone.php:880
|
2626 |
+
msgid "Values will be saved as %s"
|
2627 |
+
msgstr "Vrijednosti će biti spremljene kao %s"
|
2628 |
+
|
2629 |
+
#: pro/fields/class-acf-field-clone.php:885
|
2630 |
+
msgid "Prefix Field Names"
|
2631 |
+
msgstr "Dodaj prefiks ispred naziva polja"
|
2632 |
+
|
2633 |
+
#: pro/fields/class-acf-field-clone.php:1001
|
2634 |
+
msgid "Unknown field"
|
2635 |
+
msgstr "Nepoznato polje"
|
2636 |
+
|
2637 |
+
#: pro/fields/class-acf-field-clone.php:1038
|
2638 |
+
msgid "Unknown field group"
|
2639 |
+
msgstr "Nepoznat skup polja"
|
2640 |
+
|
2641 |
+
#: pro/fields/class-acf-field-clone.php:1042
|
2642 |
+
msgid "All fields from %s field group"
|
2643 |
+
msgstr "Sva polje iz %s skupa polja"
|
2644 |
+
|
2645 |
+
#: pro/fields/class-acf-field-flexible-content.php:25,
|
2646 |
+
#: includes/admin/views/html-notice-upgrade.php:12
|
2647 |
+
msgid "Flexible Content"
|
2648 |
+
msgstr "Fleksibilno polje"
|
2649 |
+
|
2650 |
+
#: pro/fields/class-acf-field-flexible-content.php:31,
|
2651 |
+
#: pro/fields/class-acf-field-repeater.php:182,
|
2652 |
+
#: pro/fields/class-acf-field-repeater.php:473
|
2653 |
+
msgid "Add Row"
|
2654 |
+
msgstr "Dodaj red"
|
2655 |
+
|
2656 |
+
#: pro/fields/class-acf-field-flexible-content.php:71,
|
2657 |
+
#: pro/fields/class-acf-field-flexible-content.php:917,
|
2658 |
+
#: pro/fields/class-acf-field-flexible-content.php:996
|
2659 |
+
#, fuzzy
|
2660 |
+
#| msgid "layout"
|
2661 |
+
msgid "layout"
|
2662 |
+
msgid_plural "layouts"
|
2663 |
+
msgstr[0] "raspored"
|
2664 |
+
msgstr[1] "raspored"
|
2665 |
+
msgstr[2] "raspored"
|
2666 |
+
|
2667 |
+
#: pro/fields/class-acf-field-flexible-content.php:72
|
2668 |
+
msgid "layouts"
|
2669 |
+
msgstr "rasporedi"
|
2670 |
+
|
2671 |
+
#: pro/fields/class-acf-field-flexible-content.php:75,
|
2672 |
+
#: pro/fields/class-acf-field-flexible-content.php:916,
|
2673 |
+
#: pro/fields/class-acf-field-flexible-content.php:995
|
2674 |
+
msgid "This field requires at least {min} {label} {identifier}"
|
2675 |
+
msgstr "Polje mora sadržavati najmanje {min} {label} {identifier}"
|
2676 |
+
|
2677 |
+
#: pro/fields/class-acf-field-flexible-content.php:76
|
2678 |
+
#, fuzzy
|
2679 |
+
#| msgid "This field has a limit of {max} {identifier}"
|
2680 |
+
msgid "This field has a limit of {max} {label} {identifier}"
|
2681 |
+
msgstr "Polje je ograničeno na najviše {max} {identifier}"
|
2682 |
+
|
2683 |
+
#: pro/fields/class-acf-field-flexible-content.php:79
|
2684 |
+
msgid "{available} {label} {identifier} available (max {max})"
|
2685 |
+
msgstr "{available} {label} {identifier} preostalo (najviše {max})"
|
2686 |
+
|
2687 |
+
#: pro/fields/class-acf-field-flexible-content.php:80
|
2688 |
+
msgid "{required} {label} {identifier} required (min {min})"
|
2689 |
+
msgstr "{required} {label} {identifier} obavezno (najmanje {min})"
|
2690 |
+
|
2691 |
+
#: pro/fields/class-acf-field-flexible-content.php:83
|
2692 |
+
msgid "Flexible Content requires at least 1 layout"
|
2693 |
+
msgstr "Potrebno je unijeti najmanje jedno fleksibilni polje"
|
2694 |
+
|
2695 |
+
#: pro/fields/class-acf-field-flexible-content.php:276
|
2696 |
+
msgid "Click the \"%s\" button below to start creating your layout"
|
2697 |
+
msgstr "Kliknite “%s” gumb kako bi započeki kreiranje raspored"
|
2698 |
+
|
2699 |
+
#: pro/fields/class-acf-field-flexible-content.php:410,
|
2700 |
+
#: pro/fields/class-acf-field-repeater.php:295,
|
2701 |
+
#: includes/admin/views/field-group-field.php:49
|
2702 |
+
msgid "Drag to reorder"
|
2703 |
+
msgstr "Presloži polja povlačenjem"
|
2704 |
+
|
2705 |
+
#: pro/fields/class-acf-field-flexible-content.php:413
|
2706 |
+
msgid "Add layout"
|
2707 |
+
msgstr "Dodaj razmještaj"
|
2708 |
+
|
2709 |
+
#: pro/fields/class-acf-field-flexible-content.php:414
|
2710 |
+
#, fuzzy
|
2711 |
+
#| msgid "Duplicate Layout"
|
2712 |
+
msgid "Duplicate layout"
|
2713 |
+
msgstr "Dupliciraj razmještaj"
|
2714 |
+
|
2715 |
+
#: pro/fields/class-acf-field-flexible-content.php:415
|
2716 |
+
msgid "Remove layout"
|
2717 |
+
msgstr "Ukloni razmještaj"
|
2718 |
+
|
2719 |
+
#: pro/fields/class-acf-field-flexible-content.php:416,
|
2720 |
+
#: pro/fields/class-acf-field-repeater.php:297
|
2721 |
+
msgid "Click to toggle"
|
2722 |
+
msgstr "Klikni za uključivanje/isključivanje"
|
2723 |
+
|
2724 |
+
#: pro/fields/class-acf-field-flexible-content.php:551
|
2725 |
+
msgid "Reorder Layout"
|
2726 |
+
msgstr "Presloži polja povlačenjem"
|
2727 |
+
|
2728 |
+
#: pro/fields/class-acf-field-flexible-content.php:551
|
2729 |
+
msgid "Reorder"
|
2730 |
+
msgstr "Presloži"
|
2731 |
+
|
2732 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
2733 |
+
msgid "Delete Layout"
|
2734 |
+
msgstr "Obriši"
|
2735 |
+
|
2736 |
+
#: pro/fields/class-acf-field-flexible-content.php:552,
|
2737 |
+
#: includes/admin/views/field-group-field.php:59
|
2738 |
+
msgid "Delete"
|
2739 |
+
msgstr "Obriši"
|
2740 |
+
|
2741 |
+
#: pro/fields/class-acf-field-flexible-content.php:553
|
2742 |
+
msgid "Duplicate Layout"
|
2743 |
+
msgstr "Dupliciraj razmještaj"
|
2744 |
+
|
2745 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
2746 |
+
msgid "Add New Layout"
|
2747 |
+
msgstr "Dodaj novi razmještaj"
|
2748 |
+
|
2749 |
+
#: pro/fields/class-acf-field-flexible-content.php:635
|
2750 |
+
msgid "Min"
|
2751 |
+
msgstr "Minimum"
|
2752 |
+
|
2753 |
+
#: pro/fields/class-acf-field-flexible-content.php:650
|
2754 |
+
msgid "Max"
|
2755 |
+
msgstr "Maksimum"
|
2756 |
+
|
2757 |
+
#: pro/fields/class-acf-field-flexible-content.php:679,
|
2758 |
+
#: pro/fields/class-acf-field-repeater.php:469
|
2759 |
+
msgid "Button Label"
|
2760 |
+
msgstr "Tekst gumba"
|
2761 |
+
|
2762 |
+
#: pro/fields/class-acf-field-flexible-content.php:690
|
2763 |
+
msgid "Minimum Layouts"
|
2764 |
+
msgstr "Najmanje"
|
2765 |
+
|
2766 |
+
#: pro/fields/class-acf-field-flexible-content.php:701
|
2767 |
+
msgid "Maximum Layouts"
|
2768 |
+
msgstr "Najviše"
|
2769 |
+
|
2770 |
+
#: pro/fields/class-acf-field-flexible-content.php:1704,
|
2771 |
+
#: pro/fields/class-acf-field-repeater.php:1108
|
2772 |
+
msgid "%s must be of type array or null."
|
2773 |
+
msgstr ""
|
2774 |
+
|
2775 |
+
#: pro/fields/class-acf-field-flexible-content.php:1715
|
2776 |
+
msgid "%1$s must contain at least %2$s %3$s layout."
|
2777 |
+
msgid_plural "%1$s must contain at least %2$s %3$s layouts."
|
2778 |
+
msgstr[0] ""
|
2779 |
+
msgstr[1] ""
|
2780 |
+
msgstr[2] ""
|
2781 |
+
|
2782 |
+
#: pro/fields/class-acf-field-flexible-content.php:1731
|
2783 |
+
msgid "%1$s must contain at most %2$s %3$s layout."
|
2784 |
+
msgid_plural "%1$s must contain at most %2$s %3$s layouts."
|
2785 |
+
msgstr[0] ""
|
2786 |
+
msgstr[1] ""
|
2787 |
+
msgstr[2] ""
|
2788 |
+
|
2789 |
+
#: pro/fields/class-acf-field-gallery.php:25,
|
2790 |
+
#: includes/admin/views/html-notice-upgrade.php:15
|
2791 |
+
msgid "Gallery"
|
2792 |
+
msgstr "Galerija"
|
2793 |
+
|
2794 |
+
#: pro/fields/class-acf-field-gallery.php:73
|
2795 |
+
msgid "Add Image to Gallery"
|
2796 |
+
msgstr "Dodaj sliku u galeriju"
|
2797 |
+
|
2798 |
+
#: pro/fields/class-acf-field-gallery.php:74
|
2799 |
+
msgid "Maximum selection reached"
|
2800 |
+
msgstr "Već ste dodali najviše dozovoljenih polja"
|
2801 |
+
|
2802 |
+
#: pro/fields/class-acf-field-gallery.php:320
|
2803 |
+
msgid "Length"
|
2804 |
+
msgstr "Dužina"
|
2805 |
+
|
2806 |
+
#: pro/fields/class-acf-field-gallery.php:364
|
2807 |
+
msgid "Caption"
|
2808 |
+
msgstr "Potpis"
|
2809 |
+
|
2810 |
+
#: pro/fields/class-acf-field-gallery.php:376
|
2811 |
+
msgid "Alt Text"
|
2812 |
+
msgstr "Alternativni tekst"
|
2813 |
+
|
2814 |
+
#: pro/fields/class-acf-field-gallery.php:500
|
2815 |
+
msgid "Add to gallery"
|
2816 |
+
msgstr "Dodaj u galeriju"
|
2817 |
+
|
2818 |
+
#: pro/fields/class-acf-field-gallery.php:504
|
2819 |
+
msgid "Bulk actions"
|
2820 |
+
msgstr "Grupne akcije"
|
2821 |
+
|
2822 |
+
#: pro/fields/class-acf-field-gallery.php:505
|
2823 |
+
msgid "Sort by date uploaded"
|
2824 |
+
msgstr "Razvrstaj po datumu dodavanja"
|
2825 |
+
|
2826 |
+
#: pro/fields/class-acf-field-gallery.php:506
|
2827 |
+
msgid "Sort by date modified"
|
2828 |
+
msgstr "Razvrstaj po datumu zadnje promjene"
|
2829 |
+
|
2830 |
+
#: pro/fields/class-acf-field-gallery.php:507
|
2831 |
+
msgid "Sort by title"
|
2832 |
+
msgstr "Razvrstaj po naslovu"
|
2833 |
+
|
2834 |
+
#: pro/fields/class-acf-field-gallery.php:508
|
2835 |
+
msgid "Reverse current order"
|
2836 |
+
msgstr "Obrnuti redosljed"
|
2837 |
+
|
2838 |
+
#: pro/fields/class-acf-field-gallery.php:520
|
2839 |
+
msgid "Close"
|
2840 |
+
msgstr "Zatvori"
|
2841 |
+
|
2842 |
+
#: pro/fields/class-acf-field-gallery.php:602
|
2843 |
+
msgid "Insert"
|
2844 |
+
msgstr "Umetni"
|
2845 |
+
|
2846 |
+
#: pro/fields/class-acf-field-gallery.php:603
|
2847 |
+
msgid "Specify where new attachments are added"
|
2848 |
+
msgstr "Precizirajte gdje se dodaju novi prilozi"
|
2849 |
+
|
2850 |
+
#: pro/fields/class-acf-field-gallery.php:607
|
2851 |
+
msgid "Append to the end"
|
2852 |
+
msgstr "Umetni na kraj"
|
2853 |
+
|
2854 |
+
#: pro/fields/class-acf-field-gallery.php:608
|
2855 |
+
msgid "Prepend to the beginning"
|
2856 |
+
msgstr "Umetni na početak"
|
2857 |
+
|
2858 |
+
#: pro/fields/class-acf-field-gallery.php:633
|
2859 |
+
msgid "Minimum Selection"
|
2860 |
+
msgstr "Minimalni odabri"
|
2861 |
+
|
2862 |
+
#: pro/fields/class-acf-field-gallery.php:644
|
2863 |
+
msgid "Maximum Selection"
|
2864 |
+
msgstr "Maksimalni odabir"
|
2865 |
+
|
2866 |
+
#: pro/fields/class-acf-field-repeater.php:25,
|
2867 |
+
#: includes/admin/views/html-notice-upgrade.php:9
|
2868 |
+
msgid "Repeater"
|
2869 |
+
msgstr "Ponavljajuće polje"
|
2870 |
+
|
2871 |
+
#: pro/fields/class-acf-field-repeater.php:64,
|
2872 |
+
#: pro/fields/class-acf-field-repeater.php:659
|
2873 |
+
msgid "Minimum rows reached ({min} rows)"
|
2874 |
+
msgstr "Minimalni broj redova je već odabran ({min})"
|
2875 |
+
|
2876 |
+
#: pro/fields/class-acf-field-repeater.php:65
|
2877 |
+
msgid "Maximum rows reached ({max} rows)"
|
2878 |
+
msgstr "Maksimalni broj redova je već odabran ({max})"
|
2879 |
+
|
2880 |
+
#: pro/fields/class-acf-field-repeater.php:334
|
2881 |
+
msgid "Add row"
|
2882 |
+
msgstr "Dodaj red"
|
2883 |
+
|
2884 |
+
#: pro/fields/class-acf-field-repeater.php:335
|
2885 |
+
#, fuzzy
|
2886 |
+
#| msgid "Duplicate"
|
2887 |
+
msgid "Duplicate row"
|
2888 |
+
msgstr "Dupliciraj"
|
2889 |
+
|
2890 |
+
#: pro/fields/class-acf-field-repeater.php:336
|
2891 |
+
msgid "Remove row"
|
2892 |
+
msgstr "Ukloni red"
|
2893 |
+
|
2894 |
+
#: pro/fields/class-acf-field-repeater.php:414
|
2895 |
+
msgid "Collapsed"
|
2896 |
+
msgstr "Sklopljeno"
|
2897 |
+
|
2898 |
+
#: pro/fields/class-acf-field-repeater.php:415
|
2899 |
+
msgid "Select a sub field to show when row is collapsed"
|
2900 |
+
msgstr "Odaberite pod polje koje će biti prikazano dok je red sklopljen"
|
2901 |
+
|
2902 |
+
#: pro/fields/class-acf-field-repeater.php:427
|
2903 |
+
msgid "Minimum Rows"
|
2904 |
+
msgstr "Minimalno redova"
|
2905 |
+
|
2906 |
+
#: pro/fields/class-acf-field-repeater.php:439
|
2907 |
+
msgid "Maximum Rows"
|
2908 |
+
msgstr "Maksimalno redova"
|
2909 |
+
|
2910 |
+
#: pro/locations/class-acf-location-block.php:71
|
2911 |
+
#, fuzzy
|
2912 |
+
#| msgid "No options pages exist"
|
2913 |
+
msgid "No block types exist"
|
2914 |
+
msgstr "Ne postoji stranica sa postavkama"
|
2915 |
+
|
2916 |
+
#: pro/locations/class-acf-location-options-page.php:22,
|
2917 |
+
#: includes/admin/views/html-notice-upgrade.php:18
|
2918 |
+
msgid "Options Page"
|
2919 |
+
msgstr "Postavke"
|
2920 |
+
|
2921 |
+
#: pro/locations/class-acf-location-options-page.php:70
|
2922 |
+
msgid "No options pages exist"
|
2923 |
+
msgstr "Ne postoji stranica sa postavkama"
|
2924 |
+
|
2925 |
+
#: tests/basic/test-blocks.php:456
|
2926 |
+
msgid "Hero"
|
2927 |
+
msgstr ""
|
2928 |
+
|
2929 |
+
#: tests/basic/test-blocks.php:457
|
2930 |
+
msgid "Display a random hero image."
|
2931 |
+
msgstr ""
|
2932 |
+
|
2933 |
+
#: tests/basic/test-blocks.php:630
|
2934 |
+
msgid "Test JS"
|
2935 |
+
msgstr ""
|
2936 |
+
|
2937 |
+
#: tests/basic/test-blocks.php:631
|
2938 |
+
msgid "A block for testing JS."
|
2939 |
+
msgstr ""
|
2940 |
+
|
2941 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:35
|
2942 |
+
msgid "Export Field Groups"
|
2943 |
+
msgstr "Izvezi skup polja"
|
2944 |
+
|
2945 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:39,
|
2946 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:335,
|
2947 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:364
|
2948 |
+
msgid "Generate PHP"
|
2949 |
+
msgstr "Generiraj PHP kod"
|
2950 |
+
|
2951 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:96,
|
2952 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:131
|
2953 |
+
msgid "No field groups selected"
|
2954 |
+
msgstr "Niste odabrali polje"
|
2955 |
+
|
2956 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:167
|
2957 |
+
msgid "Exported 1 field group."
|
2958 |
+
msgid_plural "Exported %s field groups."
|
2959 |
+
msgstr[0] ""
|
2960 |
+
msgstr[1] ""
|
2961 |
+
msgstr[2] ""
|
2962 |
+
|
2963 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:233,
|
2964 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:262
|
2965 |
+
msgid "Select Field Groups"
|
2966 |
+
msgstr "Odaberite skup polja"
|
2967 |
+
|
2968 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:329
|
2969 |
+
msgid ""
|
2970 |
+
"Select the field groups you would like to export and then select your export "
|
2971 |
+
"method. Use the download button to export to a .json file which you can then "
|
2972 |
+
"import to another ACF installation. Use the generate button to export to PHP "
|
2973 |
+
"code which you can place in your theme."
|
2974 |
+
msgstr ""
|
2975 |
+
"Odaberite polja koja želite izvesti i zatim odaberite željeni format. Klikom "
|
2976 |
+
"na gumb “preuzimanje”, preuzmite .json datoteku sa poljima koju zatim možete "
|
2977 |
+
"uvesti u drugu ACF instalaciju.\n"
|
2978 |
+
"Klikom na “generiraj” gumb, izvezite PHP kod koji možete uključiti u "
|
2979 |
+
"WordPress temu."
|
2980 |
+
|
2981 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:334
|
2982 |
+
msgid "Export File"
|
2983 |
+
msgstr "Datoteka za izvoz"
|
2984 |
+
|
2985 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:405
|
2986 |
+
msgid ""
|
2987 |
+
"The following code can be used to register a local version of the selected "
|
2988 |
+
"field group(s). A local field group can provide many benefits such as faster "
|
2989 |
+
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
2990 |
+
"the following code to your theme's functions.php file or include it within "
|
2991 |
+
"an external file."
|
2992 |
+
msgstr ""
|
2993 |
+
"Navedeni kod možete koristiti kako bi registrirali lokalnu verziju odabranih "
|
2994 |
+
"polja ili skupine polja. Lokalna polje pružaju dodatne mogućnosti kao što je "
|
2995 |
+
"brže očitavanje, verzioniranje i dinamičke postavke polja. Jednostavno "
|
2996 |
+
"kopirajte navedeni kod u functions.php datoteku u vašoj temi ili uključite "
|
2997 |
+
"ih kao vanjsku datoteku."
|
2998 |
+
|
2999 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:435
|
3000 |
+
msgid "Copy to clipboard"
|
3001 |
+
msgstr "Kopiraj u međuspremnik"
|
3002 |
+
|
3003 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:472
|
3004 |
+
msgid "Copied"
|
3005 |
+
msgstr ""
|
3006 |
+
|
3007 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:28
|
3008 |
+
msgid "Import Field Groups"
|
3009 |
+
msgstr "Uvoz skupa polja"
|
3010 |
+
|
3011 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:49
|
3012 |
+
msgid ""
|
3013 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
3014 |
+
"you click the import button below, ACF will import the field groups."
|
3015 |
+
msgstr ""
|
3016 |
+
"Odaberite ACF JSON datoteku koju želite uvesti. Nakon što kliknete ‘Uvezi’ "
|
3017 |
+
"gumb, ACF će uvesti sva polja iz odabrane datoteke."
|
3018 |
+
|
3019 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:66
|
3020 |
+
msgid "Import File"
|
3021 |
+
msgstr "Datoteka za uvoz"
|
3022 |
+
|
3023 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:97
|
3024 |
+
msgid "Error uploading file. Please try again"
|
3025 |
+
msgstr "Greška prilikom prijenosa datoteke, molimo pokušaj ponovno"
|
3026 |
+
|
3027 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:102
|
3028 |
+
msgid "Incorrect file type"
|
3029 |
+
msgstr "Nedozvoljeni format datoteke"
|
3030 |
+
|
3031 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:111
|
3032 |
+
msgid "Import file empty"
|
3033 |
+
msgstr "Odabrana datoteka za uvoz ne sadrži"
|
3034 |
+
|
3035 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:142
|
3036 |
+
msgid "Imported 1 field group"
|
3037 |
+
msgid_plural "Imported %s field groups"
|
3038 |
+
msgstr[0] ""
|
3039 |
+
msgstr[1] ""
|
3040 |
+
msgstr[2] ""
|
3041 |
+
|
3042 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:25
|
3043 |
+
msgid "Conditional Logic"
|
3044 |
+
msgstr "Uvjet za prikaz"
|
3045 |
+
|
3046 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:60
|
3047 |
+
msgid "Show this field if"
|
3048 |
+
msgstr "Prikaži polje ako"
|
3049 |
+
|
3050 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:172,
|
3051 |
+
#: includes/admin/views/field-group-locations.php:38
|
3052 |
+
msgid "Add rule group"
|
3053 |
+
msgstr "Dodaj skup pravila"
|
3054 |
+
|
3055 |
+
#: includes/admin/views/field-group-field.php:53,
|
3056 |
+
#: includes/admin/views/field-group-field.php:56
|
3057 |
+
msgid "Edit field"
|
3058 |
+
msgstr "Uredi polje"
|
3059 |
+
|
3060 |
+
#: includes/admin/views/field-group-field.php:57
|
3061 |
+
msgid "Duplicate field"
|
3062 |
+
msgstr "Dupliciraj polje"
|
3063 |
+
|
3064 |
+
#: includes/admin/views/field-group-field.php:58
|
3065 |
+
msgid "Move field to another group"
|
3066 |
+
msgstr "Premjeti polje u drugu skupinu"
|
3067 |
+
|
3068 |
+
#: includes/admin/views/field-group-field.php:58
|
3069 |
+
msgid "Move"
|
3070 |
+
msgstr "Premjesti"
|
3071 |
+
|
3072 |
+
#: includes/admin/views/field-group-field.php:59
|
3073 |
+
msgid "Delete field"
|
3074 |
+
msgstr "Obriši polje"
|
3075 |
+
|
3076 |
+
#: includes/admin/views/field-group-field.php:78
|
3077 |
+
msgid "Field Label"
|
3078 |
+
msgstr "Naziv polja"
|
3079 |
+
|
3080 |
+
#: includes/admin/views/field-group-field.php:79
|
3081 |
+
msgid "This is the name which will appear on the EDIT page"
|
3082 |
+
msgstr "Naziv koji se prikazuje prilikom uređivanja stranice"
|
3083 |
+
|
3084 |
+
#: includes/admin/views/field-group-field.php:92
|
3085 |
+
msgid "Field Name"
|
3086 |
+
msgstr "Naziv polja"
|
3087 |
+
|
3088 |
+
#: includes/admin/views/field-group-field.php:93
|
3089 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
3090 |
+
msgstr "Jedna riječ, bez razmaka. Povlaka i donja crta su dozvoljeni"
|
3091 |
+
|
3092 |
+
#: includes/admin/views/field-group-field.php:106
|
3093 |
+
msgid "Field Type"
|
3094 |
+
msgstr "Tip polja"
|
3095 |
+
|
3096 |
+
#: includes/admin/views/field-group-field.php:121
|
3097 |
+
msgid "Instructions"
|
3098 |
+
msgstr "Upute"
|
3099 |
+
|
3100 |
+
#: includes/admin/views/field-group-field.php:122
|
3101 |
+
msgid "Instructions for authors. Shown when submitting data"
|
3102 |
+
msgstr "Upute priliko uređivanja. Vidljivo prilikom spremanja podataka"
|
3103 |
+
|
3104 |
+
#: includes/admin/views/field-group-field.php:135
|
3105 |
+
msgid "Required?"
|
3106 |
+
msgstr "Obavezno?"
|
3107 |
+
|
3108 |
+
#: includes/admin/views/field-group-field.php:161
|
3109 |
+
msgid "Wrapper Attributes"
|
3110 |
+
msgstr "Značajke prethodnog elementa"
|
3111 |
+
|
3112 |
+
#: includes/admin/views/field-group-field.php:167
|
3113 |
+
msgid "width"
|
3114 |
+
msgstr "širina"
|
3115 |
+
|
3116 |
+
#: includes/admin/views/field-group-field.php:185
|
3117 |
+
msgid "class"
|
3118 |
+
msgstr "klasa"
|
3119 |
+
|
3120 |
+
#: includes/admin/views/field-group-field.php:201
|
3121 |
+
msgid "id"
|
3122 |
+
msgstr "id"
|
3123 |
+
|
3124 |
+
#: includes/admin/views/field-group-field.php:215,
|
3125 |
+
#: includes/admin/views/field-group-field.php:215
|
3126 |
+
msgid "Close Field"
|
3127 |
+
msgstr "Zatvori polje"
|
3128 |
+
|
3129 |
+
#: includes/admin/views/field-group-fields.php:4
|
3130 |
+
msgid "Order"
|
3131 |
+
msgstr "Redni broj"
|
3132 |
+
|
3133 |
+
#: includes/admin/views/field-group-fields.php:8
|
3134 |
+
msgid "Type"
|
3135 |
+
msgstr "Tip"
|
3136 |
+
|
3137 |
+
#: includes/admin/views/field-group-fields.php:19
|
3138 |
+
msgid ""
|
3139 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
3140 |
+
"first field."
|
3141 |
+
msgstr ""
|
3142 |
+
"Nema polja. Kliknite gumb <strong>+ Dodaj polje</strong> da bi kreirali "
|
3143 |
+
"polje."
|
3144 |
+
|
3145 |
+
#: includes/admin/views/field-group-fields.php:44
|
3146 |
+
msgid "+ Add Field"
|
3147 |
+
msgstr "Dodaj polje"
|
3148 |
+
|
3149 |
+
#: includes/admin/views/field-group-locations.php:9
|
3150 |
+
msgid "Rules"
|
3151 |
+
msgstr "Pravila"
|
3152 |
+
|
3153 |
+
#: includes/admin/views/field-group-locations.php:10
|
3154 |
+
msgid ""
|
3155 |
+
"Create a set of rules to determine which edit screens will use these "
|
3156 |
+
"advanced custom fields"
|
3157 |
+
msgstr "Odaberite pravila koja određuju koji prikaz će koristiti ACF polja"
|
3158 |
+
|
3159 |
+
#: includes/admin/views/field-group-options.php:10
|
3160 |
+
msgid "Active"
|
3161 |
+
msgstr "Aktivan"
|
3162 |
+
|
3163 |
+
#: includes/admin/views/field-group-options.php:27
|
3164 |
+
msgid "Show in REST API"
|
3165 |
+
msgstr ""
|
3166 |
+
|
3167 |
+
#: includes/admin/views/field-group-options.php:44
|
3168 |
+
msgid "Style"
|
3169 |
+
msgstr "Stil"
|
3170 |
+
|
3171 |
+
#: includes/admin/views/field-group-options.php:51
|
3172 |
+
msgid "Standard (WP metabox)"
|
3173 |
+
msgstr "Zadano (WP metabox)"
|
3174 |
+
|
3175 |
+
#: includes/admin/views/field-group-options.php:52
|
3176 |
+
msgid "Seamless (no metabox)"
|
3177 |
+
msgstr "Bez"
|
3178 |
+
|
3179 |
+
#: includes/admin/views/field-group-options.php:61
|
3180 |
+
msgid "Position"
|
3181 |
+
msgstr "Pozicija"
|
3182 |
+
|
3183 |
+
#: includes/admin/views/field-group-options.php:68
|
3184 |
+
msgid "High (after title)"
|
3185 |
+
msgstr "Visoko (nakon naslova)"
|
3186 |
+
|
3187 |
+
#: includes/admin/views/field-group-options.php:69
|
3188 |
+
msgid "Normal (after content)"
|
3189 |
+
msgstr "Normalno (nakon saržaja)"
|
3190 |
+
|
3191 |
+
#: includes/admin/views/field-group-options.php:70
|
3192 |
+
msgid "Side"
|
3193 |
+
msgstr "Desni stupac"
|
3194 |
+
|
3195 |
+
#: includes/admin/views/field-group-options.php:80
|
3196 |
+
msgid "Label placement"
|
3197 |
+
msgstr "Pozicija oznake"
|
3198 |
+
|
3199 |
+
#: includes/admin/views/field-group-options.php:97
|
3200 |
+
msgid "Instruction placement"
|
3201 |
+
msgstr "Pozicija uputa"
|
3202 |
+
|
3203 |
+
#: includes/admin/views/field-group-options.php:104
|
3204 |
+
msgid "Below labels"
|
3205 |
+
msgstr "Ispod oznake"
|
3206 |
+
|
3207 |
+
#: includes/admin/views/field-group-options.php:105
|
3208 |
+
msgid "Below fields"
|
3209 |
+
msgstr "Iznad oznake"
|
3210 |
+
|
3211 |
+
#: includes/admin/views/field-group-options.php:114
|
3212 |
+
msgid "Order No."
|
3213 |
+
msgstr "Redni broj."
|
3214 |
+
|
3215 |
+
#: includes/admin/views/field-group-options.php:115
|
3216 |
+
msgid "Field groups with a lower order will appear first"
|
3217 |
+
msgstr "Skup polja sa nižim brojem će biti više pozicioniran"
|
3218 |
+
|
3219 |
+
#: includes/admin/views/field-group-options.php:128
|
3220 |
+
msgid "Shown in field group list"
|
3221 |
+
msgstr "Vidljivo u popisu"
|
3222 |
+
|
3223 |
+
#: includes/admin/views/field-group-options.php:139
|
3224 |
+
msgid "Permalink"
|
3225 |
+
msgstr "Stalna veza"
|
3226 |
+
|
3227 |
+
#: includes/admin/views/field-group-options.php:140
|
3228 |
+
msgid "Content Editor"
|
3229 |
+
msgstr "Uređivač sadržaja"
|
3230 |
+
|
3231 |
+
#: includes/admin/views/field-group-options.php:141
|
3232 |
+
msgid "Excerpt"
|
3233 |
+
msgstr "Izvadak"
|
3234 |
+
|
3235 |
+
#: includes/admin/views/field-group-options.php:143
|
3236 |
+
msgid "Discussion"
|
3237 |
+
msgstr "Rasprava"
|
3238 |
+
|
3239 |
+
#: includes/admin/views/field-group-options.php:145
|
3240 |
+
msgid "Revisions"
|
3241 |
+
msgstr "Revizija"
|
3242 |
+
|
3243 |
+
#: includes/admin/views/field-group-options.php:146
|
3244 |
+
msgid "Slug"
|
3245 |
+
msgstr "Slug"
|
3246 |
+
|
3247 |
+
#: includes/admin/views/field-group-options.php:147
|
3248 |
+
msgid "Author"
|
3249 |
+
msgstr "Autor"
|
3250 |
+
|
3251 |
+
#: includes/admin/views/field-group-options.php:148
|
3252 |
+
msgid "Format"
|
3253 |
+
msgstr "Format"
|
3254 |
+
|
3255 |
+
#: includes/admin/views/field-group-options.php:149
|
3256 |
+
msgid "Page Attributes"
|
3257 |
+
msgstr "Atributi stranice"
|
3258 |
+
|
3259 |
+
#: includes/admin/views/field-group-options.php:151
|
3260 |
+
msgid "Categories"
|
3261 |
+
msgstr "Kategorije"
|
3262 |
+
|
3263 |
+
#: includes/admin/views/field-group-options.php:152
|
3264 |
+
msgid "Tags"
|
3265 |
+
msgstr "Oznake"
|
3266 |
+
|
3267 |
+
#: includes/admin/views/field-group-options.php:153
|
3268 |
+
msgid "Send Trackbacks"
|
3269 |
+
msgstr "Pošalji povratnu vezu"
|
3270 |
+
|
3271 |
+
#: includes/admin/views/field-group-options.php:161
|
3272 |
+
msgid "Hide on screen"
|
3273 |
+
msgstr "Sakrij"
|
3274 |
+
|
3275 |
+
#: includes/admin/views/field-group-options.php:162
|
3276 |
+
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen."
|
3277 |
+
msgstr "<b>Odaberite</b> koje grupe želite <b>sakriti</b> prilikom uređivanja."
|
3278 |
+
|
3279 |
+
#: includes/admin/views/field-group-options.php:162
|
3280 |
+
msgid ""
|
3281 |
+
"If multiple field groups appear on an edit screen, the first field group's "
|
3282 |
+
"options will be used (the one with the lowest order number)"
|
3283 |
+
msgstr ""
|
3284 |
+
"Ukoliko je više skupova polja prikazano na istom ekranu, postavke prvog "
|
3285 |
+
"skupa polja će biti korištene (postavke polja sa nižim brojem u redosljedu)"
|
3286 |
+
|
3287 |
+
#: includes/admin/views/html-admin-navigation.php:89
|
3288 |
+
#, fuzzy
|
3289 |
+
#| msgid "Upgrade Sites"
|
3290 |
+
msgid "Upgrade to Pro"
|
3291 |
+
msgstr "Ažuriraj stranice"
|
3292 |
+
|
3293 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:26
|
3294 |
+
msgid ""
|
3295 |
+
"The following sites require a DB upgrade. Check the ones you want to update "
|
3296 |
+
"and then click %s."
|
3297 |
+
msgstr ""
|
3298 |
+
"Ažuriranje baze podatak dovršeno. Provjerite koje web stranice u svojoj "
|
3299 |
+
"mreži želite nadograditi i zatim kliknite %s."
|
3300 |
+
|
3301 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:26,
|
3302 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:27,
|
3303 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:96
|
3304 |
+
msgid "Upgrade Sites"
|
3305 |
+
msgstr "Ažuriraj stranice"
|
3306 |
+
|
3307 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:36,
|
3308 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:47
|
3309 |
+
msgid "Site"
|
3310 |
+
msgstr "Web stranica"
|
3311 |
+
|
3312 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:80
|
3313 |
+
msgid "Site is up to date"
|
3314 |
+
msgstr "Nema novih ažuriranja za web stranica"
|
3315 |
+
|
3316 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:78
|
3317 |
+
#, fuzzy
|
3318 |
+
#| msgid "Site requires database upgrade from %s to %s"
|
3319 |
+
msgid "Site requires database upgrade from %1$s to %2$s"
|
3320 |
+
msgstr ""
|
3321 |
+
"Za web stranicu je potrebna nadogradnja baze podataka iz %s na verziju %s"
|
3322 |
+
|
3323 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:97
|
3324 |
+
msgid ""
|
3325 |
+
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
3326 |
+
msgstr ""
|
3327 |
+
"Baza podataka je nadograđena. <a href=“%s”>Kliknite ovdje za povratak na "
|
3328 |
+
"administraciju WordPress mreže</a>"
|
3329 |
|
3330 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:117
|
3331 |
+
msgid "Please select at least one site to upgrade."
|
3332 |
+
msgstr ""
|
3333 |
|
3334 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:121,
|
3335 |
+
#: includes/admin/views/html-notice-upgrade.php:45
|
3336 |
+
msgid ""
|
3337 |
+
"It is strongly recommended that you backup your database before proceeding. "
|
3338 |
+
"Are you sure you wish to run the updater now?"
|
3339 |
+
msgstr ""
|
3340 |
+
"Prije nego nastavite preporučamo da napravite sigurnosnu kopiju baze "
|
3341 |
+
"podataka. Jeste li sigurni da želite nastaviti ažuriranje?"
|
3342 |
|
3343 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:148,
|
3344 |
+
#: includes/admin/views/html-admin-page-upgrade.php:31
|
3345 |
+
msgid "Upgrading data to version %s"
|
3346 |
+
msgstr "Nadogradnja na verziju %s"
|
3347 |
|
3348 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:162
|
3349 |
+
#, fuzzy
|
3350 |
+
#| msgid "Upgrade complete"
|
3351 |
+
msgid "Upgrade complete."
|
3352 |
+
msgstr "Nadogradnja završena"
|
3353 |
|
3354 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:165,
|
3355 |
+
#: includes/admin/views/html-admin-page-upgrade.php:65
|
3356 |
+
#, fuzzy
|
3357 |
+
#| msgid "Upgrade Sites"
|
3358 |
+
msgid "Upgrade failed."
|
3359 |
+
msgstr "Ažuriraj stranice"
|
3360 |
|
3361 |
+
#: includes/admin/views/html-admin-page-upgrade.php:30
|
3362 |
+
msgid "Reading upgrade tasks..."
|
3363 |
+
msgstr "Učitavam podatke za nadogradnju…"
|
|
|
3364 |
|
3365 |
+
#: includes/admin/views/html-admin-page-upgrade.php:33
|
3366 |
+
#, fuzzy
|
3367 |
+
#| msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
3368 |
+
msgid "Database upgrade complete. <a href=\"%s\">See what's new</a>"
|
3369 |
+
msgstr ""
|
3370 |
+
"Nadogradnja baze je dovršena. <a href=\"%s\">Pogledajte što je novo</a>"
|
3371 |
|
3372 |
+
#: includes/admin/views/html-admin-tools.php:24
|
3373 |
+
msgid "Back to all tools"
|
3374 |
+
msgstr ""
|
|
|
3375 |
|
3376 |
+
#: includes/admin/views/html-notice-upgrade.php:28
|
3377 |
+
msgid "Database Upgrade Required"
|
3378 |
+
msgstr "Potrebno je nadograditi bazu podataka"
|
|
|
3379 |
|
3380 |
+
#: includes/admin/views/html-notice-upgrade.php:29
|
3381 |
+
#, fuzzy
|
3382 |
+
#| msgid "Thank you for updating to %s v%s!"
|
3383 |
+
msgid "Thank you for updating to %1$s v%2$s!"
|
3384 |
+
msgstr "Hvala što ste nadogradili %s na v%s!"
|
3385 |
|
3386 |
+
#: includes/admin/views/html-notice-upgrade.php:29
|
|
|
3387 |
msgid ""
|
3388 |
+
"This version contains improvements to your database and requires an upgrade."
|
|
|
3389 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
3390 |
|
3391 |
+
#: includes/admin/views/html-notice-upgrade.php:31
|
3392 |
+
#, fuzzy
|
3393 |
+
#| msgid ""
|
3394 |
+
#| "Please also ensure any premium add-ons (%s) have first been updated to "
|
3395 |
+
#| "the latest version."
|
3396 |
+
msgid ""
|
3397 |
+
"Please also check all premium add-ons (%s) are updated to the latest version."
|
3398 |
+
msgstr ""
|
3399 |
+
"Molimo provjerite da su svi premium dodaci (%s) ažurirani na najnoviju "
|
3400 |
+
"verziju."
|
3401 |
|
3402 |
+
#: pro/admin/views/html-settings-updates.php:6
|
3403 |
msgid "Deactivate License"
|
3404 |
msgstr "Deaktiviraj licencu"
|
3405 |
|
3406 |
+
#: pro/admin/views/html-settings-updates.php:6
|
3407 |
msgid "Activate License"
|
3408 |
msgstr "Aktiviraj licencu"
|
3409 |
|
3410 |
+
#: pro/admin/views/html-settings-updates.php:16
|
3411 |
msgid "License Information"
|
3412 |
msgstr "Informacije o licenci"
|
3413 |
|
3414 |
+
#: pro/admin/views/html-settings-updates.php:34
|
|
|
3415 |
msgid ""
|
3416 |
"To unlock updates, please enter your license key below. If you don't have a "
|
3417 |
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
3421 |
"Ukoliko ne posjedujete licencu, molimo posjetite <a href=“%s” "
|
3422 |
"target=“_blank”>detalji i cijene</a>."
|
3423 |
|
3424 |
+
#: pro/admin/views/html-settings-updates.php:41
|
3425 |
msgid "License Key"
|
3426 |
msgstr "Licenca"
|
3427 |
|
3428 |
+
#: pro/admin/views/html-settings-updates.php:22
|
3429 |
+
msgid "Your license key is defined in wp-config.php."
|
3430 |
+
msgstr ""
|
3431 |
+
|
3432 |
+
#: pro/admin/views/html-settings-updates.php:29
|
3433 |
+
#, fuzzy
|
3434 |
+
#| msgid "Better Validation"
|
3435 |
+
msgid "Retry Activation"
|
3436 |
+
msgstr "Bolja verifikacija polja"
|
3437 |
+
|
3438 |
+
#: pro/admin/views/html-settings-updates.php:76
|
3439 |
msgid "Update Information"
|
3440 |
msgstr "Ažuriraj informacije"
|
3441 |
|
3442 |
+
#: pro/admin/views/html-settings-updates.php:83
|
3443 |
msgid "Current Version"
|
3444 |
msgstr "Trenutna vezija"
|
3445 |
|
3446 |
+
#: pro/admin/views/html-settings-updates.php:91
|
3447 |
msgid "Latest Version"
|
3448 |
msgstr "Posljednja dostupna verzija"
|
3449 |
|
3450 |
+
#: pro/admin/views/html-settings-updates.php:99
|
3451 |
msgid "Update Available"
|
3452 |
msgstr "Dostupna nadogradnja"
|
3453 |
|
3454 |
+
#: pro/admin/views/html-settings-updates.php:111
|
3455 |
+
msgid "Please enter your license key above to unlock updates"
|
3456 |
+
msgstr "Unesite licencu kako bi mogli izvršiti nadogradnju"
|
3457 |
+
|
3458 |
+
#: pro/admin/views/html-settings-updates.php:109
|
3459 |
msgid "Update Plugin"
|
3460 |
msgstr "Nadogradi dodatak"
|
3461 |
|
3462 |
+
#: pro/admin/views/html-settings-updates.php:107
|
3463 |
+
#, fuzzy
|
3464 |
+
#| msgid "Please enter your license key above to unlock updates"
|
3465 |
+
msgid "Please reactivate your license to unlock updates"
|
3466 |
msgstr "Unesite licencu kako bi mogli izvršiti nadogradnju"
|
3467 |
|
3468 |
+
#: pro/admin/views/html-settings-updates.php:124
|
3469 |
+
msgid "Changelog"
|
3470 |
+
msgstr "Popis izmjena"
|
3471 |
|
3472 |
+
#: pro/admin/views/html-settings-updates.php:134
|
3473 |
msgid "Upgrade Notice"
|
3474 |
msgstr "Obavijest od nadogradnjama"
|
3475 |
|
3476 |
+
#~ msgid "Inactive"
|
3477 |
+
#~ msgstr "Neaktivno"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3478 |
|
3479 |
+
#, php-format
|
3480 |
+
#~ msgid "Inactive <span class=\"count\">(%s)</span>"
|
3481 |
+
#~ msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
3482 |
+
#~ msgstr[0] "Neaktivno <span class=“count”>(%s)</span>"
|
3483 |
+
#~ msgstr[1] "Neaktivnih: <span class=“count”>(%s)</span>"
|
3484 |
+
#~ msgstr[2] "Neaktivnih: <span class=“count”>(%s)</span>"
|
3485 |
|
3486 |
+
#~ msgid "Parent fields"
|
3487 |
+
#~ msgstr "Matično polje"
|
|
|
|
|
3488 |
|
3489 |
+
#~ msgid "Sibling fields"
|
3490 |
+
#~ msgstr "Slična polja"
|
|
|
3491 |
|
|
|
3492 |
#, php-format
|
3493 |
+
#~ msgid "%s field group synchronised."
|
3494 |
+
#~ msgid_plural "%s field groups synchronised."
|
3495 |
+
#~ msgstr[0] "Polja sinkronizirana (%s)."
|
3496 |
+
#~ msgstr[1] "Polja sinkronizirana (%s)."
|
3497 |
+
#~ msgstr[2] "Polja sinkronizirana (%s)."
|
3498 |
|
3499 |
+
#~ msgid "Status"
|
3500 |
+
#~ msgstr "Status"
|
|
|
3501 |
|
|
|
3502 |
#, php-format
|
3503 |
+
#~ msgid "See what's new in <a href=\"%s\">version %s</a>."
|
3504 |
+
#~ msgstr "Pogledaj što je novo u <a href=\"%s\">%s verziji</a>."
|
3505 |
|
3506 |
+
#~ msgid "Resources"
|
3507 |
+
#~ msgstr "Materijali"
|
|
|
3508 |
|
3509 |
+
#~ msgid "Documentation"
|
3510 |
+
#~ msgstr "Dokumentacija"
|
|
|
3511 |
|
3512 |
+
#~ msgid "Pro"
|
3513 |
+
#~ msgstr "Pro"
|
|
|
3514 |
|
|
|
3515 |
#, php-format
|
3516 |
+
#~ msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
3517 |
+
#~ msgstr "Hvala što koristite <a href=\"%s\">ACF</a>."
|
3518 |
|
3519 |
+
#~ msgid "Synchronise field group"
|
3520 |
+
#~ msgstr "Sinkroniziraj skup polja"
|
|
|
|
|
|
|
3521 |
|
3522 |
+
#~ msgid "Apply"
|
3523 |
+
#~ msgstr "Prijavi"
|
|
|
3524 |
|
3525 |
+
#~ msgid "Bulk Actions"
|
3526 |
+
#~ msgstr "Skupne akcije"
|
|
|
3527 |
|
3528 |
+
#~ msgid "Add-ons"
|
3529 |
+
#~ msgstr "Dodaci"
|
|
|
3530 |
|
3531 |
+
#~ msgid "<b>Error</b>. Could not load add-ons list"
|
3532 |
+
#~ msgstr "<b>Greška</b>. Greška prilikom učitavanja dodataka"
|
|
|
3533 |
|
3534 |
+
#~ msgid "Info"
|
3535 |
+
#~ msgstr "Info"
|
|
|
3536 |
|
3537 |
+
#~ msgid "What's New"
|
3538 |
+
#~ msgstr "Što je novo"
|
|
|
3539 |
|
3540 |
+
#~ msgid "Advanced Custom Fields Database Upgrade"
|
3541 |
+
#~ msgstr "Nadogradnja baze ACF"
|
|
|
3542 |
|
3543 |
+
#~ msgid ""
|
3544 |
+
#~ "Before you start using the new awesome features, please update your "
|
3545 |
+
#~ "database to the newest version."
|
3546 |
+
#~ msgstr ""
|
3547 |
+
#~ "Prije nego što počnete koristiti nove mogućnosti, molimo ažurirajte bazu "
|
3548 |
+
#~ "podataka na posljednju verziju."
|
3549 |
|
3550 |
+
#~ msgid "Download & Install"
|
3551 |
+
#~ msgstr "Preuzimam datoteke"
|
|
|
3552 |
|
3553 |
+
#~ msgid "Installed"
|
3554 |
+
#~ msgstr "Instalirano"
|
3555 |
+
|
3556 |
+
#~ msgid "Welcome to Advanced Custom Fields"
|
3557 |
+
#~ msgstr "Advanced Custom Fields vam želi dobrodošlicu"
|
3558 |
|
|
|
3559 |
#, php-format
|
3560 |
+
#~ msgid ""
|
3561 |
+
#~ "Thank you for updating! ACF %s is bigger and better than ever before. We "
|
3562 |
+
#~ "hope you like it."
|
3563 |
+
#~ msgstr ""
|
3564 |
+
#~ "Ažuriranje dovršeno, hvala! ACF %s je veći i bolji nego ikad prije. "
|
3565 |
+
#~ "Nadamo se da će vam se svidjet."
|
3566 |
|
3567 |
+
#~ msgid "A smoother custom field experience"
|
3568 |
+
#~ msgstr "Bolje korisničko iskustvo korištenja prilagođenih polja"
|
|
|
3569 |
|
3570 |
+
#~ msgid "Improved Usability"
|
3571 |
+
#~ msgstr "Poboljšana uporabljivost"
|
|
|
3572 |
|
3573 |
+
#~ msgid ""
|
3574 |
+
#~ "Including the popular Select2 library has improved both usability and "
|
3575 |
+
#~ "speed across a number of field types including post object, page link, "
|
3576 |
+
#~ "taxonomy and select."
|
3577 |
+
#~ msgstr ""
|
3578 |
+
#~ "Uključivanje popularne biblioteke Select2 poboljšano je korisničko "
|
3579 |
+
#~ "iskustvo i brzina na velikom broju polja."
|
3580 |
|
3581 |
+
#~ msgid "Improved Design"
|
3582 |
+
#~ msgstr "Unaprijeđen dizajn"
|
|
|
3583 |
|
3584 |
+
#~ msgid ""
|
3585 |
+
#~ "Many fields have undergone a visual refresh to make ACF look better than "
|
3586 |
+
#~ "ever! Noticeable changes are seen on the gallery, relationship and oEmbed "
|
3587 |
+
#~ "(new) fields!"
|
3588 |
+
#~ msgstr ""
|
3589 |
+
#~ "Mnoga polja su vizualno osvježena te time ACF sada izgleda bolje nego "
|
3590 |
+
#~ "ikad prije!"
|
3591 |
|
3592 |
+
#~ msgid "Improved Data"
|
3593 |
+
#~ msgstr "Unaprijeđeno upravljanje podacima"
|
|
|
3594 |
|
3595 |
+
#~ msgid ""
|
3596 |
+
#~ "Redesigning the data architecture has allowed sub fields to live "
|
3597 |
+
#~ "independently from their parents. This allows you to drag and drop fields "
|
3598 |
+
#~ "in and out of parent fields!"
|
3599 |
+
#~ msgstr ""
|
3600 |
+
#~ "Nova arhitektura polja omogućuje pod poljima da budu korištena zasebno "
|
3601 |
+
#~ "bez obzira kojem skupu polja pripadaju. Ovo vam omogućuje premještanje "
|
3602 |
+
#~ "polja iz jednog skupa u drugi!"
|
3603 |
|
3604 |
+
#~ msgid "Goodbye Add-ons. Hello PRO"
|
3605 |
+
#~ msgstr "Doviđenja dodaci, upoznajte PRO verziju"
|
|
|
3606 |
|
3607 |
+
#~ msgid "Introducing ACF PRO"
|
3608 |
+
#~ msgstr "Predstavljamo ACF PRO"
|
|
|
3609 |
|
3610 |
+
#~ msgid ""
|
3611 |
+
#~ "We're changing the way premium functionality is delivered in an exciting "
|
3612 |
+
#~ "way!"
|
3613 |
+
#~ msgstr ""
|
3614 |
+
#~ "Mijanjamo način funkcioniranja premium dodataka, od sada mnogo "
|
3615 |
+
#~ "jednostavnije!"
|
3616 |
|
3617 |
+
#, php-format
|
3618 |
+
#~ msgid ""
|
3619 |
+
#~ "All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
3620 |
+
#~ "version of ACF</a>. With both personal and developer licenses available, "
|
3621 |
+
#~ "premium functionality is more affordable and accessible than ever before!"
|
3622 |
+
#~ msgstr ""
|
3623 |
+
#~ "Sva 4 premium dodakta od sada su ukomponiranu u novu <a href=“%s”>Pro "
|
3624 |
+
#~ "verziju ACF</a>. Sa novim osobnom i razvojnom opcijom licenciranja, "
|
3625 |
+
#~ "premium funkcionalnost je dosupnija i povoljnija nego prije!"
|
3626 |
|
3627 |
+
#~ msgid "Powerful Features"
|
3628 |
+
#~ msgstr "Super mogućnosti"
|
|
|
3629 |
|
3630 |
+
#~ msgid ""
|
3631 |
+
#~ "ACF PRO contains powerful features such as repeatable data, flexible "
|
3632 |
+
#~ "content layouts, a beautiful gallery field and the ability to create "
|
3633 |
+
#~ "extra admin options pages!"
|
3634 |
+
#~ msgstr ""
|
3635 |
+
#~ "ACF PRO uključuje napredne funkcionalnosti kao ponavljajuća polja, "
|
3636 |
+
#~ "modularni raspored, galerija slika i mogućnost dodavanja novih stranica u "
|
3637 |
+
#~ "postavkama administracije!"
|
3638 |
|
3639 |
+
#, php-format
|
3640 |
+
#~ msgid "Read more about <a href=\"%s\">ACF PRO features</a>."
|
3641 |
+
#~ msgstr "Pročitajte više o <a href=“%s”>mogućnostima ACF PRO</a>."
|
3642 |
|
3643 |
+
#~ msgid "Easy Upgrading"
|
3644 |
+
#~ msgstr "Jednostavno ažuriranje"
|
|
|
3645 |
|
3646 |
+
#, php-format
|
3647 |
+
#~ msgid ""
|
3648 |
+
#~ "To help make upgrading easy, <a href=\"%s\">login to your store account</"
|
3649 |
+
#~ "a> and claim a free copy of ACF PRO!"
|
3650 |
+
#~ msgstr ""
|
3651 |
+
#~ "Kako bi pojednostavili ažuriranje, <a href=“%s”>prijavite se s vašim "
|
3652 |
+
#~ "računom</a> i osigurajte besplatnu verziju ACF PRO!"
|
3653 |
|
3654 |
+
#, php-format
|
3655 |
+
#~ msgid ""
|
3656 |
+
#~ "We also wrote an <a href=\"%s\">upgrade guide</a> to answer any "
|
3657 |
+
#~ "questions, but if you do have one, please contact our support team via "
|
3658 |
+
#~ "the <a href=\"%s\">help desk</a>"
|
3659 |
+
#~ msgstr ""
|
3660 |
+
#~ "Provjeriti <a href=“%s”>upute za ažuriranje</a> ako imate dodatnih "
|
3661 |
+
#~ "pitanja, ili kontaktirajte našu <a href=“%s”>tim za podršku</a>"
|
3662 |
|
3663 |
+
#~ msgid "Under the Hood"
|
3664 |
+
#~ msgstr "Ispod haube"
|
|
|
3665 |
|
3666 |
+
#~ msgid "Smarter field settings"
|
3667 |
+
#~ msgstr "Pametnije postavke"
|
|
|
3668 |
|
3669 |
+
#~ msgid "ACF now saves its field settings as individual post objects"
|
3670 |
+
#~ msgstr "ACF od sada sprema postavke polja kao objekt"
|
|
|
3671 |
|
3672 |
+
#~ msgid "More AJAX"
|
3673 |
+
#~ msgstr "Više AJAX-a"
|
|
|
3674 |
|
3675 |
+
#~ msgid "More fields use AJAX powered search to speed up page loading"
|
3676 |
+
#~ msgstr ""
|
3677 |
+
#~ "Više polja koristi asinkrono pretraživanje kako bi učitavanje stranice "
|
3678 |
+
#~ "bilo brže"
|
3679 |
|
3680 |
+
#~ msgid "New auto export to JSON feature improves speed"
|
3681 |
+
#~ msgstr "Nova mogućnost automatskog izvoza u JSON obliku"
|
|
|
3682 |
|
3683 |
+
#~ msgid "Better version control"
|
3684 |
+
#~ msgstr "Bolje upravljanje verzijama"
|
|
|
3685 |
|
3686 |
+
#~ msgid ""
|
3687 |
+
#~ "New auto export to JSON feature allows field settings to be version "
|
3688 |
+
#~ "controlled"
|
3689 |
+
#~ msgstr "Nova opcija izvoza u JSON omogućuje verziranje"
|
3690 |
|
3691 |
+
#~ msgid "Swapped XML for JSON"
|
3692 |
+
#~ msgstr "JSON umjesto XML"
|
|
|
3693 |
|
3694 |
+
#~ msgid "Import / Export now uses JSON in favour of XML"
|
3695 |
+
#~ msgstr "Uvoz / Izvoz sada koristi JSON umjesto XML"
|
|
|
3696 |
|
3697 |
+
#~ msgid "New Forms"
|
3698 |
+
#~ msgstr "Nove forme"
|
|
|
3699 |
|
3700 |
+
#~ msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
3701 |
+
#~ msgstr ""
|
3702 |
+
#~ "Od sada je moguće dodati polja na sve stranice, uključujući komentare, "
|
3703 |
+
#~ "stranice za uređivanje korisnika i widgete!"
|
3704 |
|
3705 |
+
#~ msgid "A new field for embedding content has been added"
|
3706 |
+
#~ msgstr "Novo polje za ugnježdeni sadržaj"
|
|
|
3707 |
|
3708 |
+
#~ msgid "New Gallery"
|
3709 |
+
#~ msgstr "Nova galerija"
|
|
|
3710 |
|
3711 |
+
#~ msgid "The gallery field has undergone a much needed facelift"
|
3712 |
+
#~ msgstr "Polje Galerija je dobilo novi izgled"
|
|
|
3713 |
|
3714 |
+
#~ msgid "New Settings"
|
3715 |
+
#~ msgstr "Nove postavke"
|
|
|
3716 |
|
3717 |
+
#~ msgid ""
|
3718 |
+
#~ "Field group settings have been added for label placement and instruction "
|
3719 |
+
#~ "placement"
|
3720 |
+
#~ msgstr ""
|
3721 |
+
#~ "Postavke svakog polja uključuju dodatna polja, polje za opis i polje za "
|
3722 |
+
#~ "upute namjenjene korisniku"
|
3723 |
|
3724 |
+
#~ msgid "Better Front End Forms"
|
3725 |
+
#~ msgstr "Bolji prikaz formi na web stranici"
|
|
|
3726 |
|
3727 |
+
#~ msgid "acf_form() can now create a new post on submission"
|
3728 |
+
#~ msgstr ""
|
3729 |
+
#~ "acf_form() funkcija od sada omogućuje dodavanje nove objave prilikom "
|
3730 |
+
#~ "spremanja"
|
3731 |
|
3732 |
+
#~ msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
3733 |
+
#~ msgstr ""
|
3734 |
+
#~ "Verifikacija polja se sada obavlja asinkrono (PHP + AJAX) umjesto "
|
3735 |
+
#~ "dosadašnjeg načina (Javascript)"
|
3736 |
|
3737 |
+
#~ msgid "Relationship Field"
|
3738 |
+
#~ msgstr "Polje za povezivanje objekta"
|
|
|
3739 |
|
3740 |
+
#~ msgid ""
|
3741 |
+
#~ "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
3742 |
+
#~ msgstr ""
|
3743 |
+
#~ "Novo postavke polja Veza za filter (pretraga, tip objekta, taksonomija)"
|
3744 |
|
3745 |
+
#~ msgid "Moving Fields"
|
3746 |
+
#~ msgstr "Premještanje polja"
|
|
|
3747 |
|
3748 |
+
#~ msgid ""
|
3749 |
+
#~ "New field group functionality allows you to move a field between groups & "
|
3750 |
+
#~ "parents"
|
3751 |
+
#~ msgstr ""
|
3752 |
+
#~ "Nova funkcionalnost polja omogućuje premještanje polja i skupa polja"
|
3753 |
|
3754 |
+
#~ msgid "New archives group in page_link field selection"
|
3755 |
+
#~ msgstr "Nova skupina ‘arhiva’ prilikom odabira polja page_link"
|
3756 |
+
|
3757 |
+
#~ msgid "Better Options Pages"
|
3758 |
+
#~ msgstr "Bolja upravljanje stranica sa postavkama"
|
3759 |
+
|
3760 |
+
#~ msgid ""
|
3761 |
+
#~ "New functions for options page allow creation of both parent and child "
|
3762 |
+
#~ "menu pages"
|
3763 |
+
#~ msgstr ""
|
3764 |
+
#~ "Nova funkcionalnost kod dodavanja stranica za postavke omogućuju "
|
3765 |
+
#~ "dodavanje izvornih i pod stranica izbornika"
|
3766 |
|
|
|
3767 |
#, php-format
|
3768 |
+
#~ msgid "We think you'll love the changes in %s."
|
3769 |
+
#~ msgstr "Mislimo da će vam se svidjeti promjene u %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
3770 |
|
3771 |
+
#~ msgid "Current Color"
|
3772 |
+
#~ msgstr "Trenutna boja"
|
3773 |
+
|
3774 |
+
#~ msgid "Locating"
|
3775 |
+
#~ msgstr "Lociranje u tijeku"
|
3776 |
+
|
3777 |
+
#~ msgid "Shown when entering data"
|
3778 |
+
#~ msgstr "Prikazuje se prilikom unosa podataka"
|
3779 |
+
|
3780 |
+
#~ msgid "Error."
|
3781 |
+
#~ msgstr "Greška."
|
3782 |
|
3783 |
+
#~ msgid "No embed found for the given URL."
|
3784 |
+
#~ msgstr "Nije pronađen nijedan umetak za unesenu adresu."
|
|
|
3785 |
|
3786 |
+
#~ msgid "Minimum values reached ( {min} values )"
|
3787 |
+
#~ msgstr "Minimalna vrijednost je {min}"
|
3788 |
+
|
3789 |
+
#~ msgid "None"
|
3790 |
+
#~ msgstr "Bez odabira"
|
3791 |
+
|
3792 |
+
#~ msgid "Taxonomy Term"
|
3793 |
+
#~ msgstr "Pojam takosnomije"
|
3794 |
+
|
3795 |
+
#~ msgid "remove {layout}?"
|
3796 |
+
#~ msgstr "ukloni {layout}?"
|
3797 |
+
|
3798 |
+
#~ msgid "This field requires at least {min} {identifier}"
|
3799 |
+
#~ msgstr "Polje mora sadržavati najmanje {min} {identifier}"
|
3800 |
+
|
3801 |
+
#~ msgid "Maximum {label} limit reached ({max} {identifier})"
|
3802 |
+
#~ msgstr "Polje {label} smije sadržavati najviše {max} {identifier}"
|
3803 |
+
|
3804 |
+
#~ msgid "Elliot Condon"
|
3805 |
+
#~ msgstr "Elliot Condon"
|
3806 |
+
|
3807 |
+
#~ msgid "http://www.elliotcondon.com/"
|
3808 |
+
#~ msgstr "http://www.elliotcondon.com/"
|
3809 |
|
3810 |
#~ msgid "Getting Started"
|
3811 |
#~ msgstr "Kako početi"
|
3843 |
#~ msgid "Generate export code"
|
3844 |
#~ msgstr "Stvori kod za izvoz"
|
3845 |
|
|
|
|
|
|
|
3846 |
#~ msgid "Term meta upgrade not possible (termmeta table does not exist)"
|
3847 |
#~ msgstr ""
|
3848 |
#~ "Nije moguće dovrišti nadogradnju tablice 'termmeta', tablica ne postoji u "
|
lang/acf.pot
CHANGED
@@ -1,133 +1,147 @@
|
|
1 |
-
|
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Advanced Custom Fields\n"
|
5 |
-
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
6 |
-
"POT-Creation-Date: 2020-10-29 10:30+0930\n"
|
7 |
-
"PO-Revision-Date: 2015-06-11 13:00+1000\n"
|
8 |
-
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
-
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
10 |
-
"Language: en_AU\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"_nx_noop:3c,1,
|
18 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
-
"X-Poedit-Basepath: ../\n"
|
20 |
-
"X-Poedit-WPHeader: acf.php\n"
|
21 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
-
"X-Poedit-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
#: acf.php:
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: acf.php:
|
31 |
msgid "Field Groups"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: acf.php:
|
35 |
msgid "Field Group"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: acf.php:
|
39 |
-
#: pro/fields/class-acf-field-flexible-content.php:559
|
40 |
msgid "Add New"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: acf.php:
|
44 |
msgid "Add New Field Group"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: acf.php:
|
48 |
msgid "Edit Field Group"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: acf.php:
|
52 |
msgid "New Field Group"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: acf.php:
|
56 |
msgid "View Field Group"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: acf.php:
|
60 |
msgid "Search Field Groups"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: acf.php:
|
64 |
msgid "No Field Groups found"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: acf.php:
|
68 |
msgid "No Field Groups found in Trash"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: acf.php:
|
72 |
-
#: includes/admin/admin-field-groups.php:262
|
73 |
-
#: pro/fields/class-acf-field-clone.php:808
|
74 |
msgid "Fields"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: acf.php:
|
78 |
msgid "Field"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: acf.php:
|
82 |
msgid "Add New Field"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: acf.php:
|
86 |
msgid "Edit Field"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: acf.php:
|
90 |
msgid "New Field"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: acf.php:
|
94 |
msgid "View Field"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: acf.php:
|
98 |
msgid "Search Fields"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: acf.php:
|
102 |
msgid "No Fields found"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: acf.php:
|
106 |
msgid "No Fields found in Trash"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: acf.php:
|
110 |
msgctxt "post status"
|
111 |
msgid "Disabled"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: acf.php:
|
115 |
-
#, php-format
|
116 |
msgid "Disabled <span class=\"count\">(%s)</span>"
|
117 |
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
118 |
msgstr[0] ""
|
119 |
msgstr[1] ""
|
120 |
|
121 |
-
#:
|
122 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
msgid "(no label)"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: includes/acf-field-group-functions.php:
|
127 |
-
#: includes/admin/admin-field-group.php:180
|
128 |
msgid "copy"
|
129 |
msgstr ""
|
130 |
|
|
|
|
|
|
|
|
|
131 |
#: includes/acf-wp-functions.php:41
|
132 |
msgid "Posts"
|
133 |
msgstr ""
|
@@ -140,8 +154,7 @@ msgstr ""
|
|
140 |
msgid "Attachments"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/acf-wp-functions.php:63
|
144 |
-
#: includes/admin/views/field-group-options.php:112
|
145 |
msgid "Comments"
|
146 |
msgstr ""
|
147 |
|
@@ -149,8 +162,7 @@ msgstr ""
|
|
149 |
msgid "Widgets"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/acf-wp-functions.php:71
|
153 |
-
#: includes/locations/class-acf-location-nav-menu.php:87
|
154 |
msgid "Menus"
|
155 |
msgstr ""
|
156 |
|
@@ -162,7 +174,7 @@ msgstr ""
|
|
162 |
msgid "Users"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: includes/acf-wp-functions.php:83 pro/options-page.php:
|
166 |
msgid "Options"
|
167 |
msgstr ""
|
168 |
|
@@ -170,2971 +182,2691 @@ msgstr ""
|
|
170 |
msgid "Blocks"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: includes/
|
174 |
-
|
175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
msgid "Field group updated."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/admin/admin-field-group.php:
|
180 |
msgid "Field group deleted."
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: includes/admin/admin-field-group.php:
|
184 |
msgid "Field group published."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/admin/admin-field-group.php:
|
188 |
msgid "Field group saved."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/admin/admin-field-group.php:
|
192 |
msgid "Field group submitted."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/admin/admin-field-group.php:
|
196 |
msgid "Field group scheduled for."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/admin/admin-field-group.php:
|
200 |
msgid "Field group draft updated."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/admin/admin-field-group.php:
|
204 |
msgid "The string \"field_\" may not be used at the start of a field name"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/admin/admin-field-group.php:
|
208 |
msgid "This field cannot be moved until its changes have been saved"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/admin/admin-field-group.php:
|
212 |
msgid "Field group title is required"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: includes/admin/admin-field-group.php:
|
216 |
msgid "Move to trash. Are you sure?"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: includes/admin/admin-field-group.php:
|
220 |
msgid "No toggle fields available"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: includes/admin/admin-field-group.php:
|
224 |
msgid "Move Custom Field"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/admin/admin-field-group.php:
|
228 |
msgid "Checked"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/admin/admin-field-group.php:
|
232 |
msgid "(this field)"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/admin/admin-field-group.php:
|
236 |
-
#: includes/admin/views/field-group-field-conditional-logic.php:51
|
237 |
-
#: includes/admin/views/field-group-field-conditional-logic.php:151
|
238 |
-
#: includes/admin/views/field-group-locations.php:29
|
239 |
-
#: includes/admin/views/html-location-group.php:3
|
240 |
-
#: includes/api/api-helpers.php:3646
|
241 |
msgid "or"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: includes/admin/admin-field-group.php:
|
|
|
|
|
|
|
|
|
245 |
msgid "Null"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/admin/admin-field-group.php:
|
249 |
msgid "Has any value"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/admin/admin-field-group.php:
|
253 |
msgid "Has no value"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/admin/admin-field-group.php:
|
257 |
msgid "Value is equal to"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/admin/admin-field-group.php:
|
261 |
msgid "Value is not equal to"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/admin/admin-field-group.php:
|
265 |
msgid "Value matches pattern"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: includes/admin/admin-field-group.php:
|
269 |
msgid "Value contains"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: includes/admin/admin-field-group.php:
|
273 |
msgid "Value is greater than"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: includes/admin/admin-field-group.php:
|
277 |
msgid "Value is less than"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/admin/admin-field-group.php:
|
281 |
msgid "Selection is greater than"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: includes/admin/admin-field-group.php:
|
285 |
msgid "Selection is less than"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: includes/admin/admin-field-group.php:
|
289 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
msgid "Location"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: includes/admin/admin-field-group.php:
|
294 |
-
#: includes/admin/tools/class-acf-admin-tool-export.php:295
|
295 |
msgid "Settings"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/admin/admin-field-group.php:
|
299 |
msgid "Field Keys"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/admin/admin-field-group.php:
|
303 |
-
|
304 |
msgid "Active"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/admin/admin-field-group.php:
|
308 |
-
msgid "Inactive"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: includes/admin/admin-field-group.php:775
|
312 |
msgid "Move Complete."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/admin/admin-field-group.php:
|
316 |
-
|
317 |
-
msgid "The %s field can now be found in the %s field group"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: includes/admin/admin-field-group.php:
|
321 |
msgid "Close Window"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: includes/admin/admin-field-group.php:
|
325 |
msgid "Please select the destination for this field"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: includes/admin/admin-field-group.php:
|
329 |
msgid "Move Field"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: includes/admin/admin-field-groups.php:
|
333 |
-
#, php-format
|
334 |
msgid "Active <span class=\"count\">(%s)</span>"
|
335 |
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
336 |
msgstr[0] ""
|
337 |
msgstr[1] ""
|
338 |
|
339 |
-
#: includes/admin/admin-field-groups.php:
|
340 |
msgid "Review local JSON changes"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/admin/admin-field-groups.php:
|
344 |
msgid "Loading diff"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/admin/admin-field-groups.php:
|
348 |
-
#: includes/admin/admin-field-groups.php:529
|
349 |
msgid "Sync changes"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: includes/admin/admin-field-groups.php:
|
353 |
-
#: includes/admin/views/field-group-options.php:96
|
354 |
-
#: includes/admin/views/html-admin-page-upgrade-network.php:38
|
355 |
-
#: includes/admin/views/html-admin-page-upgrade-network.php:49
|
356 |
-
#: pro/fields/class-acf-field-gallery.php:380
|
357 |
msgid "Description"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: includes/admin/admin-field-groups.php:
|
361 |
-
#: includes/admin/views/field-group-fields.php:7
|
362 |
msgid "Key"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: includes/admin/admin-field-groups.php:
|
366 |
msgid "Local JSON"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: includes/admin/admin-field-groups.php:
|
370 |
msgid "Various"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: includes/admin/admin-field-groups.php:
|
374 |
-
|
375 |
-
msgid "Located in theme: %s"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: includes/admin/admin-field-groups.php:
|
379 |
-
#, php-format
|
380 |
msgid "Located in plugin: %s"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/admin/admin-field-groups.php:
|
384 |
-
|
385 |
-
msgid "Located in: %s"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: includes/admin/admin-field-groups.php:
|
389 |
-
|
390 |
-
msgid "Sync available"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: includes/admin/admin-field-groups.php:
|
394 |
-
msgid "
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: includes/admin/admin-field-groups.php:469
|
398 |
-
msgid "
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: includes/admin/admin-field-groups.php:
|
402 |
msgid "Import"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: includes/admin/admin-field-groups.php:
|
406 |
-
msgid "
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: includes/admin/admin-field-groups.php:
|
410 |
-
msgid "
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: includes/admin/admin-field-groups.php:
|
414 |
msgid "Duplicate this item"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/admin/admin-field-groups.php:
|
418 |
-
#: includes/admin/admin-field-groups.php:521
|
419 |
-
#: includes/admin/views/field-group-field.php:46
|
420 |
-
#: pro/fields/class-acf-field-flexible-content.php:558
|
421 |
msgid "Duplicate"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: includes/admin/admin-field-groups.php:
|
425 |
-
#, php-format
|
426 |
msgid "Field group duplicated."
|
427 |
msgid_plural "%s field groups duplicated."
|
428 |
msgstr[0] ""
|
429 |
msgstr[1] ""
|
430 |
|
431 |
-
#: includes/admin/admin-field-groups.php:
|
432 |
-
#, php-format
|
433 |
msgid "Field group synchronised."
|
434 |
msgid_plural "%s field groups synchronised."
|
435 |
msgstr[0] ""
|
436 |
msgstr[1] ""
|
437 |
|
438 |
-
#: includes/admin/admin-field-groups.php:
|
439 |
-
#, php-format
|
440 |
msgid "Select %s"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/admin/admin-tools.php:
|
444 |
-
#: includes/admin/views/html-admin-tools.php:21
|
445 |
msgid "Tools"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/admin/admin-upgrade.php:
|
449 |
-
#: includes/admin/admin-upgrade.php:112 includes/admin/admin-upgrade.php:175
|
450 |
-
#: includes/admin/views/html-admin-page-upgrade-network.php:24
|
451 |
-
#: includes/admin/views/html-admin-page-upgrade.php:26
|
452 |
msgid "Upgrade Database"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/admin/admin-upgrade.php:
|
456 |
msgid "Review sites & upgrade"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/admin/admin.php:
|
460 |
-
#: includes/admin/views/field-group-options.php:110
|
461 |
msgid "Custom Fields"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/admin/admin.php:
|
465 |
msgid "Overview"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/admin/admin.php:
|
469 |
-
msgid ""
|
470 |
-
"The Advanced Custom Fields plugin provides a visual form builder to "
|
471 |
-
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
472 |
-
"display custom field values in any theme template file."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/admin/admin.php:
|
476 |
-
|
477 |
-
msgid ""
|
478 |
-
"Before creating your first Field Group, we recommend first reading our <a "
|
479 |
-
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
480 |
-
"yourself with the plugin's philosophy and best practises."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/admin/admin.php:
|
484 |
-
msgid ""
|
485 |
-
"Please use the Help & Support tab to get in touch should you find yourself "
|
486 |
-
"requiring assistance."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: includes/admin/admin.php:
|
490 |
msgid "Help & Support"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: includes/admin/admin.php:
|
494 |
-
msgid ""
|
495 |
-
"We are fanatical about support, and want you to get the best out of your "
|
496 |
-
"website with ACF. If you run into any difficulties, there are several places "
|
497 |
-
"you can find help:"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: includes/admin/admin.php:
|
501 |
-
|
502 |
-
msgid ""
|
503 |
-
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
504 |
-
"documentation contains references and guides for most situations you may "
|
505 |
-
"encounter."
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: includes/admin/admin.php:
|
509 |
-
|
510 |
-
msgid ""
|
511 |
-
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
512 |
-
"friendly community on our Community Forums who may be able to help you "
|
513 |
-
"figure out the ‘how-tos’ of the ACF world."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: includes/admin/admin.php:
|
517 |
-
|
518 |
-
msgid ""
|
519 |
-
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
|
520 |
-
"our Help Desk will assist with your more in depth, technical challenges."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/admin/admin.php:
|
524 |
msgid "Information"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/admin/admin.php:
|
528 |
-
#, php-format
|
529 |
msgid "Version %s"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: includes/admin/admin.php:
|
533 |
msgid "View details"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: includes/admin/admin.php:
|
537 |
msgid "Visit website"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: includes/admin/admin.php:
|
541 |
-
#: includes/admin/views/field-group-field-conditional-logic.php:138
|
542 |
-
#: includes/admin/views/html-location-rule.php:86
|
543 |
msgid "and"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: includes/
|
547 |
-
msgid "
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: includes/
|
551 |
-
|
552 |
-
#: includes/admin/tools/class-acf-admin-tool-export.php:371
|
553 |
-
msgid "Generate PHP"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: includes/
|
557 |
-
|
558 |
-
msgid "No field groups selected"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/
|
562 |
-
|
563 |
-
msgid "Exported 1 field group."
|
564 |
-
msgid_plural "Exported %s field groups."
|
565 |
-
msgstr[0] ""
|
566 |
-
msgstr[1] ""
|
567 |
-
|
568 |
-
#: includes/admin/tools/class-acf-admin-tool-export.php:241
|
569 |
-
#: includes/admin/tools/class-acf-admin-tool-export.php:269
|
570 |
-
msgid "Select Field Groups"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/
|
574 |
-
msgid ""
|
575 |
-
"Select the field groups you would like to export and then select your export "
|
576 |
-
"method. Use the download button to export to a .json file which you can then "
|
577 |
-
"import to another ACF installation. Use the generate button to export to PHP "
|
578 |
-
"code which you can place in your theme."
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: includes/
|
582 |
-
msgid "
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: includes/
|
586 |
-
msgid ""
|
587 |
-
"The following code can be used to register a local version of the selected "
|
588 |
-
"field group(s). A local field group can provide many benefits such as faster "
|
589 |
-
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
590 |
-
"the following code to your theme's functions.php file or include it within "
|
591 |
-
"an external file."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: includes/
|
595 |
-
msgid "
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: includes/
|
599 |
-
msgid "
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: includes/
|
603 |
-
msgid "
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: includes/
|
607 |
-
msgid ""
|
608 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
609 |
-
"you click the import button below, ACF will import the field groups."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: includes/
|
613 |
-
|
614 |
-
msgid "Select File"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/
|
618 |
-
msgid "
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/
|
622 |
-
|
623 |
-
msgid "No file selected"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: includes/
|
627 |
-
msgid "
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: includes/
|
631 |
-
msgid "
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: includes/
|
635 |
-
msgid "
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: includes/
|
639 |
-
|
640 |
-
msgid "Imported 1 field group"
|
641 |
-
msgid_plural "Imported %s field groups"
|
642 |
-
msgstr[0] ""
|
643 |
-
msgstr[1] ""
|
644 |
-
|
645 |
-
#: includes/admin/views/field-group-field-conditional-logic.php:25
|
646 |
-
msgid "Conditional Logic"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: includes/
|
650 |
-
msgid "
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: includes/
|
654 |
-
|
655 |
-
msgid "Add rule group"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: includes/
|
659 |
-
|
660 |
-
#: pro/fields/class-acf-field-repeater.php:299
|
661 |
-
msgid "Drag to reorder"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: includes/
|
665 |
-
|
666 |
-
msgid "Edit field"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: includes/
|
670 |
-
|
671 |
-
#: includes/fields/class-acf-field-image.php:131
|
672 |
-
#: includes/fields/class-acf-field-link.php:139
|
673 |
-
#: pro/fields/class-acf-field-gallery.php:337
|
674 |
-
msgid "Edit"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: includes/
|
678 |
-
msgid "
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: includes/
|
682 |
-
msgid "
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: includes/
|
686 |
-
msgid "
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: includes/
|
690 |
-
msgid "
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: includes/
|
694 |
-
|
695 |
-
msgid "Delete"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: includes/
|
699 |
-
msgid "
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: includes/
|
703 |
-
msgid "
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: includes/
|
707 |
-
msgid "
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: includes/
|
711 |
-
msgid "
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: includes/
|
715 |
-
msgid "
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: includes/
|
719 |
-
msgid "
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: includes/
|
723 |
-
msgid "
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: includes/
|
727 |
-
msgid "
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: includes/
|
731 |
-
msgid "
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: includes/
|
735 |
-
msgid "
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: includes/
|
739 |
-
msgid "
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/
|
743 |
-
msgid "
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/admin/views/field-group-
|
747 |
-
msgid "
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: includes/
|
751 |
-
msgid "
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: includes/
|
755 |
-
|
756 |
-
#: includes/fields/class-acf-field-checkbox.php:420
|
757 |
-
#: includes/fields/class-acf-field-radio.php:311
|
758 |
-
#: includes/fields/class-acf-field-select.php:433
|
759 |
-
#: pro/fields/class-acf-field-flexible-content.php:583
|
760 |
-
msgid "Label"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/
|
764 |
-
|
765 |
-
#: pro/fields/class-acf-field-flexible-content.php:597
|
766 |
-
msgid "Name"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/
|
770 |
-
msgid "
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: includes/
|
774 |
-
msgid ""
|
775 |
-
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
776 |
-
"first field."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: includes/
|
780 |
-
msgid "
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: includes/
|
784 |
-
msgid "
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: includes/
|
788 |
-
msgid ""
|
789 |
-
"Create a set of rules to determine which edit screens will use these "
|
790 |
-
"advanced custom fields"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/
|
794 |
-
msgid "
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/
|
798 |
-
msgid "
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: includes/
|
802 |
-
msgid "
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: includes/
|
806 |
-
msgid "
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: includes/
|
810 |
-
msgid "
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: includes/
|
814 |
-
msgid "
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: includes/
|
818 |
-
msgid "
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: includes/
|
822 |
-
msgid "
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/
|
826 |
-
|
827 |
-
msgid "Top aligned"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/
|
831 |
-
|
832 |
-
msgid "Left aligned"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/
|
836 |
-
msgid "
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: includes/
|
840 |
-
msgid "
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: includes/
|
844 |
-
msgid "
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: includes/
|
848 |
-
msgid "
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: includes/
|
852 |
-
msgid "
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: includes/
|
856 |
-
msgid "
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/
|
860 |
-
|
|
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/
|
864 |
-
|
|
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: includes/
|
868 |
-
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: includes/
|
872 |
-
|
|
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: includes/
|
876 |
-
|
|
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: includes/
|
880 |
-
msgid "
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: includes/
|
884 |
-
msgid "
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/
|
888 |
-
msgid "
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/
|
892 |
-
msgid "
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/
|
896 |
-
|
897 |
-
msgid "Featured Image"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: includes/
|
901 |
-
msgid "
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: includes/
|
905 |
-
msgid "
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: includes/
|
909 |
-
msgid "
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: includes/
|
913 |
-
|
|
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: includes/
|
917 |
-
|
|
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: includes/
|
921 |
-
|
922 |
-
|
923 |
-
"options will be used (the one with the lowest order number)"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/
|
927 |
-
|
928 |
-
msgid ""
|
929 |
-
"The following sites require a DB upgrade. Check the ones you want to update "
|
930 |
-
"and then click %s."
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: includes/
|
934 |
-
|
935 |
-
|
936 |
-
msgid "Upgrade Sites"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: includes/
|
940 |
-
|
941 |
-
msgid "
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: includes/
|
945 |
-
|
946 |
-
msgid "
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/
|
950 |
-
|
|
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/
|
954 |
-
|
955 |
-
msgid ""
|
956 |
-
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: includes/
|
960 |
-
|
|
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/
|
964 |
-
|
965 |
-
msgid ""
|
966 |
-
"It is strongly recommended that you backup your database before proceeding. "
|
967 |
-
"Are you sure you wish to run the updater now?"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: includes/
|
971 |
-
|
972 |
-
|
973 |
-
msgid "Upgrading data to version %s"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/
|
977 |
-
|
|
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: includes/
|
981 |
-
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: includes/
|
986 |
-
|
|
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: includes/
|
990 |
-
|
991 |
-
msgid "Database upgrade complete. <a href=\"%s\">See what's new</a>"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: includes/
|
995 |
-
|
996 |
-
msgid "No updates available."
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: includes/admin/views/html-admin-tools.php:21
|
1000 |
-
msgid "Back to all tools"
|
1001 |
-
msgstr ""
|
1002 |
-
|
1003 |
-
#: includes/admin/views/html-location-group.php:3
|
1004 |
-
msgid "Show this field group if"
|
1005 |
-
msgstr ""
|
1006 |
-
|
1007 |
-
#: includes/admin/views/html-notice-upgrade.php:8
|
1008 |
-
#: pro/fields/class-acf-field-repeater.php:25
|
1009 |
-
msgid "Repeater"
|
1010 |
-
msgstr ""
|
1011 |
-
|
1012 |
-
#: includes/admin/views/html-notice-upgrade.php:9
|
1013 |
-
#: pro/fields/class-acf-field-flexible-content.php:25
|
1014 |
-
msgid "Flexible Content"
|
1015 |
-
msgstr ""
|
1016 |
-
|
1017 |
-
#: includes/admin/views/html-notice-upgrade.php:10
|
1018 |
-
#: pro/fields/class-acf-field-gallery.php:25
|
1019 |
-
msgid "Gallery"
|
1020 |
-
msgstr ""
|
1021 |
-
|
1022 |
-
#: includes/admin/views/html-notice-upgrade.php:11
|
1023 |
-
#: pro/locations/class-acf-location-options-page.php:20
|
1024 |
-
msgid "Options Page"
|
1025 |
-
msgstr ""
|
1026 |
-
|
1027 |
-
#: includes/admin/views/html-notice-upgrade.php:21
|
1028 |
-
msgid "Database Upgrade Required"
|
1029 |
-
msgstr ""
|
1030 |
-
|
1031 |
-
#: includes/admin/views/html-notice-upgrade.php:22
|
1032 |
-
#, php-format
|
1033 |
-
msgid "Thank you for updating to %s v%s!"
|
1034 |
-
msgstr ""
|
1035 |
-
|
1036 |
-
#: includes/admin/views/html-notice-upgrade.php:22
|
1037 |
-
msgid ""
|
1038 |
-
"This version contains improvements to your database and requires an upgrade."
|
1039 |
-
msgstr ""
|
1040 |
-
|
1041 |
-
#: includes/admin/views/html-notice-upgrade.php:24
|
1042 |
-
#, php-format
|
1043 |
-
msgid ""
|
1044 |
-
"Please also check all premium add-ons (%s) are updated to the latest version."
|
1045 |
-
msgstr ""
|
1046 |
-
|
1047 |
-
#: includes/ajax/class-acf-ajax-local-json-diff.php:34
|
1048 |
-
msgid "Invalid field group parameter(s)."
|
1049 |
-
msgstr ""
|
1050 |
-
|
1051 |
-
#: includes/ajax/class-acf-ajax-local-json-diff.php:41
|
1052 |
-
msgid "Invalid field group ID."
|
1053 |
-
msgstr ""
|
1054 |
-
|
1055 |
-
#: includes/ajax/class-acf-ajax-local-json-diff.php:51
|
1056 |
-
msgid "Sorry, this field group is unavailable for diff comparison."
|
1057 |
-
msgstr ""
|
1058 |
-
|
1059 |
-
#: includes/ajax/class-acf-ajax-local-json-diff.php:57
|
1060 |
-
#, php-format
|
1061 |
-
msgid "Last updated: %s"
|
1062 |
-
msgstr ""
|
1063 |
-
|
1064 |
-
#: includes/ajax/class-acf-ajax-local-json-diff.php:62
|
1065 |
-
msgid "Original field group"
|
1066 |
-
msgstr ""
|
1067 |
-
|
1068 |
-
#: includes/ajax/class-acf-ajax-local-json-diff.php:66
|
1069 |
-
msgid "JSON field group (newer)"
|
1070 |
-
msgstr ""
|
1071 |
-
|
1072 |
-
#: includes/ajax/class-acf-ajax.php:157
|
1073 |
-
msgid "Invalid nonce."
|
1074 |
-
msgstr ""
|
1075 |
-
|
1076 |
-
#: includes/api/api-helpers.php:844
|
1077 |
-
msgid "Thumbnail"
|
1078 |
-
msgstr ""
|
1079 |
-
|
1080 |
-
#: includes/api/api-helpers.php:845
|
1081 |
-
msgid "Medium"
|
1082 |
-
msgstr ""
|
1083 |
-
|
1084 |
-
#: includes/api/api-helpers.php:846
|
1085 |
-
msgid "Large"
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: includes/api/api-helpers.php:895
|
1089 |
-
msgid "Full Size"
|
1090 |
-
msgstr ""
|
1091 |
-
|
1092 |
-
#: includes/api/api-helpers.php:1632 includes/api/api-term.php:145
|
1093 |
-
#: pro/fields/class-acf-field-clone.php:993
|
1094 |
-
msgid "(no title)"
|
1095 |
-
msgstr ""
|
1096 |
-
|
1097 |
-
#: includes/api/api-helpers.php:3567
|
1098 |
-
#, php-format
|
1099 |
-
msgid "Image width must be at least %dpx."
|
1100 |
-
msgstr ""
|
1101 |
-
|
1102 |
-
#: includes/api/api-helpers.php:3572
|
1103 |
-
#, php-format
|
1104 |
-
msgid "Image width must not exceed %dpx."
|
1105 |
-
msgstr ""
|
1106 |
-
|
1107 |
-
#: includes/api/api-helpers.php:3588
|
1108 |
-
#, php-format
|
1109 |
-
msgid "Image height must be at least %dpx."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: includes/
|
1113 |
-
|
1114 |
-
msgid "Image height must not exceed %dpx."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/
|
1118 |
-
|
1119 |
-
msgid "File size must be at least %s."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/
|
1123 |
-
|
1124 |
-
msgid "File size must not exceed %s."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/
|
1128 |
-
|
1129 |
-
msgid "File type must be %s."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: includes/
|
1133 |
-
msgid "
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/
|
1137 |
-
|
1138 |
-
#: pro/admin/views/html-settings-updates.php:86
|
1139 |
-
msgid "Yes"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/
|
1143 |
-
|
1144 |
-
#: pro/admin/views/html-settings-updates.php:96
|
1145 |
-
msgid "No"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/
|
1149 |
-
|
1150 |
-
#: includes/fields/class-acf-field-link.php:140
|
1151 |
-
#: pro/fields/class-acf-field-gallery.php:338
|
1152 |
-
#: pro/fields/class-acf-field-gallery.php:478
|
1153 |
-
msgid "Remove"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: includes/
|
1157 |
-
msgid "
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: includes/
|
1161 |
-
msgid "
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/
|
1165 |
-
msgid "
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/
|
1169 |
-
|
1170 |
-
msgid "Validation failed"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/
|
1174 |
-
msgid "
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/
|
1178 |
-
|
1179 |
-
msgid "%d fields require attention"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/
|
1183 |
-
|
1184 |
-
msgid "Edit field group"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/fields.php:
|
1188 |
-
msgid "
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/fields.php:
|
1192 |
-
msgid "
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/fields.php:
|
1196 |
-
msgid "
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/fields.php:
|
1200 |
-
msgid "
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/fields.php:
|
1204 |
-
msgid "
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/fields.php:
|
1208 |
-
msgid "
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/fields.php:
|
1212 |
-
msgid "
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: includes/fields.php:
|
1216 |
-
|
1217 |
-
#: includes/fields/class-acf-field-checkbox.php:389
|
1218 |
-
#: includes/fields/class-acf-field-group.php:474
|
1219 |
-
#: includes/fields/class-acf-field-radio.php:290
|
1220 |
-
#: pro/fields/class-acf-field-clone.php:840
|
1221 |
-
#: pro/fields/class-acf-field-flexible-content.php:554
|
1222 |
-
#: pro/fields/class-acf-field-flexible-content.php:603
|
1223 |
-
#: pro/fields/class-acf-field-repeater.php:449
|
1224 |
-
msgid "Layout"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: includes/fields/class-acf-field-
|
1228 |
-
msgid "
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/fields/class-acf-field-
|
1232 |
-
msgid "
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: includes/fields/class-acf-field-
|
1236 |
-
msgid "
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/fields/class-acf-field-
|
1240 |
-
msgid "
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/fields/class-acf-field-
|
1244 |
-
msgid "
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/fields/class-acf-field-
|
1248 |
-
|
1249 |
-
msgid "Endpoint"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/fields/class-acf-field-
|
1253 |
-
msgid ""
|
1254 |
-
"Define an endpoint for the previous accordion to stop. This accordion will "
|
1255 |
-
"not be visible."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/fields/class-acf-field-
|
1259 |
-
msgid "
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/fields/class-acf-field-
|
1263 |
-
|
1264 |
-
#: includes/fields/class-acf-field-radio.php:235
|
1265 |
-
#: includes/fields/class-acf-field-select.php:364
|
1266 |
-
msgid "Choices"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/fields/class-acf-field-
|
1270 |
-
|
1271 |
-
#: includes/fields/class-acf-field-radio.php:236
|
1272 |
-
#: includes/fields/class-acf-field-select.php:365
|
1273 |
-
msgid "Enter each choice on a new line."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/fields/class-acf-field-
|
1277 |
-
|
1278 |
-
#: includes/fields/class-acf-field-radio.php:236
|
1279 |
-
#: includes/fields/class-acf-field-select.php:365
|
1280 |
-
msgid "For more control, you may specify both a value and label like this:"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/fields/class-acf-field-
|
1284 |
-
|
1285 |
-
#: includes/fields/class-acf-field-radio.php:236
|
1286 |
-
#: includes/fields/class-acf-field-select.php:365
|
1287 |
-
msgid "red : Red"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/fields/class-acf-field-
|
1291 |
-
|
1292 |
-
#: includes/fields/class-acf-field-post_object.php:411
|
1293 |
-
#: includes/fields/class-acf-field-radio.php:244
|
1294 |
-
#: includes/fields/class-acf-field-select.php:382
|
1295 |
-
#: includes/fields/class-acf-field-taxonomy.php:771
|
1296 |
-
#: includes/fields/class-acf-field-user.php:63
|
1297 |
-
msgid "Allow Null?"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: includes/fields/class-acf-field-
|
1301 |
-
|
1302 |
-
#: includes/fields/class-acf-field-color_picker.php:127
|
1303 |
-
#: includes/fields/class-acf-field-email.php:118
|
1304 |
-
#: includes/fields/class-acf-field-number.php:127
|
1305 |
-
#: includes/fields/class-acf-field-radio.php:281
|
1306 |
-
#: includes/fields/class-acf-field-range.php:155
|
1307 |
-
#: includes/fields/class-acf-field-select.php:373
|
1308 |
-
#: includes/fields/class-acf-field-text.php:95
|
1309 |
-
#: includes/fields/class-acf-field-textarea.php:102
|
1310 |
-
#: includes/fields/class-acf-field-true_false.php:135
|
1311 |
-
#: includes/fields/class-acf-field-url.php:100
|
1312 |
-
#: includes/fields/class-acf-field-wysiwyg.php:371
|
1313 |
-
msgid "Default Value"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: includes/fields/class-acf-field-
|
1317 |
-
|
1318 |
-
#: includes/fields/class-acf-field-number.php:128
|
1319 |
-
#: includes/fields/class-acf-field-radio.php:282
|
1320 |
-
#: includes/fields/class-acf-field-range.php:156
|
1321 |
-
#: includes/fields/class-acf-field-text.php:96
|
1322 |
-
#: includes/fields/class-acf-field-textarea.php:103
|
1323 |
-
#: includes/fields/class-acf-field-url.php:101
|
1324 |
-
#: includes/fields/class-acf-field-wysiwyg.php:372
|
1325 |
-
msgid "Appears when creating a new post"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: includes/fields/class-acf-field-
|
1329 |
-
|
1330 |
-
#: includes/fields/class-acf-field-radio.php:297
|
1331 |
-
msgid "Horizontal"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: includes/fields/class-acf-field-
|
1335 |
-
|
1336 |
-
#: includes/fields/class-acf-field-radio.php:296
|
1337 |
-
msgid "Vertical"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: includes/fields/class-acf-field-
|
1341 |
-
|
1342 |
-
#: includes/fields/class-acf-field-file.php:214
|
1343 |
-
#: includes/fields/class-acf-field-link.php:166
|
1344 |
-
#: includes/fields/class-acf-field-radio.php:304
|
1345 |
-
#: includes/fields/class-acf-field-taxonomy.php:816
|
1346 |
-
msgid "Return Value"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/fields/class-acf-field-
|
1350 |
-
|
1351 |
-
#: includes/fields/class-acf-field-file.php:215
|
1352 |
-
#: includes/fields/class-acf-field-link.php:167
|
1353 |
-
#: includes/fields/class-acf-field-radio.php:305
|
1354 |
-
msgid "Specify the returned value on front end"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: includes/fields/class-acf-field-
|
1358 |
-
|
1359 |
-
#: includes/fields/class-acf-field-radio.php:310
|
1360 |
-
#: includes/fields/class-acf-field-select.php:432
|
1361 |
-
msgid "Value"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: includes/fields/class-acf-field-
|
1365 |
-
|
1366 |
-
#: includes/fields/class-acf-field-radio.php:312
|
1367 |
-
#: includes/fields/class-acf-field-select.php:434
|
1368 |
-
msgid "Both (Array)"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: includes/fields/class-acf-field-
|
1372 |
-
|
1373 |
-
msgid "Checkbox"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: includes/fields/class-acf-field-
|
1377 |
-
msgid "
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: includes/fields/class-acf-field-
|
1381 |
-
msgid "
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: includes/fields/class-acf-field-
|
1385 |
-
msgid "
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: includes/fields/class-acf-field-
|
1389 |
-
msgid "
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: includes/fields/class-acf-field-
|
1393 |
-
msgid "
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: includes/fields/class-acf-field-
|
1397 |
-
msgid "
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: includes/fields/class-acf-field-
|
1401 |
-
|
1402 |
-
msgid "Enter each default value on a new line"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: includes/fields/class-acf-field-
|
1406 |
-
msgid "
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: includes/fields/class-acf-field-
|
1410 |
-
msgid "
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: includes/fields/class-acf-field-
|
1414 |
-
msgid "
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: includes/fields/class-acf-field-
|
1418 |
-
msgid "
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: includes/fields/class-acf-field-
|
1422 |
-
msgid "
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: includes/fields/class-acf-field-
|
1426 |
-
msgid "
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: includes/fields/class-acf-field-
|
1430 |
-
msgid "
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: includes/fields/class-acf-field-
|
1434 |
-
msgid "Select
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: includes/fields/class-acf-field-
|
1438 |
-
msgid "
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: includes/fields/class-acf-field-
|
1442 |
-
msgid "
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: includes/fields/class-acf-field-
|
1446 |
-
|
1447 |
-
msgid "Done"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: includes/fields/class-acf-field-
|
1451 |
-
|
1452 |
-
msgid "Today"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: includes/fields/class-acf-field-
|
1456 |
-
|
1457 |
-
msgid "Next"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: includes/fields/class-acf-field-
|
1461 |
-
|
1462 |
-
msgid "Prev"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: includes/fields/class-acf-field-
|
1466 |
-
|
1467 |
-
msgid "Wk"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: includes/fields/class-acf-field-
|
1471 |
-
|
1472 |
-
#: includes/fields/class-acf-field-time_picker.php:109
|
1473 |
-
msgid "Display Format"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: includes/fields/class-acf-field-
|
1477 |
-
|
1478 |
-
#: includes/fields/class-acf-field-time_picker.php:110
|
1479 |
-
msgid "The format displayed when editing a post"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: includes/fields/class-acf-field-
|
1483 |
-
|
1484 |
-
#: includes/fields/class-acf-field-date_time_picker.php:193
|
1485 |
-
#: includes/fields/class-acf-field-date_time_picker.php:210
|
1486 |
-
#: includes/fields/class-acf-field-time_picker.php:117
|
1487 |
-
#: includes/fields/class-acf-field-time_picker.php:132
|
1488 |
-
msgid "Custom:"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: includes/fields/class-acf-field-
|
1492 |
-
msgid "
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: includes/fields/class-acf-field-
|
1496 |
-
msgid "
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: includes/fields/class-acf-field-
|
1500 |
-
|
1501 |
-
#: includes/fields/class-acf-field-image.php:194
|
1502 |
-
#: includes/fields/class-acf-field-post_object.php:431
|
1503 |
-
#: includes/fields/class-acf-field-relationship.php:628
|
1504 |
-
#: includes/fields/class-acf-field-select.php:427
|
1505 |
-
#: includes/fields/class-acf-field-time_picker.php:124
|
1506 |
-
#: includes/fields/class-acf-field-user.php:79
|
1507 |
-
#: pro/fields/class-acf-field-gallery.php:557
|
1508 |
-
msgid "Return Format"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: includes/fields/class-acf-field-
|
1512 |
-
|
1513 |
-
#: includes/fields/class-acf-field-time_picker.php:125
|
1514 |
-
msgid "The format returned via template functions"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: includes/fields/class-acf-field-
|
1518 |
-
|
1519 |
-
msgid "Week Starts On"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: includes/fields/class-acf-field-
|
1523 |
-
msgid "
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: includes/fields/class-acf-field-
|
1527 |
-
|
1528 |
-
msgid "Choose Time"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: includes/fields/class-acf-field-
|
1532 |
-
|
1533 |
-
msgid "Time"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: includes/fields/class-acf-field-
|
1537 |
-
|
1538 |
-
msgid "Hour"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: includes/fields/class-acf-field-
|
1542 |
-
|
1543 |
-
msgid "Minute"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: includes/fields/class-acf-field-
|
1547 |
-
|
1548 |
-
msgid "Second"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: includes/fields/class-acf-field-
|
1552 |
-
|
1553 |
-
msgid "Millisecond"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: includes/fields/class-acf-field-
|
1557 |
-
|
1558 |
-
msgid "Microsecond"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: includes/fields/class-acf-field-
|
1562 |
-
|
1563 |
-
msgid "Time Zone"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: includes/fields/class-acf-field-
|
1567 |
-
|
1568 |
-
msgid "Now"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: includes/fields/class-acf-field-
|
1572 |
-
|
1573 |
-
msgid "Done"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: includes/fields/class-acf-field-
|
1577 |
-
|
1578 |
-
msgid "Select"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: includes/fields/class-acf-field-
|
1582 |
-
|
1583 |
-
msgid "AM"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: includes/fields/class-acf-field-
|
1587 |
-
|
1588 |
-
msgid "A"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: includes/fields/class-acf-field-
|
1592 |
-
|
1593 |
-
msgid "PM"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: includes/fields/class-acf-field-
|
1597 |
-
|
1598 |
-
msgid "P"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: includes/fields/class-acf-field-
|
1602 |
-
msgid "
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: includes/fields/class-acf-field-
|
1606 |
-
|
1607 |
-
#: includes/fields/class-acf-field-password.php:71
|
1608 |
-
#: includes/fields/class-acf-field-text.php:104
|
1609 |
-
#: includes/fields/class-acf-field-textarea.php:111
|
1610 |
-
#: includes/fields/class-acf-field-url.php:109
|
1611 |
-
msgid "Placeholder Text"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: includes/fields/class-acf-field-
|
1615 |
-
|
1616 |
-
#: includes/fields/class-acf-field-password.php:72
|
1617 |
-
#: includes/fields/class-acf-field-text.php:105
|
1618 |
-
#: includes/fields/class-acf-field-textarea.php:112
|
1619 |
-
#: includes/fields/class-acf-field-url.php:110
|
1620 |
-
msgid "Appears within the input"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: includes/fields/class-acf-field-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
msgid "Prepend"
|
1629 |
-
msgstr ""
|
1630 |
|
1631 |
-
#: includes/fields/class-acf-field-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
msgid "Appears before the input"
|
1637 |
-
msgstr ""
|
1638 |
|
1639 |
-
#: includes/fields/class-acf-field-
|
1640 |
-
|
1641 |
-
#: includes/fields/class-acf-field-password.php:89
|
1642 |
-
#: includes/fields/class-acf-field-range.php:203
|
1643 |
-
#: includes/fields/class-acf-field-text.php:122
|
1644 |
-
msgid "Append"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: includes/fields/class-acf-field-
|
1648 |
-
|
1649 |
-
#: includes/fields/class-acf-field-password.php:90
|
1650 |
-
#: includes/fields/class-acf-field-range.php:204
|
1651 |
-
#: includes/fields/class-acf-field-text.php:123
|
1652 |
-
msgid "Appears after the input"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: includes/fields/class-acf-field-
|
1656 |
-
msgid "
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: includes/fields/class-acf-field-
|
1660 |
-
msgid "
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: includes/fields/class-acf-field-
|
1664 |
-
msgid "
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: includes/fields/class-acf-field-
|
1668 |
-
msgid "
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: includes/fields/class-acf-field-
|
1672 |
-
|
1673 |
-
#: includes/fields/class-acf-field-file.php:258
|
1674 |
-
#: includes/fields/class-acf-field-image.php:254
|
1675 |
-
#: includes/fields/class-acf-field-image.php:283
|
1676 |
-
#: pro/fields/class-acf-field-gallery.php:642
|
1677 |
-
#: pro/fields/class-acf-field-gallery.php:671
|
1678 |
-
msgid "File size"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: includes/fields/class-acf-field-
|
1682 |
-
msgid "
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: includes/fields/class-acf-field-
|
1686 |
-
msgid "
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: includes/fields/class-acf-field-
|
1690 |
-
msgid "
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: includes/fields/class-acf-field-
|
1694 |
-
msgid "
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: includes/fields/class-acf-field-
|
1698 |
-
|
1699 |
-
#: pro/fields/class-acf-field-gallery.php:592
|
1700 |
-
msgid "Library"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: includes/fields/class-acf-field-
|
1704 |
-
|
1705 |
-
#: pro/fields/class-acf-field-gallery.php:593
|
1706 |
-
msgid "Limit the media library choice"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/fields/class-acf-field-
|
1710 |
-
|
1711 |
-
#: includes/locations/class-acf-location-attachment.php:71
|
1712 |
-
#: includes/locations/class-acf-location-comment.php:59
|
1713 |
-
#: includes/locations/class-acf-location-nav-menu.php:72
|
1714 |
-
#: includes/locations/class-acf-location-taxonomy.php:61
|
1715 |
-
#: includes/locations/class-acf-location-user-form.php:65
|
1716 |
-
#: includes/locations/class-acf-location-user-role.php:76
|
1717 |
-
#: includes/locations/class-acf-location-widget.php:63
|
1718 |
-
#: pro/fields/class-acf-field-gallery.php:598
|
1719 |
-
#: pro/locations/class-acf-location-block.php:64
|
1720 |
-
msgid "All"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: includes/fields/class-acf-field-
|
1724 |
-
|
1725 |
-
#: pro/fields/class-acf-field-gallery.php:599
|
1726 |
-
msgid "Uploaded to post"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: includes/fields/class-acf-field-
|
1730 |
-
|
1731 |
-
#: pro/fields/class-acf-field-gallery.php:621
|
1732 |
-
msgid "Minimum"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: includes/fields/class-acf-field-
|
1736 |
-
|
1737 |
-
msgid "Restrict which files can be uploaded"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: includes/fields/class-acf-field-
|
1741 |
-
|
1742 |
-
#: pro/fields/class-acf-field-gallery.php:650
|
1743 |
-
msgid "Maximum"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: includes/fields/class-acf-field-
|
1747 |
-
|
1748 |
-
#: pro/fields/class-acf-field-gallery.php:678
|
1749 |
-
msgid "Allowed file types"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: includes/fields/class-acf-field-
|
1753 |
-
|
1754 |
-
#: pro/fields/class-acf-field-gallery.php:679
|
1755 |
-
msgid "Comma separated list. Leave blank for all types"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: includes/fields/class-acf-field-
|
1759 |
-
msgid "
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: includes/fields/class-acf-field-
|
1763 |
-
msgid "
|
1764 |
-
|
|
|
|
|
1765 |
|
1766 |
-
#: includes/fields/class-acf-field-
|
1767 |
-
|
1768 |
-
msgid "
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: includes/fields/class-acf-field-
|
1772 |
-
|
|
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: includes/fields/class-acf-field-
|
1776 |
-
|
|
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: includes/fields/class-acf-field-
|
1780 |
-
|
|
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: includes/fields/class-acf-field-
|
1784 |
-
|
1785 |
-
msgid "
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: includes/fields/class-acf-field-
|
1789 |
-
|
1790 |
-
msgid "
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: includes/fields/class-acf-field-
|
1794 |
-
|
|
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: includes/fields/class-acf-field-
|
1798 |
-
|
|
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: includes/fields/class-acf-field-
|
1802 |
-
|
1803 |
-
|
1804 |
-
#: includes/fields/class-acf-field-oembed.php:268
|
1805 |
-
#: pro/fields/class-acf-field-gallery.php:633
|
1806 |
-
#: pro/fields/class-acf-field-gallery.php:662
|
1807 |
-
msgid "Height"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: includes/fields/class-acf-field-
|
1811 |
-
|
|
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: includes/fields/class-acf-field-
|
1815 |
-
|
|
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: includes/fields/class-acf-field-
|
1819 |
-
|
1820 |
-
msgid "
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: includes/fields/class-acf-field-
|
1824 |
-
|
1825 |
-
msgid "
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: includes/fields/class-acf-field-
|
1829 |
-
|
1830 |
-
#: pro/fields/class-acf-field-flexible-content.php:615
|
1831 |
-
#: pro/fields/class-acf-field-repeater.php:457
|
1832 |
-
#: pro/locations/class-acf-location-block.php:20
|
1833 |
-
msgid "Block"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: includes/fields/class-acf-field-
|
1837 |
-
|
1838 |
-
#: pro/fields/class-acf-field-flexible-content.php:614
|
1839 |
-
#: pro/fields/class-acf-field-repeater.php:456
|
1840 |
-
msgid "Table"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: includes/fields/class-acf-field-
|
1844 |
-
|
1845 |
-
#: pro/fields/class-acf-field-flexible-content.php:616
|
1846 |
-
#: pro/fields/class-acf-field-repeater.php:458
|
1847 |
-
msgid "Row"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: includes/fields/class-acf-field-
|
1851 |
-
msgid "
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: includes/fields/class-acf-field-
|
1855 |
-
msgid "
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: includes/fields/class-acf-field-
|
1859 |
-
msgid "
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: includes/fields/class-acf-field-
|
1863 |
-
msgid "
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/fields/class-acf-field-
|
1867 |
-
msgid "
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: includes/fields/class-acf-field-
|
1871 |
-
msgid "
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: includes/fields/class-acf-field-
|
1875 |
-
msgid "
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: includes/fields/class-acf-field-
|
1879 |
-
|
1880 |
-
msgid "
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: includes/fields/class-acf-field-
|
1884 |
-
|
1885 |
-
msgid "Image URL"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: includes/fields/class-acf-field-
|
1889 |
-
|
1890 |
-
msgid "Image ID"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: includes/fields/class-acf-field-
|
1894 |
-
|
1895 |
-
msgid "Preview Size"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: includes/fields/class-acf-field-
|
1899 |
-
|
1900 |
-
#: pro/fields/class-acf-field-gallery.php:622
|
1901 |
-
#: pro/fields/class-acf-field-gallery.php:651
|
1902 |
-
msgid "Restrict which images can be uploaded"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: includes/fields/class-acf-field-
|
1906 |
-
|
1907 |
-
#: includes/fields/class-acf-field-oembed.php:257
|
1908 |
-
#: pro/fields/class-acf-field-gallery.php:625
|
1909 |
-
#: pro/fields/class-acf-field-gallery.php:654
|
1910 |
-
msgid "Width"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: includes/fields/class-acf-field-
|
1914 |
-
msgid "
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: includes/fields/class-acf-field-
|
1918 |
-
msgid "
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: includes/fields/class-acf-field-
|
1922 |
-
msgid "
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: includes/fields/class-acf-field-
|
1926 |
-
msgid "
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: includes/fields/class-acf-field-
|
1930 |
-
msgid "
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: includes/fields/class-acf-field-
|
1934 |
-
|
1935 |
-
#: includes/fields/class-acf-field-true_false.php:126
|
1936 |
-
msgid "Message"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: includes/fields/class-acf-field-
|
1940 |
-
|
1941 |
-
msgid "New Lines"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: includes/fields/class-acf-field-
|
1945 |
-
|
1946 |
-
msgid "Controls how new lines are rendered"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: includes/fields/class-acf-field-
|
1950 |
-
|
1951 |
-
msgid "Automatically add paragraphs"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: includes/fields/class-acf-field-
|
1955 |
-
|
1956 |
-
msgid "Automatically add <br>"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: includes/fields/class-acf-field-
|
1960 |
-
|
1961 |
-
msgid "No Formatting"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: includes/fields/class-acf-field-
|
1965 |
-
msgid "
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: includes/fields/class-acf-field-
|
1969 |
-
msgid "
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: includes/fields/class-acf-field-
|
1973 |
-
msgid "
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: includes/fields/class-acf-field-
|
1977 |
-
|
1978 |
-
msgid "Minimum Value"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: includes/fields/class-acf-field-
|
1982 |
-
|
1983 |
-
msgid "Maximum Value"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: includes/fields/class-acf-field-
|
1987 |
-
|
1988 |
-
msgid "Step Size"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: includes/fields/class-acf-field-
|
1992 |
-
msgid "
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: includes/fields/class-acf-field-
|
1996 |
-
|
1997 |
-
msgid "Value must be equal to or higher than %d"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: includes/fields/class-acf-field-
|
2001 |
-
|
2002 |
-
msgid "Value must be equal to or lower than %d"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: includes/fields/class-acf-field-
|
2006 |
-
msgid "
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: includes/fields/class-acf-field-
|
2010 |
-
msgid "
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: includes/fields/class-acf-field-
|
2014 |
-
|
2015 |
-
msgid "Embed Size"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: includes/fields/class-acf-field-
|
2019 |
-
msgid "
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: includes/fields/class-acf-field-
|
2023 |
-
msgid "
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: includes/fields/class-acf-field-
|
2027 |
-
|
2028 |
-
#: includes/fields/class-acf-field-taxonomy.php:948
|
2029 |
-
msgid "Parent"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: includes/fields/class-acf-field-
|
2033 |
-
|
2034 |
-
#: includes/fields/class-acf-field-relationship.php:554
|
2035 |
-
msgid "Filter by Post Type"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: includes/fields/class-acf-field-
|
2039 |
-
|
2040 |
-
#: includes/fields/class-acf-field-relationship.php:562
|
2041 |
-
msgid "All post types"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: includes/fields/class-acf-field-
|
2045 |
-
|
2046 |
-
#: includes/fields/class-acf-field-relationship.php:568
|
2047 |
-
msgid "Filter by Taxonomy"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: includes/fields/class-acf-field-
|
2051 |
-
|
2052 |
-
#: includes/fields/class-acf-field-relationship.php:576
|
2053 |
-
msgid "All taxonomies"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: includes/fields/class-acf-field-
|
2057 |
-
msgid "
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: includes/fields/class-acf-field-
|
2061 |
-
|
2062 |
-
#: includes/fields/class-acf-field-select.php:392
|
2063 |
-
#: includes/fields/class-acf-field-user.php:71
|
2064 |
-
msgid "Select multiple values?"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: includes/fields/class-acf-field-
|
2068 |
-
msgid "
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: includes/fields/class-acf-field-
|
2072 |
-
|
2073 |
-
#: includes/fields/class-acf-field-relationship.php:633
|
2074 |
-
msgid "Post Object"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: includes/fields/class-acf-field-
|
2078 |
-
|
2079 |
-
msgid "Post ID"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: includes/fields/class-acf-field-
|
2083 |
-
msgid "
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: includes/fields/class-acf-field-
|
2087 |
-
msgid "
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: includes/fields/class-acf-field-
|
2091 |
-
msgid "
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: includes/fields/class-acf-field-
|
2095 |
-
msgid "
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: includes/fields/class-acf-field-
|
2099 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: includes/fields/class-acf-field-
|
2103 |
-
msgid "
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: includes/fields/class-acf-field-
|
2107 |
-
|
|
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: includes/fields/class-acf-field-
|
2111 |
-
msgid "
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: includes/fields/class-acf-field-
|
2115 |
-
msgid "
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: includes/fields/class-acf-field-
|
2119 |
-
msgid "
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: includes/fields/class-acf-field-
|
2123 |
-
msgid "
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: includes/fields/class-acf-field-
|
2127 |
-
msgid "
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: includes/fields/class-acf-field-
|
2131 |
-
msgid "
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: includes/fields/class-acf-field-
|
2135 |
-
msgid "
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: includes/fields/class-acf-field-
|
2139 |
-
|
2140 |
-
msgid "Post Type"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: includes/fields/class-acf-field-
|
2144 |
-
|
2145 |
-
#: includes/fields/class-acf-field-taxonomy.php:741
|
2146 |
-
#: includes/locations/class-acf-location-taxonomy.php:20
|
2147 |
-
msgid "Taxonomy"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: includes/fields/class-acf-field-
|
2151 |
-
msgid "
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: includes/
|
2155 |
-
msgid "
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: includes/
|
2159 |
-
msgid "
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: includes/
|
2163 |
-
msgid "
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: includes/
|
2167 |
-
|
2168 |
-
|
2169 |
-
msgid "%s requires at least %s selection"
|
2170 |
-
msgid_plural "%s requires at least %s selections"
|
2171 |
-
msgstr[0] ""
|
2172 |
-
msgstr[1] ""
|
2173 |
|
2174 |
-
#: includes/
|
2175 |
-
|
2176 |
-
msgctxt "noun"
|
2177 |
-
msgid "Select"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: includes/
|
2181 |
-
|
2182 |
-
msgid "One result is available, press enter to select it."
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: includes/
|
2186 |
-
|
2187 |
-
msgctxt "Select2 JS matches_n"
|
2188 |
-
msgid "%d results are available, use up and down arrow keys to navigate."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: includes/
|
2192 |
-
|
2193 |
-
msgid "No matches found"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: includes/
|
2197 |
-
|
2198 |
-
msgid "Please enter 1 or more characters"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: includes/
|
2202 |
-
|
2203 |
-
msgctxt "Select2 JS input_too_short_n"
|
2204 |
-
msgid "Please enter %d or more characters"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: includes/
|
2208 |
-
|
2209 |
-
msgid "Please delete 1 character"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: includes/
|
2213 |
-
|
2214 |
-
msgctxt "Select2 JS input_too_long_n"
|
2215 |
-
msgid "Please delete %d characters"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: includes/
|
2219 |
-
|
2220 |
-
msgid "You can only select 1 item"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: includes/
|
2224 |
-
|
2225 |
-
msgctxt "Select2 JS selection_too_long_n"
|
2226 |
-
msgid "You can only select %d items"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: includes/
|
2230 |
-
|
2231 |
-
msgid "Loading more results…"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: includes/
|
2235 |
-
|
2236 |
-
msgid "Searching…"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: includes/
|
2240 |
-
|
2241 |
-
msgid "Loading failed"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: includes/
|
2245 |
-
|
2246 |
-
msgid "Select"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: includes/
|
2250 |
-
|
2251 |
-
msgid "Stylised UI"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: includes/
|
2255 |
-
msgid "
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: includes/
|
2259 |
-
msgid "
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: includes/
|
2263 |
-
msgid "
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: includes/
|
2267 |
-
msgid "
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: includes/
|
2271 |
-
msgid "
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: includes/
|
2275 |
-
msgid ""
|
2276 |
-
"Define an endpoint for the previous tabs to stop. This will start a new "
|
2277 |
-
"group of tabs."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: includes/
|
2281 |
-
|
2282 |
-
msgctxt "No terms"
|
2283 |
-
msgid "No %s"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: includes/
|
2287 |
-
msgid "
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: includes/
|
2291 |
-
msgid "
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: includes/
|
2295 |
-
msgid "
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: includes/
|
2299 |
-
msgid "
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: includes/
|
2303 |
-
msgid "
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: includes/
|
2307 |
-
msgid "
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: includes/
|
2311 |
-
msgid "
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: includes/
|
2315 |
-
msgid "
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: includes/
|
2319 |
-
msgid "
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: includes/
|
2323 |
-
msgid "
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: includes/
|
2327 |
-
msgid "
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#:
|
2331 |
-
msgid "
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#:
|
2335 |
-
msgid "
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#:
|
2339 |
-
msgid "
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#:
|
2343 |
-
msgid "
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#:
|
2347 |
-
|
2348 |
-
msgid "User unable to add new %s"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#:
|
2352 |
-
|
2353 |
-
msgid "%s already exists"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#:
|
2357 |
-
|
2358 |
-
msgid "
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#:
|
2362 |
-
|
2363 |
-
msgid "Add"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#:
|
2367 |
-
msgid "
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#:
|
2371 |
-
|
2372 |
-
msgid "Character Limit"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#:
|
2376 |
-
|
2377 |
-
msgid "Leave blank for no limit"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#:
|
2381 |
-
|
2382 |
-
#, php-format
|
2383 |
-
msgid "Value must not exceed %d characters"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#:
|
2387 |
-
msgid "
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#:
|
2391 |
-
msgid "
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#:
|
2395 |
-
msgid "
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#:
|
2399 |
-
msgid "
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#:
|
2403 |
-
msgid "
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#:
|
2407 |
-
msgid "
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#:
|
2411 |
-
msgid "
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#:
|
2415 |
-
msgid "
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#:
|
2419 |
-
msgid "
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#:
|
2423 |
-
msgid "
|
2424 |
-
|
|
|
|
|
2425 |
|
2426 |
-
#:
|
2427 |
-
msgid "
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#:
|
2431 |
-
msgid "
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#:
|
2435 |
-
msgid "
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#:
|
2439 |
-
msgid "
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#:
|
2443 |
-
msgid "
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#:
|
2447 |
-
msgid "
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#:
|
2451 |
-
msgid "
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#:
|
2455 |
-
msgid "
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#:
|
2459 |
-
msgid "
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#:
|
2463 |
-
msgid "
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#:
|
2467 |
-
msgid "
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#:
|
2471 |
-
|
2472 |
-
msgid "Text"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#:
|
2476 |
-
msgid "
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#:
|
2480 |
-
msgid "
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#:
|
2484 |
-
msgid "
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#:
|
2488 |
-
msgid "
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#:
|
2492 |
-
msgid "
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#:
|
2496 |
-
msgid "
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#:
|
2500 |
-
msgid "
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#:
|
2504 |
-
msgid "
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#:
|
2508 |
-
msgid "
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#:
|
2512 |
-
msgid "
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#:
|
2516 |
-
msgid "
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#:
|
2520 |
-
|
2521 |
-
msgid "Update"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#:
|
2525 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#:
|
2529 |
-
msgid "
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#:
|
2533 |
-
|
2534 |
-
msgid "<strong>ERROR</strong>: %s"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#:
|
2538 |
-
|
2539 |
-
msgid "Class \"%s\" does not exist."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#:
|
2543 |
-
|
2544 |
-
msgid "Location type \"%s\" is already registered."
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#:
|
2548 |
-
msgid "
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#:
|
2552 |
-
msgid "
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#:
|
2556 |
-
msgid "
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#:
|
2560 |
-
msgid "
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#:
|
2564 |
-
msgid "
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#:
|
2568 |
-
msgid "
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#:
|
2572 |
-
|
2573 |
-
msgid "All %s formats"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#:
|
2577 |
-
msgid "
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#:
|
2581 |
-
msgid "
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#:
|
2585 |
-
msgid "
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#:
|
2589 |
-
msgid "
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#:
|
2593 |
-
msgid "
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#:
|
2597 |
-
msgid "
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#:
|
2601 |
-
msgid "
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#:
|
2605 |
-
msgid "
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#:
|
2609 |
-
msgid "
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#:
|
2613 |
-
msgid "
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#:
|
2617 |
-
msgid "
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#:
|
2621 |
-
msgid "
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#:
|
2625 |
-
|
2626 |
-
msgid "Default Template"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#:
|
2630 |
-
msgid "
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#:
|
2634 |
-
msgid "
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#:
|
2638 |
-
msgid "
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#:
|
2642 |
-
msgid "
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#:
|
2646 |
-
msgid "
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#:
|
2650 |
-
msgid "
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#:
|
2654 |
-
msgid "
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#:
|
2658 |
-
msgid "
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#:
|
2662 |
-
msgid "
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#:
|
2666 |
-
msgid "
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#:
|
2670 |
-
msgid "
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: includes/
|
2674 |
-
msgid "
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: includes/
|
2678 |
-
msgid "
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: includes/
|
2682 |
-
msgid "
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: includes/
|
2686 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: includes/
|
2690 |
-
msgid "
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: includes/
|
2694 |
-
|
2695 |
-
msgid "Edit"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: includes/
|
2699 |
-
|
2700 |
-
msgid "Update"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: includes/
|
2704 |
-
msgid "
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: includes/
|
2708 |
-
msgid "
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: includes/
|
2712 |
-
msgid "
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#: includes/
|
2716 |
-
msgid "
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: includes/
|
2720 |
-
|
2721 |
-
msgid "%s value is required"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
|
2725 |
-
|
2726 |
-
msgid "Advanced Custom Fields PRO"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#:
|
2730 |
-
msgid "
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#:
|
2734 |
-
|
2735 |
-
msgid ""
|
2736 |
-
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
2737 |
-
"Custom Field Group</a>"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#:
|
2741 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#:
|
2745 |
-
|
2746 |
-
msgid "Updates"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#:
|
2750 |
-
msgid ""
|
2751 |
-
"<b>Error</b>. Could not authenticate update package. Please check again or "
|
2752 |
-
"deactivate and reactivate your ACF PRO license."
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#:
|
2756 |
-
msgid "
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#:
|
2760 |
-
msgid "
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#:
|
2764 |
-
msgid "
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#:
|
2768 |
-
|
2769 |
-
msgid ""
|
2770 |
-
"To unlock updates, please enter your license key below. If you don't have a "
|
2771 |
-
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
2772 |
-
"a>."
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#:
|
2776 |
-
msgid "
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#:
|
2780 |
-
msgid "
|
2781 |
msgstr ""
|
2782 |
|
2783 |
-
#:
|
2784 |
-
msgid "
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#:
|
2788 |
-
msgid "
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#:
|
2792 |
-
msgid "
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#:
|
2796 |
-
msgid "
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#:
|
2800 |
-
msgid "
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#:
|
2804 |
-
msgid "
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#:
|
2808 |
-
msgid "
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#:
|
2812 |
-
msgid "
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#:
|
2816 |
-
msgid "
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#:
|
2820 |
-
|
2821 |
-
msgid "Block type \"%s\" is already registered."
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#:
|
2825 |
-
msgid "
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#:
|
2829 |
-
msgid "
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#:
|
2833 |
-
msgid "
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#:
|
2837 |
-
|
2838 |
-
msgid "%s settings"
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#:
|
2842 |
-
|
2843 |
-
msgid "Clone"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#:
|
2847 |
-
msgid "
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#:
|
2851 |
-
msgid "
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#:
|
2855 |
-
msgid "
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#:
|
2859 |
-
msgid "
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#:
|
2863 |
-
msgid "
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#:
|
2867 |
-
|
2868 |
-
msgid "Labels will be displayed as %s"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#:
|
2872 |
-
msgid "
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#:
|
2876 |
-
|
2877 |
-
msgid "Values will be saved as %s"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#:
|
2881 |
-
msgid "
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#:
|
2885 |
-
msgid "
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#:
|
2889 |
-
msgid "
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#:
|
2893 |
-
|
2894 |
-
msgid "All fields from %s field group"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#:
|
2898 |
-
|
2899 |
-
#: pro/fields/class-acf-field-repeater.php:469
|
2900 |
-
msgid "Add Row"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#:
|
2904 |
-
|
2905 |
-
|
2906 |
-
msgid "layout"
|
2907 |
-
msgid_plural "layouts"
|
2908 |
-
msgstr[0] ""
|
2909 |
-
msgstr[1] ""
|
2910 |
|
2911 |
-
#:
|
2912 |
-
msgid "
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#:
|
2916 |
-
|
2917 |
-
#: pro/fields/class-acf-field-flexible-content.php:1007
|
2918 |
-
msgid "This field requires at least {min} {label} {identifier}"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#:
|
2922 |
-
msgid "
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#:
|
2926 |
-
msgid "
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#:
|
2930 |
-
msgid "
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#:
|
2934 |
-
msgid "
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#:
|
2938 |
-
|
2939 |
-
msgid "Click the \"%s\" button below to start creating your layout"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#:
|
2943 |
-
msgid "
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#:
|
2947 |
-
msgid "
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#:
|
2951 |
-
msgid "
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#:
|
2955 |
-
|
2956 |
-
msgid "Click to toggle"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#:
|
2960 |
-
msgid "
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#:
|
2964 |
-
msgid "
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#:
|
2968 |
-
msgid "
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#:
|
2972 |
-
msgid "
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#:
|
2976 |
-
msgid "
|
2977 |
msgstr ""
|
2978 |
|
2979 |
-
#:
|
2980 |
-
msgid "
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#:
|
2984 |
-
msgid "
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#:
|
2988 |
-
|
2989 |
-
msgid "Button Label"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#:
|
2993 |
-
msgid "
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#:
|
2997 |
-
msgid "
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#:
|
3001 |
-
msgid "
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#:
|
3005 |
-
msgid "
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#:
|
3009 |
-
msgid "
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#:
|
3013 |
-
msgid "
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#:
|
3017 |
-
msgid "
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#:
|
3021 |
-
msgid "
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#:
|
3025 |
-
msgid "
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#:
|
3029 |
-
msgid "
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#:
|
3033 |
-
msgid "
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#:
|
3037 |
-
msgid "
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#:
|
3041 |
-
msgid "
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#:
|
3045 |
-
msgid "
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#:
|
3049 |
-
msgid "
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#:
|
3053 |
-
msgid "
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#:
|
3057 |
-
msgid "
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#:
|
3061 |
-
msgid "
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#:
|
3065 |
-
msgid "
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#:
|
3069 |
-
msgid "
|
3070 |
msgstr ""
|
3071 |
|
3072 |
-
#: pro/
|
3073 |
-
|
3074 |
-
msgid "Minimum rows reached ({min} rows)"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: pro/
|
3078 |
-
msgid "
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: pro/
|
3082 |
-
msgid "
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: pro/
|
3086 |
-
msgid "
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: pro/
|
3090 |
-
msgid "
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: pro/
|
3094 |
-
msgid "
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: pro/
|
3098 |
-
msgid "
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: pro/
|
3102 |
-
msgid "
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: pro/
|
3106 |
-
msgid "
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: pro/
|
3110 |
-
msgid "
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: pro/
|
3114 |
-
msgid "
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: pro/
|
3118 |
-
msgid "
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: pro/updates.php:
|
3122 |
-
|
3123 |
-
msgid ""
|
3124 |
-
"To enable updates, please enter your license key on the <a href=\"%s"
|
3125 |
-
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
3126 |
-
"\">details & pricing</a>."
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
|
3130 |
-
|
3131 |
-
msgid "https://www.advancedcustomfields.com"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
|
3135 |
-
msgid "
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
|
3139 |
-
msgid "
|
3140 |
msgstr ""
|
1 |
+
# Copyright (C) 2022 Advanced Custom Fields
|
2 |
+
# This file is distributed under the same license as the Advanced Custom Fields package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Language-Team: Delicious Brains <support@advancedcustomfields.com>\n"
|
10 |
+
"Report-Msgid-Bugs-To: https://support.advancedcustomfields.com\n"
|
11 |
+
"X-Poedit-Basepath: ..\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
|
|
|
|
|
|
|
|
13 |
"X-Poedit-SearchPath-0: .\n"
|
14 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
|
18 |
+
#: acf.php:3, pro/acf-pro.php:27
|
19 |
+
msgid "Advanced Custom Fields PRO"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: acf.php:4, acf.php:8
|
23 |
+
msgid "https://www.advancedcustomfields.com"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: acf.php:5
|
27 |
+
msgid "Customize WordPress with powerful, professional and intuitive fields."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: acf.php:7
|
31 |
+
msgid "Delicious Brains"
|
32 |
+
msgstr ""
|
33 |
|
34 |
+
#: acf.php:71
|
35 |
msgid "Advanced Custom Fields"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: acf.php:360, includes/admin/admin.php:50, includes/admin/admin.php:50
|
39 |
msgid "Field Groups"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: acf.php:361
|
43 |
msgid "Field Group"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: acf.php:362, acf.php:396, includes/admin/admin.php:51, includes/admin/admin.php:51, pro/fields/class-acf-field-flexible-content.php:554
|
|
|
47 |
msgid "Add New"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: acf.php:363
|
51 |
msgid "Add New Field Group"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: acf.php:364
|
55 |
msgid "Edit Field Group"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: acf.php:365
|
59 |
msgid "New Field Group"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: acf.php:366
|
63 |
msgid "View Field Group"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: acf.php:367
|
67 |
msgid "Search Field Groups"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: acf.php:368
|
71 |
msgid "No Field Groups found"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: acf.php:369
|
75 |
msgid "No Field Groups found in Trash"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: acf.php:394, includes/admin/admin-field-group.php:233, includes/admin/admin-field-groups.php:266, pro/fields/class-acf-field-clone.php:814
|
|
|
|
|
79 |
msgid "Fields"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: acf.php:395
|
83 |
msgid "Field"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: acf.php:397
|
87 |
msgid "Add New Field"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: acf.php:398
|
91 |
msgid "Edit Field"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: acf.php:399, includes/admin/views/field-group-fields.php:56
|
95 |
msgid "New Field"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: acf.php:400
|
99 |
msgid "View Field"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: acf.php:401
|
103 |
msgid "Search Fields"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: acf.php:402
|
107 |
msgid "No Fields found"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: acf.php:403
|
111 |
msgid "No Fields found in Trash"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: acf.php:441, includes/admin/admin-field-group.php:385, includes/admin/admin-field-groups.php:230
|
115 |
msgctxt "post status"
|
116 |
msgid "Disabled"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: acf.php:446
|
|
|
120 |
msgid "Disabled <span class=\"count\">(%s)</span>"
|
121 |
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
122 |
msgstr[0] ""
|
123 |
msgstr[1] ""
|
124 |
|
125 |
+
#: acf.php:496
|
126 |
+
msgid "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields."
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: acf.php:498
|
130 |
+
msgid "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/acf-field-functions.php:841, includes/admin/admin-field-group.php:171
|
134 |
msgid "(no label)"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/acf-field-group-functions.php:846, includes/admin/admin-field-group.php:173
|
|
|
138 |
msgid "copy"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/acf-value-functions.php:353
|
142 |
+
msgid "<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF field values before ACF has been initialized. This is not supported and can result in malformed or missing data. <a href=\"%2$s\" target=\"_blank\">Learn how to fix this</a>."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
#: includes/acf-wp-functions.php:41
|
146 |
msgid "Posts"
|
147 |
msgstr ""
|
154 |
msgid "Attachments"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/acf-wp-functions.php:63, includes/admin/views/field-group-options.php:144
|
|
|
158 |
msgid "Comments"
|
159 |
msgstr ""
|
160 |
|
162 |
msgid "Widgets"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/acf-wp-functions.php:71, includes/locations/class-acf-location-nav-menu.php:89
|
|
|
166 |
msgid "Menus"
|
167 |
msgstr ""
|
168 |
|
174 |
msgid "Users"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/acf-wp-functions.php:83, pro/options-page.php:47
|
178 |
msgid "Options"
|
179 |
msgstr ""
|
180 |
|
182 |
msgid "Blocks"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/assets.php:348
|
186 |
+
msgid "Are you sure?"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: includes/assets.php:349, includes/fields/class-acf-field-true_false.php:80, includes/fields/class-acf-field-true_false.php:176, pro/admin/views/html-settings-updates.php:104
|
190 |
+
msgid "Yes"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/assets.php:350, includes/fields/class-acf-field-true_false.php:83, includes/fields/class-acf-field-true_false.php:193, pro/admin/views/html-settings-updates.php:116
|
194 |
+
msgid "No"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/assets.php:351, includes/fields/class-acf-field-file.php:159, includes/fields/class-acf-field-image.php:139, includes/fields/class-acf-field-link.php:142, pro/fields/class-acf-field-gallery.php:336, pro/fields/class-acf-field-gallery.php:491
|
198 |
+
msgid "Remove"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/assets.php:352
|
202 |
+
msgid "Cancel"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/assets.php:362
|
206 |
+
msgid "The changes you made will be lost if you navigate away from this page"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: includes/assets.php:365
|
210 |
+
msgid "Validation successful"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/assets.php:366, includes/validation.php:286, includes/validation.php:296
|
214 |
+
msgid "Validation failed"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/assets.php:367
|
218 |
+
msgid "1 field requires attention"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/assets.php:368
|
222 |
+
msgid "%d fields require attention"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: includes/assets.php:371, includes/forms/form-comment.php:160, pro/admin/admin-options-page.php:309
|
226 |
+
msgid "Edit field group"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/fields.php:313
|
230 |
+
msgid "Field type does not exist"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: includes/fields.php:313
|
234 |
+
msgid "Unknown"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: includes/fields.php:354
|
238 |
+
msgid "Basic"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: includes/fields.php:355, includes/forms/form-front.php:49
|
242 |
+
msgid "Content"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: includes/fields.php:356
|
246 |
+
msgid "Choice"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: includes/fields.php:357
|
250 |
+
msgid "Relational"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: includes/fields.php:358
|
254 |
+
msgid "jQuery"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: includes/fields.php:359, includes/fields/class-acf-field-button-group.php:181, includes/fields/class-acf-field-checkbox.php:377, includes/fields/class-acf-field-group.php:462, includes/fields/class-acf-field-radio.php:256, pro/fields/class-acf-field-clone.php:850, pro/fields/class-acf-field-flexible-content.php:549, pro/fields/class-acf-field-flexible-content.php:604, pro/fields/class-acf-field-repeater.php:451
|
258 |
+
msgid "Layout"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/locations.php:25
|
262 |
+
msgid "Class \"%s\" does not exist."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/locations.php:36
|
266 |
+
msgid "Location type \"%s\" is already registered."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: includes/locations.php:99, includes/locations/class-acf-location-post.php:22
|
270 |
+
msgid "Post"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: includes/locations.php:100, includes/locations/class-acf-location-page.php:22
|
274 |
+
msgid "Page"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: includes/locations.php:101, includes/fields/class-acf-field-user.php:20
|
278 |
+
msgid "User"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: includes/locations.php:102
|
282 |
+
msgid "Forms"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: includes/media.php:48, includes/fields/class-acf-field-select.php:255
|
286 |
+
msgctxt "verb"
|
287 |
+
msgid "Select"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/media.php:49
|
291 |
+
msgctxt "verb"
|
292 |
+
msgid "Edit"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/media.php:50
|
296 |
+
msgctxt "verb"
|
297 |
+
msgid "Update"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: includes/media.php:51
|
301 |
+
msgid "Uploaded to this post"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: includes/media.php:52
|
305 |
+
msgid "Expand Details"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: includes/media.php:53
|
309 |
+
msgid "Collapse Details"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: includes/media.php:54
|
313 |
+
msgid "Restricted"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: includes/media.php:55, includes/fields/class-acf-field-image.php:67
|
317 |
+
msgid "All images"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/validation.php:364
|
321 |
+
msgid "%s value is required"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: pro/blocks.php:37
|
325 |
+
msgid "Block type name is required."
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: pro/blocks.php:44
|
329 |
+
msgid "Block type \"%s\" is already registered."
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: pro/blocks.php:495
|
333 |
+
msgid "Switch to Edit"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: pro/blocks.php:496
|
337 |
+
msgid "Switch to Preview"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: pro/blocks.php:497
|
341 |
+
msgid "Change content alignment"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#. translators: %s: Block type title
|
345 |
+
#: pro/blocks.php:500
|
346 |
+
msgid "%s settings"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: pro/options-page.php:77, includes/forms/form-front.php:106, pro/fields/class-acf-field-gallery.php:523
|
350 |
+
msgid "Update"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: pro/options-page.php:78
|
354 |
+
msgid "Options Updated"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: pro/updates.php:99
|
358 |
+
msgid "To enable updates, please enter your license key on the <a href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see <a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: pro/updates.php:159
|
362 |
+
msgid "<b>ACF Activation Error</b>. Your defined license key has changed, but an error occurred when deactivating your old licence"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: pro/updates.php:154
|
366 |
+
msgid "<b>ACF Activation Error</b>. Your defined license key has changed, but an error occurred when connecting to activation server"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: pro/updates.php:192
|
370 |
+
msgid "<b>ACF Activation Error</b>"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: pro/updates.php:187
|
374 |
+
msgid "<b>ACF Activation Error</b>. An error occurred when connecting to activation server"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: pro/updates.php:279, pro/admin/views/html-settings-updates.php:117
|
378 |
+
msgid "Check Again"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: pro/updates.php:561
|
382 |
+
msgid "<b>ACF Activation Error</b>. Could not connect to activation server"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: includes/admin/admin-field-group.php:84, includes/admin/admin-field-group.php:85, includes/admin/admin-field-group.php:87
|
386 |
msgid "Field group updated."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: includes/admin/admin-field-group.php:86
|
390 |
msgid "Field group deleted."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: includes/admin/admin-field-group.php:89
|
394 |
msgid "Field group published."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: includes/admin/admin-field-group.php:90
|
398 |
msgid "Field group saved."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/admin/admin-field-group.php:91
|
402 |
msgid "Field group submitted."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/admin/admin-field-group.php:92
|
406 |
msgid "Field group scheduled for."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: includes/admin/admin-field-group.php:93
|
410 |
msgid "Field group draft updated."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: includes/admin/admin-field-group.php:164
|
414 |
msgid "The string \"field_\" may not be used at the start of a field name"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: includes/admin/admin-field-group.php:165
|
418 |
msgid "This field cannot be moved until its changes have been saved"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: includes/admin/admin-field-group.php:166
|
422 |
msgid "Field group title is required"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/admin/admin-field-group.php:167
|
426 |
msgid "Move to trash. Are you sure?"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/admin/admin-field-group.php:168
|
430 |
msgid "No toggle fields available"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/admin/admin-field-group.php:169
|
434 |
msgid "Move Custom Field"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/admin/admin-field-group.php:170
|
438 |
msgid "Checked"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/admin/admin-field-group.php:172
|
442 |
msgid "(this field)"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/admin/admin-field-group.php:174, includes/api/api-helpers.php:3409, includes/admin/views/field-group-field-conditional-logic.php:60, includes/admin/views/field-group-field-conditional-logic.php:170, includes/admin/views/field-group-locations.php:36, includes/admin/views/html-location-group.php:3
|
|
|
|
|
|
|
|
|
|
|
446 |
msgid "or"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/admin/admin-field-group.php:175, includes/admin/views/html-location-group.php:3
|
450 |
+
msgid "Show this field group if"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/admin/admin-field-group.php:176
|
454 |
msgid "Null"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/admin/admin-field-group.php:179
|
458 |
msgid "Has any value"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/admin/admin-field-group.php:180
|
462 |
msgid "Has no value"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/admin/admin-field-group.php:181
|
466 |
msgid "Value is equal to"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/admin/admin-field-group.php:182
|
470 |
msgid "Value is not equal to"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/admin/admin-field-group.php:183
|
474 |
msgid "Value matches pattern"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/admin/admin-field-group.php:184
|
478 |
msgid "Value contains"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: includes/admin/admin-field-group.php:185
|
482 |
msgid "Value is greater than"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: includes/admin/admin-field-group.php:186
|
486 |
msgid "Value is less than"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: includes/admin/admin-field-group.php:187
|
490 |
msgid "Selection is greater than"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: includes/admin/admin-field-group.php:188
|
494 |
msgid "Selection is less than"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: includes/admin/admin-field-group.php:191
|
498 |
+
msgid "Repeater (Pro only)"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: includes/admin/admin-field-group.php:192
|
502 |
+
msgid "Flexible Content (Pro only)"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: includes/admin/admin-field-group.php:193
|
506 |
+
msgid "Clone (Pro only)"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: includes/admin/admin-field-group.php:194
|
510 |
+
msgid "Gallery (Pro only)"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: includes/admin/admin-field-group.php:234, includes/admin/admin-field-groups.php:265
|
514 |
msgid "Location"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/admin/admin-field-group.php:235, includes/admin/tools/class-acf-admin-tool-export.php:288
|
|
|
518 |
msgid "Settings"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/admin/admin-field-group.php:361
|
522 |
msgid "Field Keys"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/admin/admin-field-group.php:385
|
526 |
+
msgctxt "post status"
|
527 |
msgid "Active"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: includes/admin/admin-field-group.php:752
|
|
|
|
|
|
|
|
|
531 |
msgid "Move Complete."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: includes/admin/admin-field-group.php:754
|
535 |
+
msgid "The %1$s field can now be found in the %2$s field group"
|
|
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/admin/admin-field-group.php:758
|
539 |
msgid "Close Window"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/admin/admin-field-group.php:797
|
543 |
msgid "Please select the destination for this field"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/admin/admin-field-group.php:804
|
547 |
msgid "Move Field"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/admin/admin-field-groups.php:116
|
|
|
551 |
msgid "Active <span class=\"count\">(%s)</span>"
|
552 |
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
553 |
msgstr[0] ""
|
554 |
msgstr[1] ""
|
555 |
|
556 |
+
#: includes/admin/admin-field-groups.php:196
|
557 |
msgid "Review local JSON changes"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: includes/admin/admin-field-groups.php:197
|
561 |
msgid "Loading diff"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: includes/admin/admin-field-groups.php:198, includes/admin/admin-field-groups.php:533
|
|
|
565 |
msgid "Sync changes"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/admin/admin-field-groups.php:263, pro/fields/class-acf-field-gallery.php:388, includes/admin/views/field-group-options.php:127, includes/admin/views/html-admin-page-upgrade-network.php:38, includes/admin/views/html-admin-page-upgrade-network.php:49
|
|
|
|
|
|
|
|
|
569 |
msgid "Description"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: includes/admin/admin-field-groups.php:264, includes/admin/views/field-group-fields.php:7
|
|
|
573 |
msgid "Key"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/admin/admin-field-groups.php:269
|
577 |
msgid "Local JSON"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/admin/admin-field-groups.php:419
|
581 |
msgid "Various"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/admin/admin-field-groups.php:449
|
585 |
+
msgid "Located in: %s"
|
|
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: includes/admin/admin-field-groups.php:445
|
|
|
589 |
msgid "Located in plugin: %s"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/admin/admin-field-groups.php:441
|
593 |
+
msgid "Located in theme: %s"
|
|
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: includes/admin/admin-field-groups.php:484
|
597 |
+
msgid "Awaiting save"
|
|
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/admin/admin-field-groups.php:481
|
601 |
+
msgid "Saved"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/admin/admin-field-groups.php:469, includes/admin/admin-field-groups.php:687
|
605 |
+
msgid "Sync available"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/admin/admin-field-groups.php:477
|
609 |
msgid "Import"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/admin/admin-field-groups.php:472
|
613 |
+
msgid "Sync"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/admin/admin-field-groups.php:473
|
617 |
+
msgid "Review changes"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/admin/admin-field-groups.php:505
|
621 |
msgid "Duplicate this item"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: includes/admin/admin-field-groups.php:505, includes/admin/admin-field-groups.php:525, pro/fields/class-acf-field-flexible-content.php:553, includes/admin/views/field-group-field.php:57
|
|
|
|
|
|
|
625 |
msgid "Duplicate"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/admin/admin-field-groups.php:555
|
|
|
629 |
msgid "Field group duplicated."
|
630 |
msgid_plural "%s field groups duplicated."
|
631 |
msgstr[0] ""
|
632 |
msgstr[1] ""
|
633 |
|
634 |
+
#: includes/admin/admin-field-groups.php:612
|
|
|
635 |
msgid "Field group synchronised."
|
636 |
msgid_plural "%s field groups synchronised."
|
637 |
msgstr[0] ""
|
638 |
msgstr[1] ""
|
639 |
|
640 |
+
#: includes/admin/admin-field-groups.php:800
|
|
|
641 |
msgid "Select %s"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: includes/admin/admin-tools.php:119, includes/admin/admin-tools.php:119, includes/admin/views/html-admin-tools.php:21
|
|
|
645 |
msgid "Tools"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: includes/admin/admin-upgrade.php:51, includes/admin/admin-upgrade.php:51, includes/admin/admin-upgrade.php:113, includes/admin/admin-upgrade.php:114, includes/admin/admin-upgrade.php:177, includes/admin/views/html-admin-page-upgrade-network.php:24, includes/admin/views/html-admin-page-upgrade.php:26
|
|
|
|
|
|
|
649 |
msgid "Upgrade Database"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: includes/admin/admin-upgrade.php:201
|
653 |
msgid "Review sites & upgrade"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: includes/admin/admin.php:49, includes/admin/admin.php:49, includes/admin/views/field-group-options.php:142
|
|
|
657 |
msgid "Custom Fields"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: includes/admin/admin.php:129, includes/admin/admin.php:131
|
661 |
msgid "Overview"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: includes/admin/admin.php:132
|
665 |
+
msgid "The Advanced Custom Fields plugin provides a visual form builder to customize WordPress edit screens with extra fields, and an intuitive API to display custom field values in any theme template file."
|
|
|
|
|
|
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: includes/admin/admin.php:134
|
669 |
+
msgid "Before creating your first Field Group, we recommend first reading our <a href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize yourself with the plugin's philosophy and best practises."
|
|
|
|
|
|
|
|
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: includes/admin/admin.php:137
|
673 |
+
msgid "Please use the Help & Support tab to get in touch should you find yourself requiring assistance."
|
|
|
|
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/admin/admin.php:146, includes/admin/admin.php:148
|
677 |
msgid "Help & Support"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/admin/admin.php:149
|
681 |
+
msgid "We are fanatical about support, and want you to get the best out of your website with ACF. If you run into any difficulties, there are several places you can find help:"
|
|
|
|
|
|
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/admin/admin.php:152
|
685 |
+
msgid "<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive documentation contains references and guides for most situations you may encounter."
|
|
|
|
|
|
|
|
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/admin/admin.php:156
|
689 |
+
msgid "<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and friendly community on our Community Forums who may be able to help you figure out the ‘how-tos’ of the ACF world."
|
|
|
|
|
|
|
|
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: includes/admin/admin.php:160
|
693 |
+
msgid "<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on our Help Desk will assist with your more in depth, technical challenges."
|
|
|
|
|
|
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/admin/admin.php:169
|
697 |
msgid "Information"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/admin/admin.php:170
|
|
|
701 |
msgid "Version %s"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/admin/admin.php:171
|
705 |
msgid "View details"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/admin/admin.php:172
|
709 |
msgid "Visit website"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/admin/admin.php:201, includes/admin/views/field-group-field-conditional-logic.php:157, includes/admin/views/html-location-rule.php:92
|
|
|
|
|
713 |
msgid "and"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:36
|
717 |
+
msgid "Invalid field group parameter(s)."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:43
|
721 |
+
msgid "Invalid field group ID."
|
|
|
|
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:53
|
725 |
+
msgid "Sorry, this field group is unavailable for diff comparison."
|
|
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:59
|
729 |
+
msgid "Last updated: %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:64
|
733 |
+
msgid "Original field group"
|
|
|
|
|
|
|
|
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: includes/ajax/class-acf-ajax-local-json-diff.php:68
|
737 |
+
msgid "JSON field group (newer)"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: includes/ajax/class-acf-ajax-upgrade.php:34, includes/admin/views/html-admin-page-upgrade.php:94
|
741 |
+
msgid "No updates available."
|
|
|
|
|
|
|
|
|
|
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: includes/ajax/class-acf-ajax.php:157
|
745 |
+
msgid "Invalid nonce."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/api/api-helpers.php:821
|
749 |
+
msgid "Thumbnail"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/api/api-helpers.php:822
|
753 |
+
msgid "Medium"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: includes/api/api-helpers.php:823
|
757 |
+
msgid "Large"
|
|
|
|
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/api/api-helpers.php:864
|
761 |
+
msgid "Full Size"
|
|
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/api/api-helpers.php:1569, includes/api/api-term.php:147, pro/fields/class-acf-field-clone.php:1005
|
765 |
+
msgid "(no title)"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: includes/api/api-helpers.php:3343
|
769 |
+
msgid "Image width must not exceed %dpx."
|
|
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: includes/api/api-helpers.php:3338
|
773 |
+
msgid "Image width must be at least %dpx."
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: includes/api/api-helpers.php:3362
|
777 |
+
msgid "Image height must not exceed %dpx."
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: includes/api/api-helpers.php:3357
|
781 |
+
msgid "Image height must be at least %dpx."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: includes/api/api-helpers.php:3382
|
785 |
+
msgid "File size must not exceed %s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/api/api-helpers.php:3377
|
789 |
+
msgid "File size must be at least %s."
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: includes/api/api-helpers.php:3413
|
793 |
+
msgid "File type must be %s."
|
|
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/fields/class-acf-field-accordion.php:25
|
797 |
+
msgid "Accordion"
|
|
|
|
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: includes/fields/class-acf-field-accordion.php:102
|
801 |
+
msgid "Open"
|
|
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/fields/class-acf-field-accordion.php:103
|
805 |
+
msgid "Display this accordion as open on page load."
|
|
|
|
|
|
|
|
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: includes/fields/class-acf-field-accordion.php:114
|
809 |
+
msgid "Multi-expand"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: includes/fields/class-acf-field-accordion.php:115
|
813 |
+
msgid "Allow this accordion to open without closing others."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: includes/fields/class-acf-field-accordion.php:126, includes/fields/class-acf-field-tab.php:117
|
817 |
+
msgid "Endpoint"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: includes/fields/class-acf-field-accordion.php:127
|
821 |
+
msgid "Define an endpoint for the previous accordion to stop. This accordion will not be visible."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: includes/fields/class-acf-field-button-group.php:24
|
825 |
+
msgid "Button Group"
|
|
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: includes/fields/class-acf-field-button-group.php:147, includes/fields/class-acf-field-checkbox.php:324, includes/fields/class-acf-field-radio.php:191, includes/fields/class-acf-field-select.php:364
|
829 |
+
msgid "Choices"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: includes/fields/class-acf-field-button-group.php:148, includes/fields/class-acf-field-checkbox.php:325, includes/fields/class-acf-field-radio.php:192, includes/fields/class-acf-field-select.php:365
|
833 |
+
msgid "Enter each choice on a new line."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: includes/fields/class-acf-field-button-group.php:148, includes/fields/class-acf-field-checkbox.php:325, includes/fields/class-acf-field-radio.php:192, includes/fields/class-acf-field-select.php:365
|
837 |
+
msgid "For more control, you may specify both a value and label like this:"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: includes/fields/class-acf-field-button-group.php:148, includes/fields/class-acf-field-checkbox.php:325, includes/fields/class-acf-field-radio.php:192, includes/fields/class-acf-field-select.php:365
|
841 |
+
msgid "red : Red"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: includes/fields/class-acf-field-button-group.php:158, includes/fields/class-acf-field-page_link.php:482, includes/fields/class-acf-field-post_object.php:394, includes/fields/class-acf-field-radio.php:202, includes/fields/class-acf-field-select.php:386, includes/fields/class-acf-field-taxonomy.php:748, includes/fields/class-acf-field-user.php:68
|
845 |
+
msgid "Allow Null?"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/fields/class-acf-field-button-group.php:170, includes/fields/class-acf-field-checkbox.php:366, includes/fields/class-acf-field-color_picker.php:155, includes/fields/class-acf-field-email.php:117, includes/fields/class-acf-field-number.php:125, includes/fields/class-acf-field-radio.php:245, includes/fields/class-acf-field-range.php:163, includes/fields/class-acf-field-select.php:375, includes/fields/class-acf-field-text.php:97, includes/fields/class-acf-field-textarea.php:103, includes/fields/class-acf-field-true_false.php:148, includes/fields/class-acf-field-url.php:101, includes/fields/class-acf-field-wysiwyg.php:334
|
849 |
+
msgid "Default Value"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: includes/fields/class-acf-field-button-group.php:171, includes/fields/class-acf-field-email.php:118, includes/fields/class-acf-field-number.php:126, includes/fields/class-acf-field-radio.php:246, includes/fields/class-acf-field-range.php:164, includes/fields/class-acf-field-text.php:98, includes/fields/class-acf-field-textarea.php:104, includes/fields/class-acf-field-url.php:102, includes/fields/class-acf-field-wysiwyg.php:335
|
853 |
+
msgid "Appears when creating a new post"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: includes/fields/class-acf-field-button-group.php:187, includes/fields/class-acf-field-checkbox.php:384, includes/fields/class-acf-field-radio.php:263
|
857 |
+
msgid "Horizontal"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: includes/fields/class-acf-field-button-group.php:188, includes/fields/class-acf-field-checkbox.php:383, includes/fields/class-acf-field-radio.php:262
|
861 |
+
msgid "Vertical"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: includes/fields/class-acf-field-button-group.php:197, includes/fields/class-acf-field-checkbox.php:405, includes/fields/class-acf-field-file.php:227, includes/fields/class-acf-field-link.php:170, includes/fields/class-acf-field-radio.php:272, includes/fields/class-acf-field-taxonomy.php:801
|
865 |
+
msgid "Return Value"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: includes/fields/class-acf-field-button-group.php:198, includes/fields/class-acf-field-checkbox.php:406, includes/fields/class-acf-field-file.php:228, includes/fields/class-acf-field-link.php:171, includes/fields/class-acf-field-radio.php:273
|
869 |
+
msgid "Specify the returned value on front end"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: includes/fields/class-acf-field-button-group.php:203, includes/fields/class-acf-field-checkbox.php:411, includes/fields/class-acf-field-radio.php:278, includes/fields/class-acf-field-select.php:444
|
873 |
+
msgid "Value"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/fields/class-acf-field-button-group.php:204, includes/fields/class-acf-field-checkbox.php:412, includes/fields/class-acf-field-radio.php:279, includes/fields/class-acf-field-select.php:445, pro/fields/class-acf-field-flexible-content.php:581, includes/admin/views/field-group-fields.php:5
|
877 |
+
msgid "Label"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: includes/fields/class-acf-field-button-group.php:205, includes/fields/class-acf-field-checkbox.php:413, includes/fields/class-acf-field-radio.php:280, includes/fields/class-acf-field-select.php:446
|
881 |
+
msgid "Both (Array)"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: includes/fields/class-acf-field-checkbox.php:25, includes/fields/class-acf-field-taxonomy.php:733
|
885 |
+
msgid "Checkbox"
|
|
|
|
|
|
|
|
|
|
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/fields/class-acf-field-checkbox.php:144
|
889 |
+
msgid "Toggle All"
|
|
|
|
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/fields/class-acf-field-checkbox.php:207
|
893 |
+
msgid "Add new choice"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/fields/class-acf-field-checkbox.php:335
|
897 |
+
msgid "Allow Custom"
|
|
|
|
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: includes/fields/class-acf-field-checkbox.php:340
|
901 |
+
msgid "Allow 'custom' values to be added"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/fields/class-acf-field-checkbox.php:348
|
905 |
+
msgid "Save Custom"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
909 |
+
msgid "Save 'custom' values to the field's choices"
|
|
|
|
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: includes/fields/class-acf-field-checkbox.php:367, includes/fields/class-acf-field-select.php:376
|
913 |
+
msgid "Enter each default value on a new line"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: includes/fields/class-acf-field-checkbox.php:393
|
917 |
+
msgid "Toggle"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: includes/fields/class-acf-field-checkbox.php:394
|
921 |
+
msgid "Prepend an extra checkbox to toggle all choices"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: includes/fields/class-acf-field-color_picker.php:25
|
925 |
+
msgid "Color Picker"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/fields/class-acf-field-color_picker.php:69
|
929 |
+
msgid "Clear"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: includes/fields/class-acf-field-color_picker.php:70
|
933 |
+
msgid "Clear color"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/fields/class-acf-field-color_picker.php:71
|
937 |
+
msgid "Default"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/fields/class-acf-field-color_picker.php:72
|
941 |
+
msgid "Select default color"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: includes/fields/class-acf-field-color_picker.php:73
|
945 |
+
msgid "Select Color"
|
|
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: includes/fields/class-acf-field-color_picker.php:74
|
949 |
+
msgid "Color value"
|
|
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/fields/class-acf-field-color_picker.php:95, includes/fields/class-acf-field-color_picker.php:185
|
953 |
+
msgid "Hex String"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/fields/class-acf-field-color_picker.php:96
|
957 |
+
msgid "RGBA String"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/fields/class-acf-field-color_picker.php:167
|
961 |
+
msgid "Enable Transparency"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: includes/fields/class-acf-field-color_picker.php:179, includes/fields/class-acf-field-date_picker.php:216, includes/fields/class-acf-field-date_time_picker.php:201, includes/fields/class-acf-field-image.php:204, includes/fields/class-acf-field-post_object.php:418, includes/fields/class-acf-field-relationship.php:662, includes/fields/class-acf-field-select.php:439, includes/fields/class-acf-field-time_picker.php:131, includes/fields/class-acf-field-user.php:90, pro/fields/class-acf-field-gallery.php:573
|
965 |
+
msgid "Return Format"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: includes/fields/class-acf-field-color_picker.php:186
|
969 |
+
msgid "RGBA Array"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/fields/class-acf-field-date_picker.php:25
|
973 |
+
msgid "Date Picker"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: includes/fields/class-acf-field-date_picker.php:60
|
977 |
+
msgctxt "Date Picker JS closeText"
|
978 |
+
msgid "Done"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/fields/class-acf-field-date_picker.php:61
|
982 |
+
msgctxt "Date Picker JS currentText"
|
983 |
+
msgid "Today"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: includes/fields/class-acf-field-date_picker.php:62
|
987 |
+
msgctxt "Date Picker JS nextText"
|
988 |
+
msgid "Next"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: includes/fields/class-acf-field-date_picker.php:63
|
992 |
+
msgctxt "Date Picker JS prevText"
|
993 |
+
msgid "Prev"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/fields/class-acf-field-date_picker.php:64
|
997 |
+
msgctxt "Date Picker JS weekHeader"
|
998 |
+
msgid "Wk"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: includes/fields/class-acf-field-date_picker.php:181, includes/fields/class-acf-field-date_time_picker.php:182, includes/fields/class-acf-field-time_picker.php:114
|
1002 |
+
msgid "Display Format"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: includes/fields/class-acf-field-date_picker.php:182, includes/fields/class-acf-field-date_time_picker.php:183, includes/fields/class-acf-field-time_picker.php:115
|
1006 |
+
msgid "The format displayed when editing a post"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: includes/fields/class-acf-field-date_picker.php:190, includes/fields/class-acf-field-date_picker.php:226, includes/fields/class-acf-field-date_time_picker.php:192, includes/fields/class-acf-field-date_time_picker.php:211, includes/fields/class-acf-field-time_picker.php:122, includes/fields/class-acf-field-time_picker.php:139
|
1010 |
+
msgid "Custom:"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: includes/fields/class-acf-field-date_picker.php:217, includes/fields/class-acf-field-date_time_picker.php:202, includes/fields/class-acf-field-time_picker.php:132
|
1014 |
+
msgid "The format returned via template functions"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: includes/fields/class-acf-field-date_picker.php:202
|
1018 |
+
msgid "Save Format"
|
|
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: includes/fields/class-acf-field-date_picker.php:203
|
1022 |
+
msgid "The format used when saving a value"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/fields/class-acf-field-date_picker.php:237, includes/fields/class-acf-field-date_time_picker.php:220
|
1026 |
+
msgid "Week Starts On"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/fields/class-acf-field-date_time_picker.php:25
|
1030 |
+
msgid "Date Time Picker"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/fields/class-acf-field-date_time_picker.php:68
|
1034 |
+
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1035 |
+
msgid "Choose Time"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/fields/class-acf-field-date_time_picker.php:69
|
1039 |
+
msgctxt "Date Time Picker JS timeText"
|
1040 |
+
msgid "Time"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/fields/class-acf-field-date_time_picker.php:70
|
1044 |
+
msgctxt "Date Time Picker JS hourText"
|
1045 |
+
msgid "Hour"
|
|
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: includes/fields/class-acf-field-date_time_picker.php:71
|
1049 |
+
msgctxt "Date Time Picker JS minuteText"
|
1050 |
+
msgid "Minute"
|
|
|
|
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/fields/class-acf-field-date_time_picker.php:72
|
1054 |
+
msgctxt "Date Time Picker JS secondText"
|
1055 |
+
msgid "Second"
|
|
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/fields/class-acf-field-date_time_picker.php:73
|
1059 |
+
msgctxt "Date Time Picker JS millisecText"
|
1060 |
+
msgid "Millisecond"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/fields/class-acf-field-date_time_picker.php:74
|
1064 |
+
msgctxt "Date Time Picker JS microsecText"
|
1065 |
+
msgid "Microsecond"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/fields/class-acf-field-date_time_picker.php:75
|
1069 |
+
msgctxt "Date Time Picker JS timezoneText"
|
1070 |
+
msgid "Time Zone"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/fields/class-acf-field-date_time_picker.php:76
|
1074 |
+
msgctxt "Date Time Picker JS currentText"
|
1075 |
+
msgid "Now"
|
|
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/fields/class-acf-field-date_time_picker.php:77
|
1079 |
+
msgctxt "Date Time Picker JS closeText"
|
1080 |
+
msgid "Done"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/fields/class-acf-field-date_time_picker.php:78
|
1084 |
+
msgctxt "Date Time Picker JS selectText"
|
1085 |
+
msgid "Select"
|
|
|
|
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/fields/class-acf-field-date_time_picker.php:80
|
1089 |
+
msgctxt "Date Time Picker JS amText"
|
1090 |
+
msgid "AM"
|
|
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/fields/class-acf-field-date_time_picker.php:81
|
1094 |
+
msgctxt "Date Time Picker JS amTextShort"
|
1095 |
+
msgid "A"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/fields/class-acf-field-date_time_picker.php:84
|
1099 |
+
msgctxt "Date Time Picker JS pmText"
|
1100 |
+
msgid "PM"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/fields/class-acf-field-date_time_picker.php:85
|
1104 |
+
msgctxt "Date Time Picker JS pmTextShort"
|
1105 |
+
msgid "P"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/fields/class-acf-field-email.php:25
|
1109 |
+
msgid "Email"
|
|
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/fields/class-acf-field-email.php:128, includes/fields/class-acf-field-number.php:136, includes/fields/class-acf-field-password.php:73, includes/fields/class-acf-field-text.php:108, includes/fields/class-acf-field-textarea.php:114, includes/fields/class-acf-field-url.php:112
|
1113 |
+
msgid "Placeholder Text"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/fields/class-acf-field-email.php:129, includes/fields/class-acf-field-number.php:137, includes/fields/class-acf-field-password.php:74, includes/fields/class-acf-field-text.php:109, includes/fields/class-acf-field-textarea.php:115, includes/fields/class-acf-field-url.php:113
|
1117 |
+
msgid "Appears within the input"
|
|
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/fields/class-acf-field-email.php:139, includes/fields/class-acf-field-number.php:147, includes/fields/class-acf-field-password.php:84, includes/fields/class-acf-field-range.php:210, includes/fields/class-acf-field-text.php:119
|
1121 |
+
msgid "Prepend"
|
|
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/fields/class-acf-field-email.php:140, includes/fields/class-acf-field-number.php:148, includes/fields/class-acf-field-password.php:85, includes/fields/class-acf-field-range.php:211, includes/fields/class-acf-field-text.php:120
|
1125 |
+
msgid "Appears before the input"
|
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/fields/class-acf-field-email.php:150, includes/fields/class-acf-field-number.php:158, includes/fields/class-acf-field-password.php:95, includes/fields/class-acf-field-range.php:221, includes/fields/class-acf-field-text.php:130
|
1129 |
+
msgid "Append"
|
|
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: includes/fields/class-acf-field-email.php:151, includes/fields/class-acf-field-number.php:159, includes/fields/class-acf-field-password.php:96, includes/fields/class-acf-field-range.php:222, includes/fields/class-acf-field-text.php:131
|
1133 |
+
msgid "Appears after the input"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: includes/fields/class-acf-field-email.php:175
|
1137 |
+
msgid "'%s' is not a valid email address"
|
|
|
|
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: includes/fields/class-acf-field-file.php:25
|
1141 |
+
msgid "File"
|
|
|
|
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: includes/fields/class-acf-field-file.php:58, includes/admin/tools/class-acf-admin-tool-import.php:55
|
1145 |
+
msgid "Select File"
|
|
|
|
|
|
|
|
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/fields/class-acf-field-file.php:59
|
1149 |
+
msgid "Edit File"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/fields/class-acf-field-file.php:60
|
1153 |
+
msgid "Update File"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/fields/class-acf-field-file.php:147
|
1157 |
+
msgid "File name"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/fields/class-acf-field-file.php:151, includes/fields/class-acf-field-file.php:264, includes/fields/class-acf-field-file.php:277, includes/fields/class-acf-field-image.php:276, includes/fields/class-acf-field-image.php:313, pro/fields/class-acf-field-gallery.php:682, pro/fields/class-acf-field-gallery.php:719
|
1161 |
+
msgid "File size"
|
|
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/fields/class-acf-field-file.php:157, includes/fields/class-acf-field-image.php:137, includes/fields/class-acf-field-link.php:142, pro/fields/class-acf-field-gallery.php:335, includes/admin/views/field-group-field.php:56
|
1165 |
+
msgid "Edit"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/fields/class-acf-field-file.php:182, includes/admin/tools/class-acf-admin-tool-import.php:89
|
1169 |
+
msgid "No file selected"
|
|
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/fields/class-acf-field-file.php:182
|
1173 |
+
msgid "Add File"
|
|
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/fields/class-acf-field-file.php:233
|
1177 |
+
msgid "File Array"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/fields/class-acf-field-file.php:234
|
1181 |
+
msgid "File URL"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/fields/class-acf-field-file.php:235
|
1185 |
+
msgid "File ID"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/fields/class-acf-field-file.php:244, includes/fields/class-acf-field-image.php:233, pro/fields/class-acf-field-gallery.php:617
|
1189 |
+
msgid "Library"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/fields/class-acf-field-file.php:245, includes/fields/class-acf-field-image.php:234, pro/fields/class-acf-field-gallery.php:618
|
1193 |
+
msgid "Limit the media library choice"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/fields/class-acf-field-file.php:250, includes/fields/class-acf-field-image.php:239, includes/locations/class-acf-location-attachment.php:73, includes/locations/class-acf-location-comment.php:61, includes/locations/class-acf-location-nav-menu.php:74, includes/locations/class-acf-location-taxonomy.php:63, includes/locations/class-acf-location-user-form.php:71, includes/locations/class-acf-location-user-role.php:78, includes/locations/class-acf-location-widget.php:65, pro/fields/class-acf-field-gallery.php:623, pro/locations/class-acf-location-block.php:66
|
1197 |
+
msgid "All"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/fields/class-acf-field-file.php:251, includes/fields/class-acf-field-image.php:240, pro/fields/class-acf-field-gallery.php:624
|
1201 |
+
msgid "Uploaded to post"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/fields/class-acf-field-file.php:260, includes/fields/class-acf-field-image.php:249, pro/fields/class-acf-field-gallery.php:655
|
1205 |
+
msgid "Minimum"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: includes/fields/class-acf-field-file.php:261, includes/fields/class-acf-field-file.php:274
|
1209 |
+
msgid "Restrict which files can be uploaded"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: includes/fields/class-acf-field-file.php:273, includes/fields/class-acf-field-image.php:286, pro/fields/class-acf-field-gallery.php:692
|
1213 |
+
msgid "Maximum"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/fields/class-acf-field-file.php:286, includes/fields/class-acf-field-image.php:323, pro/fields/class-acf-field-gallery.php:729
|
1217 |
+
msgid "Allowed file types"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/fields/class-acf-field-file.php:287, includes/fields/class-acf-field-image.php:324, pro/fields/class-acf-field-gallery.php:730
|
1221 |
+
msgid "Comma separated list. Leave blank for all types"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/fields/class-acf-field-file.php:469
|
1225 |
+
msgid "%s requires a valid attachment ID."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: includes/fields/class-acf-field-google-map.php:25
|
1229 |
+
msgid "Google Map"
|
|
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: includes/fields/class-acf-field-google-map.php:60
|
1233 |
+
msgid "Sorry, this browser does not support geolocation"
|
|
|
|
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/fields/class-acf-field-google-map.php:155, includes/fields/class-acf-field-relationship.php:615
|
1237 |
+
msgid "Search"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/fields/class-acf-field-google-map.php:156
|
1241 |
+
msgid "Clear location"
|
|
|
|
|
|
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/fields/class-acf-field-google-map.php:157
|
1245 |
+
msgid "Find current location"
|
|
|
|
|
|
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/fields/class-acf-field-google-map.php:160
|
1249 |
+
msgid "Search for address..."
|
|
|
|
|
|
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: includes/fields/class-acf-field-google-map.php:192, includes/fields/class-acf-field-google-map.php:205
|
1253 |
+
msgid "Center"
|
|
|
|
|
|
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/fields/class-acf-field-google-map.php:193, includes/fields/class-acf-field-google-map.php:206
|
1257 |
+
msgid "Center the initial map"
|
|
|
|
|
|
|
|
|
|
|
|
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/fields/class-acf-field-google-map.php:219
|
1261 |
+
msgid "Zoom"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: includes/fields/class-acf-field-google-map.php:220
|
1265 |
+
msgid "Set the initial zoom level"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/fields/class-acf-field-google-map.php:231, includes/fields/class-acf-field-image.php:264, includes/fields/class-acf-field-image.php:301, includes/fields/class-acf-field-oembed.php:292, pro/fields/class-acf-field-gallery.php:670, pro/fields/class-acf-field-gallery.php:707
|
1269 |
+
msgid "Height"
|
|
|
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/fields/class-acf-field-google-map.php:232
|
1273 |
+
msgid "Customize the map height"
|
|
|
|
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/fields/class-acf-field-group.php:25
|
1277 |
+
msgid "Group"
|
|
|
|
|
|
|
|
|
|
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/fields/class-acf-field-group.php:446, pro/fields/class-acf-field-repeater.php:381
|
1281 |
+
msgid "Sub Fields"
|
|
|
|
|
|
|
|
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/fields/class-acf-field-group.php:463, pro/fields/class-acf-field-clone.php:851
|
1285 |
+
msgid "Specify the style used to render the selected fields"
|
|
|
|
|
|
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/fields/class-acf-field-group.php:468, pro/fields/class-acf-field-clone.php:856, pro/fields/class-acf-field-flexible-content.php:617, pro/fields/class-acf-field-repeater.php:459, pro/locations/class-acf-location-block.php:22
|
1289 |
+
msgid "Block"
|
|
|
|
|
|
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/fields/class-acf-field-group.php:469, pro/fields/class-acf-field-clone.php:857, pro/fields/class-acf-field-flexible-content.php:616, pro/fields/class-acf-field-repeater.php:458
|
1293 |
+
msgid "Table"
|
|
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/fields/class-acf-field-group.php:470, pro/fields/class-acf-field-clone.php:858, pro/fields/class-acf-field-flexible-content.php:618, pro/fields/class-acf-field-repeater.php:460
|
1297 |
+
msgid "Row"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/fields/class-acf-field-image.php:25
|
1301 |
+
msgid "Image"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: includes/fields/class-acf-field-image.php:64
|
1305 |
+
msgid "Select Image"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: includes/fields/class-acf-field-image.php:65
|
1309 |
+
msgid "Edit Image"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: includes/fields/class-acf-field-image.php:66
|
1313 |
+
msgid "Update Image"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: includes/fields/class-acf-field-image.php:158
|
1317 |
+
msgid "No image selected"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: includes/fields/class-acf-field-image.php:158
|
1321 |
+
msgid "Add Image"
|
|
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: includes/fields/class-acf-field-image.php:210, pro/fields/class-acf-field-gallery.php:579
|
1325 |
+
msgid "Image Array"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: includes/fields/class-acf-field-image.php:211, pro/fields/class-acf-field-gallery.php:580
|
1329 |
+
msgid "Image URL"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: includes/fields/class-acf-field-image.php:212, pro/fields/class-acf-field-gallery.php:581
|
1333 |
+
msgid "Image ID"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: includes/fields/class-acf-field-image.php:221, pro/fields/class-acf-field-gallery.php:590
|
1337 |
+
msgid "Preview Size"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: includes/fields/class-acf-field-image.php:250, includes/fields/class-acf-field-image.php:287, pro/fields/class-acf-field-gallery.php:656, pro/fields/class-acf-field-gallery.php:693
|
1341 |
+
msgid "Restrict which images can be uploaded"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: includes/fields/class-acf-field-image.php:253, includes/fields/class-acf-field-image.php:290, includes/fields/class-acf-field-oembed.php:279, pro/fields/class-acf-field-gallery.php:659, pro/fields/class-acf-field-gallery.php:696
|
1345 |
+
msgid "Width"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: includes/fields/class-acf-field-link.php:25
|
1349 |
+
msgid "Link"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: includes/fields/class-acf-field-link.php:137
|
1353 |
+
msgid "Select Link"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: includes/fields/class-acf-field-link.php:142
|
1357 |
+
msgid "Opens in a new window/tab"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/fields/class-acf-field-link.php:176
|
1361 |
+
msgid "Link Array"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/fields/class-acf-field-link.php:177
|
1365 |
+
msgid "Link URL"
|
|
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: includes/fields/class-acf-field-message.php:26, includes/fields/class-acf-field-message.php:100, includes/fields/class-acf-field-true_false.php:137
|
1369 |
+
msgid "Message"
|
|
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/fields/class-acf-field-message.php:111, includes/fields/class-acf-field-textarea.php:148
|
1373 |
+
msgid "New Lines"
|
|
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/fields/class-acf-field-message.php:112, includes/fields/class-acf-field-textarea.php:149
|
1377 |
+
msgid "Controls how new lines are rendered"
|
|
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/fields/class-acf-field-message.php:116, includes/fields/class-acf-field-textarea.php:153
|
1381 |
+
msgid "Automatically add paragraphs"
|
|
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/fields/class-acf-field-message.php:117, includes/fields/class-acf-field-textarea.php:154
|
1385 |
+
msgid "Automatically add <br>"
|
|
|
|
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/fields/class-acf-field-message.php:118, includes/fields/class-acf-field-textarea.php:155
|
1389 |
+
msgid "No Formatting"
|
|
|
|
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/fields/class-acf-field-message.php:127
|
1393 |
+
msgid "Escape HTML"
|
|
|
|
|
|
|
|
|
|
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/fields/class-acf-field-message.php:128
|
1397 |
+
msgid "Allow HTML markup to display as visible text instead of rendering"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: includes/fields/class-acf-field-number.php:25
|
1401 |
+
msgid "Number"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/fields/class-acf-field-number.php:169, includes/fields/class-acf-field-range.php:174
|
1405 |
+
msgid "Minimum Value"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: includes/fields/class-acf-field-number.php:180, includes/fields/class-acf-field-range.php:186
|
1409 |
+
msgid "Maximum Value"
|
|
|
|
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/fields/class-acf-field-number.php:191, includes/fields/class-acf-field-range.php:198
|
1413 |
+
msgid "Step Size"
|
|
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: includes/fields/class-acf-field-number.php:229
|
1417 |
+
msgid "Value must be a number"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: includes/fields/class-acf-field-number.php:244
|
1421 |
+
msgid "Value must be equal to or higher than %d"
|
|
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: includes/fields/class-acf-field-number.php:251
|
1425 |
+
msgid "Value must be equal to or lower than %d"
|
|
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: includes/fields/class-acf-field-oembed.php:25
|
1429 |
+
msgid "oEmbed"
|
|
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: includes/fields/class-acf-field-oembed.php:230
|
1433 |
+
msgid "Enter URL"
|
|
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: includes/fields/class-acf-field-oembed.php:276, includes/fields/class-acf-field-oembed.php:289
|
1437 |
+
msgid "Embed Size"
|
|
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: includes/fields/class-acf-field-page_link.php:25
|
1441 |
+
msgid "Page Link"
|
|
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: includes/fields/class-acf-field-page_link.php:165
|
1445 |
+
msgid "Archives"
|
|
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: includes/fields/class-acf-field-page_link.php:249, includes/fields/class-acf-field-post_object.php:250, includes/fields/class-acf-field-taxonomy.php:948
|
1449 |
+
msgid "Parent"
|
|
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: includes/fields/class-acf-field-page_link.php:450, includes/fields/class-acf-field-post_object.php:362, includes/fields/class-acf-field-relationship.php:578
|
1453 |
+
msgid "Filter by Post Type"
|
|
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: includes/fields/class-acf-field-page_link.php:458, includes/fields/class-acf-field-post_object.php:370, includes/fields/class-acf-field-relationship.php:586
|
1457 |
+
msgid "All post types"
|
|
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: includes/fields/class-acf-field-page_link.php:466, includes/fields/class-acf-field-post_object.php:378, includes/fields/class-acf-field-relationship.php:594
|
1461 |
+
msgid "Filter by Taxonomy"
|
|
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: includes/fields/class-acf-field-page_link.php:474, includes/fields/class-acf-field-post_object.php:386, includes/fields/class-acf-field-relationship.php:602
|
1465 |
+
msgid "All taxonomies"
|
|
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: includes/fields/class-acf-field-page_link.php:494
|
1469 |
+
msgid "Allow Archives URLs"
|
|
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: includes/fields/class-acf-field-page_link.php:506, includes/fields/class-acf-field-post_object.php:406, includes/fields/class-acf-field-select.php:398, includes/fields/class-acf-field-user.php:79
|
1473 |
+
msgid "Select multiple values?"
|
|
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: includes/fields/class-acf-field-password.php:25
|
1477 |
+
msgid "Password"
|
|
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: includes/fields/class-acf-field-post_object.php:25, includes/fields/class-acf-field-post_object.php:423, includes/fields/class-acf-field-relationship.php:667
|
1481 |
+
msgid "Post Object"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: includes/fields/class-acf-field-post_object.php:424, includes/fields/class-acf-field-relationship.php:668
|
1485 |
+
msgid "Post ID"
|
|
|
|
|
|
|
|
|
|
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: includes/fields/class-acf-field-post_object.php:642
|
1489 |
+
msgid "%1$s must have a valid post ID."
|
|
|
|
|
|
|
|
|
|
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: includes/fields/class-acf-field-post_object.php:651
|
1493 |
+
msgid "%1$s must be of post type %2$s."
|
1494 |
+
msgid_plural "%1$s must be of one of the following post types: %2$s"
|
1495 |
+
msgstr[0] ""
|
1496 |
+
msgstr[1] ""
|
|
|
|
|
1497 |
|
1498 |
+
#: includes/fields/class-acf-field-post_object.php:667
|
1499 |
+
msgid "%1$s must have term %2$s."
|
1500 |
+
msgid_plural "%1$s must have one of the following terms: %2$s"
|
1501 |
+
msgstr[0] ""
|
1502 |
+
msgstr[1] ""
|
|
|
|
|
1503 |
|
1504 |
+
#: includes/fields/class-acf-field-radio.php:25
|
1505 |
+
msgid "Radio Button"
|
|
|
|
|
|
|
|
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: includes/fields/class-acf-field-radio.php:214
|
1509 |
+
msgid "Other"
|
|
|
|
|
|
|
|
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: includes/fields/class-acf-field-radio.php:219
|
1513 |
+
msgid "Add 'other' choice to allow for custom values"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: includes/fields/class-acf-field-radio.php:227
|
1517 |
+
msgid "Save Other"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: includes/fields/class-acf-field-radio.php:232
|
1521 |
+
msgid "Save 'other' values to the field's choices"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: includes/fields/class-acf-field-range.php:25
|
1525 |
+
msgid "Range"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: includes/fields/class-acf-field-relationship.php:25
|
1529 |
+
msgid "Relationship"
|
|
|
|
|
|
|
|
|
|
|
|
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: includes/fields/class-acf-field-relationship.php:63
|
1533 |
+
msgid "Maximum values reached ( {max} values )"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: includes/fields/class-acf-field-relationship.php:64
|
1537 |
+
msgid "Loading"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: includes/fields/class-acf-field-relationship.php:65
|
1541 |
+
msgid "No matches found"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: includes/fields/class-acf-field-relationship.php:390
|
1545 |
+
msgid "Select post type"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: includes/fields/class-acf-field-relationship.php:399
|
1549 |
+
msgid "Select taxonomy"
|
|
|
|
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: includes/fields/class-acf-field-relationship.php:469
|
1553 |
+
msgid "Search..."
|
|
|
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: includes/fields/class-acf-field-relationship.php:610
|
1557 |
+
msgid "Filters"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: includes/fields/class-acf-field-relationship.php:616, includes/locations/class-acf-location-post-type.php:22
|
1561 |
+
msgid "Post Type"
|
|
|
|
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: includes/fields/class-acf-field-relationship.php:617, includes/fields/class-acf-field-taxonomy.php:28, includes/fields/class-acf-field-taxonomy.php:714, includes/locations/class-acf-location-taxonomy.php:22
|
1565 |
+
msgid "Taxonomy"
|
|
|
|
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: includes/fields/class-acf-field-relationship.php:626
|
1569 |
+
msgid "Elements"
|
|
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: includes/fields/class-acf-field-relationship.php:627
|
1573 |
+
msgid "Selected elements will be displayed in each result"
|
|
|
|
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: includes/fields/class-acf-field-relationship.php:631, includes/admin/views/field-group-options.php:150
|
1577 |
+
msgid "Featured Image"
|
|
|
|
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: includes/fields/class-acf-field-relationship.php:640
|
1581 |
+
msgid "Minimum posts"
|
|
|
|
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: includes/fields/class-acf-field-relationship.php:651
|
1585 |
+
msgid "Maximum posts"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: includes/fields/class-acf-field-relationship.php:752, pro/fields/class-acf-field-gallery.php:832
|
1589 |
+
msgid "%1$s requires at least %2$s selection"
|
1590 |
+
msgid_plural "%1$s requires at least %2$s selections"
|
1591 |
+
msgstr[0] ""
|
1592 |
+
msgstr[1] ""
|
1593 |
|
1594 |
+
#: includes/fields/class-acf-field-select.php:25, includes/fields/class-acf-field-taxonomy.php:738
|
1595 |
+
msgctxt "noun"
|
1596 |
+
msgid "Select"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: includes/fields/class-acf-field-select.php:107
|
1600 |
+
msgctxt "Select2 JS matches_1"
|
1601 |
+
msgid "One result is available, press enter to select it."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: includes/fields/class-acf-field-select.php:108
|
1605 |
+
msgctxt "Select2 JS matches_n"
|
1606 |
+
msgid "%d results are available, use up and down arrow keys to navigate."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: includes/fields/class-acf-field-select.php:109
|
1610 |
+
msgctxt "Select2 JS matches_0"
|
1611 |
+
msgid "No matches found"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: includes/fields/class-acf-field-select.php:110
|
1615 |
+
msgctxt "Select2 JS input_too_short_1"
|
1616 |
+
msgid "Please enter 1 or more characters"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: includes/fields/class-acf-field-select.php:111
|
1620 |
+
msgctxt "Select2 JS input_too_short_n"
|
1621 |
+
msgid "Please enter %d or more characters"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: includes/fields/class-acf-field-select.php:112
|
1625 |
+
msgctxt "Select2 JS input_too_long_1"
|
1626 |
+
msgid "Please delete 1 character"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: includes/fields/class-acf-field-select.php:113
|
1630 |
+
msgctxt "Select2 JS input_too_long_n"
|
1631 |
+
msgid "Please delete %d characters"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: includes/fields/class-acf-field-select.php:114
|
1635 |
+
msgctxt "Select2 JS selection_too_long_1"
|
1636 |
+
msgid "You can only select 1 item"
|
|
|
|
|
|
|
|
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: includes/fields/class-acf-field-select.php:115
|
1640 |
+
msgctxt "Select2 JS selection_too_long_n"
|
1641 |
+
msgid "You can only select %d items"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: includes/fields/class-acf-field-select.php:116
|
1645 |
+
msgctxt "Select2 JS load_more"
|
1646 |
+
msgid "Loading more results…"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: includes/fields/class-acf-field-select.php:117
|
1650 |
+
msgctxt "Select2 JS searching"
|
1651 |
+
msgid "Searching…"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/fields/class-acf-field-select.php:118
|
1655 |
+
msgctxt "Select2 JS load_fail"
|
1656 |
+
msgid "Loading failed"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: includes/fields/class-acf-field-select.php:410, includes/fields/class-acf-field-true_false.php:159
|
1660 |
+
msgid "Stylised UI"
|
|
|
|
|
|
|
|
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: includes/fields/class-acf-field-select.php:422
|
1664 |
+
msgid "Use AJAX to lazy load choices?"
|
|
|
|
|
|
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: includes/fields/class-acf-field-select.php:440
|
1668 |
+
msgid "Specify the value returned"
|
|
|
|
|
|
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: includes/fields/class-acf-field-select.php:663
|
1672 |
+
msgid "%1$s is not one of %2$s"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: includes/fields/class-acf-field-separator.php:25
|
1676 |
+
msgid "Separator"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: includes/fields/class-acf-field-tab.php:26
|
1680 |
+
msgid "Tab"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: includes/fields/class-acf-field-tab.php:103
|
1684 |
+
msgid "Placement"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: includes/fields/class-acf-field-tab.php:107, includes/admin/views/field-group-options.php:87
|
1688 |
+
msgid "Top aligned"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: includes/fields/class-acf-field-tab.php:108, includes/admin/views/field-group-options.php:88
|
1692 |
+
msgid "Left aligned"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: includes/fields/class-acf-field-tab.php:118
|
1696 |
+
msgid "Define an endpoint for the previous tabs to stop. This will start a new group of tabs."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: includes/fields/class-acf-field-taxonomy.php:673
|
1700 |
+
msgctxt "No terms"
|
1701 |
+
msgid "No %s"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: includes/fields/class-acf-field-taxonomy.php:715
|
1705 |
+
msgid "Select the taxonomy to be displayed"
|
|
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: includes/fields/class-acf-field-taxonomy.php:726
|
1709 |
+
msgid "Appearance"
|
|
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: includes/fields/class-acf-field-taxonomy.php:727
|
1713 |
+
msgid "Select the appearance of this field"
|
|
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: includes/fields/class-acf-field-taxonomy.php:732
|
1717 |
+
msgid "Multiple Values"
|
|
|
|
|
|
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: includes/fields/class-acf-field-taxonomy.php:734
|
1721 |
+
msgid "Multi Select"
|
|
|
|
|
|
|
|
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: includes/fields/class-acf-field-taxonomy.php:736
|
1725 |
+
msgid "Single Value"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: includes/fields/class-acf-field-taxonomy.php:737
|
1729 |
+
msgid "Radio Buttons"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: includes/fields/class-acf-field-taxonomy.php:765
|
1733 |
+
msgid "Create Terms"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: includes/fields/class-acf-field-taxonomy.php:766
|
1737 |
+
msgid "Allow new terms to be created whilst editing"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: includes/fields/class-acf-field-taxonomy.php:777
|
1741 |
+
msgid "Save Terms"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: includes/fields/class-acf-field-taxonomy.php:778
|
1745 |
+
msgid "Connect selected terms to the post"
|
|
|
|
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: includes/fields/class-acf-field-taxonomy.php:789
|
1749 |
+
msgid "Load Terms"
|
|
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: includes/fields/class-acf-field-taxonomy.php:790
|
1753 |
+
msgid "Load value from posts terms"
|
|
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: includes/fields/class-acf-field-taxonomy.php:806
|
1757 |
+
msgid "Term Object"
|
|
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: includes/fields/class-acf-field-taxonomy.php:807
|
1761 |
+
msgid "Term ID"
|
|
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: includes/fields/class-acf-field-taxonomy.php:862
|
1765 |
+
msgid "User unable to add new %s"
|
|
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: includes/fields/class-acf-field-taxonomy.php:874
|
1769 |
+
msgid "%s already exists"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: includes/fields/class-acf-field-taxonomy.php:910
|
1773 |
+
msgid "%s added"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: includes/fields/class-acf-field-taxonomy.php:926, pro/fields/class-acf-field-flexible-content.php:597, includes/admin/views/field-group-fields.php:6
|
1777 |
+
msgid "Name"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: includes/fields/class-acf-field-taxonomy.php:961, includes/locations/class-acf-location-user-form.php:72
|
1781 |
+
msgid "Add"
|
|
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: includes/fields/class-acf-field-text.php:25
|
1785 |
+
msgid "Text"
|
|
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: includes/fields/class-acf-field-text.php:141, includes/fields/class-acf-field-textarea.php:125
|
1789 |
+
msgid "Character Limit"
|
|
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: includes/fields/class-acf-field-text.php:142, includes/fields/class-acf-field-textarea.php:126
|
1793 |
+
msgid "Leave blank for no limit"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: includes/fields/class-acf-field-text.php:168, includes/fields/class-acf-field-textarea.php:221
|
1797 |
+
msgid "Value must not exceed %d characters"
|
|
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: includes/fields/class-acf-field-textarea.php:25
|
1801 |
+
msgid "Text Area"
|
|
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: includes/fields/class-acf-field-textarea.php:136
|
1805 |
+
msgid "Rows"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: includes/fields/class-acf-field-textarea.php:137
|
1809 |
+
msgid "Sets the textarea height"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: includes/fields/class-acf-field-time_picker.php:25
|
1813 |
+
msgid "Time Picker"
|
|
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: includes/fields/class-acf-field-true_false.php:25
|
1817 |
+
msgid "True / False"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: includes/fields/class-acf-field-true_false.php:138
|
1821 |
+
msgid "Displays text alongside the checkbox"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: includes/fields/class-acf-field-true_false.php:172
|
1825 |
+
msgid "On Text"
|
|
|
|
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: includes/fields/class-acf-field-true_false.php:173
|
1829 |
+
msgid "Text shown when active"
|
|
|
|
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: includes/fields/class-acf-field-true_false.php:189
|
1833 |
+
msgid "Off Text"
|
|
|
|
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: includes/fields/class-acf-field-true_false.php:190
|
1837 |
+
msgid "Text shown when inactive"
|
|
|
|
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: includes/fields/class-acf-field-url.php:25
|
1841 |
+
msgid "Url"
|
|
|
|
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: includes/fields/class-acf-field-url.php:154
|
1845 |
+
msgid "Value must be a valid URL"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: includes/fields/class-acf-field-user.php:53
|
1849 |
+
msgid "Filter by role"
|
|
|
|
|
|
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: includes/fields/class-acf-field-user.php:61
|
1853 |
+
msgid "All user roles"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/fields/class-acf-field-user.php:95
|
1857 |
+
msgid "User Array"
|
|
|
|
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: includes/fields/class-acf-field-user.php:96
|
1861 |
+
msgid "User Object"
|
|
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: includes/fields/class-acf-field-user.php:97
|
1865 |
+
msgid "User ID"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: includes/fields/class-acf-field-user.php:350
|
1869 |
+
msgid "Error loading field."
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: includes/fields/class-acf-field-user.php:355
|
1873 |
+
msgid "Invalid request."
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: includes/fields/class-acf-field-user.php:517
|
1877 |
+
msgid "%1$s must have a valid user ID."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: includes/fields/class-acf-field-user.php:526
|
1881 |
+
msgid "%1$s must have a user with the %2$s role."
|
1882 |
+
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
1883 |
+
msgstr[0] ""
|
1884 |
+
msgstr[1] ""
|
1885 |
+
|
1886 |
+
#: includes/fields/class-acf-field-wysiwyg.php:25
|
1887 |
+
msgid "Wysiwyg Editor"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: includes/fields/class-acf-field-wysiwyg.php:282
|
1891 |
+
msgid "Visual"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: includes/fields/class-acf-field-wysiwyg.php:283
|
1895 |
+
msgctxt "Name for the Text editor tab (formerly HTML)"
|
1896 |
+
msgid "Text"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: includes/fields/class-acf-field-wysiwyg.php:289
|
1900 |
+
msgid "Click to initialize TinyMCE"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: includes/fields/class-acf-field-wysiwyg.php:345
|
1904 |
+
msgid "Tabs"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: includes/fields/class-acf-field-wysiwyg.php:350
|
1908 |
+
msgid "Visual & Text"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: includes/fields/class-acf-field-wysiwyg.php:351
|
1912 |
+
msgid "Visual Only"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: includes/fields/class-acf-field-wysiwyg.php:352
|
1916 |
+
msgid "Text Only"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: includes/fields/class-acf-field-wysiwyg.php:361
|
1920 |
+
msgid "Toolbar"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: includes/fields/class-acf-field-wysiwyg.php:378
|
1924 |
+
msgid "Show Media Upload Buttons?"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: includes/fields/class-acf-field-wysiwyg.php:390
|
1928 |
+
msgid "Delay initialization?"
|
|
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: includes/fields/class-acf-field-wysiwyg.php:391
|
1932 |
+
msgid "TinyMCE will not be initialized until field is clicked"
|
|
|
|
|
|
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: includes/forms/form-front.php:40, pro/fields/class-acf-field-gallery.php:352
|
1936 |
+
msgid "Title"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: includes/forms/form-front.php:57
|
1940 |
+
msgid "Validate Email"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: includes/forms/form-front.php:107
|
1944 |
+
msgid "Post updated"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: includes/forms/form-front.php:236
|
1948 |
+
msgid "Spam Detected"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: includes/forms/form-user.php:353
|
1952 |
+
msgid "<strong>Error</strong>: %s"
|
1953 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
1954 |
|
1955 |
+
#: includes/locations/abstract-acf-location.php:105
|
1956 |
+
msgid "is equal to"
|
|
|
|
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: includes/locations/abstract-acf-location.php:106
|
1960 |
+
msgid "is not equal to"
|
|
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: includes/locations/class-acf-location-attachment.php:22
|
1964 |
+
msgid "Attachment"
|
|
|
|
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: includes/locations/class-acf-location-attachment.php:84
|
1968 |
+
msgid "All %s formats"
|
|
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: includes/locations/class-acf-location-comment.php:22
|
1972 |
+
msgid "Comment"
|
|
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: includes/locations/class-acf-location-current-user-role.php:22
|
1976 |
+
msgid "Current User Role"
|
|
|
|
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: includes/locations/class-acf-location-current-user-role.php:77
|
1980 |
+
msgid "Super Admin"
|
|
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: includes/locations/class-acf-location-current-user.php:22
|
1984 |
+
msgid "Current User"
|
|
|
|
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: includes/locations/class-acf-location-current-user.php:71
|
1988 |
+
msgid "Logged in"
|
|
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: includes/locations/class-acf-location-current-user.php:72
|
1992 |
+
msgid "Viewing front end"
|
|
|
|
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: includes/locations/class-acf-location-current-user.php:73
|
1996 |
+
msgid "Viewing back end"
|
|
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: includes/locations/class-acf-location-nav-menu-item.php:22
|
2000 |
+
msgid "Menu Item"
|
|
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: includes/locations/class-acf-location-nav-menu.php:22
|
2004 |
+
msgid "Menu"
|
|
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: includes/locations/class-acf-location-nav-menu.php:80
|
2008 |
+
msgid "Menu Locations"
|
|
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: includes/locations/class-acf-location-page-parent.php:22
|
2012 |
+
msgid "Page Parent"
|
|
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: includes/locations/class-acf-location-page-template.php:22
|
2016 |
+
msgid "Page Template"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: includes/locations/class-acf-location-page-template.php:73, includes/locations/class-acf-location-post-template.php:85
|
2020 |
+
msgid "Default Template"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: includes/locations/class-acf-location-page-type.php:22
|
2024 |
+
msgid "Page Type"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: includes/locations/class-acf-location-page-type.php:110
|
2028 |
+
msgid "Front Page"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: includes/locations/class-acf-location-page-type.php:111
|
2032 |
+
msgid "Posts Page"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: includes/locations/class-acf-location-page-type.php:112
|
2036 |
+
msgid "Top Level Page (no parent)"
|
|
|
|
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: includes/locations/class-acf-location-page-type.php:113
|
2040 |
+
msgid "Parent Page (has children)"
|
|
|
|
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: includes/locations/class-acf-location-page-type.php:114
|
2044 |
+
msgid "Child Page (has parent)"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: includes/locations/class-acf-location-post-category.php:22
|
2048 |
+
msgid "Post Category"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: includes/locations/class-acf-location-post-format.php:22
|
2052 |
+
msgid "Post Format"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: includes/locations/class-acf-location-post-status.php:22
|
2056 |
+
msgid "Post Status"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: includes/locations/class-acf-location-post-taxonomy.php:22
|
2060 |
+
msgid "Post Taxonomy"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: includes/locations/class-acf-location-post-template.php:22
|
2064 |
+
msgid "Post Template"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: includes/locations/class-acf-location-user-form.php:22
|
2068 |
+
msgid "User Form"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: includes/locations/class-acf-location-user-form.php:73
|
2072 |
+
msgid "Add / Edit"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: includes/locations/class-acf-location-user-form.php:74
|
2076 |
+
msgid "Register"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: includes/locations/class-acf-location-user-role.php:24
|
2080 |
+
msgid "User Role"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: includes/locations/class-acf-location-widget.php:22
|
2084 |
+
msgid "Widget"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: pro/admin/admin-options-page.php:195
|
2088 |
+
msgid "Publish"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: pro/admin/admin-options-page.php:199
|
2092 |
+
msgid "No Custom Field Groups found for this options page. <a href=\"%s\">Create a Custom Field Group</a>"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: pro/admin/admin-updates.php:52
|
2096 |
+
msgid "<b>Error</b>. Could not connect to update server"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: pro/admin/admin-updates.php:122, pro/admin/admin-updates.php:122, pro/admin/views/html-settings-updates.php:12
|
2100 |
+
msgid "Updates"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: pro/admin/admin-updates.php:209
|
2104 |
+
msgid "<b>Error</b>. Could not authenticate update package. Please check again or deactivate and reactivate your ACF PRO license."
|
|
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: pro/admin/admin-updates.php:196
|
2108 |
+
msgid "<b>Error</b>. Your license for this site has expired or been deactivated. Please reactivate your ACF PRO license."
|
|
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: pro/fields/class-acf-field-clone.php:25
|
2112 |
+
msgctxt "noun"
|
2113 |
+
msgid "Clone"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: pro/fields/class-acf-field-clone.php:815
|
2117 |
+
msgid "Select one or more fields you wish to clone"
|
|
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: pro/fields/class-acf-field-clone.php:834
|
2121 |
+
msgid "Display"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: pro/fields/class-acf-field-clone.php:835
|
2125 |
+
msgid "Specify the style used to render the clone field"
|
|
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: pro/fields/class-acf-field-clone.php:840
|
2129 |
+
msgid "Group (displays selected fields in a group within this field)"
|
|
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: pro/fields/class-acf-field-clone.php:841
|
2133 |
+
msgid "Seamless (replaces this field with selected fields)"
|
|
|
|
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: pro/fields/class-acf-field-clone.php:864
|
2137 |
+
msgid "Labels will be displayed as %s"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: pro/fields/class-acf-field-clone.php:869
|
2141 |
+
msgid "Prefix Field Labels"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: pro/fields/class-acf-field-clone.php:880
|
2145 |
+
msgid "Values will be saved as %s"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: pro/fields/class-acf-field-clone.php:885
|
2149 |
+
msgid "Prefix Field Names"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: pro/fields/class-acf-field-clone.php:1001
|
2153 |
+
msgid "Unknown field"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: pro/fields/class-acf-field-clone.php:1038
|
2157 |
+
msgid "Unknown field group"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: pro/fields/class-acf-field-clone.php:1042
|
2161 |
+
msgid "All fields from %s field group"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: pro/fields/class-acf-field-flexible-content.php:25, includes/admin/views/html-notice-upgrade.php:12
|
2165 |
+
msgid "Flexible Content"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: pro/fields/class-acf-field-flexible-content.php:31, pro/fields/class-acf-field-repeater.php:182, pro/fields/class-acf-field-repeater.php:473
|
2169 |
+
msgid "Add Row"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: pro/fields/class-acf-field-flexible-content.php:71, pro/fields/class-acf-field-flexible-content.php:917, pro/fields/class-acf-field-flexible-content.php:996
|
2173 |
+
msgid "layout"
|
2174 |
+
msgid_plural "layouts"
|
2175 |
+
msgstr[0] ""
|
2176 |
+
msgstr[1] ""
|
2177 |
|
2178 |
+
#: pro/fields/class-acf-field-flexible-content.php:72
|
2179 |
+
msgid "layouts"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: pro/fields/class-acf-field-flexible-content.php:75, pro/fields/class-acf-field-flexible-content.php:916, pro/fields/class-acf-field-flexible-content.php:995
|
2183 |
+
msgid "This field requires at least {min} {label} {identifier}"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: pro/fields/class-acf-field-flexible-content.php:76
|
2187 |
+
msgid "This field has a limit of {max} {label} {identifier}"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: pro/fields/class-acf-field-flexible-content.php:79
|
2191 |
+
msgid "{available} {label} {identifier} available (max {max})"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: pro/fields/class-acf-field-flexible-content.php:80
|
2195 |
+
msgid "{required} {label} {identifier} required (min {min})"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: pro/fields/class-acf-field-flexible-content.php:83
|
2199 |
+
msgid "Flexible Content requires at least 1 layout"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: pro/fields/class-acf-field-flexible-content.php:276
|
2203 |
+
msgid "Click the \"%s\" button below to start creating your layout"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: pro/fields/class-acf-field-flexible-content.php:410, pro/fields/class-acf-field-repeater.php:295, includes/admin/views/field-group-field.php:49
|
2207 |
+
msgid "Drag to reorder"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: pro/fields/class-acf-field-flexible-content.php:413
|
2211 |
+
msgid "Add layout"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: pro/fields/class-acf-field-flexible-content.php:414
|
2215 |
+
msgid "Duplicate layout"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: pro/fields/class-acf-field-flexible-content.php:415
|
2219 |
+
msgid "Remove layout"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: pro/fields/class-acf-field-flexible-content.php:416, pro/fields/class-acf-field-repeater.php:297
|
2223 |
+
msgid "Click to toggle"
|
|
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: pro/fields/class-acf-field-flexible-content.php:551
|
2227 |
+
msgid "Reorder Layout"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: pro/fields/class-acf-field-flexible-content.php:551
|
2231 |
+
msgid "Reorder"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
2235 |
+
msgid "Delete Layout"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: pro/fields/class-acf-field-flexible-content.php:552, includes/admin/views/field-group-field.php:59
|
2239 |
+
msgid "Delete"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: pro/fields/class-acf-field-flexible-content.php:553
|
2243 |
+
msgid "Duplicate Layout"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
2247 |
+
msgid "Add New Layout"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: pro/fields/class-acf-field-flexible-content.php:635
|
2251 |
+
msgid "Min"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: pro/fields/class-acf-field-flexible-content.php:650
|
2255 |
+
msgid "Max"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: pro/fields/class-acf-field-flexible-content.php:679, pro/fields/class-acf-field-repeater.php:469
|
2259 |
+
msgid "Button Label"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: pro/fields/class-acf-field-flexible-content.php:690
|
2263 |
+
msgid "Minimum Layouts"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: pro/fields/class-acf-field-flexible-content.php:701
|
2267 |
+
msgid "Maximum Layouts"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: pro/fields/class-acf-field-flexible-content.php:1704, pro/fields/class-acf-field-repeater.php:1108
|
2271 |
+
msgid "%s must be of type array or null."
|
|
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: pro/fields/class-acf-field-flexible-content.php:1715
|
2275 |
+
msgid "%1$s must contain at least %2$s %3$s layout."
|
2276 |
+
msgid_plural "%1$s must contain at least %2$s %3$s layouts."
|
2277 |
+
msgstr[0] ""
|
2278 |
+
msgstr[1] ""
|
2279 |
+
|
2280 |
+
#: pro/fields/class-acf-field-flexible-content.php:1731
|
2281 |
+
msgid "%1$s must contain at most %2$s %3$s layout."
|
2282 |
+
msgid_plural "%1$s must contain at most %2$s %3$s layouts."
|
2283 |
+
msgstr[0] ""
|
2284 |
+
msgstr[1] ""
|
2285 |
+
|
2286 |
+
#: pro/fields/class-acf-field-gallery.php:25, includes/admin/views/html-notice-upgrade.php:15
|
2287 |
+
msgid "Gallery"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: pro/fields/class-acf-field-gallery.php:73
|
2291 |
+
msgid "Add Image to Gallery"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: pro/fields/class-acf-field-gallery.php:74
|
2295 |
+
msgid "Maximum selection reached"
|
|
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: pro/fields/class-acf-field-gallery.php:320
|
2299 |
+
msgid "Length"
|
|
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: pro/fields/class-acf-field-gallery.php:364
|
2303 |
+
msgid "Caption"
|
|
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: pro/fields/class-acf-field-gallery.php:376
|
2307 |
+
msgid "Alt Text"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: pro/fields/class-acf-field-gallery.php:500
|
2311 |
+
msgid "Add to gallery"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: pro/fields/class-acf-field-gallery.php:504
|
2315 |
+
msgid "Bulk actions"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: pro/fields/class-acf-field-gallery.php:505
|
2319 |
+
msgid "Sort by date uploaded"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: pro/fields/class-acf-field-gallery.php:506
|
2323 |
+
msgid "Sort by date modified"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: pro/fields/class-acf-field-gallery.php:507
|
2327 |
+
msgid "Sort by title"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: pro/fields/class-acf-field-gallery.php:508
|
2331 |
+
msgid "Reverse current order"
|
|
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: pro/fields/class-acf-field-gallery.php:520
|
2335 |
+
msgid "Close"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: pro/fields/class-acf-field-gallery.php:602
|
2339 |
+
msgid "Insert"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: pro/fields/class-acf-field-gallery.php:603
|
2343 |
+
msgid "Specify where new attachments are added"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: pro/fields/class-acf-field-gallery.php:607
|
2347 |
+
msgid "Append to the end"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: pro/fields/class-acf-field-gallery.php:608
|
2351 |
+
msgid "Prepend to the beginning"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: pro/fields/class-acf-field-gallery.php:633
|
2355 |
+
msgid "Minimum Selection"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: pro/fields/class-acf-field-gallery.php:644
|
2359 |
+
msgid "Maximum Selection"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: pro/fields/class-acf-field-repeater.php:25, includes/admin/views/html-notice-upgrade.php:9
|
2363 |
+
msgid "Repeater"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: pro/fields/class-acf-field-repeater.php:64, pro/fields/class-acf-field-repeater.php:659
|
2367 |
+
msgid "Minimum rows reached ({min} rows)"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: pro/fields/class-acf-field-repeater.php:65
|
2371 |
+
msgid "Maximum rows reached ({max} rows)"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: pro/fields/class-acf-field-repeater.php:334
|
2375 |
+
msgid "Add row"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: pro/fields/class-acf-field-repeater.php:335
|
2379 |
+
msgid "Duplicate row"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: pro/fields/class-acf-field-repeater.php:336
|
2383 |
+
msgid "Remove row"
|
|
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: pro/fields/class-acf-field-repeater.php:414
|
2387 |
+
msgid "Collapsed"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: pro/fields/class-acf-field-repeater.php:415
|
2391 |
+
msgid "Select a sub field to show when row is collapsed"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: pro/fields/class-acf-field-repeater.php:427
|
2395 |
+
msgid "Minimum Rows"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: pro/fields/class-acf-field-repeater.php:439
|
2399 |
+
msgid "Maximum Rows"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: pro/locations/class-acf-location-block.php:71
|
2403 |
+
msgid "No block types exist"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: pro/locations/class-acf-location-options-page.php:22, includes/admin/views/html-notice-upgrade.php:18
|
2407 |
+
msgid "Options Page"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: pro/locations/class-acf-location-options-page.php:70
|
2411 |
+
msgid "No options pages exist"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: tests/basic/test-blocks.php:456
|
2415 |
+
msgid "Hero"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: tests/basic/test-blocks.php:457
|
2419 |
+
msgid "Display a random hero image."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: tests/basic/test-blocks.php:630
|
2423 |
+
msgid "Test JS"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: tests/basic/test-blocks.php:631
|
2427 |
+
msgid "A block for testing JS."
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:35
|
2431 |
+
msgid "Export Field Groups"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:39, includes/admin/tools/class-acf-admin-tool-export.php:335, includes/admin/tools/class-acf-admin-tool-export.php:364
|
2435 |
+
msgid "Generate PHP"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:96, includes/admin/tools/class-acf-admin-tool-export.php:131
|
2439 |
+
msgid "No field groups selected"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:167
|
2443 |
+
msgid "Exported 1 field group."
|
2444 |
+
msgid_plural "Exported %s field groups."
|
2445 |
+
msgstr[0] ""
|
2446 |
+
msgstr[1] ""
|
2447 |
+
|
2448 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:233, includes/admin/tools/class-acf-admin-tool-export.php:262
|
2449 |
+
msgid "Select Field Groups"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:329
|
2453 |
+
msgid "Select the field groups you would like to export and then select your export method. Use the download button to export to a .json file which you can then import to another ACF installation. Use the generate button to export to PHP code which you can place in your theme."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:334
|
2457 |
+
msgid "Export File"
|
|
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:405
|
2461 |
+
msgid "The following code can be used to register a local version of the selected field group(s). A local field group can provide many benefits such as faster load times, version control & dynamic fields/settings. Simply copy and paste the following code to your theme's functions.php file or include it within an external file."
|
|
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:435
|
2465 |
+
msgid "Copy to clipboard"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:472
|
2469 |
+
msgid "Copied"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:28
|
2473 |
+
msgid "Import Field Groups"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:49
|
2477 |
+
msgid "Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF will import the field groups."
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:66
|
2481 |
+
msgid "Import File"
|
|
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:97
|
2485 |
+
msgid "Error uploading file. Please try again"
|
|
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:102
|
2489 |
+
msgid "Incorrect file type"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:111
|
2493 |
+
msgid "Import file empty"
|
|
|
|
|
|
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:142
|
2497 |
+
msgid "Imported 1 field group"
|
2498 |
+
msgid_plural "Imported %s field groups"
|
2499 |
+
msgstr[0] ""
|
2500 |
+
msgstr[1] ""
|
2501 |
+
|
2502 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:25
|
2503 |
+
msgid "Conditional Logic"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:60
|
2507 |
+
msgid "Show this field if"
|
|
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: includes/admin/views/field-group-field-conditional-logic.php:172, includes/admin/views/field-group-locations.php:38
|
2511 |
+
msgid "Add rule group"
|
|
|
|
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: includes/admin/views/field-group-field.php:53, includes/admin/views/field-group-field.php:56
|
2515 |
+
msgid "Edit field"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: includes/admin/views/field-group-field.php:57
|
2519 |
+
msgid "Duplicate field"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: includes/admin/views/field-group-field.php:58
|
2523 |
+
msgid "Move field to another group"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: includes/admin/views/field-group-field.php:58
|
2527 |
+
msgid "Move"
|
|
|
|
|
|
|
|
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: includes/admin/views/field-group-field.php:59
|
2531 |
+
msgid "Delete field"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: includes/admin/views/field-group-field.php:78
|
2535 |
+
msgid "Field Label"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: includes/admin/views/field-group-field.php:79
|
2539 |
+
msgid "This is the name which will appear on the EDIT page"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: includes/admin/views/field-group-field.php:92
|
2543 |
+
msgid "Field Name"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: includes/admin/views/field-group-field.php:93
|
2547 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: includes/admin/views/field-group-field.php:106
|
2551 |
+
msgid "Field Type"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: includes/admin/views/field-group-field.php:121
|
2555 |
+
msgid "Instructions"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: includes/admin/views/field-group-field.php:122
|
2559 |
+
msgid "Instructions for authors. Shown when submitting data"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: includes/admin/views/field-group-field.php:135
|
2563 |
+
msgid "Required?"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: includes/admin/views/field-group-field.php:161
|
2567 |
+
msgid "Wrapper Attributes"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: includes/admin/views/field-group-field.php:167
|
2571 |
+
msgid "width"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: includes/admin/views/field-group-field.php:185
|
2575 |
+
msgid "class"
|
|
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: includes/admin/views/field-group-field.php:201
|
2579 |
+
msgid "id"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: includes/admin/views/field-group-field.php:215, includes/admin/views/field-group-field.php:215
|
2583 |
+
msgid "Close Field"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: includes/admin/views/field-group-fields.php:4
|
2587 |
+
msgid "Order"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: includes/admin/views/field-group-fields.php:8
|
2591 |
+
msgid "Type"
|
|
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: includes/admin/views/field-group-fields.php:19
|
2595 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
|
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: includes/admin/views/field-group-fields.php:44
|
2599 |
+
msgid "+ Add Field"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: includes/admin/views/field-group-locations.php:9
|
2603 |
+
msgid "Rules"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: includes/admin/views/field-group-locations.php:10
|
2607 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: includes/admin/views/field-group-options.php:10
|
2611 |
+
msgid "Active"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: includes/admin/views/field-group-options.php:27
|
2615 |
+
msgid "Show in REST API"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: includes/admin/views/field-group-options.php:44
|
2619 |
+
msgid "Style"
|
|
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: includes/admin/views/field-group-options.php:51
|
2623 |
+
msgid "Standard (WP metabox)"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: includes/admin/views/field-group-options.php:52
|
2627 |
+
msgid "Seamless (no metabox)"
|
|
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: includes/admin/views/field-group-options.php:61
|
2631 |
+
msgid "Position"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: includes/admin/views/field-group-options.php:68
|
2635 |
+
msgid "High (after title)"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: includes/admin/views/field-group-options.php:69
|
2639 |
+
msgid "Normal (after content)"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: includes/admin/views/field-group-options.php:70
|
2643 |
+
msgid "Side"
|
|
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: includes/admin/views/field-group-options.php:80
|
2647 |
+
msgid "Label placement"
|
|
|
|
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: includes/admin/views/field-group-options.php:97
|
2651 |
+
msgid "Instruction placement"
|
2652 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
2653 |
|
2654 |
+
#: includes/admin/views/field-group-options.php:104
|
2655 |
+
msgid "Below labels"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: includes/admin/views/field-group-options.php:105
|
2659 |
+
msgid "Below fields"
|
|
|
|
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: includes/admin/views/field-group-options.php:114
|
2663 |
+
msgid "Order No."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: includes/admin/views/field-group-options.php:115
|
2667 |
+
msgid "Field groups with a lower order will appear first"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: includes/admin/views/field-group-options.php:128
|
2671 |
+
msgid "Shown in field group list"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: includes/admin/views/field-group-options.php:139
|
2675 |
+
msgid "Permalink"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: includes/admin/views/field-group-options.php:140
|
2679 |
+
msgid "Content Editor"
|
|
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: includes/admin/views/field-group-options.php:141
|
2683 |
+
msgid "Excerpt"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: includes/admin/views/field-group-options.php:143
|
2687 |
+
msgid "Discussion"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: includes/admin/views/field-group-options.php:145
|
2691 |
+
msgid "Revisions"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: includes/admin/views/field-group-options.php:146
|
2695 |
+
msgid "Slug"
|
|
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: includes/admin/views/field-group-options.php:147
|
2699 |
+
msgid "Author"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: includes/admin/views/field-group-options.php:148
|
2703 |
+
msgid "Format"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: includes/admin/views/field-group-options.php:149
|
2707 |
+
msgid "Page Attributes"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: includes/admin/views/field-group-options.php:151
|
2711 |
+
msgid "Categories"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: includes/admin/views/field-group-options.php:152
|
2715 |
+
msgid "Tags"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: includes/admin/views/field-group-options.php:153
|
2719 |
+
msgid "Send Trackbacks"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: includes/admin/views/field-group-options.php:161
|
2723 |
+
msgid "Hide on screen"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: includes/admin/views/field-group-options.php:162
|
2727 |
+
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen."
|
|
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: includes/admin/views/field-group-options.php:162
|
2731 |
+
msgid "If multiple field groups appear on an edit screen, the first field group's options will be used (the one with the lowest order number)"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: includes/admin/views/html-admin-navigation.php:89
|
2735 |
+
msgid "Upgrade to Pro"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:26
|
2739 |
+
msgid "The following sites require a DB upgrade. Check the ones you want to update and then click %s."
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:26, includes/admin/views/html-admin-page-upgrade-network.php:27, includes/admin/views/html-admin-page-upgrade-network.php:96
|
2743 |
+
msgid "Upgrade Sites"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:36, includes/admin/views/html-admin-page-upgrade-network.php:47
|
2747 |
+
msgid "Site"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:80
|
2751 |
+
msgid "Site is up to date"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:78
|
2755 |
+
msgid "Site requires database upgrade from %1$s to %2$s"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:97
|
2759 |
+
msgid "Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:117
|
2763 |
+
msgid "Please select at least one site to upgrade."
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:121, includes/admin/views/html-notice-upgrade.php:45
|
2767 |
+
msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:148, includes/admin/views/html-admin-page-upgrade.php:31
|
2771 |
+
msgid "Upgrading data to version %s"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:162
|
2775 |
+
msgid "Upgrade complete."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: includes/admin/views/html-admin-page-upgrade-network.php:165, includes/admin/views/html-admin-page-upgrade.php:65
|
2779 |
+
msgid "Upgrade failed."
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: includes/admin/views/html-admin-page-upgrade.php:30
|
2783 |
+
msgid "Reading upgrade tasks..."
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: includes/admin/views/html-admin-page-upgrade.php:33
|
2787 |
+
msgid "Database upgrade complete. <a href=\"%s\">See what's new</a>"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: includes/admin/views/html-admin-tools.php:24
|
2791 |
+
msgid "Back to all tools"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: includes/admin/views/html-notice-upgrade.php:28
|
2795 |
+
msgid "Database Upgrade Required"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: includes/admin/views/html-notice-upgrade.php:29
|
2799 |
+
msgid "Thank you for updating to %1$s v%2$s!"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: includes/admin/views/html-notice-upgrade.php:29
|
2803 |
+
msgid "This version contains improvements to your database and requires an upgrade."
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: includes/admin/views/html-notice-upgrade.php:31
|
2807 |
+
msgid "Please also check all premium add-ons (%s) are updated to the latest version."
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: pro/admin/views/html-settings-updates.php:6
|
2811 |
+
msgid "Deactivate License"
|
|
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: pro/admin/views/html-settings-updates.php:6
|
2815 |
+
msgid "Activate License"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: pro/admin/views/html-settings-updates.php:16
|
2819 |
+
msgid "License Information"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: pro/admin/views/html-settings-updates.php:34
|
2823 |
+
msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</a>."
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: pro/admin/views/html-settings-updates.php:41
|
2827 |
+
msgid "License Key"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: pro/admin/views/html-settings-updates.php:22
|
2831 |
+
msgid "Your license key is defined in wp-config.php."
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: pro/admin/views/html-settings-updates.php:29
|
2835 |
+
msgid "Retry Activation"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: pro/admin/views/html-settings-updates.php:76
|
2839 |
+
msgid "Update Information"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: pro/admin/views/html-settings-updates.php:83
|
2843 |
+
msgid "Current Version"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: pro/admin/views/html-settings-updates.php:91
|
2847 |
+
msgid "Latest Version"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: pro/admin/views/html-settings-updates.php:99
|
2851 |
+
msgid "Update Available"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: pro/admin/views/html-settings-updates.php:111
|
2855 |
+
msgid "Please enter your license key above to unlock updates"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: pro/admin/views/html-settings-updates.php:109
|
2859 |
+
msgid "Update Plugin"
|
|
|
|
|
|
|
|
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: pro/admin/views/html-settings-updates.php:107
|
2863 |
+
msgid "Please reactivate your license to unlock updates"
|
|
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: pro/admin/views/html-settings-updates.php:124
|
2867 |
+
msgid "Changelog"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: pro/admin/views/html-settings-updates.php:134
|
2871 |
+
msgid "Upgrade Notice"
|
2872 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: acf, fields, custom fields, meta, repeater
|
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -76,6 +76,25 @@ From your WordPress dashboard
|
|
76 |
|
77 |
== Changelog ==
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
= 5.11.4 =
|
80 |
*Release Date - 2nd December 2021*
|
81 |
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 5.12
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
76 |
|
77 |
== Changelog ==
|
78 |
|
79 |
+
= 5.12 =
|
80 |
+
*Release Date 23rd February 2022*
|
81 |
+
|
82 |
+
* [View Release Post](https://www.advancedcustomfields.com/blog/acf-5-12-released/)
|
83 |
+
* New - ACF blocks now support the new Full Site Editor included in WordPress 5.9
|
84 |
+
* New - ACF blocks now support the WordPress Query Loop block
|
85 |
+
* New - Added block caching system to reduce the number of AJAX calls in the block editor
|
86 |
+
* Enhancement - Block preloading can now be disabled by using "acf_update_setting( 'preload_blocks', false );" in the "acf/init" action hook
|
87 |
+
* Enhancement - ACF and ACF PRO will now detect if each other are active and deactivate the other plugin on plugin activation
|
88 |
+
* Fix - Fixed an issue with the media library not working correctly in ACF Blocks in WordPress 5.9.1
|
89 |
+
* Fix - Fixed an issue where anchors weren't working correctly in WordPress 5.9
|
90 |
+
* Fix - Fixed an issue where the "unfiltered_html" capability wasn't being used by ACF blocks
|
91 |
+
* Fix - Fixed an issue where it was impossible to update an ACF block inside the widget block editor
|
92 |
+
* Fix - Fixed an issue where ACF fields might not appear in REST API calls made via internal WordPress functions
|
93 |
+
* Fix - Warnings and PHP 8.1 deprecation notices in REST API
|
94 |
+
* Fix - Better support for double byte characters in "acf_get_truncated()" (props @cabradb)
|
95 |
+
* i18n - Broken link in the Croatian translation
|
96 |
+
* i18n - Automated building of acf.pot for translators in each release
|
97 |
+
|
98 |
= 5.11.4 =
|
99 |
*Release Date - 2nd December 2021*
|
100 |
|