Version Description
- Updates to various languages + added Welsh (cy)
Download this release
Release Info
Developer | DeFries |
Plugin | Genesis Translations |
Version | 1.9.2 |
Comparing to | |
See all releases |
Code changes from version 1.9.0 to 1.9.2
- genesis-translations.php +22 -22
- genesis-translations/af.mo +0 -0
- genesis-translations/af.po +0 -1691
- genesis-translations/ar.mo +0 -0
- genesis-translations/ar.po +0 -1716
- genesis-translations/hr.mo +0 -0
- genesis-translations/hr.po +0 -1695
- readme.md +18 -14
- readme.txt +11 -5
genesis-translations.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
* Plugin URI: http://remkusdevries.com/plugins/genesis-translations/
|
10 |
* Description: This plugin will translate Genesis in the available languages.
|
11 |
* Author: Remkus de Vries
|
12 |
-
* Version: 1.9.
|
13 |
* Author URI: http://remkusdevries.com/
|
14 |
* License: GPLv2
|
15 |
* Text Domain: genesis-translations
|
@@ -21,7 +21,7 @@
|
|
21 |
*
|
22 |
*/
|
23 |
define( 'GENTRANS_FILE','genesis-translations/genesis-translations.php' );
|
24 |
-
define( 'GENTRANS_VERSION','1.9.
|
25 |
|
26 |
/**
|
27 |
* The text domain for the plugin
|
@@ -48,21 +48,21 @@ register_activation_hook( __FILE__, 'fst_genesis_translations_activation_check'
|
|
48 |
*/
|
49 |
function fst_genesis_translations_activation_check() {
|
50 |
|
51 |
-
|
52 |
|
53 |
-
|
54 |
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
|
60 |
-
|
61 |
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
}
|
67 |
/**
|
68 |
* Used to cutoff a string to a set length if it exceeds the specified length
|
@@ -78,14 +78,14 @@ function fst_genesis_translations_activation_check() {
|
|
78 |
*/
|
79 |
function fst_genesis_translations_version_check( $str, $length=10 ) {
|
80 |
|
81 |
-
|
82 |
-
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
|
88 |
-
|
89 |
}
|
90 |
|
91 |
add_action( 'genesis_init','fst_set_genesis_language_dir', 1 );
|
@@ -98,8 +98,8 @@ add_action( 'genesis_init','fst_set_genesis_language_dir', 1 );
|
|
98 |
*/
|
99 |
function fst_set_genesis_language_dir() {
|
100 |
|
101 |
-
|
102 |
|
103 |
-
|
104 |
|
105 |
-
}
|
9 |
* Plugin URI: http://remkusdevries.com/plugins/genesis-translations/
|
10 |
* Description: This plugin will translate Genesis in the available languages.
|
11 |
* Author: Remkus de Vries
|
12 |
+
* Version: 1.9.2
|
13 |
* Author URI: http://remkusdevries.com/
|
14 |
* License: GPLv2
|
15 |
* Text Domain: genesis-translations
|
21 |
*
|
22 |
*/
|
23 |
define( 'GENTRANS_FILE','genesis-translations/genesis-translations.php' );
|
24 |
+
define( 'GENTRANS_VERSION','1.9.2' );
|
25 |
|
26 |
/**
|
27 |
* The text domain for the plugin
|
48 |
*/
|
49 |
function fst_genesis_translations_activation_check() {
|
50 |
|
51 |
+
$latest = '1.7';
|
52 |
|
53 |
+
$theme_info = get_theme_data( get_template_directory() . '/style.css' );
|
54 |
|
55 |
+
if ( basename( get_template_directory() ) != 'genesis' ) {
|
56 |
+
deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate ourself
|
57 |
+
wp_die( sprintf( __( 'Whoa.. the translation this plugin only works, really, when you have installed the %1$sGenesis Framework%2$s', GTRANS_DOMAIN ), '<a href="http://forsitemedia.net/go/genesis/" target="_new">', '</a>' ) );
|
58 |
+
}
|
59 |
|
60 |
+
$version = fst_genesis_translations_version_check( $theme_info['Version'], 3 );
|
61 |
|
62 |
+
if ( version_compare( $version, $latest, '<' ) ) {
|
63 |
+
deactivate_plugins( plugin_basename( __FILE__ ) ); // Deactivate ourself
|
64 |
+
wp_die( sprintf( __( 'Uhm, the thing of it is, you kinda need the %1$sGenesis Framework %2$s%3$s or greater for these translations to make any sense.', GTRANS_DOMAIN ), '<a href="http://forsitemedia.net/go/genesis/" target="_new">', $latest, '</a>' ) );
|
65 |
+
}
|
66 |
}
|
67 |
/**
|
68 |
* Used to cutoff a string to a set length if it exceeds the specified length
|
78 |
*/
|
79 |
function fst_genesis_translations_version_check( $str, $length=10 ) {
|
80 |
|
81 |
+
if ( strlen( $str ) > $length ) {
|
82 |
+
return substr( $str, 0, $length );
|
83 |
|
84 |
+
} else {
|
85 |
+
$res = $str;
|
86 |
+
}
|
87 |
|
88 |
+
return $res;
|
89 |
}
|
90 |
|
91 |
add_action( 'genesis_init','fst_set_genesis_language_dir', 1 );
|
98 |
*/
|
99 |
function fst_set_genesis_language_dir() {
|
100 |
|
101 |
+
$fstlang = WP_CONTENT_DIR.'/plugins/' .str_replace( basename( __FILE__ ),"", plugin_basename( __FILE__ ) );
|
102 |
|
103 |
+
define( 'GENESIS_LANGUAGES_DIR', $fstlang . 'genesis-translations/' );
|
104 |
|
105 |
+
}
|
genesis-translations/af.mo
DELETED
Binary file
|
genesis-translations/af.po
DELETED
@@ -1,1691 +0,0 @@
|
|
1 |
-
# Translation of Genesis 1.9 in Afrikaans
|
2 |
-
# This file is distributed under the same license as the Genesis 1.9 package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2013-05-16 12:01:27+0000\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/0.1\n"
|
11 |
-
"Project-Id-Version: Genesis 1.9\n"
|
12 |
-
|
13 |
-
#: lib/admin/whats-new.php:72
|
14 |
-
msgid "You may notice that the default Genesis style sheet is a bit shorter, and on the front end looks different. We've updated the default design and extended the width of the layout to 1152px. Now you've got more real estate to showcase your content."
|
15 |
-
msgstr ""
|
16 |
-
"Jy sal agterkom dat die gewone Genesis styl blad korter is, en anders lyk. Ons het die gewone ontwerp verander en die wydte vergroot na 1152px. Jy het nou meer spasie om jou inhoud te vertoon.\n"
|
17 |
-
"\n"
|
18 |
-
" "
|
19 |
-
|
20 |
-
#: 404.php:33
|
21 |
-
msgid "Not Found, Error 404"
|
22 |
-
msgstr "Nie Gevind, Fout 404"
|
23 |
-
|
24 |
-
#: 404.php:35
|
25 |
-
msgid "The page you are looking for no longer exists. Perhaps you can return back to the site's <a href=\"%s\">homepage</a> and see if you can find what you are looking for. Or, you can try finding it with the information below."
|
26 |
-
msgstr "Die bladsy waarvoor jy soek bestaan nie meer nie. Dalk moet jy terug draai na die webtuiste <a href=\"%s\">homepage</a> en sien of jy iets kry waarvoor jy soek. Of jy kan probeer dit kry met die inligting onderaan."
|
27 |
-
|
28 |
-
#: 404.php:39 lib/structure/post.php:219 page_archive.php:35
|
29 |
-
msgid "Pages:"
|
30 |
-
msgstr "Bladsye:"
|
31 |
-
|
32 |
-
#: 404.php:44 page_archive.php:40
|
33 |
-
msgid "Categories:"
|
34 |
-
msgstr "Kategorieë"
|
35 |
-
|
36 |
-
#: 404.php:53 page_archive.php:49
|
37 |
-
msgid "Authors:"
|
38 |
-
msgstr "Skrywers:"
|
39 |
-
|
40 |
-
#: 404.php:58 page_archive.php:54
|
41 |
-
msgid "Monthly:"
|
42 |
-
msgstr "Maandeliks"
|
43 |
-
|
44 |
-
#: 404.php:63 page_archive.php:59
|
45 |
-
msgid "Recent Posts:"
|
46 |
-
msgstr "Onlangse Inskrywings"
|
47 |
-
|
48 |
-
#: comments.php:24
|
49 |
-
msgid "This post is password protected. Enter the password to view comments."
|
50 |
-
msgstr "Hierdie pos word met 'n wagwoord beskerm."
|
51 |
-
|
52 |
-
#: lib/admin/import-export.php:45
|
53 |
-
msgid "Genesis - Import/Export"
|
54 |
-
msgstr "Genesis - Invoer/Uitvoer"
|
55 |
-
|
56 |
-
#: lib/admin/import-export.php:46
|
57 |
-
msgid "Import/Export"
|
58 |
-
msgstr "Invoer/Uitvoer"
|
59 |
-
|
60 |
-
#: lib/admin/import-export.php:81
|
61 |
-
msgid "Import Genesis Settings File"
|
62 |
-
msgstr "Voer Genesis Stellings Lêer In"
|
63 |
-
|
64 |
-
#: lib/admin/import-export.php:83
|
65 |
-
msgid "Upload the data file (<code>.json</code>) from your computer and we'll import your settings."
|
66 |
-
msgstr "Laai die data lêer (<code>.json</code>) op vanaf jou rekenaar en ons sal jou stellings invoer."
|
67 |
-
|
68 |
-
#: lib/admin/import-export.php:84
|
69 |
-
msgid "Choose the file from your computer and click \"Upload file and Import\""
|
70 |
-
msgstr "Kies die lêer op jou rekenaar en klik op \"Laai Lêer Op en Voer Dit In\""
|
71 |
-
|
72 |
-
#: lib/admin/import-export.php:89
|
73 |
-
msgid "Upload File: (Maximum Size: %s)"
|
74 |
-
msgstr "Laai Lêer Op: (Maksimum Grootte: %s)"
|
75 |
-
|
76 |
-
#: lib/admin/import-export.php:92
|
77 |
-
msgid "Upload File and Import"
|
78 |
-
msgstr "Laai Lêer Op en Voer Dit In"
|
79 |
-
|
80 |
-
#: lib/admin/import-export.php:100
|
81 |
-
msgid "Export Genesis Settings File"
|
82 |
-
msgstr "Voer die Genesis stellings uit."
|
83 |
-
|
84 |
-
#: lib/admin/import-export.php:102
|
85 |
-
msgid "When you click the button below, Genesis will generate a data file (<code>.json</code>) for you to save to your computer."
|
86 |
-
msgstr "As jy op die knoppie onder klik, sal Genesis 'n data lêer genereer (<code>.json</code>) sodat jy dit op jou rekenaar kan stoor."
|
87 |
-
|
88 |
-
#: lib/admin/import-export.php:103
|
89 |
-
msgid "Once you have saved the download file, you can use the import function on another site to import this data."
|
90 |
-
msgstr "Sodra jy die lêer gestoor het, kan jy die invoer funksie op 'n ander webtuiste gebruik om die informasie in te voer."
|
91 |
-
|
92 |
-
#: lib/admin/import-export.php:110
|
93 |
-
msgid "Download Export File"
|
94 |
-
msgstr "Laai die uitvoer lêer af"
|
95 |
-
|
96 |
-
#: lib/admin/import-export.php:142
|
97 |
-
msgid "Settings successfully imported."
|
98 |
-
msgstr "Verstellings suksesvol ingevoer"
|
99 |
-
|
100 |
-
#: lib/admin/import-export.php:144
|
101 |
-
msgid "There was a problem importing your settings. Please try again."
|
102 |
-
msgstr "Daar was 'n probleem met die invoer van jou stellings. Probeer asseblief weer."
|
103 |
-
|
104 |
-
#: lib/admin/import-export.php:162 lib/admin/theme-settings.php:58
|
105 |
-
#: lib/admin/theme-settings.php:59
|
106 |
-
msgid "Theme Settings"
|
107 |
-
msgstr "Tema verstellings"
|
108 |
-
|
109 |
-
#: lib/admin/import-export.php:166 lib/admin/seo-settings.php:44
|
110 |
-
msgid "SEO Settings"
|
111 |
-
msgstr "SEO Verstellings"
|
112 |
-
|
113 |
-
#: lib/admin/import-export.php:188
|
114 |
-
msgid "No export options available."
|
115 |
-
msgstr "Geen uitvoer keuses beskikbaar."
|
116 |
-
|
117 |
-
#: lib/admin/inpost-metaboxes.php:33 lib/admin/term-meta.php:119
|
118 |
-
#: lib/admin/user-meta.php:182
|
119 |
-
msgid "Theme SEO Settings"
|
120 |
-
msgstr "Tema uitvoer verstellings."
|
121 |
-
|
122 |
-
#: lib/admin/inpost-metaboxes.php:54
|
123 |
-
msgid "Custom Document Title"
|
124 |
-
msgstr "Doelgemaakte dokument titel"
|
125 |
-
|
126 |
-
#: lib/admin/inpost-metaboxes.php:54 lib/admin/inpost-metaboxes.php:57
|
127 |
-
msgid "Characters Used: %s"
|
128 |
-
msgstr "Karakters gebruik: %s"
|
129 |
-
|
130 |
-
#: lib/admin/inpost-metaboxes.php:57
|
131 |
-
msgid "Custom Post/Page Meta Description"
|
132 |
-
msgstr "Doelgemaakte Pos/Bladsy Meta beskrywing"
|
133 |
-
|
134 |
-
#: lib/admin/inpost-metaboxes.php:60
|
135 |
-
msgid "Custom Post/Page Meta Keywords, comma separated"
|
136 |
-
msgstr "Doelgemaakte Pos/Bladsy Meta Sleutelwoorde, geskei deur kommas"
|
137 |
-
|
138 |
-
#: lib/admin/inpost-metaboxes.php:63
|
139 |
-
msgid "Custom Canonical URI"
|
140 |
-
msgstr "Doelgemaakte Kononiese URI"
|
141 |
-
|
142 |
-
#: lib/admin/inpost-metaboxes.php:66
|
143 |
-
msgid "Custom Redirect URI"
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: lib/admin/inpost-metaboxes.php:71 lib/admin/seo-settings.php:176
|
147 |
-
msgid "Robots Meta Settings"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: lib/admin/inpost-metaboxes.php:75 lib/admin/inpost-metaboxes.php:78
|
151 |
-
#: lib/admin/inpost-metaboxes.php:81
|
152 |
-
msgid "Apply %s to this post/page"
|
153 |
-
msgstr ""
|
154 |
-
|
155 |
-
#: lib/admin/inpost-metaboxes.php:86
|
156 |
-
msgid "Custom Tracking/Conversion Code"
|
157 |
-
msgstr ""
|
158 |
-
|
159 |
-
#: lib/admin/inpost-metaboxes.php:161 lib/admin/term-meta.php:202
|
160 |
-
#: lib/admin/user-meta.php:246
|
161 |
-
msgid "Layout Settings"
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: lib/admin/inpost-metaboxes.php:185 lib/admin/term-meta.php:211
|
165 |
-
#: lib/admin/user-meta.php:256
|
166 |
-
msgid "Default Layout set in <a href=\"%s\">Theme Settings</a>"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: lib/admin/inpost-metaboxes.php:192
|
170 |
-
msgid "Custom Body Class"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: lib/admin/inpost-metaboxes.php:195
|
174 |
-
msgid "Custom Post Class"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: lib/admin/readme-menu.php:40 lib/admin/readme-menu.php:41
|
178 |
-
msgid "README"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: lib/admin/readme-menu.php:68
|
182 |
-
msgid "The %s file was not found in the child theme, or it was empty."
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: lib/admin/seo-settings.php:43
|
186 |
-
msgid "Genesis - SEO Settings"
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: lib/admin/seo-settings.php:50 lib/admin/theme-settings.php:69
|
190 |
-
#: lib/classes/admin.php:104
|
191 |
-
msgid "Save Settings"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: lib/admin/seo-settings.php:51 lib/admin/theme-settings.php:70
|
195 |
-
#: lib/classes/admin.php:105
|
196 |
-
msgid "Reset Settings"
|
197 |
-
msgstr ""
|
198 |
-
|
199 |
-
#: lib/admin/seo-settings.php:52 lib/admin/theme-settings.php:71
|
200 |
-
#: lib/classes/admin.php:106
|
201 |
-
msgid "Settings saved."
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#: lib/admin/seo-settings.php:53 lib/admin/theme-settings.php:72
|
205 |
-
#: lib/classes/admin.php:107
|
206 |
-
msgid "Settings reset."
|
207 |
-
msgstr ""
|
208 |
-
|
209 |
-
#: lib/admin/seo-settings.php:54 lib/admin/theme-settings.php:73
|
210 |
-
#: lib/classes/admin.php:108
|
211 |
-
msgid "Error saving settings."
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: lib/admin/seo-settings.php:173
|
215 |
-
msgid "Document Title Settings"
|
216 |
-
msgstr ""
|
217 |
-
|
218 |
-
#: lib/admin/seo-settings.php:174
|
219 |
-
msgid "Homepage Settings"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: lib/admin/seo-settings.php:175
|
223 |
-
msgid "Document Head Settings"
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: lib/admin/seo-settings.php:177
|
227 |
-
msgid "Archives Settings"
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: lib/admin/seo-settings.php:194
|
231 |
-
msgid "The document title (%s) is the single most important element in your document source for <abbr title=\"Search engine optimization\">SEO</abbr>. It succinctly informs search engines of what information is contained in the document. The title can, and should, be different on each page, but these options will help you control what it will look like by default."
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: lib/admin/seo-settings.php:196
|
235 |
-
msgid "<strong>By default</strong>, the home page document title will contain the site title, the single post and page document titles will contain the post or page title, the archive pages will contain the archive type, etc."
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: lib/admin/seo-settings.php:200
|
239 |
-
msgid "Add site description (tagline) to %s on home page?"
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
-
#: lib/admin/seo-settings.php:205
|
243 |
-
msgid "Add site name to %s on inner pages?"
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
#: lib/admin/seo-settings.php:209
|
247 |
-
msgid "Document Title Additions Location:"
|
248 |
-
msgstr ""
|
249 |
-
|
250 |
-
#: lib/admin/seo-settings.php:210
|
251 |
-
msgid "Determines which side the added title text will go on."
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: lib/admin/seo-settings.php:214 lib/widgets/featured-page-widget.php:191
|
255 |
-
#: lib/widgets/featured-post-widget.php:290
|
256 |
-
#: lib/widgets/featured-post-widget.php:320
|
257 |
-
#: lib/widgets/user-profile-widget.php:161
|
258 |
-
msgid "Left"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: lib/admin/seo-settings.php:217 lib/widgets/featured-page-widget.php:192
|
262 |
-
#: lib/widgets/featured-post-widget.php:291
|
263 |
-
#: lib/widgets/featured-post-widget.php:321
|
264 |
-
#: lib/widgets/user-profile-widget.php:162
|
265 |
-
msgid "Right"
|
266 |
-
msgstr ""
|
267 |
-
|
268 |
-
#: lib/admin/seo-settings.php:222
|
269 |
-
msgid "Document Title Separator:"
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: lib/admin/seo-settings.php:224
|
273 |
-
msgid "If the title consists of two parts (original title and optional addition), then the separator will go in between them."
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: lib/admin/seo-settings.php:245
|
277 |
-
msgid "Which text would you like to be wrapped in %s tags?"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: lib/admin/seo-settings.php:246
|
281 |
-
msgid "The %s tag is, arguably, the second most important <abbr title=\"Search engine optimization\">SEO</abbr> tag in the document source. Choose wisely."
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#: lib/admin/seo-settings.php:250
|
285 |
-
msgid "Site Title"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: lib/admin/seo-settings.php:253
|
289 |
-
msgid "Site Description (Tagline)"
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: lib/admin/seo-settings.php:256
|
293 |
-
msgid "Neither. I'll manually wrap my own text on the homepage"
|
294 |
-
msgstr ""
|
295 |
-
|
296 |
-
#: lib/admin/seo-settings.php:260
|
297 |
-
msgid "Homepage Document Title:"
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
#: lib/admin/seo-settings.php:262
|
301 |
-
msgid "If you leave the document title field blank, your site’s title will be used instead."
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: lib/admin/seo-settings.php:266
|
305 |
-
msgid "Home Meta Description:"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: lib/admin/seo-settings.php:268
|
309 |
-
msgid "The meta description can be used to determine the text used under the title on search engine results pages."
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: lib/admin/seo-settings.php:272
|
313 |
-
msgid "Home Meta Keywords (comma separated):"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: lib/admin/seo-settings.php:274
|
317 |
-
msgid "Keywords are generally ignored by Search Engines."
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#: lib/admin/seo-settings.php:277
|
321 |
-
msgid "Homepage Robots Meta Tags:"
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: lib/admin/seo-settings.php:281 lib/admin/seo-settings.php:284
|
325 |
-
#: lib/admin/seo-settings.php:287
|
326 |
-
msgid "Apply %s to the homepage?"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: lib/admin/seo-settings.php:290
|
330 |
-
msgid "Homepage Author"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: lib/admin/seo-settings.php:293
|
334 |
-
msgid "Select the user that you would like to be used as the %s for the homepage. Be sure the user you select has entered their Google+ profile address on the profile edit screen."
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: lib/admin/seo-settings.php:298
|
338 |
-
msgid "Select User"
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#: lib/admin/seo-settings.php:321
|
342 |
-
msgid "By default, WordPress places several tags in your document %1$s. Most of these tags are completely unnecessary, and provide no <abbr title=\"Search engine optimization\">SEO</abbr> value whatsoever; they just make your site slower to load. Choose which tags you would like included in your document %1$s. If you do not know what something is, leave it unchecked."
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: lib/admin/seo-settings.php:323
|
346 |
-
msgid "Relationship Link Tags:"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: lib/admin/seo-settings.php:327
|
350 |
-
msgid "Adjacent Posts %s link tags"
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: lib/admin/seo-settings.php:330
|
354 |
-
msgid "Windows Live Writer Support:"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: lib/admin/seo-settings.php:334
|
358 |
-
msgid "Include Windows Live Writer Support Tag?"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: lib/admin/seo-settings.php:337
|
362 |
-
msgid "Shortlink Tag:"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: lib/admin/seo-settings.php:341
|
366 |
-
msgid "Include Shortlink tag?"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: lib/admin/seo-settings.php:344
|
370 |
-
msgid "<span class=\"genesis-admin-note\">Note:</span> The shortlink tag might have some use for 3rd party service discoverability, but it has no <abbr title=\"Search engine optimization\">SEO</abbr> value whatsoever."
|
371 |
-
msgstr ""
|
372 |
-
|
373 |
-
#: lib/admin/seo-settings.php:366
|
374 |
-
msgid "Depending on your situation, you may or may not want the following archive pages to be indexed by search engines. Only you can make that determination."
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: lib/admin/seo-settings.php:370 lib/admin/seo-settings.php:394
|
378 |
-
msgid "Apply %s to Category Archives?"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: lib/admin/seo-settings.php:373 lib/admin/seo-settings.php:397
|
382 |
-
msgid "Apply %s to Tag Archives?"
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: lib/admin/seo-settings.php:376 lib/admin/seo-settings.php:400
|
386 |
-
msgid "Apply %s to Author Archives?"
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: lib/admin/seo-settings.php:379 lib/admin/seo-settings.php:403
|
390 |
-
msgid "Apply %s to Date Archives?"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: lib/admin/seo-settings.php:382 lib/admin/seo-settings.php:406
|
394 |
-
msgid "Apply %s to Search Archives?"
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: lib/admin/seo-settings.php:385
|
398 |
-
msgid "Some search engines will cache pages in your site (e.g. Google Cache). The %1$s tag will prevent them from doing so. Choose which archives you want %1$s applied to."
|
399 |
-
msgstr ""
|
400 |
-
|
401 |
-
#: lib/admin/seo-settings.php:389
|
402 |
-
msgid "Apply %s to Entire Site?"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: lib/admin/seo-settings.php:409
|
406 |
-
msgid "Occasionally, search engines use resources like the Open Directory Project and the Yahoo! Directory to find titles and descriptions for your content. Generally, you will not want them to do this. The %s and %s tags prevent them from doing so."
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
#: lib/admin/seo-settings.php:413 lib/admin/seo-settings.php:416
|
410 |
-
msgid "Apply %s to your site?"
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: lib/admin/seo-settings.php:437
|
414 |
-
msgid "Canonical Paginated Archives"
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
#: lib/admin/seo-settings.php:440
|
418 |
-
msgid "This option points search engines to the first page of an archive, if viewing a paginated page. If you do not know what this means, leave it on."
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: lib/admin/term-meta.php:55
|
422 |
-
msgid "Archive Settings"
|
423 |
-
msgstr ""
|
424 |
-
|
425 |
-
#: lib/admin/term-meta.php:59
|
426 |
-
msgid "Archive Headline"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: lib/admin/term-meta.php:62
|
430 |
-
msgid "Leave empty if you do not want to display a headline."
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: lib/admin/term-meta.php:66
|
434 |
-
msgid "Archive Intro Text"
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: lib/admin/term-meta.php:69
|
438 |
-
msgid "Leave empty if you do not want to display any intro text."
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
#: lib/admin/term-meta.php:123 lib/admin/user-meta.php:187
|
442 |
-
msgid "Custom Document %s"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: lib/admin/term-meta.php:130 lib/admin/user-meta.php:194
|
446 |
-
msgid "%s Description"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: lib/admin/term-meta.php:137 lib/admin/user-meta.php:201
|
450 |
-
msgid "%s Keywords"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: lib/admin/term-meta.php:140 lib/admin/user-meta.php:204
|
454 |
-
msgid "Comma separated list"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: lib/admin/term-meta.php:145 lib/admin/user-meta.php:209
|
458 |
-
msgid "Robots Meta"
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: lib/admin/term-meta.php:148 lib/admin/term-meta.php:150
|
462 |
-
#: lib/admin/term-meta.php:152 lib/admin/user-meta.php:212
|
463 |
-
#: lib/admin/user-meta.php:214 lib/admin/user-meta.php:216
|
464 |
-
msgid "Apply %s to this archive?"
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: lib/admin/term-meta.php:206 lib/admin/user-meta.php:251
|
468 |
-
msgid "Choose Layout"
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: lib/admin/theme-settings.php:91
|
472 |
-
msgid "Follow me on Twitter"
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: lib/admin/theme-settings.php:221
|
476 |
-
msgid "Information"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: lib/admin/theme-settings.php:224
|
480 |
-
msgid "Color Style"
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: lib/admin/theme-settings.php:226
|
484 |
-
msgid "Custom Feeds"
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: lib/admin/theme-settings.php:227
|
488 |
-
msgid "Default Layout"
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#: lib/admin/theme-settings.php:230
|
492 |
-
msgid "Header"
|
493 |
-
msgstr ""
|
494 |
-
|
495 |
-
#: lib/admin/theme-settings.php:233
|
496 |
-
msgid "Navigation"
|
497 |
-
msgstr ""
|
498 |
-
|
499 |
-
#: lib/admin/theme-settings.php:236
|
500 |
-
msgid "Breadcrumbs"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: lib/admin/theme-settings.php:238
|
504 |
-
msgid "Comments and Trackbacks"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: lib/admin/theme-settings.php:239
|
508 |
-
msgid "Content Archives"
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: lib/admin/theme-settings.php:240
|
512 |
-
msgid "Blog Page Template"
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: lib/admin/theme-settings.php:243
|
516 |
-
msgid "Header and Footer Scripts"
|
517 |
-
msgstr ""
|
518 |
-
|
519 |
-
#: lib/admin/theme-settings.php:284
|
520 |
-
msgid "Version:"
|
521 |
-
msgstr ""
|
522 |
-
|
523 |
-
#: lib/admin/theme-settings.php:284
|
524 |
-
msgid "Released:"
|
525 |
-
msgstr ""
|
526 |
-
|
527 |
-
#: lib/admin/theme-settings.php:288
|
528 |
-
msgid "Display Theme Information in your document source"
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: lib/admin/theme-settings.php:292
|
532 |
-
msgid "This can be helpful for diagnosing problems with your theme when seeking assistance in the <a href=\"%s\" target=\"_blank\">support forums</a>."
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
#: lib/admin/theme-settings.php:296
|
536 |
-
msgid "Enable Automatic Updates"
|
537 |
-
msgstr ""
|
538 |
-
|
539 |
-
#: lib/admin/theme-settings.php:301
|
540 |
-
msgid "Notify"
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: lib/admin/theme-settings.php:303
|
544 |
-
msgid "when updates are available"
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: lib/admin/theme-settings.php:306
|
548 |
-
msgid "If you provide an email address above, your blog can email you when a new version of Genesis is available."
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: lib/admin/theme-settings.php:329
|
552 |
-
msgid "Color Style:"
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: lib/admin/theme-settings.php:331 lib/tools/post-templates.php:159
|
556 |
-
msgid "Default"
|
557 |
-
msgstr ""
|
558 |
-
|
559 |
-
#: lib/admin/theme-settings.php:343
|
560 |
-
msgid "Please select the color style from the drop down list and save your settings."
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: lib/admin/theme-settings.php:389
|
564 |
-
msgid "Use for site title/logo:"
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: lib/admin/theme-settings.php:391
|
568 |
-
msgid "Dynamic text"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: lib/admin/theme-settings.php:392
|
572 |
-
msgid "Image logo"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: lib/admin/theme-settings.php:418
|
576 |
-
msgid "In order to use the navigation menus, you must build a <a href=\"%s\">custom menu</a>, then assign it to the proper Menu Location."
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
#: lib/admin/theme-settings.php:423
|
580 |
-
msgid "Primary Navigation"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: lib/admin/theme-settings.php:427 lib/admin/theme-settings.php:465
|
584 |
-
msgid "Enable Fancy Dropdowns?"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: lib/admin/theme-settings.php:432
|
588 |
-
msgid "Enable Extras on Right Side?"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: lib/admin/theme-settings.php:437
|
592 |
-
msgid "Display the following:"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: lib/admin/theme-settings.php:439
|
596 |
-
msgid "Today's date"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: lib/admin/theme-settings.php:440
|
600 |
-
msgid "RSS feed links"
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: lib/admin/theme-settings.php:441
|
604 |
-
msgid "Search form"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: lib/admin/theme-settings.php:442
|
608 |
-
msgid "Twitter link"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: lib/admin/theme-settings.php:447
|
612 |
-
msgid "Enter Twitter ID:"
|
613 |
-
msgstr ""
|
614 |
-
|
615 |
-
#: lib/admin/theme-settings.php:451
|
616 |
-
msgid "Twitter Link Text:"
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: lib/admin/theme-settings.php:461
|
620 |
-
msgid "Secondary Navigation"
|
621 |
-
msgstr ""
|
622 |
-
|
623 |
-
#: lib/admin/theme-settings.php:487
|
624 |
-
msgid "Enter your custom feed URI:"
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: lib/admin/theme-settings.php:491 lib/admin/theme-settings.php:499
|
628 |
-
msgid "Redirect Feed?"
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
-
#: lib/admin/theme-settings.php:495
|
632 |
-
msgid "Enter your custom comments feed URI:"
|
633 |
-
msgstr ""
|
634 |
-
|
635 |
-
#: lib/admin/theme-settings.php:502
|
636 |
-
msgid "If your custom feed(s) are not handled by Feedburner, we do not recommend that you use the redirect options."
|
637 |
-
msgstr ""
|
638 |
-
|
639 |
-
#: lib/admin/theme-settings.php:521
|
640 |
-
msgid "Enable Comments"
|
641 |
-
msgstr "Aktiveer Kommentaar"
|
642 |
-
|
643 |
-
#: lib/admin/theme-settings.php:523 lib/admin/theme-settings.php:532
|
644 |
-
msgid "on posts?"
|
645 |
-
msgstr ""
|
646 |
-
|
647 |
-
#: lib/admin/theme-settings.php:526 lib/admin/theme-settings.php:535
|
648 |
-
msgid "on pages?"
|
649 |
-
msgstr ""
|
650 |
-
|
651 |
-
#: lib/admin/theme-settings.php:530
|
652 |
-
msgid "Enable Trackbacks"
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: lib/admin/theme-settings.php:538
|
656 |
-
msgid "Comments and Trackbacks can also be disabled on a per post/page basis when creating/editing posts/pages."
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: lib/admin/theme-settings.php:556
|
660 |
-
msgid "Enable on:"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: lib/admin/theme-settings.php:560
|
664 |
-
msgid "Front Page"
|
665 |
-
msgstr ""
|
666 |
-
|
667 |
-
#: lib/admin/theme-settings.php:563
|
668 |
-
msgid "Posts Page"
|
669 |
-
msgstr ""
|
670 |
-
|
671 |
-
#: lib/admin/theme-settings.php:566
|
672 |
-
msgid "Homepage"
|
673 |
-
msgstr ""
|
674 |
-
|
675 |
-
#: lib/admin/theme-settings.php:570 lib/structure/menu.php:149
|
676 |
-
msgid "Posts"
|
677 |
-
msgstr ""
|
678 |
-
|
679 |
-
#: lib/admin/theme-settings.php:573
|
680 |
-
msgid "Pages"
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: lib/admin/theme-settings.php:576
|
684 |
-
msgid "Archives"
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
#: lib/admin/theme-settings.php:579
|
688 |
-
msgid "404 Page"
|
689 |
-
msgstr ""
|
690 |
-
|
691 |
-
#: lib/admin/theme-settings.php:582
|
692 |
-
msgid "Attachment Page"
|
693 |
-
msgstr ""
|
694 |
-
|
695 |
-
#: lib/admin/theme-settings.php:585
|
696 |
-
msgid "Breadcrumbs are a great way of letting your visitors find out where they are on your site with just a glance. You can enable/disable them on certain areas of your site."
|
697 |
-
msgstr ""
|
698 |
-
|
699 |
-
#: lib/admin/theme-settings.php:605
|
700 |
-
msgid "Select one of the following:"
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: lib/admin/theme-settings.php:611
|
704 |
-
msgid "Display post content"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: lib/admin/theme-settings.php:612
|
708 |
-
msgid "Display post excerpts"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: lib/admin/theme-settings.php:623 lib/widgets/featured-post-widget.php:353
|
712 |
-
msgid "Limit content to"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: lib/admin/theme-settings.php:625 lib/widgets/featured-post-widget.php:355
|
716 |
-
msgid "characters"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: lib/admin/theme-settings.php:628
|
720 |
-
msgid "Using this option will limit the text and strip all formatting from the text displayed. To use this option, choose \"Display post content\" in the select box above."
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: lib/admin/theme-settings.php:633
|
724 |
-
msgid "Include the Featured Image?"
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: lib/admin/theme-settings.php:637
|
728 |
-
msgid "Image Size:"
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: lib/admin/theme-settings.php:648
|
732 |
-
msgid "Select Post Navigation Technique:"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: lib/admin/theme-settings.php:650
|
736 |
-
msgid "Older / Newer"
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: lib/admin/theme-settings.php:651
|
740 |
-
msgid "Previous / Next"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: lib/admin/theme-settings.php:652
|
744 |
-
msgid "Numeric"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: lib/admin/theme-settings.php:656
|
748 |
-
msgid "These options will affect any blog listings page, including archive, author, blog, category, search, and tag pages."
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: lib/admin/theme-settings.php:674
|
752 |
-
msgid "These settings apply to any page given the \"Blog\" page template, not the homepage or post archive pages."
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: lib/admin/theme-settings.php:679
|
756 |
-
msgid "Display which category:"
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: lib/admin/theme-settings.php:680 lib/widgets/featured-post-widget.php:231
|
760 |
-
msgid "All Categories"
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: lib/admin/theme-settings.php:684
|
764 |
-
msgid "Exclude the following Category IDs:"
|
765 |
-
msgstr ""
|
766 |
-
|
767 |
-
#: lib/admin/theme-settings.php:686
|
768 |
-
msgid "Comma separated - 1,2,3 for example"
|
769 |
-
msgstr ""
|
770 |
-
|
771 |
-
#: lib/admin/theme-settings.php:691
|
772 |
-
msgid "Number of Posts to Show:"
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: lib/admin/theme-settings.php:712 lib/admin/theme-settings.php:722
|
776 |
-
msgid "Enter scripts or code you would like output to %s:"
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: lib/admin/theme-settings.php:717 lib/admin/theme-settings.php:727
|
780 |
-
msgid "The %1$s hook executes immediately before the closing %2$s tag in the document source."
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: lib/admin/user-meta.php:25
|
784 |
-
msgid "Google+"
|
785 |
-
msgstr ""
|
786 |
-
|
787 |
-
#: lib/admin/user-meta.php:73
|
788 |
-
msgid "User Permissions"
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: lib/admin/user-meta.php:77
|
792 |
-
msgid "Genesis Admin Menus"
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: lib/admin/user-meta.php:80
|
796 |
-
msgid "Enable Genesis Admin Menu?"
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: lib/admin/user-meta.php:82
|
800 |
-
msgid "Enable SEO Settings Submenu?"
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: lib/admin/user-meta.php:84
|
804 |
-
msgid "Enable Import/Export Submenu?"
|
805 |
-
msgstr ""
|
806 |
-
|
807 |
-
#: lib/admin/user-meta.php:119
|
808 |
-
msgid "Author Archive Settings"
|
809 |
-
msgstr ""
|
810 |
-
|
811 |
-
#: lib/admin/user-meta.php:120 lib/admin/user-meta.php:183
|
812 |
-
#: lib/admin/user-meta.php:247
|
813 |
-
msgid "These settings apply to this author's archive pages."
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#: lib/admin/user-meta.php:124
|
817 |
-
msgid "Custom Archive Headline"
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: lib/admin/user-meta.php:127
|
821 |
-
msgid "Will display in the %s tag at the top of the first page"
|
822 |
-
msgstr ""
|
823 |
-
|
824 |
-
#: lib/admin/user-meta.php:132
|
825 |
-
msgid "Custom Description Text"
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: lib/admin/user-meta.php:135
|
829 |
-
msgid "This text will be the first paragraph, and display on the first page"
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#: lib/admin/user-meta.php:140
|
833 |
-
msgid "Author Box"
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#: lib/admin/user-meta.php:143
|
837 |
-
msgid "Enable Author Box on this User's Posts?"
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: lib/admin/user-meta.php:145
|
841 |
-
msgid "Enable Author Box on this User's Archives?"
|
842 |
-
msgstr ""
|
843 |
-
|
844 |
-
#: lib/admin/whats-new.php:38
|
845 |
-
msgid "Welcome to Genesis %s"
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: lib/admin/whats-new.php:65
|
849 |
-
msgid "Thank you for updating to the latest version! Using Genesis %s will give you more options than you've ever had and your website will continue to purr like a kitten."
|
850 |
-
msgstr ""
|
851 |
-
|
852 |
-
#: lib/admin/whats-new.php:68
|
853 |
-
msgid "What’s New"
|
854 |
-
msgstr ""
|
855 |
-
|
856 |
-
#: lib/admin/whats-new.php:71
|
857 |
-
msgid "Updated Design and Wider Layout"
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: lib/admin/whats-new.php:73
|
861 |
-
msgid "Updated Security Audit"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: lib/admin/whats-new.php:74
|
865 |
-
msgid "It's very important to us that we provide you the absolute best framework possible, so once again we hired WordPress Lead Developer Mark Jaquith to perform a full review of code for security as he's done in the past."
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: lib/admin/whats-new.php:75
|
869 |
-
msgid "Google Author Highlights"
|
870 |
-
msgstr ""
|
871 |
-
|
872 |
-
#: lib/admin/whats-new.php:76
|
873 |
-
msgid "Genesis now offers support for author highlighting. This allows Google to associate your content with your Google+ content. Just edit your profile, find the field where you can enter your Google+ account URL, and save. Genesis does the rest. And if you want to associate an author with the homepage, you can do that in SEO Settings."
|
874 |
-
msgstr ""
|
875 |
-
|
876 |
-
#: lib/admin/whats-new.php:78
|
877 |
-
msgid "Deprecating Widgets"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: lib/admin/whats-new.php:79
|
881 |
-
msgid "Genesis has always included some useful widgets to help you build your sites faster and easier. But lately, we realized that some of these widgets should really be plugins, so authors can push out updates more frequently, and you get more up to date code. So, the \"eNews & Updates\" and \"Latest Tweets\" widgets are being ported to plugins, and will eventually be removed from Genesis."
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: lib/admin/whats-new.php:81
|
885 |
-
msgid "Genesis Category/Page Menu Widgets Removed"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: lib/admin/whats-new.php:82
|
889 |
-
msgid "We deprecated the Category and Page menu widgets a few releases ago, and as of this release, we've completely removed them from the framework. If you were still using either of these widgets, you will notice that your menu is no longer showing."
|
890 |
-
msgstr ""
|
891 |
-
|
892 |
-
#: lib/admin/whats-new.php:83
|
893 |
-
msgid "You will need to build a <a href=\"%s\">custom menu</a> and add the custom menu widget to the Header Right widget area."
|
894 |
-
msgstr ""
|
895 |
-
|
896 |
-
#: lib/admin/whats-new.php:85
|
897 |
-
msgid "Other Geeky Stuff"
|
898 |
-
msgstr ""
|
899 |
-
|
900 |
-
#: lib/admin/whats-new.php:86
|
901 |
-
msgid "We also fixed a lot of little bugs, improved some things, and generally made the framework a more solid foundation for you to use. We hope you enjoy this latest release!"
|
902 |
-
msgstr ""
|
903 |
-
|
904 |
-
#: lib/admin/whats-new.php:91
|
905 |
-
msgid "Genesis 2.0 Roadmap"
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: lib/admin/whats-new.php:93
|
909 |
-
msgid "Support for HTML5 Markup"
|
910 |
-
msgstr ""
|
911 |
-
|
912 |
-
#: lib/admin/whats-new.php:94
|
913 |
-
msgid "We have big plans for a new markup structure in Genesis 2.0, all built with HTML5."
|
914 |
-
msgstr ""
|
915 |
-
|
916 |
-
#: lib/admin/whats-new.php:96
|
917 |
-
msgid "A New Mobile Strategy"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
-
#: lib/admin/whats-new.php:97
|
921 |
-
msgid "In case you can't tell, we're big fans of designing for mobile devices around here. So, we're going to be doing some things that will make it a whole lot easier to get your site mobile ready with Genesis in 2.0."
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: lib/admin/whats-new.php:103
|
925 |
-
msgid "Project Leads"
|
926 |
-
msgstr ""
|
927 |
-
|
928 |
-
#: lib/admin/whats-new.php:109 lib/admin/whats-new.php:114
|
929 |
-
#: lib/admin/whats-new.php:119
|
930 |
-
msgid "Lead Developer"
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
#: lib/admin/whats-new.php:127
|
934 |
-
msgid "Contributors"
|
935 |
-
msgstr ""
|
936 |
-
|
937 |
-
#: lib/admin/whats-new.php:133 lib/admin/whats-new.php:138
|
938 |
-
#: lib/admin/whats-new.php:143 lib/admin/whats-new.php:148
|
939 |
-
#: lib/admin/whats-new.php:153 lib/admin/whats-new.php:158
|
940 |
-
#: lib/admin/whats-new.php:163 lib/admin/whats-new.php:168
|
941 |
-
#: lib/admin/whats-new.php:173 lib/admin/whats-new.php:178
|
942 |
-
msgid "Contributor"
|
943 |
-
msgstr ""
|
944 |
-
|
945 |
-
#: lib/admin/whats-new.php:185
|
946 |
-
msgid "Go to Theme Settings →"
|
947 |
-
msgstr ""
|
948 |
-
|
949 |
-
#: lib/admin/whats-new.php:186
|
950 |
-
msgid "Go to SEO Settings →"
|
951 |
-
msgstr ""
|
952 |
-
|
953 |
-
#: lib/classes/admin.php:118
|
954 |
-
msgid "You cannot use %s to create two menus in the same subclass. Please use separate subclasses for each menu."
|
955 |
-
msgstr ""
|
956 |
-
|
957 |
-
#: lib/classes/admin.php:415 lib/classes/admin.php:424
|
958 |
-
#: lib/classes/admin.php:527 lib/classes/admin.php:546
|
959 |
-
msgid "Are you sure you want to reset?"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: lib/classes/breadcrumb.php:54 lib/functions/menu.php:133
|
963 |
-
msgid "Home"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: lib/classes/breadcrumb.php:63
|
967 |
-
msgid "You are here: "
|
968 |
-
msgstr "Jy is hier:"
|
969 |
-
|
970 |
-
#: lib/classes/breadcrumb.php:64 lib/classes/breadcrumb.php:65
|
971 |
-
#: lib/classes/breadcrumb.php:66 lib/classes/breadcrumb.php:67
|
972 |
-
#: lib/classes/breadcrumb.php:69 lib/classes/breadcrumb.php:70
|
973 |
-
msgid "Archives for "
|
974 |
-
msgstr "Argiewe vir"
|
975 |
-
|
976 |
-
#: lib/classes/breadcrumb.php:68
|
977 |
-
msgid "Search for "
|
978 |
-
msgstr "Soek vir"
|
979 |
-
|
980 |
-
#: lib/classes/breadcrumb.php:71
|
981 |
-
msgid "Not found: "
|
982 |
-
msgstr "Nie gevind"
|
983 |
-
|
984 |
-
#: lib/classes/breadcrumb.php:120 lib/classes/breadcrumb.php:215
|
985 |
-
#: lib/classes/breadcrumb.php:281
|
986 |
-
msgid "View %s"
|
987 |
-
msgstr "Wys %s"
|
988 |
-
|
989 |
-
#: lib/classes/breadcrumb.php:300
|
990 |
-
msgid "View all posts in %s"
|
991 |
-
msgstr "Wys alle pos in %s"
|
992 |
-
|
993 |
-
#: lib/classes/breadcrumb.php:321
|
994 |
-
msgid "View all %s"
|
995 |
-
msgstr "Wys alles %s"
|
996 |
-
|
997 |
-
#: lib/classes/breadcrumb.php:403 lib/classes/breadcrumb.php:427
|
998 |
-
msgid "View archives for %s"
|
999 |
-
msgstr "Wys argiewe vir %s"
|
1000 |
-
|
1001 |
-
#: lib/classes/breadcrumb.php:433
|
1002 |
-
msgid "View archives for %s %s"
|
1003 |
-
msgstr "Wys argiewe vir %s %s"
|
1004 |
-
|
1005 |
-
#: lib/classes/breadcrumb.php:525
|
1006 |
-
msgid "View all items in %s"
|
1007 |
-
msgstr "Wys alle items in %s"
|
1008 |
-
|
1009 |
-
#: lib/functions/admin.php:15
|
1010 |
-
msgid "This file no longer needs to be included."
|
1011 |
-
msgstr ""
|
1012 |
-
|
1013 |
-
#: lib/functions/formatting.php:292
|
1014 |
-
msgctxt "time difference"
|
1015 |
-
msgid "seconds"
|
1016 |
-
msgstr ""
|
1017 |
-
|
1018 |
-
#: lib/functions/formatting.php:296
|
1019 |
-
msgctxt "time difference"
|
1020 |
-
msgid "%s year"
|
1021 |
-
msgid_plural "%s years"
|
1022 |
-
msgstr[0] ""
|
1023 |
-
msgstr[1] ""
|
1024 |
-
|
1025 |
-
#: lib/functions/formatting.php:297
|
1026 |
-
msgctxt "time difference"
|
1027 |
-
msgid "%s month"
|
1028 |
-
msgid_plural "%s months"
|
1029 |
-
msgstr[0] ""
|
1030 |
-
msgstr[1] ""
|
1031 |
-
|
1032 |
-
#: lib/functions/formatting.php:298
|
1033 |
-
msgctxt "time difference"
|
1034 |
-
msgid "%s week"
|
1035 |
-
msgid_plural "%s weeks"
|
1036 |
-
msgstr[0] ""
|
1037 |
-
msgstr[1] ""
|
1038 |
-
|
1039 |
-
#: lib/functions/formatting.php:299
|
1040 |
-
msgctxt "time difference"
|
1041 |
-
msgid "%s day"
|
1042 |
-
msgid_plural "%s days"
|
1043 |
-
msgstr[0] ""
|
1044 |
-
msgstr[1] ""
|
1045 |
-
|
1046 |
-
#: lib/functions/formatting.php:300
|
1047 |
-
msgctxt "time difference"
|
1048 |
-
msgid "%s hour"
|
1049 |
-
msgid_plural "%s hours"
|
1050 |
-
msgstr[0] ""
|
1051 |
-
msgstr[1] ""
|
1052 |
-
|
1053 |
-
#: lib/functions/formatting.php:301
|
1054 |
-
msgctxt "time difference"
|
1055 |
-
msgid "%s minute"
|
1056 |
-
msgid_plural "%s minutes"
|
1057 |
-
msgstr[0] ""
|
1058 |
-
msgstr[1] ""
|
1059 |
-
|
1060 |
-
#: lib/functions/formatting.php:302
|
1061 |
-
msgctxt "time difference"
|
1062 |
-
msgid "%s second"
|
1063 |
-
msgid_plural "%s seconds"
|
1064 |
-
msgstr[0] ""
|
1065 |
-
msgstr[1] ""
|
1066 |
-
|
1067 |
-
#: lib/functions/formatting.php:327
|
1068 |
-
msgctxt "separator in time difference"
|
1069 |
-
msgid "and"
|
1070 |
-
msgstr ""
|
1071 |
-
|
1072 |
-
#: lib/functions/layout.php:37
|
1073 |
-
msgid "Content-Sidebar"
|
1074 |
-
msgstr ""
|
1075 |
-
|
1076 |
-
#: lib/functions/layout.php:46
|
1077 |
-
msgid "Sidebar-Content"
|
1078 |
-
msgstr ""
|
1079 |
-
|
1080 |
-
#: lib/functions/layout.php:54
|
1081 |
-
msgid "Content-Sidebar-Sidebar"
|
1082 |
-
msgstr ""
|
1083 |
-
|
1084 |
-
#: lib/functions/layout.php:62
|
1085 |
-
msgid "Sidebar-Sidebar-Content"
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: lib/functions/layout.php:70
|
1089 |
-
msgid "Sidebar-Content-Sidebar"
|
1090 |
-
msgstr ""
|
1091 |
-
|
1092 |
-
#: lib/functions/layout.php:78
|
1093 |
-
msgid "Full Width Content"
|
1094 |
-
msgstr ""
|
1095 |
-
|
1096 |
-
#: lib/functions/layout.php:123
|
1097 |
-
msgid "No Label Selected"
|
1098 |
-
msgstr ""
|
1099 |
-
|
1100 |
-
#: lib/functions/menu.php:104
|
1101 |
-
msgid "The argument, \"context\", has been replaced with \"theme_location\" in the $args array."
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: lib/functions/seo.php:122
|
1105 |
-
msgid "Have you tried our Scribe content marketing software? Do research, content and website optimization, and relationship building without leaving WordPress. <b>Genesis owners save big when using the special link on the special page we've created just for you</b>. <a href=\"%s\" target=\"_blank\">Click here for more info</a>."
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
#: lib/functions/seo.php:124
|
1109 |
-
msgid "Dismiss"
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: lib/functions/upgrade.php:411
|
1113 |
-
msgid "Congratulations! You are now rocking Genesis %s"
|
1114 |
-
msgstr ""
|
1115 |
-
|
1116 |
-
#: lib/functions/upgrade.php:436
|
1117 |
-
msgid "Click here to complete the upgrade"
|
1118 |
-
msgstr ""
|
1119 |
-
|
1120 |
-
#: lib/functions/upgrade.php:461
|
1121 |
-
msgid "Genesis %s is available. <a href=\"%s\" class=\"thickbox thickbox-preview\">Check out what's new</a> or <a href=\"%s\" onclick=\"return genesis_confirm('%s');\">update now</a>."
|
1122 |
-
msgstr ""
|
1123 |
-
|
1124 |
-
#: lib/functions/upgrade.php:465
|
1125 |
-
msgid "Upgrading Genesis will overwrite the current installed version of Genesis. Are you sure you want to upgrade?. \"Cancel\" to stop, \"OK\" to upgrade."
|
1126 |
-
msgstr ""
|
1127 |
-
|
1128 |
-
#: lib/functions/upgrade.php:507
|
1129 |
-
msgid "Genesis %s is available for %s"
|
1130 |
-
msgstr ""
|
1131 |
-
|
1132 |
-
#: lib/functions/upgrade.php:508
|
1133 |
-
msgid "Genesis %s is now available. We have provided 1-click updates for this theme, so please log into your dashboard and update at your earliest convenience."
|
1134 |
-
msgstr ""
|
1135 |
-
|
1136 |
-
#: lib/functions/widgetize.php:63
|
1137 |
-
msgid "Header Left"
|
1138 |
-
msgstr ""
|
1139 |
-
|
1140 |
-
#: lib/functions/widgetize.php:63
|
1141 |
-
msgid "Header Right"
|
1142 |
-
msgstr ""
|
1143 |
-
|
1144 |
-
#: lib/functions/widgetize.php:64
|
1145 |
-
msgid "This is the widget area in the header."
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
-
#: lib/functions/widgetize.php:71
|
1149 |
-
msgid "Primary Sidebar"
|
1150 |
-
msgstr ""
|
1151 |
-
|
1152 |
-
#: lib/functions/widgetize.php:72
|
1153 |
-
msgid "This is the primary sidebar if you are using a two or three column site layout option."
|
1154 |
-
msgstr ""
|
1155 |
-
|
1156 |
-
#: lib/functions/widgetize.php:79
|
1157 |
-
msgid "Secondary Sidebar"
|
1158 |
-
msgstr ""
|
1159 |
-
|
1160 |
-
#: lib/functions/widgetize.php:80
|
1161 |
-
msgid "This is the secondary sidebar if you are using a three column site layout option."
|
1162 |
-
msgstr ""
|
1163 |
-
|
1164 |
-
#: lib/functions/widgetize.php:112
|
1165 |
-
msgid "Footer %d"
|
1166 |
-
msgstr ""
|
1167 |
-
|
1168 |
-
#: lib/functions/widgetize.php:113
|
1169 |
-
msgid "Footer %d widget area."
|
1170 |
-
msgstr ""
|
1171 |
-
|
1172 |
-
#: lib/init.php:47
|
1173 |
-
msgid "Primary Navigation Menu"
|
1174 |
-
msgstr "Primêre Navigasie Spyskaart"
|
1175 |
-
|
1176 |
-
#: lib/init.php:48
|
1177 |
-
msgid "Secondary Navigation Menu"
|
1178 |
-
msgstr "Sekondêre Navigasie Spyskaart"
|
1179 |
-
|
1180 |
-
#: lib/js/load-scripts.php:85
|
1181 |
-
msgid "Select / Deselect All"
|
1182 |
-
msgstr ""
|
1183 |
-
|
1184 |
-
#: lib/shortcodes/footer.php:41
|
1185 |
-
msgid "Return to top of page"
|
1186 |
-
msgstr "Gaan terug na die bo-kant van die bladsy"
|
1187 |
-
|
1188 |
-
#: lib/shortcodes/footer.php:176
|
1189 |
-
msgid "by "
|
1190 |
-
msgstr "deur"
|
1191 |
-
|
1192 |
-
#: lib/shortcodes/footer.php:241
|
1193 |
-
msgid "Log in"
|
1194 |
-
msgstr "Skakel in"
|
1195 |
-
|
1196 |
-
#: lib/shortcodes/footer.php:243
|
1197 |
-
msgid "Log out"
|
1198 |
-
msgstr "Skakel uit"
|
1199 |
-
|
1200 |
-
#: lib/shortcodes/post.php:43
|
1201 |
-
msgid "ago"
|
1202 |
-
msgstr "terug"
|
1203 |
-
|
1204 |
-
#: lib/shortcodes/post.php:140
|
1205 |
-
msgid "Visit %s’s website"
|
1206 |
-
msgstr ""
|
1207 |
-
|
1208 |
-
#: lib/shortcodes/post.php:205 lib/widgets/featured-page-widget.php:101
|
1209 |
-
msgid "% Comments"
|
1210 |
-
msgstr "% Kommentare"
|
1211 |
-
|
1212 |
-
#: lib/shortcodes/post.php:206 lib/widgets/featured-page-widget.php:101
|
1213 |
-
msgid "1 Comment"
|
1214 |
-
msgstr "1 Kommentaar"
|
1215 |
-
|
1216 |
-
#: lib/shortcodes/post.php:207 lib/widgets/featured-page-widget.php:101
|
1217 |
-
msgid "Leave a Comment"
|
1218 |
-
msgstr "Los 'n Kommetaar"
|
1219 |
-
|
1220 |
-
#: lib/shortcodes/post.php:247
|
1221 |
-
msgid "Tagged With: "
|
1222 |
-
msgstr "Aangeheg Met:"
|
1223 |
-
|
1224 |
-
#: lib/shortcodes/post.php:282 lib/shortcodes/post.php:320
|
1225 |
-
msgid "Filed Under: "
|
1226 |
-
msgstr "Geliasseer Onder:"
|
1227 |
-
|
1228 |
-
#: lib/shortcodes/post.php:364 lib/structure/comments.php:189
|
1229 |
-
#: lib/structure/post.php:207 lib/widgets/featured-page-widget.php:103
|
1230 |
-
msgid "(Edit)"
|
1231 |
-
msgstr "Verander"
|
1232 |
-
|
1233 |
-
#: lib/structure/comments.php:63
|
1234 |
-
msgid "<h3>Comments</h3>"
|
1235 |
-
msgstr ""
|
1236 |
-
|
1237 |
-
#: lib/structure/comments.php:114
|
1238 |
-
msgid "<h3>Trackbacks</h3>"
|
1239 |
-
msgstr ""
|
1240 |
-
|
1241 |
-
#: lib/structure/comments.php:184
|
1242 |
-
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">%s:</span>"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: lib/structure/comments.php:184
|
1246 |
-
msgid "says"
|
1247 |
-
msgstr "Meer as een sê"
|
1248 |
-
|
1249 |
-
#: lib/structure/comments.php:188
|
1250 |
-
msgid "%1$s at %2$s"
|
1251 |
-
msgstr "%1$s by %2$s"
|
1252 |
-
|
1253 |
-
#: lib/structure/comments.php:195
|
1254 |
-
msgid "Your comment is awaiting moderation."
|
1255 |
-
msgstr "You kommentaar wag vir goedkeuring"
|
1256 |
-
|
1257 |
-
#: lib/structure/comments.php:252
|
1258 |
-
msgid "Name"
|
1259 |
-
msgstr "Naam"
|
1260 |
-
|
1261 |
-
#: lib/structure/comments.php:258
|
1262 |
-
msgid "Email"
|
1263 |
-
msgstr "Epos"
|
1264 |
-
|
1265 |
-
#: lib/structure/comments.php:264
|
1266 |
-
msgid "Website"
|
1267 |
-
msgstr "Webtuiste"
|
1268 |
-
|
1269 |
-
#: lib/structure/comments.php:278
|
1270 |
-
msgid "Speak Your Mind"
|
1271 |
-
msgstr "Sê jou Sê"
|
1272 |
-
|
1273 |
-
#: lib/structure/footer.php:110
|
1274 |
-
msgid "Copyright"
|
1275 |
-
msgstr "Kopiereg"
|
1276 |
-
|
1277 |
-
#: lib/structure/footer.php:110
|
1278 |
-
msgid "on"
|
1279 |
-
msgstr "op"
|
1280 |
-
|
1281 |
-
#: lib/structure/loops.php:192
|
1282 |
-
msgid "Read more"
|
1283 |
-
msgstr ""
|
1284 |
-
|
1285 |
-
#: lib/structure/menu.php:150
|
1286 |
-
msgid "Comments"
|
1287 |
-
msgstr "Kommentaar"
|
1288 |
-
|
1289 |
-
#: lib/structure/post.php:214 lib/structure/post.php:216
|
1290 |
-
msgid "[Read more...]"
|
1291 |
-
msgstr "[Lees meer...]"
|
1292 |
-
|
1293 |
-
#: lib/structure/post.php:233
|
1294 |
-
msgid "Sorry, no posts matched your criteria."
|
1295 |
-
msgstr "Jammer, geen pos vergelyk met jou kriteria."
|
1296 |
-
|
1297 |
-
#: lib/structure/post.php:259 lib/widgets/featured-page-widget.php:98
|
1298 |
-
msgid "by"
|
1299 |
-
msgstr "deur"
|
1300 |
-
|
1301 |
-
#: lib/structure/post.php:334
|
1302 |
-
msgid "About"
|
1303 |
-
msgstr "Oor Ons"
|
1304 |
-
|
1305 |
-
#: lib/structure/post.php:379
|
1306 |
-
msgid "Older Posts"
|
1307 |
-
msgstr "Ouer Pos"
|
1308 |
-
|
1309 |
-
#: lib/structure/post.php:380
|
1310 |
-
msgid "Newer Posts"
|
1311 |
-
msgstr "Nuwer Pos"
|
1312 |
-
|
1313 |
-
#: lib/structure/post.php:400 lib/structure/post.php:462
|
1314 |
-
msgid "Previous Page"
|
1315 |
-
msgstr "Vorige Bladsy"
|
1316 |
-
|
1317 |
-
#: lib/structure/post.php:401 lib/structure/post.php:492
|
1318 |
-
msgid "Next Page"
|
1319 |
-
msgstr "Volgende Bladsy"
|
1320 |
-
|
1321 |
-
#: lib/structure/search.php:23
|
1322 |
-
msgid "Search this website"
|
1323 |
-
msgstr ""
|
1324 |
-
|
1325 |
-
#: lib/structure/search.php:25
|
1326 |
-
msgid "Search"
|
1327 |
-
msgstr "Soek"
|
1328 |
-
|
1329 |
-
#: lib/structure/sidebar.php:24
|
1330 |
-
msgid "Primary Sidebar Widget Area"
|
1331 |
-
msgstr ""
|
1332 |
-
|
1333 |
-
#: lib/structure/sidebar.php:27
|
1334 |
-
msgid "This is the Primary Sidebar Widget Area. You can add content to this area by visiting your <a href=\"%s\">Widgets Panel</a> and adding new widgets to this area."
|
1335 |
-
msgstr ""
|
1336 |
-
|
1337 |
-
#: lib/structure/sidebar.php:45
|
1338 |
-
msgid "Secondary Sidebar Widget Area"
|
1339 |
-
msgstr ""
|
1340 |
-
|
1341 |
-
#: lib/structure/sidebar.php:48
|
1342 |
-
msgid "This is the Secondary Sidebar Widget Area. You can add content to this area by visiting your <a href=\"%s\">Widgets Panel</a> and adding new widgets to this area."
|
1343 |
-
msgstr ""
|
1344 |
-
|
1345 |
-
#: lib/tools/post-templates.php:132
|
1346 |
-
msgid "Single Post Template"
|
1347 |
-
msgstr ""
|
1348 |
-
|
1349 |
-
#: lib/tools/post-templates.php:157
|
1350 |
-
msgid "Post Template"
|
1351 |
-
msgstr ""
|
1352 |
-
|
1353 |
-
#: lib/tools/post-templates.php:162
|
1354 |
-
msgid "Some themes have custom templates you can use for single posts that might have additional features or custom layouts. If so, you will see them above."
|
1355 |
-
msgstr ""
|
1356 |
-
|
1357 |
-
#: lib/widgets/enews-widget.php:38
|
1358 |
-
msgid "Enter your email address ..."
|
1359 |
-
msgstr ""
|
1360 |
-
|
1361 |
-
#: lib/widgets/enews-widget.php:39
|
1362 |
-
msgid "Go"
|
1363 |
-
msgstr "Gaan"
|
1364 |
-
|
1365 |
-
#: lib/widgets/enews-widget.php:44
|
1366 |
-
msgid "Displays Feedburner email subscribe form"
|
1367 |
-
msgstr ""
|
1368 |
-
|
1369 |
-
#: lib/widgets/enews-widget.php:47
|
1370 |
-
msgid "Genesis - eNews and Updates"
|
1371 |
-
msgstr ""
|
1372 |
-
|
1373 |
-
#: lib/widgets/enews-widget.php:115 lib/widgets/enews-widget.php:124
|
1374 |
-
#: lib/widgets/latest-tweets-widget.php:181
|
1375 |
-
#: lib/widgets/latest-tweets-widget.php:190
|
1376 |
-
msgid "This widget has been deprecated, and should no longer be used."
|
1377 |
-
msgstr ""
|
1378 |
-
|
1379 |
-
#: lib/widgets/enews-widget.php:116
|
1380 |
-
msgid "If you would like to continue to use the eNews widget functionality, please have a site administrator <a href=\"%s\" target=\"_blank\">install this plugin</a> and replace this widget with the Genesis eNews Extended widget."
|
1381 |
-
msgstr ""
|
1382 |
-
|
1383 |
-
#: lib/widgets/enews-widget.php:125
|
1384 |
-
msgid "If you would like to continue to use the eNews widget functionality, please <a href=\"%s\" class=\"thickbox\" title=\"Install Genesis eNews Extended\">install this plugin</a> and replace this widget with the Genesis eNews Extended widget."
|
1385 |
-
msgstr ""
|
1386 |
-
|
1387 |
-
#: lib/widgets/featured-page-widget.php:51
|
1388 |
-
msgid "Displays featured page with thumbnails"
|
1389 |
-
msgstr ""
|
1390 |
-
|
1391 |
-
#: lib/widgets/featured-page-widget.php:60
|
1392 |
-
msgid "Genesis - Featured Page"
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
#: lib/widgets/featured-page-widget.php:159
|
1396 |
-
#: lib/widgets/featured-post-widget.php:215
|
1397 |
-
#: lib/widgets/featured-post-widget.php:251
|
1398 |
-
#: lib/widgets/featured-post-widget.php:371
|
1399 |
-
#: lib/widgets/user-profile-widget.php:136
|
1400 |
-
msgid "Title"
|
1401 |
-
msgstr ""
|
1402 |
-
|
1403 |
-
#: lib/widgets/featured-page-widget.php:164
|
1404 |
-
msgid "Page"
|
1405 |
-
msgstr "Bladsy"
|
1406 |
-
|
1407 |
-
#: lib/widgets/featured-page-widget.php:172
|
1408 |
-
#: lib/widgets/featured-post-widget.php:301
|
1409 |
-
msgid "Show Featured Image"
|
1410 |
-
msgstr ""
|
1411 |
-
|
1412 |
-
#: lib/widgets/featured-page-widget.php:176
|
1413 |
-
#: lib/widgets/featured-post-widget.php:305
|
1414 |
-
msgid "Image Size"
|
1415 |
-
msgstr ""
|
1416 |
-
|
1417 |
-
#: lib/widgets/featured-page-widget.php:188
|
1418 |
-
#: lib/widgets/featured-post-widget.php:317
|
1419 |
-
msgid "Image Alignment"
|
1420 |
-
msgstr ""
|
1421 |
-
|
1422 |
-
#: lib/widgets/featured-page-widget.php:190
|
1423 |
-
#: lib/widgets/featured-post-widget.php:289
|
1424 |
-
#: lib/widgets/featured-post-widget.php:319
|
1425 |
-
#: lib/widgets/user-profile-widget.php:160
|
1426 |
-
#: lib/widgets/user-profile-widget.php:180
|
1427 |
-
msgid "None"
|
1428 |
-
msgstr ""
|
1429 |
-
|
1430 |
-
#: lib/widgets/featured-page-widget.php:200
|
1431 |
-
msgid "Show Page Title"
|
1432 |
-
msgstr ""
|
1433 |
-
|
1434 |
-
#: lib/widgets/featured-page-widget.php:205
|
1435 |
-
msgid "Show Page Byline"
|
1436 |
-
msgstr ""
|
1437 |
-
|
1438 |
-
#: lib/widgets/featured-page-widget.php:210
|
1439 |
-
msgid "Show Page Content"
|
1440 |
-
msgstr ""
|
1441 |
-
|
1442 |
-
#: lib/widgets/featured-page-widget.php:214
|
1443 |
-
msgid "Content Character Limit"
|
1444 |
-
msgstr ""
|
1445 |
-
|
1446 |
-
#: lib/widgets/featured-page-widget.php:219
|
1447 |
-
msgid "More Text"
|
1448 |
-
msgstr ""
|
1449 |
-
|
1450 |
-
#: lib/widgets/featured-post-widget.php:51
|
1451 |
-
msgid "By"
|
1452 |
-
msgstr "Deur"
|
1453 |
-
|
1454 |
-
#: lib/widgets/featured-post-widget.php:54
|
1455 |
-
msgid "[Read More...]"
|
1456 |
-
msgstr "[Lees Meer...]"
|
1457 |
-
|
1458 |
-
#: lib/widgets/featured-post-widget.php:58
|
1459 |
-
msgid "More Posts from this Category"
|
1460 |
-
msgstr ""
|
1461 |
-
|
1462 |
-
#: lib/widgets/featured-post-widget.php:63
|
1463 |
-
msgid "Displays featured posts with thumbnails"
|
1464 |
-
msgstr ""
|
1465 |
-
|
1466 |
-
#: lib/widgets/featured-post-widget.php:72
|
1467 |
-
msgid "Genesis - Featured Posts"
|
1468 |
-
msgstr ""
|
1469 |
-
|
1470 |
-
#: lib/widgets/featured-post-widget.php:224
|
1471 |
-
msgid "Category"
|
1472 |
-
msgstr "Kategorieë"
|
1473 |
-
|
1474 |
-
#: lib/widgets/featured-post-widget.php:238
|
1475 |
-
#: lib/widgets/featured-post-widget.php:376
|
1476 |
-
msgid "Number of Posts to Show"
|
1477 |
-
msgstr ""
|
1478 |
-
|
1479 |
-
#: lib/widgets/featured-post-widget.php:243
|
1480 |
-
msgid "Number of Posts to Offset"
|
1481 |
-
msgstr ""
|
1482 |
-
|
1483 |
-
#: lib/widgets/featured-post-widget.php:248
|
1484 |
-
msgid "Order By"
|
1485 |
-
msgstr "Bestelling Deur"
|
1486 |
-
|
1487 |
-
#: lib/widgets/featured-post-widget.php:250
|
1488 |
-
msgid "Date"
|
1489 |
-
msgstr "Datum"
|
1490 |
-
|
1491 |
-
#: lib/widgets/featured-post-widget.php:252
|
1492 |
-
msgid "Parent"
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: lib/widgets/featured-post-widget.php:253
|
1496 |
-
msgid "ID"
|
1497 |
-
msgstr ""
|
1498 |
-
|
1499 |
-
#: lib/widgets/featured-post-widget.php:254
|
1500 |
-
msgid "Comment Count"
|
1501 |
-
msgstr "Kommentaar Getal"
|
1502 |
-
|
1503 |
-
#: lib/widgets/featured-post-widget.php:255
|
1504 |
-
msgid "Random"
|
1505 |
-
msgstr "Verskillende"
|
1506 |
-
|
1507 |
-
#: lib/widgets/featured-post-widget.php:260
|
1508 |
-
msgid "Sort Order"
|
1509 |
-
msgstr "Sorteer Orde"
|
1510 |
-
|
1511 |
-
#: lib/widgets/featured-post-widget.php:262
|
1512 |
-
msgid "Descending (3, 2, 1)"
|
1513 |
-
msgstr ""
|
1514 |
-
|
1515 |
-
#: lib/widgets/featured-post-widget.php:263
|
1516 |
-
msgid "Ascending (1, 2, 3)"
|
1517 |
-
msgstr ""
|
1518 |
-
|
1519 |
-
#: lib/widgets/featured-post-widget.php:273
|
1520 |
-
msgid "Show Author Gravatar"
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: lib/widgets/featured-post-widget.php:277
|
1524 |
-
#: lib/widgets/user-profile-widget.php:146
|
1525 |
-
msgid "Gravatar Size"
|
1526 |
-
msgstr ""
|
1527 |
-
|
1528 |
-
#: lib/widgets/featured-post-widget.php:279
|
1529 |
-
msgid "Small (45px)"
|
1530 |
-
msgstr ""
|
1531 |
-
|
1532 |
-
#: lib/widgets/featured-post-widget.php:280
|
1533 |
-
msgid "Medium (65px)"
|
1534 |
-
msgstr ""
|
1535 |
-
|
1536 |
-
#: lib/widgets/featured-post-widget.php:281
|
1537 |
-
msgid "Large (85px)"
|
1538 |
-
msgstr ""
|
1539 |
-
|
1540 |
-
#: lib/widgets/featured-post-widget.php:282
|
1541 |
-
msgid "Extra Large (125px)"
|
1542 |
-
msgstr ""
|
1543 |
-
|
1544 |
-
#: lib/widgets/featured-post-widget.php:287
|
1545 |
-
#: lib/widgets/user-profile-widget.php:158
|
1546 |
-
msgid "Gravatar Alignment"
|
1547 |
-
msgstr ""
|
1548 |
-
|
1549 |
-
#: lib/widgets/featured-post-widget.php:335
|
1550 |
-
msgid "Show Post Title"
|
1551 |
-
msgstr ""
|
1552 |
-
|
1553 |
-
#: lib/widgets/featured-post-widget.php:340
|
1554 |
-
msgid "Show Post Info"
|
1555 |
-
msgstr ""
|
1556 |
-
|
1557 |
-
#: lib/widgets/featured-post-widget.php:345
|
1558 |
-
msgid "Content Type"
|
1559 |
-
msgstr ""
|
1560 |
-
|
1561 |
-
#: lib/widgets/featured-post-widget.php:347
|
1562 |
-
msgid "Show Content"
|
1563 |
-
msgstr ""
|
1564 |
-
|
1565 |
-
#: lib/widgets/featured-post-widget.php:348
|
1566 |
-
msgid "Show Excerpt"
|
1567 |
-
msgstr ""
|
1568 |
-
|
1569 |
-
#: lib/widgets/featured-post-widget.php:349
|
1570 |
-
msgid "Show Content Limit"
|
1571 |
-
msgstr ""
|
1572 |
-
|
1573 |
-
#: lib/widgets/featured-post-widget.php:350
|
1574 |
-
msgid "No Content"
|
1575 |
-
msgstr ""
|
1576 |
-
|
1577 |
-
#: lib/widgets/featured-post-widget.php:360
|
1578 |
-
msgid "More Text (if applicable)"
|
1579 |
-
msgstr ""
|
1580 |
-
|
1581 |
-
#: lib/widgets/featured-post-widget.php:368
|
1582 |
-
msgid "To display an unordered list of more posts from this category, please fill out the information below"
|
1583 |
-
msgstr ""
|
1584 |
-
|
1585 |
-
#: lib/widgets/featured-post-widget.php:386
|
1586 |
-
msgid "Show Category Archive Link"
|
1587 |
-
msgstr ""
|
1588 |
-
|
1589 |
-
#: lib/widgets/featured-post-widget.php:390
|
1590 |
-
msgid "Link Text"
|
1591 |
-
msgstr ""
|
1592 |
-
|
1593 |
-
#: lib/widgets/latest-tweets-widget.php:49
|
1594 |
-
msgid "Display a list of your latest tweets."
|
1595 |
-
msgstr ""
|
1596 |
-
|
1597 |
-
#: lib/widgets/latest-tweets-widget.php:58
|
1598 |
-
msgid "Genesis - Latest Tweets"
|
1599 |
-
msgstr ""
|
1600 |
-
|
1601 |
-
#: lib/widgets/latest-tweets-widget.php:98
|
1602 |
-
msgid "The Twitter API is taking too long to respond. Please try again later."
|
1603 |
-
msgstr ""
|
1604 |
-
|
1605 |
-
#: lib/widgets/latest-tweets-widget.php:101
|
1606 |
-
msgid "There was an error while attempting to contact the Twitter API. Please try again."
|
1607 |
-
msgstr ""
|
1608 |
-
|
1609 |
-
#: lib/widgets/latest-tweets-widget.php:104
|
1610 |
-
msgid "The Twitter API returned an error while processing your request. Please try again."
|
1611 |
-
msgstr ""
|
1612 |
-
|
1613 |
-
#: lib/widgets/latest-tweets-widget.php:118
|
1614 |
-
msgid "about %s ago"
|
1615 |
-
msgstr "'n %s terug"
|
1616 |
-
|
1617 |
-
#: lib/widgets/latest-tweets-widget.php:182
|
1618 |
-
msgid "If you would like to continue to use the Latest Tweets widget functionality, please have a site administrator <a href=\"%s\" target=\"_blank\">install this plugin</a>."
|
1619 |
-
msgstr ""
|
1620 |
-
|
1621 |
-
#: lib/widgets/latest-tweets-widget.php:191
|
1622 |
-
msgid "If you would like to continue to use the Latest Tweets widget functionality, please <a href=\"%s\" class=\"thickbox\" title=\"Install Genesis Latest Tweets\">install this plugin</a>."
|
1623 |
-
msgstr ""
|
1624 |
-
|
1625 |
-
#: lib/widgets/user-profile-widget.php:42
|
1626 |
-
msgid "Read More"
|
1627 |
-
msgstr ""
|
1628 |
-
|
1629 |
-
#: lib/widgets/user-profile-widget.php:48
|
1630 |
-
msgid "Displays user profile block with Gravatar"
|
1631 |
-
msgstr ""
|
1632 |
-
|
1633 |
-
#: lib/widgets/user-profile-widget.php:57
|
1634 |
-
msgid "Genesis - User Profile"
|
1635 |
-
msgstr ""
|
1636 |
-
|
1637 |
-
#: lib/widgets/user-profile-widget.php:96
|
1638 |
-
msgid "View My Blog Posts"
|
1639 |
-
msgstr "Sien my BLOG se Pos"
|
1640 |
-
|
1641 |
-
#: lib/widgets/user-profile-widget.php:141
|
1642 |
-
msgid "Select a user. The email address for this account will be used to pull the Gravatar image."
|
1643 |
-
msgstr ""
|
1644 |
-
|
1645 |
-
#: lib/widgets/user-profile-widget.php:149
|
1646 |
-
msgid "Small"
|
1647 |
-
msgstr ""
|
1648 |
-
|
1649 |
-
#: lib/widgets/user-profile-widget.php:149
|
1650 |
-
msgid "Medium"
|
1651 |
-
msgstr ""
|
1652 |
-
|
1653 |
-
#: lib/widgets/user-profile-widget.php:149
|
1654 |
-
msgid "Large"
|
1655 |
-
msgstr ""
|
1656 |
-
|
1657 |
-
#: lib/widgets/user-profile-widget.php:149
|
1658 |
-
msgid "Extra Large"
|
1659 |
-
msgstr ""
|
1660 |
-
|
1661 |
-
#: lib/widgets/user-profile-widget.php:167
|
1662 |
-
msgid "Select which text you would like to use as the author description"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
#: lib/widgets/user-profile-widget.php:170
|
1666 |
-
msgid "Author Bio"
|
1667 |
-
msgstr ""
|
1668 |
-
|
1669 |
-
#: lib/widgets/user-profile-widget.php:172
|
1670 |
-
msgid "Custom Text (below)"
|
1671 |
-
msgstr ""
|
1672 |
-
|
1673 |
-
#: lib/widgets/user-profile-widget.php:173
|
1674 |
-
msgid "Custom Text Content"
|
1675 |
-
msgstr ""
|
1676 |
-
|
1677 |
-
#: lib/widgets/user-profile-widget.php:179
|
1678 |
-
msgid "Choose your extended \"About Me\" page from the list below. This will be the page linked to at the end of the about me section."
|
1679 |
-
msgstr ""
|
1680 |
-
|
1681 |
-
#: lib/widgets/user-profile-widget.php:184
|
1682 |
-
msgid "Extended page link text"
|
1683 |
-
msgstr ""
|
1684 |
-
|
1685 |
-
#: lib/widgets/user-profile-widget.php:190
|
1686 |
-
msgid "Show Author Archive Link?"
|
1687 |
-
msgstr ""
|
1688 |
-
|
1689 |
-
#: search.php:28
|
1690 |
-
msgid "Search Results for:"
|
1691 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
genesis-translations/ar.mo
DELETED
Binary file
|
genesis-translations/ar.po
DELETED
@@ -1,1716 +0,0 @@
|
|
1 |
-
# Translation of Genesis 1.9 in Arabic
|
2 |
-
# This file is distributed under the same license as the Genesis 1.9 package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2013-05-16 11:54:55+0000\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
10 |
-
"X-Generator: GlotPress/0.1\n"
|
11 |
-
"Project-Id-Version: Genesis 1.9\n"
|
12 |
-
|
13 |
-
#: lib/admin/whats-new.php:72
|
14 |
-
msgid "You may notice that the default Genesis style sheet is a bit shorter, and on the front end looks different. We've updated the default design and extended the width of the layout to 1152px. Now you've got more real estate to showcase your content."
|
15 |
-
msgstr "قد تلاحظون أن ملف التنسيق الإفتراضي لإطار العمل قصير قليلا، ويبدوا مختلفا في الموقع، لقد قمنا بتحديث التصميم الإفتراضي ووسعنا العرض الخاص بالتخطيط الى 1152 بيكسل، الآن يمكنكم عرض الكثير بدل القليل الذي كان."
|
16 |
-
|
17 |
-
#: 404.php:33
|
18 |
-
msgid "Not Found, Error 404"
|
19 |
-
msgstr "خطأ 404 - غير موجود"
|
20 |
-
|
21 |
-
#: 404.php:35
|
22 |
-
msgid "The page you are looking for no longer exists. Perhaps you can return back to the site's <a href=\"%s\">homepage</a> and see if you can find what you are looking for. Or, you can try finding it with the information below."
|
23 |
-
msgstr "يبدوا أن الصفحة التي تبحثون عنها غير موجودة، قد تكون حذفت او تم تغييرها، ربما بالإمكان العثور عما ترغبون في المعلومات أدناه"
|
24 |
-
|
25 |
-
#: 404.php:39 lib/structure/post.php:219 page_archive.php:35
|
26 |
-
msgid "Pages:"
|
27 |
-
msgstr "حسب الصفحات:"
|
28 |
-
|
29 |
-
#: 404.php:44 page_archive.php:40
|
30 |
-
msgid "Categories:"
|
31 |
-
msgstr "حسب التصنيفات:"
|
32 |
-
|
33 |
-
#: 404.php:53 page_archive.php:49
|
34 |
-
msgid "Authors:"
|
35 |
-
msgstr "حسب الكتاب:"
|
36 |
-
|
37 |
-
#: 404.php:58 page_archive.php:54
|
38 |
-
msgid "Monthly:"
|
39 |
-
msgstr "حسب الشهر:"
|
40 |
-
|
41 |
-
#: 404.php:63 page_archive.php:59
|
42 |
-
msgid "Recent Posts:"
|
43 |
-
msgstr "حسب أحدث المقالات:"
|
44 |
-
|
45 |
-
#: comments.php:24
|
46 |
-
msgid "This post is password protected. Enter the password to view comments."
|
47 |
-
msgstr "هذه المقالة محمية بكلمة مرور، الرجاء إدخالها للإستمرار أكثر"
|
48 |
-
|
49 |
-
#: lib/admin/import-export.php:45
|
50 |
-
msgid "Genesis - Import/Export"
|
51 |
-
msgstr "التصدير والإستيراد"
|
52 |
-
|
53 |
-
#: lib/admin/import-export.php:46
|
54 |
-
msgid "Import/Export"
|
55 |
-
msgstr "التصدير والإستيراد"
|
56 |
-
|
57 |
-
#: lib/admin/import-export.php:81
|
58 |
-
msgid "Import Genesis Settings File"
|
59 |
-
msgstr "إستيراد ملف إعدادات إطار العمل"
|
60 |
-
|
61 |
-
#: lib/admin/import-export.php:83
|
62 |
-
msgid "Upload the data file (<code>.json</code>) from your computer and we'll import your settings."
|
63 |
-
msgstr "الرجاء رفع ملف بإمتداد (<code>.json</code>) من جهازكم ونحن سنتكفل باستيراد جميع الإعدادات"
|
64 |
-
|
65 |
-
#: lib/admin/import-export.php:84
|
66 |
-
msgid "Choose the file from your computer and click \"Upload file and Import\""
|
67 |
-
msgstr "الرجاء إختيار الملف من جهازكم والنقر على زر \"رفع وإستيراد\""
|
68 |
-
|
69 |
-
#: lib/admin/import-export.php:89
|
70 |
-
msgid "Upload File: (Maximum Size: %s)"
|
71 |
-
msgstr "رفع الملف: (أقصى حجم: %s)"
|
72 |
-
|
73 |
-
#: lib/admin/import-export.php:92
|
74 |
-
msgid "Upload File and Import"
|
75 |
-
msgstr "رفع واستيراد الملف"
|
76 |
-
|
77 |
-
#: lib/admin/import-export.php:100
|
78 |
-
msgid "Export Genesis Settings File"
|
79 |
-
msgstr "تصدير ملف إعدادات إطار العمل"
|
80 |
-
|
81 |
-
#: lib/admin/import-export.php:102
|
82 |
-
msgid "When you click the button below, Genesis will generate a data file (<code>.json</code>) for you to save to your computer."
|
83 |
-
msgstr "عند النقر على الزر أسفلة، سيقوم إطار العمل بتوليد ملف بإمتداد (<code>.json</code>) لكم لتقوموا بحفظه في جهازكم."
|
84 |
-
|
85 |
-
#: lib/admin/import-export.php:103
|
86 |
-
msgid "Once you have saved the download file, you can use the import function on another site to import this data."
|
87 |
-
msgstr "عندما تقومون بحفظ الملف المحمل، سيكون بإستطاعتكم إستعماله لإستيراد نفس هذه الإعدادات لموقع ثان."
|
88 |
-
|
89 |
-
#: lib/admin/import-export.php:110
|
90 |
-
msgid "Download Export File"
|
91 |
-
msgstr "تحميل ملف التصدير"
|
92 |
-
|
93 |
-
#: lib/admin/import-export.php:142
|
94 |
-
msgid "Settings successfully imported."
|
95 |
-
msgstr "تم إستيراد الإعدادات بنجاح"
|
96 |
-
|
97 |
-
#: lib/admin/import-export.php:144
|
98 |
-
msgid "There was a problem importing your settings. Please try again."
|
99 |
-
msgstr "لقد وقع خلل ما منع عملية إستيراد الإعدادات بنجاح، الرجاء المحاولة مجددا"
|
100 |
-
|
101 |
-
#: lib/admin/import-export.php:162 lib/admin/theme-settings.php:58
|
102 |
-
#: lib/admin/theme-settings.php:59
|
103 |
-
msgid "Theme Settings"
|
104 |
-
msgstr "إعدادات القالب"
|
105 |
-
|
106 |
-
#: lib/admin/import-export.php:166 lib/admin/seo-settings.php:44
|
107 |
-
msgid "SEO Settings"
|
108 |
-
msgstr "إعدادات SEO"
|
109 |
-
|
110 |
-
#: lib/admin/import-export.php:188
|
111 |
-
msgid "No export options available."
|
112 |
-
msgstr "لا توجد أي خصائص مصدرة حاليا"
|
113 |
-
|
114 |
-
#: lib/admin/inpost-metaboxes.php:33 lib/admin/term-meta.php:119
|
115 |
-
#: lib/admin/user-meta.php:182
|
116 |
-
msgid "Theme SEO Settings"
|
117 |
-
msgstr "إعدادات SEO للقالب"
|
118 |
-
|
119 |
-
#: lib/admin/inpost-metaboxes.php:54
|
120 |
-
msgid "Custom Document Title"
|
121 |
-
msgstr "عنوان مخصص للتدوينة/للصفحة"
|
122 |
-
|
123 |
-
#: lib/admin/inpost-metaboxes.php:54 lib/admin/inpost-metaboxes.php:57
|
124 |
-
msgid "Characters Used: %s"
|
125 |
-
msgstr "الحروف المتسعملة: %s"
|
126 |
-
|
127 |
-
#: lib/admin/inpost-metaboxes.php:57
|
128 |
-
msgid "Custom Post/Page Meta Description"
|
129 |
-
msgstr "وصف ميتا مخصص للتدوينة/الصفحة"
|
130 |
-
|
131 |
-
#: lib/admin/inpost-metaboxes.php:60
|
132 |
-
msgid "Custom Post/Page Meta Keywords, comma separated"
|
133 |
-
msgstr "كلمات ميتا مفتاحية مخصصة للتدوينة/الصفحة، مفصولة بفاصلة إنجليزية"
|
134 |
-
|
135 |
-
#: lib/admin/inpost-metaboxes.php:63
|
136 |
-
msgid "Custom Canonical URI"
|
137 |
-
msgstr "وسم مخصص"
|
138 |
-
|
139 |
-
#: lib/admin/inpost-metaboxes.php:66
|
140 |
-
msgid "Custom Redirect URI"
|
141 |
-
msgstr "وسم إعادة توجيه مخصص"
|
142 |
-
|
143 |
-
#: lib/admin/inpost-metaboxes.php:71 lib/admin/seo-settings.php:176
|
144 |
-
msgid "Robots Meta Settings"
|
145 |
-
msgstr "إعدادات مخصصة لعناكب البحث"
|
146 |
-
|
147 |
-
#: lib/admin/inpost-metaboxes.php:75 lib/admin/inpost-metaboxes.php:78
|
148 |
-
#: lib/admin/inpost-metaboxes.php:81
|
149 |
-
msgid "Apply %s to this post/page"
|
150 |
-
msgstr "تطبيق وسم %s على هذه التدوينة/الصفحة"
|
151 |
-
|
152 |
-
#: lib/admin/inpost-metaboxes.php:86
|
153 |
-
msgid "Custom Tracking/Conversion Code"
|
154 |
-
msgstr "شفرة متابعة مخصصة"
|
155 |
-
|
156 |
-
#: lib/admin/inpost-metaboxes.php:161 lib/admin/term-meta.php:202
|
157 |
-
#: lib/admin/user-meta.php:246
|
158 |
-
msgid "Layout Settings"
|
159 |
-
msgstr "إعدادات تخطيط الموقع"
|
160 |
-
|
161 |
-
#: lib/admin/inpost-metaboxes.php:185 lib/admin/term-meta.php:211
|
162 |
-
#: lib/admin/user-meta.php:256
|
163 |
-
msgid "Default Layout set in <a href=\"%s\">Theme Settings</a>"
|
164 |
-
msgstr "التخطيط المعين سلفا في <a href=\"%s\">إعدادات القالب</a>"
|
165 |
-
|
166 |
-
#: lib/admin/inpost-metaboxes.php:192
|
167 |
-
msgid "Custom Body Class"
|
168 |
-
msgstr "تنسيق مخصص للـ Body"
|
169 |
-
|
170 |
-
#: lib/admin/inpost-metaboxes.php:195
|
171 |
-
msgid "Custom Post Class"
|
172 |
-
msgstr "تنسيق مخصص للتدوينة"
|
173 |
-
|
174 |
-
#: lib/admin/readme-menu.php:40 lib/admin/readme-menu.php:41
|
175 |
-
msgid "README"
|
176 |
-
msgstr "إقرأني"
|
177 |
-
|
178 |
-
#: lib/admin/readme-menu.php:68
|
179 |
-
msgid "The %s file was not found in the child theme, or it was empty."
|
180 |
-
msgstr "لم يتم العثور على ملف %s في القالب الفرعي، او أنه فارغ"
|
181 |
-
|
182 |
-
#: lib/admin/seo-settings.php:43
|
183 |
-
msgid "Genesis - SEO Settings"
|
184 |
-
msgstr "إعدادات SEO"
|
185 |
-
|
186 |
-
#: lib/admin/seo-settings.php:50 lib/admin/theme-settings.php:69
|
187 |
-
#: lib/classes/admin.php:104
|
188 |
-
msgid "Save Settings"
|
189 |
-
msgstr "حفظ التغيرات"
|
190 |
-
|
191 |
-
#: lib/admin/seo-settings.php:51 lib/admin/theme-settings.php:70
|
192 |
-
#: lib/classes/admin.php:105
|
193 |
-
msgid "Reset Settings"
|
194 |
-
msgstr "إستعادة الإعدادات الرئيسية"
|
195 |
-
|
196 |
-
#: lib/admin/seo-settings.php:52 lib/admin/theme-settings.php:71
|
197 |
-
#: lib/classes/admin.php:106
|
198 |
-
msgid "Settings saved."
|
199 |
-
msgstr "تم حفظ التغيرات بنجاح."
|
200 |
-
|
201 |
-
#: lib/admin/seo-settings.php:53 lib/admin/theme-settings.php:72
|
202 |
-
#: lib/classes/admin.php:107
|
203 |
-
msgid "Settings reset."
|
204 |
-
msgstr "تم إستعادة الإعدادات الإفتراضية بنجاح."
|
205 |
-
|
206 |
-
#: lib/admin/seo-settings.php:54 lib/admin/theme-settings.php:73
|
207 |
-
#: lib/classes/admin.php:108
|
208 |
-
msgid "Error saving settings."
|
209 |
-
msgstr "خلل أثناء حفظ الإعدادات."
|
210 |
-
|
211 |
-
#: lib/admin/seo-settings.php:173
|
212 |
-
msgid "Document Title Settings"
|
213 |
-
msgstr "إعدادات عناوين التدوينات والصفحات"
|
214 |
-
|
215 |
-
#: lib/admin/seo-settings.php:174
|
216 |
-
msgid "Homepage Settings"
|
217 |
-
msgstr "إعدادات الصفحة الرئيسية"
|
218 |
-
|
219 |
-
#: lib/admin/seo-settings.php:175
|
220 |
-
msgid "Document Head Settings"
|
221 |
-
msgstr "إعدادات ترويسة التدوينات والصفحات"
|
222 |
-
|
223 |
-
#: lib/admin/seo-settings.php:177
|
224 |
-
msgid "Archives Settings"
|
225 |
-
msgstr "إعدادات الأرشيف"
|
226 |
-
|
227 |
-
#: lib/admin/seo-settings.php:194
|
228 |
-
msgid "The document title (%s) is the single most important element in your document source for <abbr title=\"Search engine optimization\">SEO</abbr>. It succinctly informs search engines of what information is contained in the document. The title can, and should, be different on each page, but these options will help you control what it will look like by default."
|
229 |
-
msgstr "عنوان التدوينات والصفحات (%s) هو أهم عنصر في إعدادات <abbr title=\"Search engine optimization\">SEO</abbr> فهو يعلم محركات البحث بماهية المحتوى المنشور، العنوان يجب أن يكون مختلفا من مقال لآخر لمزيد من ثقة محركات البحث، هذه الإعدادات ستساعدكم على التمييز أكثر عما يجب عمله وما لا يجب عمله بشكل إفتراضي."
|
230 |
-
|
231 |
-
#: lib/admin/seo-settings.php:196
|
232 |
-
msgid "<strong>By default</strong>, the home page document title will contain the site title, the single post and page document titles will contain the post or page title, the archive pages will contain the archive type, etc."
|
233 |
-
msgstr "<strong>بشكل إفتراضي</strong> عنوان الصفحة الرئيسية يحوي إسم الموقع او المدونة الرئيسي، عناوين التدوينات المنفردة او الصفحات تحوي إسم المحتوى المنشور فيها وصفحة الأرشيف ستحوي نوع الأرشيف ... الخ"
|
234 |
-
|
235 |
-
#: lib/admin/seo-settings.php:200
|
236 |
-
msgid "Add site description (tagline) to %s on home page?"
|
237 |
-
msgstr "إضافة وصف المدونة او الموقع إلى وسم %s في الصفحة الرئيسية ؟"
|
238 |
-
|
239 |
-
#: lib/admin/seo-settings.php:205
|
240 |
-
msgid "Add site name to %s on inner pages?"
|
241 |
-
msgstr "إظافة إسم المدونة او الموقع إلى وسم %s في الصفحات الداخلية ؟"
|
242 |
-
|
243 |
-
#: lib/admin/seo-settings.php:209
|
244 |
-
msgid "Document Title Additions Location:"
|
245 |
-
msgstr "إتجاه عناوين التدوينات والصفحات:"
|
246 |
-
|
247 |
-
#: lib/admin/seo-settings.php:210
|
248 |
-
msgid "Determines which side the added title text will go on."
|
249 |
-
msgstr "إختاروا الإتجاه الذي ستقوم عناوين التدوينات والصفحات بمحاذاته"
|
250 |
-
|
251 |
-
#: lib/admin/seo-settings.php:214 lib/widgets/featured-page-widget.php:191
|
252 |
-
#: lib/widgets/featured-post-widget.php:290
|
253 |
-
#: lib/widgets/featured-post-widget.php:320
|
254 |
-
#: lib/widgets/user-profile-widget.php:161
|
255 |
-
msgid "Left"
|
256 |
-
msgstr "محاذات على اليسار"
|
257 |
-
|
258 |
-
#: lib/admin/seo-settings.php:217 lib/widgets/featured-page-widget.php:192
|
259 |
-
#: lib/widgets/featured-post-widget.php:291
|
260 |
-
#: lib/widgets/featured-post-widget.php:321
|
261 |
-
#: lib/widgets/user-profile-widget.php:162
|
262 |
-
msgid "Right"
|
263 |
-
msgstr "محاذات على اليمين"
|
264 |
-
|
265 |
-
#: lib/admin/seo-settings.php:222
|
266 |
-
msgid "Document Title Separator:"
|
267 |
-
msgstr "فواصل عناوين التدوينات والصفحات:"
|
268 |
-
|
269 |
-
#: lib/admin/seo-settings.php:224
|
270 |
-
msgid "If the title consists of two parts (original title and optional addition), then the separator will go in between them."
|
271 |
-
msgstr "في حال كان العنوان مركبا من جزئين او أكثر، سيتم الفصل بينها بفاصل، يمكنكم تخصيص فاصل من هذا الإعداد."
|
272 |
-
|
273 |
-
#: lib/admin/seo-settings.php:245
|
274 |
-
msgid "Which text would you like to be wrapped in %s tags?"
|
275 |
-
msgstr "أي نص ترغبون بإدراجه ضمن وسم %s ؟"
|
276 |
-
|
277 |
-
#: lib/admin/seo-settings.php:246
|
278 |
-
msgid "The %s tag is, arguably, the second most important <abbr title=\"Search engine optimization\">SEO</abbr> tag in the document source. Choose wisely."
|
279 |
-
msgstr "وسم %s هو بدون منازع ثان أهم مكون للـ <abbr title=\"Search engine optimization\">SEO</abbr> في مصدر الأصلي للتديونات والصفحات، الرجاء الإختيار بحكمة"
|
280 |
-
|
281 |
-
#: lib/admin/seo-settings.php:250
|
282 |
-
msgid "Site Title"
|
283 |
-
msgstr "عنوان المدونة او الموقع"
|
284 |
-
|
285 |
-
#: lib/admin/seo-settings.php:253
|
286 |
-
msgid "Site Description (Tagline)"
|
287 |
-
msgstr "وصف المدونة او الموقع"
|
288 |
-
|
289 |
-
#: lib/admin/seo-settings.php:256
|
290 |
-
msgid "Neither. I'll manually wrap my own text on the homepage"
|
291 |
-
msgstr "سأقوم بإدراج نص مخصص بنفسي في الصفحة الرئيسية"
|
292 |
-
|
293 |
-
#: lib/admin/seo-settings.php:260
|
294 |
-
msgid "Homepage Document Title:"
|
295 |
-
msgstr "عنوان مخصص للصفحة الرئيسية:"
|
296 |
-
|
297 |
-
#: lib/admin/seo-settings.php:262
|
298 |
-
msgid "If you leave the document title field blank, your site’s title will be used instead."
|
299 |
-
msgstr "في حال تركتم حقل العنوان المخصص فارغا سيتم إستعمال العنوان الإفتراضي للمدونة او الموقع المعين في إعدادات وورد بريس سلفا"
|
300 |
-
|
301 |
-
#: lib/admin/seo-settings.php:266
|
302 |
-
msgid "Home Meta Description:"
|
303 |
-
msgstr "وصف مخصص للصفحة الرئيسية"
|
304 |
-
|
305 |
-
#: lib/admin/seo-settings.php:268
|
306 |
-
msgid "The meta description can be used to determine the text used under the title on search engine results pages."
|
307 |
-
msgstr "الوصف يمكن إستعماله لتحديد النص أسفل العنوان في نتائج محركات البحث."
|
308 |
-
|
309 |
-
#: lib/admin/seo-settings.php:272
|
310 |
-
msgid "Home Meta Keywords (comma separated):"
|
311 |
-
msgstr "الكلمات المفتاحية المخصصة (مفصولة بفاصلة إنجليزية):"
|
312 |
-
|
313 |
-
#: lib/admin/seo-settings.php:274
|
314 |
-
msgid "Keywords are generally ignored by Search Engines."
|
315 |
-
msgstr "أهمية الكلمات المفتاحية تتغير من محرك بحث لآخر."
|
316 |
-
|
317 |
-
#: lib/admin/seo-settings.php:277
|
318 |
-
msgid "Homepage Robots Meta Tags:"
|
319 |
-
msgstr "وسوم مخصصة لعناكب البحث"
|
320 |
-
|
321 |
-
#: lib/admin/seo-settings.php:281 lib/admin/seo-settings.php:284
|
322 |
-
#: lib/admin/seo-settings.php:287
|
323 |
-
msgid "Apply %s to the homepage?"
|
324 |
-
msgstr "تطبيق وسم %s في الصفحة الرئيسية"
|
325 |
-
|
326 |
-
#: lib/admin/seo-settings.php:290
|
327 |
-
msgid "Homepage Author"
|
328 |
-
msgstr "الكاتب"
|
329 |
-
|
330 |
-
#: lib/admin/seo-settings.php:293
|
331 |
-
msgid "Select the user that you would like to be used as the %s for the homepage. Be sure the user you select has entered their Google+ profile address on the profile edit screen."
|
332 |
-
msgstr "إختاروا الكاتب الذي ترغبون بأن يكون هو من يطبق عليه وسم %s للصفحة الرئيسية، تأكدوا من إضافة رابط حسابكم الشخصي في Google+ في صفحة حسابكم في إعدادات وورد بريس."
|
333 |
-
|
334 |
-
#: lib/admin/seo-settings.php:298
|
335 |
-
msgid "Select User"
|
336 |
-
msgstr "إختاروا كاتبا"
|
337 |
-
|
338 |
-
#: lib/admin/seo-settings.php:321
|
339 |
-
msgid "By default, WordPress places several tags in your document %1$s. Most of these tags are completely unnecessary, and provide no <abbr title=\"Search engine optimization\">SEO</abbr> value whatsoever; they just make your site slower to load. Choose which tags you would like included in your document %1$s. If you do not know what something is, leave it unchecked."
|
340 |
-
msgstr "بشكل إفتراضي وورد بريس يقوم بإضافة العديد من الوسوم الى منطقة %1$s، أغلب هذه الوسوم غير ضرورية، ولا توفر اي قيمة للـ <abbr title=\"Search engine optimization\">SEO</abbr> والأسوء أنها تجعل من موقعكم ثقيل في التحميل، هنا يمكنكم التحكم في أي وسم يتم إضافته في منطقة %1$s."
|
341 |
-
|
342 |
-
#: lib/admin/seo-settings.php:323
|
343 |
-
msgid "Relationship Link Tags:"
|
344 |
-
msgstr "علاقة وسوم الرابط:"
|
345 |
-
|
346 |
-
#: lib/admin/seo-settings.php:327
|
347 |
-
msgid "Adjacent Posts %s link tags"
|
348 |
-
msgstr "مجاورة وسم %s للتدوينات او الصفحات لوسوم الرابط"
|
349 |
-
|
350 |
-
#: lib/admin/seo-settings.php:330
|
351 |
-
msgid "Windows Live Writer Support:"
|
352 |
-
msgstr "دعم Windows Live Writer:"
|
353 |
-
|
354 |
-
#: lib/admin/seo-settings.php:334
|
355 |
-
msgid "Include Windows Live Writer Support Tag?"
|
356 |
-
msgstr "إدراج وسم دعم Windows Live Writer؟"
|
357 |
-
|
358 |
-
#: lib/admin/seo-settings.php:337
|
359 |
-
msgid "Shortlink Tag:"
|
360 |
-
msgstr "رابط مختصر للوسم:"
|
361 |
-
|
362 |
-
#: lib/admin/seo-settings.php:341
|
363 |
-
msgid "Include Shortlink tag?"
|
364 |
-
msgstr "إدراج رابط مختصر للوسم؟"
|
365 |
-
|
366 |
-
#: lib/admin/seo-settings.php:344
|
367 |
-
msgid "<span class=\"genesis-admin-note\">Note:</span> The shortlink tag might have some use for 3rd party service discoverability, but it has no <abbr title=\"Search engine optimization\">SEO</abbr> value whatsoever."
|
368 |
-
msgstr " <span class=\"genesis-admin-note\">ملاحظة:</span>الرابط المختصر للوسم قد يستعمل لطرف ثالث بدون ملاحظة منكم ولكن لا يحوي أي قيمة للـ <abbr title=\"Search engine optimization\">SEO</abbr> على الإطلاق"
|
369 |
-
|
370 |
-
#: lib/admin/seo-settings.php:366
|
371 |
-
msgid "Depending on your situation, you may or may not want the following archive pages to be indexed by search engines. Only you can make that determination."
|
372 |
-
msgstr "بالإعتماد على رغبتكم، قد ترغبون وقد لا ترغبون بأرشفة الصفحات التالية في محركات البحث، أنتم من يقرر هذا الأمر."
|
373 |
-
|
374 |
-
#: lib/admin/seo-settings.php:370 lib/admin/seo-settings.php:394
|
375 |
-
msgid "Apply %s to Category Archives?"
|
376 |
-
msgstr "تطبيق وسم %s على أرشيف التصنيف ؟"
|
377 |
-
|
378 |
-
#: lib/admin/seo-settings.php:373 lib/admin/seo-settings.php:397
|
379 |
-
msgid "Apply %s to Tag Archives?"
|
380 |
-
msgstr "تطبيق وسم %s على أرشيف الوسم ؟"
|
381 |
-
|
382 |
-
#: lib/admin/seo-settings.php:376 lib/admin/seo-settings.php:400
|
383 |
-
msgid "Apply %s to Author Archives?"
|
384 |
-
msgstr "تطبيق وسم %s على أرشيف الكاتب ؟"
|
385 |
-
|
386 |
-
#: lib/admin/seo-settings.php:379 lib/admin/seo-settings.php:403
|
387 |
-
msgid "Apply %s to Date Archives?"
|
388 |
-
msgstr "تطبيق وسم %s على أرشيف التواريخ ؟"
|
389 |
-
|
390 |
-
#: lib/admin/seo-settings.php:382 lib/admin/seo-settings.php:406
|
391 |
-
msgid "Apply %s to Search Archives?"
|
392 |
-
msgstr "تطبيق وسم %s على أرشيف البحث ؟"
|
393 |
-
|
394 |
-
#: lib/admin/seo-settings.php:385
|
395 |
-
msgid "Some search engines will cache pages in your site (e.g. Google Cache). The %1$s tag will prevent them from doing so. Choose which archives you want %1$s applied to."
|
396 |
-
msgstr "بعض محركات البحث ستخزن صفحات مدونتكم او موقعكم (جوجل مثلا) وسم %1$s سيمنعهم من هذا، إختاروا أي أرشيف ترغبون بتطبيق وسم %1$s عليه"
|
397 |
-
|
398 |
-
#: lib/admin/seo-settings.php:389
|
399 |
-
msgid "Apply %s to Entire Site?"
|
400 |
-
msgstr "تطبيق وسم %s على المدونة او الموقع ككل ؟"
|
401 |
-
|
402 |
-
#: lib/admin/seo-settings.php:409
|
403 |
-
msgid "Occasionally, search engines use resources like the Open Directory Project and the Yahoo! Directory to find titles and descriptions for your content. Generally, you will not want them to do this. The %s and %s tags prevent them from doing so."
|
404 |
-
msgstr "أحيانا محركات البحث تستعمل أدلة المواقع الكبيرة مثل DMoz لتعثر على على عناوين ووصف لمحتوى مدونتكم او موقعكم، عموما قد لا ترغبون بأن تقوم محركات البحث بهذا الأمر، لأن المحتوى الخاص بكم متجدد دوما، وسوم %s و %s ستمنعهم من هذا الأمر."
|
405 |
-
|
406 |
-
#: lib/admin/seo-settings.php:413 lib/admin/seo-settings.php:416
|
407 |
-
msgid "Apply %s to your site?"
|
408 |
-
msgstr "تطبيق وسم %s على مدونتكم او موقعكم ؟"
|
409 |
-
|
410 |
-
#: lib/admin/seo-settings.php:437
|
411 |
-
msgid "Canonical Paginated Archives"
|
412 |
-
msgstr "الأرشيف المرقم"
|
413 |
-
|
414 |
-
#: lib/admin/seo-settings.php:440
|
415 |
-
msgid "This option points search engines to the first page of an archive, if viewing a paginated page. If you do not know what this means, leave it on."
|
416 |
-
msgstr "هذا الخيار يساعد محركات البحث في العثور على أول صفحة للأرشيف، هذا في حال كنتم تستخدمون نظام الترقيم في المدونة او الموقع، في حال لم تعرفوا ما هذا الخيار، الرجاء تركه مفعلا."
|
417 |
-
|
418 |
-
#: lib/admin/term-meta.php:55
|
419 |
-
msgid "Archive Settings"
|
420 |
-
msgstr "إعدادات الأرشيف"
|
421 |
-
|
422 |
-
#: lib/admin/term-meta.php:59
|
423 |
-
msgid "Archive Headline"
|
424 |
-
msgstr "ترويسة الأرشيف"
|
425 |
-
|
426 |
-
#: lib/admin/term-meta.php:62
|
427 |
-
msgid "Leave empty if you do not want to display a headline."
|
428 |
-
msgstr "أتركوه فارغا في حال لم ترغبوا في عرض الترويسة"
|
429 |
-
|
430 |
-
#: lib/admin/term-meta.php:66
|
431 |
-
msgid "Archive Intro Text"
|
432 |
-
msgstr "النص الترحيبي للأرشيف"
|
433 |
-
|
434 |
-
#: lib/admin/term-meta.php:69
|
435 |
-
msgid "Leave empty if you do not want to display any intro text."
|
436 |
-
msgstr "أتركوه فارغا في حال لم ترغبوا في عرض النص الترحيبي للأرشيف"
|
437 |
-
|
438 |
-
#: lib/admin/term-meta.php:123 lib/admin/user-meta.php:187
|
439 |
-
msgid "Custom Document %s"
|
440 |
-
msgstr "وسم %s مخصص"
|
441 |
-
|
442 |
-
#: lib/admin/term-meta.php:130 lib/admin/user-meta.php:194
|
443 |
-
msgid "%s Description"
|
444 |
-
msgstr "وصف %s"
|
445 |
-
|
446 |
-
#: lib/admin/term-meta.php:137 lib/admin/user-meta.php:201
|
447 |
-
msgid "%s Keywords"
|
448 |
-
msgstr "كلما مفتاحية %s"
|
449 |
-
|
450 |
-
#: lib/admin/term-meta.php:140 lib/admin/user-meta.php:204
|
451 |
-
msgid "Comma separated list"
|
452 |
-
msgstr "الرجاء الفصل بين كل كلمة وأخرى بفاصلة إنجليزية"
|
453 |
-
|
454 |
-
#: lib/admin/term-meta.php:145 lib/admin/user-meta.php:209
|
455 |
-
msgid "Robots Meta"
|
456 |
-
msgstr "عناكب البحث"
|
457 |
-
|
458 |
-
#: lib/admin/term-meta.php:148 lib/admin/term-meta.php:150
|
459 |
-
#: lib/admin/term-meta.php:152 lib/admin/user-meta.php:212
|
460 |
-
#: lib/admin/user-meta.php:214 lib/admin/user-meta.php:216
|
461 |
-
msgid "Apply %s to this archive?"
|
462 |
-
msgstr "تطبيق وسم %s على هذا الأرشيف ؟"
|
463 |
-
|
464 |
-
#: lib/admin/term-meta.php:206 lib/admin/user-meta.php:251
|
465 |
-
msgid "Choose Layout"
|
466 |
-
msgstr "إختاروا تخطيطا"
|
467 |
-
|
468 |
-
#: lib/admin/theme-settings.php:91
|
469 |
-
msgid "Follow me on Twitter"
|
470 |
-
msgstr "تابعوني على Twitter"
|
471 |
-
|
472 |
-
#: lib/admin/theme-settings.php:221
|
473 |
-
msgid "Information"
|
474 |
-
msgstr "المعلومات العامة"
|
475 |
-
|
476 |
-
#: lib/admin/theme-settings.php:224
|
477 |
-
msgid "Color Style"
|
478 |
-
msgstr "ألوان التنسيق"
|
479 |
-
|
480 |
-
#: lib/admin/theme-settings.php:226
|
481 |
-
msgid "Custom Feeds"
|
482 |
-
msgstr "التلقيمات الإخبارية المخصصة"
|
483 |
-
|
484 |
-
#: lib/admin/theme-settings.php:227
|
485 |
-
msgid "Default Layout"
|
486 |
-
msgstr "التخطيط الإفتراضي"
|
487 |
-
|
488 |
-
#: lib/admin/theme-settings.php:230
|
489 |
-
msgid "Header"
|
490 |
-
msgstr "الترويسة"
|
491 |
-
|
492 |
-
#: lib/admin/theme-settings.php:233
|
493 |
-
msgid "Navigation"
|
494 |
-
msgstr "التصفح"
|
495 |
-
|
496 |
-
#: lib/admin/theme-settings.php:236
|
497 |
-
msgid "Breadcrumbs"
|
498 |
-
msgstr "التصفح التدريجي"
|
499 |
-
|
500 |
-
#: lib/admin/theme-settings.php:238
|
501 |
-
msgid "Comments and Trackbacks"
|
502 |
-
msgstr "التعليقات والتنبيهات"
|
503 |
-
|
504 |
-
#: lib/admin/theme-settings.php:239
|
505 |
-
msgid "Content Archives"
|
506 |
-
msgstr "أرشيف المحتوى"
|
507 |
-
|
508 |
-
#: lib/admin/theme-settings.php:240
|
509 |
-
msgid "Blog Page Template"
|
510 |
-
msgstr "قالب صفحة المدونة"
|
511 |
-
|
512 |
-
#: lib/admin/theme-settings.php:243
|
513 |
-
msgid "Header and Footer Scripts"
|
514 |
-
msgstr "شفرات أعلى وأسفل الموقع (Header & Footer)"
|
515 |
-
|
516 |
-
#: lib/admin/theme-settings.php:284
|
517 |
-
msgid "Version:"
|
518 |
-
msgstr "رقم نسخة إطار العمل:"
|
519 |
-
|
520 |
-
#: lib/admin/theme-settings.php:284
|
521 |
-
msgid "Released:"
|
522 |
-
msgstr "أطلقت بتاريخ:"
|
523 |
-
|
524 |
-
#: lib/admin/theme-settings.php:288
|
525 |
-
msgid "Display Theme Information in your document source"
|
526 |
-
msgstr "إظهار معلومات القالب في الشفرة المصدرية"
|
527 |
-
|
528 |
-
#: lib/admin/theme-settings.php:292
|
529 |
-
msgid "This can be helpful for diagnosing problems with your theme when seeking assistance in the <a href=\"%s\" target=\"_blank\">support forums</a>."
|
530 |
-
msgstr "هذا الأمر قد يكون ذا أهمية كبيرة عند تحليل المشكلات التي قد تصادفك مع الإستخدام الدائم، هذا الإعداد مهم عند طلب المساعدة في <a href=\"%s\" target=\"_blank\">منتديات الدعم الفني</a>."
|
531 |
-
|
532 |
-
#: lib/admin/theme-settings.php:296
|
533 |
-
msgid "Enable Automatic Updates"
|
534 |
-
msgstr "تفعيل التحديثات التلقائية"
|
535 |
-
|
536 |
-
#: lib/admin/theme-settings.php:301
|
537 |
-
msgid "Notify"
|
538 |
-
msgstr "الرجاء تنبيه"
|
539 |
-
|
540 |
-
#: lib/admin/theme-settings.php:303
|
541 |
-
msgid "when updates are available"
|
542 |
-
msgstr "عند توفر نسخة أحدث من إطار العمل او القالب"
|
543 |
-
|
544 |
-
#: lib/admin/theme-settings.php:306
|
545 |
-
msgid "If you provide an email address above, your blog can email you when a new version of Genesis is available."
|
546 |
-
msgstr "في حال أدخلتم بريدكم في الحقل أعلاه سيقوم الوورد بريس بإرسال تنبيه للبريد المدخل بوجود نسخة جديدة من إطار العمل أو القالب"
|
547 |
-
|
548 |
-
#: lib/admin/theme-settings.php:329
|
549 |
-
msgid "Color Style:"
|
550 |
-
msgstr "لون القالب"
|
551 |
-
|
552 |
-
#: lib/admin/theme-settings.php:331 lib/tools/post-templates.php:159
|
553 |
-
msgid "Default"
|
554 |
-
msgstr "الإفتراضي"
|
555 |
-
|
556 |
-
#: lib/admin/theme-settings.php:343
|
557 |
-
msgid "Please select the color style from the drop down list and save your settings."
|
558 |
-
msgstr "الرجاء إختيار لون القالب من القائمة المنسدلة وحفظ التغيرات بعد ذلك."
|
559 |
-
|
560 |
-
#: lib/admin/theme-settings.php:389
|
561 |
-
msgid "Use for site title/logo:"
|
562 |
-
msgstr "يستعمل من أجل عنوان او شعار المدونة او الموقع"
|
563 |
-
|
564 |
-
#: lib/admin/theme-settings.php:391
|
565 |
-
msgid "Dynamic text"
|
566 |
-
msgstr "النص الديناميكي"
|
567 |
-
|
568 |
-
#: lib/admin/theme-settings.php:392
|
569 |
-
msgid "Image logo"
|
570 |
-
msgstr "صورة الشعار"
|
571 |
-
|
572 |
-
#: lib/admin/theme-settings.php:418
|
573 |
-
msgid "In order to use the navigation menus, you must build a <a href=\"%s\">custom menu</a>, then assign it to the proper Menu Location."
|
574 |
-
msgstr "بغية إستعمال خاصية القوائم، الرجاء التوجه الى <a href=\"%s\">القوائم</a> وتخصيص القوائم التي ترغبون بها"
|
575 |
-
|
576 |
-
#: lib/admin/theme-settings.php:423
|
577 |
-
msgid "Primary Navigation"
|
578 |
-
msgstr "القائمة الرئيسية"
|
579 |
-
|
580 |
-
#: lib/admin/theme-settings.php:427 lib/admin/theme-settings.php:465
|
581 |
-
msgid "Enable Fancy Dropdowns?"
|
582 |
-
msgstr "تفعيل خاصية الإنسدال السحري للقوائم"
|
583 |
-
|
584 |
-
#: lib/admin/theme-settings.php:432
|
585 |
-
msgid "Enable Extras on Right Side?"
|
586 |
-
msgstr "تفعيل الجانب الأيمن الزائد"
|
587 |
-
|
588 |
-
#: lib/admin/theme-settings.php:437
|
589 |
-
msgid "Display the following:"
|
590 |
-
msgstr "عرض التالي:"
|
591 |
-
|
592 |
-
#: lib/admin/theme-settings.php:439
|
593 |
-
msgid "Today's date"
|
594 |
-
msgstr "تاريخ اليوم"
|
595 |
-
|
596 |
-
#: lib/admin/theme-settings.php:440
|
597 |
-
msgid "RSS feed links"
|
598 |
-
msgstr "روابط تلقيمات إخبارية (RSS)"
|
599 |
-
|
600 |
-
#: lib/admin/theme-settings.php:441
|
601 |
-
msgid "Search form"
|
602 |
-
msgstr "نموذج البحث"
|
603 |
-
|
604 |
-
#: lib/admin/theme-settings.php:442
|
605 |
-
msgid "Twitter link"
|
606 |
-
msgstr "رابط Twitter"
|
607 |
-
|
608 |
-
#: lib/admin/theme-settings.php:447
|
609 |
-
msgid "Enter Twitter ID:"
|
610 |
-
msgstr "الرجاء إدخال إسم حساب Twitter:"
|
611 |
-
|
612 |
-
#: lib/admin/theme-settings.php:451
|
613 |
-
msgid "Twitter Link Text:"
|
614 |
-
msgstr "نص رابط Twitter:"
|
615 |
-
|
616 |
-
#: lib/admin/theme-settings.php:461
|
617 |
-
msgid "Secondary Navigation"
|
618 |
-
msgstr "القائمة الثانوية"
|
619 |
-
|
620 |
-
#: lib/admin/theme-settings.php:487
|
621 |
-
msgid "Enter your custom feed URI:"
|
622 |
-
msgstr "الرجاء إدخال رابط التلقيمات الإخبارية المخصصة"
|
623 |
-
|
624 |
-
#: lib/admin/theme-settings.php:491 lib/admin/theme-settings.php:499
|
625 |
-
msgid "Redirect Feed?"
|
626 |
-
msgstr "إعادة توجيه التلقيمات ؟"
|
627 |
-
|
628 |
-
#: lib/admin/theme-settings.php:495
|
629 |
-
msgid "Enter your custom comments feed URI:"
|
630 |
-
msgstr "الرجاء إدخال رابط تلقيمات التعليقات الإخبارية المخصصة"
|
631 |
-
|
632 |
-
#: lib/admin/theme-settings.php:502
|
633 |
-
msgid "If your custom feed(s) are not handled by Feedburner, we do not recommend that you use the redirect options."
|
634 |
-
msgstr "في حال كانت تلقيماتكم الإخبارية غير مدارة من قبل FeedBurner نحن لا ننصح باستعمال خاصية إعادة التوجيه"
|
635 |
-
|
636 |
-
#: lib/admin/theme-settings.php:521
|
637 |
-
msgid "Enable Comments"
|
638 |
-
msgstr "تفعيل التعليقات"
|
639 |
-
|
640 |
-
#: lib/admin/theme-settings.php:523 lib/admin/theme-settings.php:532
|
641 |
-
msgid "on posts?"
|
642 |
-
msgstr "في التدوينات"
|
643 |
-
|
644 |
-
#: lib/admin/theme-settings.php:526 lib/admin/theme-settings.php:535
|
645 |
-
msgid "on pages?"
|
646 |
-
msgstr "في الصفحات"
|
647 |
-
|
648 |
-
#: lib/admin/theme-settings.php:530
|
649 |
-
msgid "Enable Trackbacks"
|
650 |
-
msgstr "تفعيل التنبيهات"
|
651 |
-
|
652 |
-
#: lib/admin/theme-settings.php:538
|
653 |
-
msgid "Comments and Trackbacks can also be disabled on a per post/page basis when creating/editing posts/pages."
|
654 |
-
msgstr "يمكن تفعيل وتعطيل التعليقات والتنبيهات من التدوينات والصفحات المنفردة أيضا عند إنشائها او تحريرها"
|
655 |
-
|
656 |
-
#: lib/admin/theme-settings.php:556
|
657 |
-
msgid "Enable on:"
|
658 |
-
msgstr "تفعيل التصفح التدريجي في كل من:"
|
659 |
-
|
660 |
-
#: lib/admin/theme-settings.php:560
|
661 |
-
msgid "Front Page"
|
662 |
-
msgstr "صفحة الإستقبال"
|
663 |
-
|
664 |
-
#: lib/admin/theme-settings.php:563
|
665 |
-
msgid "Posts Page"
|
666 |
-
msgstr "صفحة التدوينات"
|
667 |
-
|
668 |
-
#: lib/admin/theme-settings.php:566
|
669 |
-
msgid "Homepage"
|
670 |
-
msgstr "الصفحة الرئيسية"
|
671 |
-
|
672 |
-
#: lib/admin/theme-settings.php:570 lib/structure/menu.php:149
|
673 |
-
msgid "Posts"
|
674 |
-
msgstr "التدوينات"
|
675 |
-
|
676 |
-
#: lib/admin/theme-settings.php:573
|
677 |
-
msgid "Pages"
|
678 |
-
msgstr "الصفحات"
|
679 |
-
|
680 |
-
#: lib/admin/theme-settings.php:576
|
681 |
-
msgid "Archives"
|
682 |
-
msgstr "الأرشيف"
|
683 |
-
|
684 |
-
#: lib/admin/theme-settings.php:579
|
685 |
-
msgid "404 Page"
|
686 |
-
msgstr "صفحة الخطأ (404)"
|
687 |
-
|
688 |
-
#: lib/admin/theme-settings.php:582
|
689 |
-
msgid "Attachment Page"
|
690 |
-
msgstr "صفحة المرفقات"
|
691 |
-
|
692 |
-
#: lib/admin/theme-settings.php:585
|
693 |
-
msgid "Breadcrumbs are a great way of letting your visitors find out where they are on your site with just a glance. You can enable/disable them on certain areas of your site."
|
694 |
-
msgstr "التصفح التدريجي هو وسيلة رائعة وجد مفيدة ليعرف الزوار أين هم في موقعك، هنا يمكنكم التحكم أين يظهر التصفح التدريجي وأين تختفي"
|
695 |
-
|
696 |
-
#: lib/admin/theme-settings.php:605
|
697 |
-
msgid "Select one of the following:"
|
698 |
-
msgstr "إختاروا من التالي:"
|
699 |
-
|
700 |
-
#: lib/admin/theme-settings.php:611
|
701 |
-
msgid "Display post content"
|
702 |
-
msgstr "عرض كامل محتوى التدوينات"
|
703 |
-
|
704 |
-
#: lib/admin/theme-settings.php:612
|
705 |
-
msgid "Display post excerpts"
|
706 |
-
msgstr "عرض مقتطف التدوينات فقط"
|
707 |
-
|
708 |
-
#: lib/admin/theme-settings.php:623 lib/widgets/featured-post-widget.php:353
|
709 |
-
msgid "Limit content to"
|
710 |
-
msgstr "تحديد المحتوى الظاهر الى"
|
711 |
-
|
712 |
-
#: lib/admin/theme-settings.php:625 lib/widgets/featured-post-widget.php:355
|
713 |
-
msgid "characters"
|
714 |
-
msgstr "حرف"
|
715 |
-
|
716 |
-
#: lib/admin/theme-settings.php:628
|
717 |
-
msgid "Using this option will limit the text and strip all formatting from the text displayed. To use this option, choose \"Display post content\" in the select box above."
|
718 |
-
msgstr "باستعمال هذا الخيار سيتم إختصار المحتوى للعدد الذي اخترتموه أعلاه، لإستعمال هذا الخيار الرجاء إختيار \"عرض كامل محتوى التدوينات\" من القائمة المنسدلة أعلاه."
|
719 |
-
|
720 |
-
#: lib/admin/theme-settings.php:633
|
721 |
-
msgid "Include the Featured Image?"
|
722 |
-
msgstr " ؟تضمين الصورة البارزة"
|
723 |
-
|
724 |
-
#: lib/admin/theme-settings.php:637
|
725 |
-
msgid "Image Size:"
|
726 |
-
msgstr "حجم الصورة:"
|
727 |
-
|
728 |
-
#: lib/admin/theme-settings.php:648
|
729 |
-
msgid "Select Post Navigation Technique:"
|
730 |
-
msgstr "إختاروا طريقة ترقيم صفحات التدوينات:"
|
731 |
-
|
732 |
-
#: lib/admin/theme-settings.php:650
|
733 |
-
msgid "Older / Newer"
|
734 |
-
msgstr "مواضيع أقدم / مواضيع أحدث"
|
735 |
-
|
736 |
-
#: lib/admin/theme-settings.php:651
|
737 |
-
msgid "Previous / Next"
|
738 |
-
msgstr "السابق / التالي"
|
739 |
-
|
740 |
-
#: lib/admin/theme-settings.php:652
|
741 |
-
msgid "Numeric"
|
742 |
-
msgstr "ترقيم رقمي "
|
743 |
-
|
744 |
-
#: lib/admin/theme-settings.php:656
|
745 |
-
msgid "These options will affect any blog listings page, including archive, author, blog, category, search, and tag pages."
|
746 |
-
msgstr "هذه الإعدادات ستمس جميع صفحات القالب التي تحوي تدوينات بداخلها مثل: الصفحة الرئيسية للمدونة، صفحة الأرشيف، صفحة الكاتب، التصنيفات، نتائج البحث وأيضا صفحة الوسوم."
|
747 |
-
|
748 |
-
#: lib/admin/theme-settings.php:674
|
749 |
-
msgid "These settings apply to any page given the \"Blog\" page template, not the homepage or post archive pages."
|
750 |
-
msgstr "هذا الإعداد سيتم فقط الصفحات التي تستعمل قالب \"المدونة\" "
|
751 |
-
|
752 |
-
#: lib/admin/theme-settings.php:679
|
753 |
-
msgid "Display which category:"
|
754 |
-
msgstr "إختاروا أي تصنيف"
|
755 |
-
|
756 |
-
#: lib/admin/theme-settings.php:680 lib/widgets/featured-post-widget.php:231
|
757 |
-
msgid "All Categories"
|
758 |
-
msgstr "جميع التصنيفات"
|
759 |
-
|
760 |
-
#: lib/admin/theme-settings.php:684
|
761 |
-
msgid "Exclude the following Category IDs:"
|
762 |
-
msgstr "إستثناء التصنيفات التالية (الرجاء وضع معرفات التصنيفات فقط):"
|
763 |
-
|
764 |
-
#: lib/admin/theme-settings.php:686
|
765 |
-
msgid "Comma separated - 1,2,3 for example"
|
766 |
-
msgstr "الرجاء الفصل بينها بفاصلة إنجليزية"
|
767 |
-
|
768 |
-
#: lib/admin/theme-settings.php:691
|
769 |
-
msgid "Number of Posts to Show:"
|
770 |
-
msgstr "عدد المواضيع لعرضها"
|
771 |
-
|
772 |
-
#: lib/admin/theme-settings.php:712 lib/admin/theme-settings.php:722
|
773 |
-
msgid "Enter scripts or code you would like output to %s:"
|
774 |
-
msgstr "الرجاء إدخال الشفرة التي ترغبون بإدراجها في منطقة %s"
|
775 |
-
|
776 |
-
#: lib/admin/theme-settings.php:717 lib/admin/theme-settings.php:727
|
777 |
-
msgid "The %1$s hook executes immediately before the closing %2$s tag in the document source."
|
778 |
-
msgstr "وسم %1$s يتم تنفيذه قبل غلق وسم %2$s في الكود المصدري"
|
779 |
-
|
780 |
-
#: lib/admin/user-meta.php:25
|
781 |
-
msgid "Google+"
|
782 |
-
msgstr "Google+"
|
783 |
-
|
784 |
-
#: lib/admin/user-meta.php:73
|
785 |
-
msgid "User Permissions"
|
786 |
-
msgstr "صلاحيات المستخدم"
|
787 |
-
|
788 |
-
#: lib/admin/user-meta.php:77
|
789 |
-
msgid "Genesis Admin Menus"
|
790 |
-
msgstr "شريط أدوات الإدارة"
|
791 |
-
|
792 |
-
#: lib/admin/user-meta.php:80
|
793 |
-
msgid "Enable Genesis Admin Menu?"
|
794 |
-
msgstr "تفعيل شريط أدوات الإدارة ؟"
|
795 |
-
|
796 |
-
#: lib/admin/user-meta.php:82
|
797 |
-
msgid "Enable SEO Settings Submenu?"
|
798 |
-
msgstr " تفعيل إعدادات SEO للقائمة الثانوية"
|
799 |
-
|
800 |
-
#: lib/admin/user-meta.php:84
|
801 |
-
msgid "Enable Import/Export Submenu?"
|
802 |
-
msgstr "تفعيل تصدير وإستيراد القائمة الثانوية"
|
803 |
-
|
804 |
-
#: lib/admin/user-meta.php:119
|
805 |
-
msgid "Author Archive Settings"
|
806 |
-
msgstr "إعدادات أرشيف الكاتب"
|
807 |
-
|
808 |
-
#: lib/admin/user-meta.php:120 lib/admin/user-meta.php:183
|
809 |
-
#: lib/admin/user-meta.php:247
|
810 |
-
msgid "These settings apply to this author's archive pages."
|
811 |
-
msgstr "هذه الإعدادات تنطبق على صفحات أرشيف هذا الكاتب فقط"
|
812 |
-
|
813 |
-
#: lib/admin/user-meta.php:124
|
814 |
-
msgid "Custom Archive Headline"
|
815 |
-
msgstr "ترويسة الأرشيف المخصصة"
|
816 |
-
|
817 |
-
#: lib/admin/user-meta.php:127
|
818 |
-
msgid "Will display in the %s tag at the top of the first page"
|
819 |
-
msgstr "سيتم إظهارها في وسم %s في أعلى أول صفحة"
|
820 |
-
|
821 |
-
#: lib/admin/user-meta.php:132
|
822 |
-
msgid "Custom Description Text"
|
823 |
-
msgstr "نص الوصف المخصص"
|
824 |
-
|
825 |
-
#: lib/admin/user-meta.php:135
|
826 |
-
msgid "This text will be the first paragraph, and display on the first page"
|
827 |
-
msgstr "هذا النص سيكون الفقرة الأولى وسيعرض في الصفحة الأولى"
|
828 |
-
|
829 |
-
#: lib/admin/user-meta.php:140
|
830 |
-
msgid "Author Box"
|
831 |
-
msgstr "صندوق عن الكاتب"
|
832 |
-
|
833 |
-
#: lib/admin/user-meta.php:143
|
834 |
-
msgid "Enable Author Box on this User's Posts?"
|
835 |
-
msgstr "تفعيل صندوق عن \"عن الكاتب\" في أسفل مواضيع هذا الكاتب ؟"
|
836 |
-
|
837 |
-
#: lib/admin/user-meta.php:145
|
838 |
-
msgid "Enable Author Box on this User's Archives?"
|
839 |
-
msgstr "تفعيل صندوق عن \"عن الكاتب\" في أسفل مواضيع أرشيف هذا الكاتب ؟"
|
840 |
-
|
841 |
-
#: lib/admin/whats-new.php:38
|
842 |
-
msgid "Welcome to Genesis %s"
|
843 |
-
msgstr "مرحبا بكم في إطار عمل Genesis %s"
|
844 |
-
|
845 |
-
#: lib/admin/whats-new.php:65
|
846 |
-
msgid "Thank you for updating to the latest version! Using Genesis %s will give you more options than you've ever had and your website will continue to purr like a kitten."
|
847 |
-
msgstr "شكرا لكم على الترقية لآخر نسخة، باستعمالكم لإطار العمل Genesis %s ستتمتعون بالقوة الكاملة لوورد بريس كما لم تشعروا بها من قبل"
|
848 |
-
|
849 |
-
#: lib/admin/whats-new.php:68
|
850 |
-
msgid "What’s New"
|
851 |
-
msgstr "ما الجديد ؟"
|
852 |
-
|
853 |
-
#: lib/admin/whats-new.php:71
|
854 |
-
msgid "Updated Design and Wider Layout"
|
855 |
-
msgstr "تحديث التصميم والتخطيط"
|
856 |
-
|
857 |
-
#: lib/admin/whats-new.php:73
|
858 |
-
msgid "Updated Security Audit"
|
859 |
-
msgstr "تحديث التدقيق الأمني"
|
860 |
-
|
861 |
-
#: lib/admin/whats-new.php:74
|
862 |
-
msgid "It's very important to us that we provide you the absolute best framework possible, so once again we hired WordPress Lead Developer Mark Jaquith to perform a full review of code for security as he's done in the past."
|
863 |
-
msgstr "إنه لمن المهم للغاية بالنسبة لنا أن نوفر أفضل أطر العمل على الإطلاق، لذا ومرة أخرى قمنا بتوظيف رئيس مطوري وورد بريس الأم السيد Mark Jaquith ليقوم بعمل مراجعة شاملة لأمان الشفرة المصدرية لإطار العمل Genesis"
|
864 |
-
|
865 |
-
#: lib/admin/whats-new.php:75
|
866 |
-
msgid "Google Author Highlights"
|
867 |
-
msgstr "إبراز الكاتب في Google"
|
868 |
-
|
869 |
-
#: lib/admin/whats-new.php:76
|
870 |
-
msgid "Genesis now offers support for author highlighting. This allows Google to associate your content with your Google+ content. Just edit your profile, find the field where you can enter your Google+ account URL, and save. Genesis does the rest. And if you want to associate an author with the homepage, you can do that in SEO Settings."
|
871 |
-
msgstr "إطار العمل Genesis يوفر الآن إبراز الكاتب في نتائج بحث محرك البحث Google تماما كما هو منصوح به من قبل هذا الأخير عبر ربط المدونة او الموقع بحسابكم في الشبكة الإجتماعية Google+، لعمل هذا الربط الآلي البسيط، الرجاء زيارة حسابكم عبر لوحة تحكم الوورد بريس وإضافة رابط حسابكم في خانة Google+"
|
872 |
-
|
873 |
-
#: lib/admin/whats-new.php:78
|
874 |
-
msgid "Deprecating Widgets"
|
875 |
-
msgstr "مربعات جانبية غير مفعلة"
|
876 |
-
|
877 |
-
#: lib/admin/whats-new.php:79
|
878 |
-
msgid "Genesis has always included some useful widgets to help you build your sites faster and easier. But lately, we realized that some of these widgets should really be plugins, so authors can push out updates more frequently, and you get more up to date code. So, the \"eNews & Updates\" and \"Latest Tweets\" widgets are being ported to plugins, and will eventually be removed from Genesis."
|
879 |
-
msgstr "إطار العمل Genesis يوفر مربعات جانبية خاصة ومميزة مدمجة معه لكن مؤخرا قررنا أنه من الأفضل فصلها عن إطار العمل ليكون لكيهما المتسع من المجال للتطوير بشكل أكثر، لذا ومن النسخة 1.9.1 تم جعل مربعي \"الإشتراك البريدي\" و \"زقزقات توتير\" عبارة عن إضافة وورد بريس منفصلة تتمتع بالتطوير والتحديث الخاص بها بما يتماشي مع التوافق التام مع إطار العمل Genesis"
|
880 |
-
|
881 |
-
#: lib/admin/whats-new.php:81
|
882 |
-
msgid "Genesis Category/Page Menu Widgets Removed"
|
883 |
-
msgstr "تم إزالة مربع قوائم الصفحات والتصنفات الجانبي"
|
884 |
-
|
885 |
-
#: lib/admin/whats-new.php:82
|
886 |
-
msgid "We deprecated the Category and Page menu widgets a few releases ago, and as of this release, we've completely removed them from the framework. If you were still using either of these widgets, you will notice that your menu is no longer showing."
|
887 |
-
msgstr "للأسف الشديد، لقد تم إزالة مربع \"قوائم الصفحات والتصنيفات\" منذ عدة إصدارات خلت، نتأسف لهذا الأمر، لكننا وجدناه افضل لإطار العمل"
|
888 |
-
|
889 |
-
#: lib/admin/whats-new.php:83
|
890 |
-
msgid "You will need to build a <a href=\"%s\">custom menu</a> and add the custom menu widget to the Header Right widget area."
|
891 |
-
msgstr "أنتم بحاجة أن تنشئوا <a href=\"%s\">قوائم مخصصة</a> ثم تضيفوا مربع القوائم الى القائمة الجانبية لأعلى يمين المدونة"
|
892 |
-
|
893 |
-
#: lib/admin/whats-new.php:85
|
894 |
-
msgid "Other Geeky Stuff"
|
895 |
-
msgstr "أمور أخرى"
|
896 |
-
|
897 |
-
#: lib/admin/whats-new.php:86
|
898 |
-
msgid "We also fixed a lot of little bugs, improved some things, and generally made the framework a more solid foundation for you to use. We hope you enjoy this latest release!"
|
899 |
-
msgstr "لقد صححنا عدة علل وحسنا بعض الأمور وبالعموم لقد جعلنا إطار العمل أحسن وأفضل من ذي قبل لراحة إستعمالكم له، نأمل أن تعيشوا تجربة إستخدام رائعة."
|
900 |
-
|
901 |
-
#: lib/admin/whats-new.php:91
|
902 |
-
msgid "Genesis 2.0 Roadmap"
|
903 |
-
msgstr "الطريق الى النسخة 2.0 من إطار العمل Genesis"
|
904 |
-
|
905 |
-
#: lib/admin/whats-new.php:93
|
906 |
-
msgid "Support for HTML5 Markup"
|
907 |
-
msgstr "دعم كبير لتقنية HTML5"
|
908 |
-
|
909 |
-
#: lib/admin/whats-new.php:94
|
910 |
-
msgid "We have big plans for a new markup structure in Genesis 2.0, all built with HTML5."
|
911 |
-
msgstr "لدينا خطط كبيرة لدعم بنية جديدة في نسخة إطار العمل Genesis 2.0، بدعم مطلق وكامل من تقنية HTML5"
|
912 |
-
|
913 |
-
#: lib/admin/whats-new.php:96
|
914 |
-
msgid "A New Mobile Strategy"
|
915 |
-
msgstr "إستراتيجية التوافق مع الموبايل"
|
916 |
-
|
917 |
-
#: lib/admin/whats-new.php:97
|
918 |
-
msgid "In case you can't tell, we're big fans of designing for mobile devices around here. So, we're going to be doing some things that will make it a whole lot easier to get your site mobile ready with Genesis in 2.0."
|
919 |
-
msgstr "في حال لم تلاحظوا، فإننا من كبار المعجبين بالتصميم المتلائم، لكل الأجهزة وخصوصا الموبايلات، لذا فنحن نعمل على شيء سيجعل من تجربة التصميم المتلائم شيئا أسهل من ذي قبل، ستحصلون على شيء أسهل، أروع وأكثر ملائمة مع النسخة 2.0 من إطار العمل Genesis."
|
920 |
-
|
921 |
-
#: lib/admin/whats-new.php:103
|
922 |
-
msgid "Project Leads"
|
923 |
-
msgstr "المشرفون على المشروع"
|
924 |
-
|
925 |
-
#: lib/admin/whats-new.php:109 lib/admin/whats-new.php:114
|
926 |
-
#: lib/admin/whats-new.php:119
|
927 |
-
msgid "Lead Developer"
|
928 |
-
msgstr "المطورون الأساسيون"
|
929 |
-
|
930 |
-
#: lib/admin/whats-new.php:127
|
931 |
-
msgid "Contributors"
|
932 |
-
msgstr "المشاركون"
|
933 |
-
|
934 |
-
#: lib/admin/whats-new.php:133 lib/admin/whats-new.php:138
|
935 |
-
#: lib/admin/whats-new.php:143 lib/admin/whats-new.php:148
|
936 |
-
#: lib/admin/whats-new.php:153 lib/admin/whats-new.php:158
|
937 |
-
#: lib/admin/whats-new.php:163 lib/admin/whats-new.php:168
|
938 |
-
#: lib/admin/whats-new.php:173 lib/admin/whats-new.php:178
|
939 |
-
msgid "Contributor"
|
940 |
-
msgstr "مساهم"
|
941 |
-
|
942 |
-
#: lib/admin/whats-new.php:185
|
943 |
-
msgid "Go to Theme Settings →"
|
944 |
-
msgstr "الذهاب الى إعدادات القالب →"
|
945 |
-
|
946 |
-
#: lib/admin/whats-new.php:186
|
947 |
-
msgid "Go to SEO Settings →"
|
948 |
-
msgstr "الذهاب الى إعدادات SEO →"
|
949 |
-
|
950 |
-
#: lib/classes/admin.php:118
|
951 |
-
msgid "You cannot use %s to create two menus in the same subclass. Please use separate subclasses for each menu."
|
952 |
-
msgstr "لا يمكنكم إستعمال %s لإنشاء قائمتين في نفس المكان، الرجاء فصلهما وإختيار قائمتين مختلفتين"
|
953 |
-
|
954 |
-
#: lib/classes/admin.php:415 lib/classes/admin.php:424
|
955 |
-
#: lib/classes/admin.php:527 lib/classes/admin.php:546
|
956 |
-
msgid "Are you sure you want to reset?"
|
957 |
-
msgstr "هل أنتم متأكدون من رغبتكم في إستعادة الإعدادات الإفتراضية"
|
958 |
-
|
959 |
-
#: lib/classes/breadcrumb.php:54 lib/functions/menu.php:133
|
960 |
-
msgid "Home"
|
961 |
-
msgstr "الرئيسية"
|
962 |
-
|
963 |
-
#: lib/classes/breadcrumb.php:63
|
964 |
-
msgid "You are here: "
|
965 |
-
msgstr "أنتم في:"
|
966 |
-
|
967 |
-
#: lib/classes/breadcrumb.php:64 lib/classes/breadcrumb.php:65
|
968 |
-
#: lib/classes/breadcrumb.php:66 lib/classes/breadcrumb.php:67
|
969 |
-
#: lib/classes/breadcrumb.php:69 lib/classes/breadcrumb.php:70
|
970 |
-
msgid "Archives for "
|
971 |
-
msgstr "أرشيف "
|
972 |
-
|
973 |
-
#: lib/classes/breadcrumb.php:68
|
974 |
-
msgid "Search for "
|
975 |
-
msgstr "البحث عن"
|
976 |
-
|
977 |
-
#: lib/classes/breadcrumb.php:71
|
978 |
-
msgid "Not found: "
|
979 |
-
msgstr "غير موجود:"
|
980 |
-
|
981 |
-
#: lib/classes/breadcrumb.php:120 lib/classes/breadcrumb.php:215
|
982 |
-
#: lib/classes/breadcrumb.php:281
|
983 |
-
msgid "View %s"
|
984 |
-
msgstr "مشاهدة %s"
|
985 |
-
|
986 |
-
#: lib/classes/breadcrumb.php:300
|
987 |
-
msgid "View all posts in %s"
|
988 |
-
msgstr "مشاهدة جميع المواضيع في %s"
|
989 |
-
|
990 |
-
#: lib/classes/breadcrumb.php:321
|
991 |
-
msgid "View all %s"
|
992 |
-
msgstr "مشاهدة جميع %s"
|
993 |
-
|
994 |
-
#: lib/classes/breadcrumb.php:403 lib/classes/breadcrumb.php:427
|
995 |
-
msgid "View archives for %s"
|
996 |
-
msgstr "مشاهدة أرشيف %s"
|
997 |
-
|
998 |
-
#: lib/classes/breadcrumb.php:433
|
999 |
-
msgid "View archives for %s %s"
|
1000 |
-
msgstr "مشاهدى أرشيف %s %s"
|
1001 |
-
|
1002 |
-
#: lib/classes/breadcrumb.php:525
|
1003 |
-
msgid "View all items in %s"
|
1004 |
-
msgstr "مشاهدة جميع العناصر في %s"
|
1005 |
-
|
1006 |
-
#: lib/functions/admin.php:15
|
1007 |
-
msgid "This file no longer needs to be included."
|
1008 |
-
msgstr "لم يعد من المطلوب تضمين هذا الملف"
|
1009 |
-
|
1010 |
-
#: lib/functions/formatting.php:292
|
1011 |
-
msgctxt "time difference"
|
1012 |
-
msgid "seconds"
|
1013 |
-
msgstr "ثواني"
|
1014 |
-
|
1015 |
-
#: lib/functions/formatting.php:296
|
1016 |
-
msgctxt "time difference"
|
1017 |
-
msgid "%s year"
|
1018 |
-
msgid_plural "%s years"
|
1019 |
-
msgstr[0] "بدون سنوات"
|
1020 |
-
msgstr[1] "سنة واحدة"
|
1021 |
-
msgstr[2] "سنتان"
|
1022 |
-
msgstr[3] "%s من السنوات"
|
1023 |
-
msgstr[4] "%s من السنوات"
|
1024 |
-
msgstr[5] "%s من السنوات"
|
1025 |
-
|
1026 |
-
#: lib/functions/formatting.php:297
|
1027 |
-
msgctxt "time difference"
|
1028 |
-
msgid "%s month"
|
1029 |
-
msgid_plural "%s months"
|
1030 |
-
msgstr[0] "بدون شهور"
|
1031 |
-
msgstr[1] "شهر واحد"
|
1032 |
-
msgstr[2] "شهران"
|
1033 |
-
msgstr[3] "%s من الشهور"
|
1034 |
-
msgstr[4] "%s من الشهور"
|
1035 |
-
msgstr[5] "%s من الشهور"
|
1036 |
-
|
1037 |
-
#: lib/functions/formatting.php:298
|
1038 |
-
msgctxt "time difference"
|
1039 |
-
msgid "%s week"
|
1040 |
-
msgid_plural "%s weeks"
|
1041 |
-
msgstr[0] "بدون أسابيع"
|
1042 |
-
msgstr[1] "أسبوع واحد"
|
1043 |
-
msgstr[2] "اسبوعان"
|
1044 |
-
msgstr[3] "%s من الأسابيع"
|
1045 |
-
msgstr[4] "%s من الأسابيع"
|
1046 |
-
msgstr[5] "%s من الأسابيع"
|
1047 |
-
|
1048 |
-
#: lib/functions/formatting.php:299
|
1049 |
-
msgctxt "time difference"
|
1050 |
-
msgid "%s day"
|
1051 |
-
msgid_plural "%s days"
|
1052 |
-
msgstr[0] "بدون أيام"
|
1053 |
-
msgstr[1] "يوم واحد"
|
1054 |
-
msgstr[2] "يومان"
|
1055 |
-
msgstr[3] "%s من الأيام"
|
1056 |
-
msgstr[4] "%s من الأيام"
|
1057 |
-
msgstr[5] "%s من الأيام"
|
1058 |
-
|
1059 |
-
#: lib/functions/formatting.php:300
|
1060 |
-
msgctxt "time difference"
|
1061 |
-
msgid "%s hour"
|
1062 |
-
msgid_plural "%s hours"
|
1063 |
-
msgstr[0] "بدون ساعات"
|
1064 |
-
msgstr[1] "ساعة واحدة"
|
1065 |
-
msgstr[2] "ساعتان"
|
1066 |
-
msgstr[3] "%s من الساعات"
|
1067 |
-
msgstr[4] "%s من الساعات"
|
1068 |
-
msgstr[5] "%s من الساعات"
|
1069 |
-
|
1070 |
-
#: lib/functions/formatting.php:301
|
1071 |
-
msgctxt "time difference"
|
1072 |
-
msgid "%s minute"
|
1073 |
-
msgid_plural "%s minutes"
|
1074 |
-
msgstr[0] "بدون دقائق"
|
1075 |
-
msgstr[1] "دقيقة واحدة"
|
1076 |
-
msgstr[2] "دقيقتان"
|
1077 |
-
msgstr[3] "%s من الدقائق"
|
1078 |
-
msgstr[4] "%s من الدقائق"
|
1079 |
-
msgstr[5] "%s من الدقائق"
|
1080 |
-
|
1081 |
-
#: lib/functions/formatting.php:302
|
1082 |
-
msgctxt "time difference"
|
1083 |
-
msgid "%s second"
|
1084 |
-
msgid_plural "%s seconds"
|
1085 |
-
msgstr[0] "بدون ثواني"
|
1086 |
-
msgstr[1] "ثانية واحدة"
|
1087 |
-
msgstr[2] "ثانيتان"
|
1088 |
-
msgstr[3] "%s من الثواني"
|
1089 |
-
msgstr[4] "%s من الثواني"
|
1090 |
-
msgstr[5] "%s من الثواني"
|
1091 |
-
|
1092 |
-
#: lib/functions/formatting.php:327
|
1093 |
-
msgctxt "separator in time difference"
|
1094 |
-
msgid "and"
|
1095 |
-
msgstr "و"
|
1096 |
-
|
1097 |
-
#: lib/functions/layout.php:37
|
1098 |
-
msgid "Content-Sidebar"
|
1099 |
-
msgstr "القائمة الجانبية على اليمين"
|
1100 |
-
|
1101 |
-
#: lib/functions/layout.php:46
|
1102 |
-
msgid "Sidebar-Content"
|
1103 |
-
msgstr "القائمة الجانبية على اليسار"
|
1104 |
-
|
1105 |
-
#: lib/functions/layout.php:54
|
1106 |
-
msgid "Content-Sidebar-Sidebar"
|
1107 |
-
msgstr "قائمتين جانبيتين على اليمين"
|
1108 |
-
|
1109 |
-
#: lib/functions/layout.php:62
|
1110 |
-
msgid "Sidebar-Sidebar-Content"
|
1111 |
-
msgstr "قائمتين جانبيتين على اليسار"
|
1112 |
-
|
1113 |
-
#: lib/functions/layout.php:70
|
1114 |
-
msgid "Sidebar-Content-Sidebar"
|
1115 |
-
msgstr "قائمتين جانبيتين واحدة على اليمين وواحدة على اليسار"
|
1116 |
-
|
1117 |
-
#: lib/functions/layout.php:78
|
1118 |
-
msgid "Full Width Content"
|
1119 |
-
msgstr "بعرض كامل بدون قوائم جانبية"
|
1120 |
-
|
1121 |
-
#: lib/functions/layout.php:123
|
1122 |
-
msgid "No Label Selected"
|
1123 |
-
msgstr "بدون إختيار"
|
1124 |
-
|
1125 |
-
#: lib/functions/menu.php:104
|
1126 |
-
msgid "The argument, \"context\", has been replaced with \"theme_location\" in the $args array."
|
1127 |
-
msgstr "لقد تم إستبدال الحجة \"context\" بـ \"theme_location\" في مصفوفة $args ."
|
1128 |
-
|
1129 |
-
#: lib/functions/seo.php:122
|
1130 |
-
msgid "Have you tried our Scribe content marketing software? Do research, content and website optimization, and relationship building without leaving WordPress. <b>Genesis owners save big when using the special link on the special page we've created just for you</b>. <a href=\"%s\" target=\"_blank\">Click here for more info</a>."
|
1131 |
-
msgstr "هل سبق وجرتم برنامجنا للإشتراك والنشر التجاري ؟ به الكثير من مزايا محركات البحث والمحتوى الأصلى وتحضير المواقع لتناسب وتلائم تقنيات SEO كل هذا بدون مغادرة لوحة تحكم الوورد بريس، <b>مستخدموا إطار العمل Genesis يحصلون على تخفيضات كبيرة</b>. <a href=\"%s\" target=\"_blank\">المزيد من هنا</a>."
|
1132 |
-
|
1133 |
-
#: lib/functions/seo.php:124
|
1134 |
-
msgid "Dismiss"
|
1135 |
-
msgstr "إخفاء الملاحظة"
|
1136 |
-
|
1137 |
-
#: lib/functions/upgrade.php:411
|
1138 |
-
msgid "Congratulations! You are now rocking Genesis %s"
|
1139 |
-
msgstr "مبارك، أنتم الآن تتمتعون بمزايا إطار العمل %s"
|
1140 |
-
|
1141 |
-
#: lib/functions/upgrade.php:436
|
1142 |
-
msgid "Click here to complete the upgrade"
|
1143 |
-
msgstr "الرجاء النقر هنا لإستكمال الترقية"
|
1144 |
-
|
1145 |
-
#: lib/functions/upgrade.php:461
|
1146 |
-
msgid "Genesis %s is available. <a href=\"%s\" class=\"thickbox thickbox-preview\">Check out what's new</a> or <a href=\"%s\" onclick=\"return genesis_confirm('%s');\">update now</a>."
|
1147 |
-
msgstr "النسخة %s من إطار العمل Genesis متوفرة . <a href=\"%s\" class=\"thickbox thickbox-preview\">تعرفوا على ما الجديد في هذه النسخة</a> او <a href=\"%s\" onclick=\"return genesis_confirm('%s');\">قوموا بالترقية الآن</a>."
|
1148 |
-
|
1149 |
-
#: lib/functions/upgrade.php:465
|
1150 |
-
msgid "Upgrading Genesis will overwrite the current installed version of Genesis. Are you sure you want to upgrade?. \"Cancel\" to stop, \"OK\" to upgrade."
|
1151 |
-
msgstr "الترقية الى النسخة الجديد سيلغي التنصيب الحالي لهذه النسخة، هل أنتم متأكدون من رغبتكم في الترقية ؟ الرجاء النقر على \"إلغاء\" لإلغاء الترقية او \"إستمرار\" لمواصلة الترقية"
|
1152 |
-
|
1153 |
-
#: lib/functions/upgrade.php:507
|
1154 |
-
msgid "Genesis %s is available for %s"
|
1155 |
-
msgstr "إطار العمل Genesis %s متوفر من أجل %s"
|
1156 |
-
|
1157 |
-
#: lib/functions/upgrade.php:508
|
1158 |
-
msgid "Genesis %s is now available. We have provided 1-click updates for this theme, so please log into your dashboard and update at your earliest convenience."
|
1159 |
-
msgstr "النسخة %s من إطار العمل Genesis متوفرة، لراحتكم وفرنا ترقية سريعة بسيطة بنقرة زر واحدة فقط، الرجاء التوجه الى لوحة التحكم والقيام بالترقية "
|
1160 |
-
|
1161 |
-
#: lib/functions/widgetize.php:63
|
1162 |
-
msgid "Header Left"
|
1163 |
-
msgstr "أعلى الموقع على اليسار"
|
1164 |
-
|
1165 |
-
#: lib/functions/widgetize.php:63
|
1166 |
-
msgid "Header Right"
|
1167 |
-
msgstr "أعلى الموقع على اليمين"
|
1168 |
-
|
1169 |
-
#: lib/functions/widgetize.php:64
|
1170 |
-
msgid "This is the widget area in the header."
|
1171 |
-
msgstr "هذه منطقة المربعات الجانبية في أعلى الموقع"
|
1172 |
-
|
1173 |
-
#: lib/functions/widgetize.php:71
|
1174 |
-
msgid "Primary Sidebar"
|
1175 |
-
msgstr "القائمة الجانبية الرئيسية"
|
1176 |
-
|
1177 |
-
#: lib/functions/widgetize.php:72
|
1178 |
-
msgid "This is the primary sidebar if you are using a two or three column site layout option."
|
1179 |
-
msgstr "هذه هي القائمة الجانبية الرئيسية في حال كنتم تستخدمون تخطيط يتضمن عمودين او ثلاث"
|
1180 |
-
|
1181 |
-
#: lib/functions/widgetize.php:79
|
1182 |
-
msgid "Secondary Sidebar"
|
1183 |
-
msgstr "القائمة الجانبية الثانوية"
|
1184 |
-
|
1185 |
-
#: lib/functions/widgetize.php:80
|
1186 |
-
msgid "This is the secondary sidebar if you are using a three column site layout option."
|
1187 |
-
msgstr "هذه هي القائمة الجانبية الرئيسية في حال كنتم تستخدمون تخطيط يتضمن ثلاث أعمدة"
|
1188 |
-
|
1189 |
-
#: lib/functions/widgetize.php:112
|
1190 |
-
msgid "Footer %d"
|
1191 |
-
msgstr "القائمة الجانبية لأسفل الموقع %d"
|
1192 |
-
|
1193 |
-
#: lib/functions/widgetize.php:113
|
1194 |
-
msgid "Footer %d widget area."
|
1195 |
-
msgstr "منطقة المربعات الجانبية لأسفل الموقع رقم %d"
|
1196 |
-
|
1197 |
-
#: lib/init.php:47
|
1198 |
-
msgid "Primary Navigation Menu"
|
1199 |
-
msgstr "القائمة التصفح الرئيسية"
|
1200 |
-
|
1201 |
-
#: lib/init.php:48
|
1202 |
-
msgid "Secondary Navigation Menu"
|
1203 |
-
msgstr "القائمة التصفح الرئيسية"
|
1204 |
-
|
1205 |
-
#: lib/js/load-scripts.php:85
|
1206 |
-
msgid "Select / Deselect All"
|
1207 |
-
msgstr "إختيار الكل / عدم إختيار الكل"
|
1208 |
-
|
1209 |
-
#: lib/shortcodes/footer.php:41
|
1210 |
-
msgid "Return to top of page"
|
1211 |
-
msgstr "العودة للأعلى"
|
1212 |
-
|
1213 |
-
#: lib/shortcodes/footer.php:176
|
1214 |
-
msgid "by "
|
1215 |
-
msgstr "بواسطة"
|
1216 |
-
|
1217 |
-
#: lib/shortcodes/footer.php:241
|
1218 |
-
msgid "Log in"
|
1219 |
-
msgstr "تسجيل الدخول"
|
1220 |
-
|
1221 |
-
#: lib/shortcodes/footer.php:243
|
1222 |
-
msgid "Log out"
|
1223 |
-
msgstr "تسجيل الخروج"
|
1224 |
-
|
1225 |
-
#: lib/shortcodes/post.php:43
|
1226 |
-
msgid "ago"
|
1227 |
-
msgstr "خلت"
|
1228 |
-
|
1229 |
-
#: lib/shortcodes/post.php:140
|
1230 |
-
msgid "Visit %s’s website"
|
1231 |
-
msgstr "زيارة موقع %s"
|
1232 |
-
|
1233 |
-
#: lib/shortcodes/post.php:205 lib/widgets/featured-page-widget.php:101
|
1234 |
-
msgid "% Comments"
|
1235 |
-
msgstr "% من التعليقات"
|
1236 |
-
|
1237 |
-
#: lib/shortcodes/post.php:206 lib/widgets/featured-page-widget.php:101
|
1238 |
-
msgid "1 Comment"
|
1239 |
-
msgstr "تعليق واحد فقط"
|
1240 |
-
|
1241 |
-
#: lib/shortcodes/post.php:207 lib/widgets/featured-page-widget.php:101
|
1242 |
-
msgid "Leave a Comment"
|
1243 |
-
msgstr "أتركوا تعليقا"
|
1244 |
-
|
1245 |
-
#: lib/shortcodes/post.php:247
|
1246 |
-
msgid "Tagged With: "
|
1247 |
-
msgstr "موسوم بـ:"
|
1248 |
-
|
1249 |
-
#: lib/shortcodes/post.php:282 lib/shortcodes/post.php:320
|
1250 |
-
msgid "Filed Under: "
|
1251 |
-
msgstr "تحت تصنيف:"
|
1252 |
-
|
1253 |
-
#: lib/shortcodes/post.php:364 lib/structure/comments.php:189
|
1254 |
-
#: lib/structure/post.php:207 lib/widgets/featured-page-widget.php:103
|
1255 |
-
msgid "(Edit)"
|
1256 |
-
msgstr "(تحرير)"
|
1257 |
-
|
1258 |
-
#: lib/structure/comments.php:63
|
1259 |
-
msgid "<h3>Comments</h3>"
|
1260 |
-
msgstr "<h3>التعليقات</h3>"
|
1261 |
-
|
1262 |
-
#: lib/structure/comments.php:114
|
1263 |
-
msgid "<h3>Trackbacks</h3>"
|
1264 |
-
msgstr "<h3>التنبيهات</h3>"
|
1265 |
-
|
1266 |
-
#: lib/structure/comments.php:184
|
1267 |
-
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">%s:</span>"
|
1268 |
-
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">%s:</span>"
|
1269 |
-
|
1270 |
-
#: lib/structure/comments.php:184
|
1271 |
-
msgid "says"
|
1272 |
-
msgstr "قال"
|
1273 |
-
|
1274 |
-
#: lib/structure/comments.php:188
|
1275 |
-
msgid "%1$s at %2$s"
|
1276 |
-
msgstr "%1$s بتوقيت %2$s"
|
1277 |
-
|
1278 |
-
#: lib/structure/comments.php:195
|
1279 |
-
msgid "Your comment is awaiting moderation."
|
1280 |
-
msgstr "شكرا جزيلا لكم، تعليقكم ينتظر موافقة عبد الحفيظ، متصفحا سعيدا في ثنايا المدونة"
|
1281 |
-
|
1282 |
-
#: lib/structure/comments.php:252
|
1283 |
-
msgid "Name"
|
1284 |
-
msgstr " الإسم الكريم"
|
1285 |
-
|
1286 |
-
#: lib/structure/comments.php:258
|
1287 |
-
msgid "Email"
|
1288 |
-
msgstr " البريد الإليكتروني"
|
1289 |
-
|
1290 |
-
#: lib/structure/comments.php:264
|
1291 |
-
msgid "Website"
|
1292 |
-
msgstr " الموقع الإليكتروني (إن وجد)"
|
1293 |
-
|
1294 |
-
#: lib/structure/comments.php:278
|
1295 |
-
msgid "Speak Your Mind"
|
1296 |
-
msgstr "شاركونا بآرائكم"
|
1297 |
-
|
1298 |
-
#: lib/structure/footer.php:110
|
1299 |
-
msgid "Copyright"
|
1300 |
-
msgstr "كافة الحقوق محفوظة"
|
1301 |
-
|
1302 |
-
#: lib/structure/footer.php:110
|
1303 |
-
msgid "on"
|
1304 |
-
msgstr " "
|
1305 |
-
|
1306 |
-
#: lib/structure/loops.php:192
|
1307 |
-
msgid "Read more"
|
1308 |
-
msgstr "قراءة المزيد"
|
1309 |
-
|
1310 |
-
#: lib/structure/menu.php:150
|
1311 |
-
msgid "Comments"
|
1312 |
-
msgstr "تعليقات"
|
1313 |
-
|
1314 |
-
#: lib/structure/post.php:214 lib/structure/post.php:216
|
1315 |
-
msgid "[Read more...]"
|
1316 |
-
msgstr "[المزيد ...]"
|
1317 |
-
|
1318 |
-
#: lib/structure/post.php:233
|
1319 |
-
msgid "Sorry, no posts matched your criteria."
|
1320 |
-
msgstr "جد متأسفين، لكننا لم نتمكن من العثور على أي نتائج تطابق ما تبحثون عنه"
|
1321 |
-
|
1322 |
-
#: lib/structure/post.php:259 lib/widgets/featured-page-widget.php:98
|
1323 |
-
msgid "by"
|
1324 |
-
msgstr "بقلم"
|
1325 |
-
|
1326 |
-
#: lib/structure/post.php:334
|
1327 |
-
msgid "About"
|
1328 |
-
msgstr "عن "
|
1329 |
-
|
1330 |
-
#: lib/structure/post.php:379
|
1331 |
-
msgid "Older Posts"
|
1332 |
-
msgstr "مواضيع أقدم"
|
1333 |
-
|
1334 |
-
#: lib/structure/post.php:380
|
1335 |
-
msgid "Newer Posts"
|
1336 |
-
msgstr "مواضيع أحدث"
|
1337 |
-
|
1338 |
-
#: lib/structure/post.php:400 lib/structure/post.php:462
|
1339 |
-
msgid "Previous Page"
|
1340 |
-
msgstr "الصفحة السابقة"
|
1341 |
-
|
1342 |
-
#: lib/structure/post.php:401 lib/structure/post.php:492
|
1343 |
-
msgid "Next Page"
|
1344 |
-
msgstr "الصفحة التالية"
|
1345 |
-
|
1346 |
-
#: lib/structure/search.php:23
|
1347 |
-
msgid "Search this website"
|
1348 |
-
msgstr "إبحثوا في ثنايا المدونة"
|
1349 |
-
|
1350 |
-
#: lib/structure/search.php:25
|
1351 |
-
msgid "Search"
|
1352 |
-
msgstr "البحث"
|
1353 |
-
|
1354 |
-
#: lib/structure/sidebar.php:24
|
1355 |
-
msgid "Primary Sidebar Widget Area"
|
1356 |
-
msgstr "منطقة المربعات الجانبية الرئيسية"
|
1357 |
-
|
1358 |
-
#: lib/structure/sidebar.php:27
|
1359 |
-
msgid "This is the Primary Sidebar Widget Area. You can add content to this area by visiting your <a href=\"%s\">Widgets Panel</a> and adding new widgets to this area."
|
1360 |
-
msgstr "هذه هي منطقة المربعات الجانبية الرئيسية، يمكنكم إضافة محتوى لها عبر <a href=\"%s\">المربعات الجانبية</a> بسحب وإلقاء المربعات الجنبية في المناطق المرغوب بها"
|
1361 |
-
|
1362 |
-
#: lib/structure/sidebar.php:45
|
1363 |
-
msgid "Secondary Sidebar Widget Area"
|
1364 |
-
msgstr "منطقة المربعات الجانبية الثانوية"
|
1365 |
-
|
1366 |
-
#: lib/structure/sidebar.php:48
|
1367 |
-
msgid "This is the Secondary Sidebar Widget Area. You can add content to this area by visiting your <a href=\"%s\">Widgets Panel</a> and adding new widgets to this area."
|
1368 |
-
msgstr "هذه هي منطقة المربعات الجانبية الثانوية، يمكنكم إضافة محتوى لها عبر <a href=\"%s\">المربعات الجانبية</a> بسحب وإلقاء المربعات الجنبية في المناطق المرغوب بها"
|
1369 |
-
|
1370 |
-
#: lib/tools/post-templates.php:132
|
1371 |
-
msgid "Single Post Template"
|
1372 |
-
msgstr "قالب التدوينة المنفردة"
|
1373 |
-
|
1374 |
-
#: lib/tools/post-templates.php:157
|
1375 |
-
msgid "Post Template"
|
1376 |
-
msgstr "قالب التدوينة"
|
1377 |
-
|
1378 |
-
#: lib/tools/post-templates.php:162
|
1379 |
-
msgid "Some themes have custom templates you can use for single posts that might have additional features or custom layouts. If so, you will see them above."
|
1380 |
-
msgstr "بعض القوالب لها قوالب مخصصة للتدوينات المنفردة مما قد يضيف ميزة إضافية للتخطيط، في حال كانت كذلك، سترونها أعلاه"
|
1381 |
-
|
1382 |
-
#: lib/widgets/enews-widget.php:38
|
1383 |
-
msgid "Enter your email address ..."
|
1384 |
-
msgstr "أدخلوا بريدكم الإليكتروني هنا"
|
1385 |
-
|
1386 |
-
#: lib/widgets/enews-widget.php:39
|
1387 |
-
msgid "Go"
|
1388 |
-
msgstr "إشتركوا"
|
1389 |
-
|
1390 |
-
#: lib/widgets/enews-widget.php:44
|
1391 |
-
msgid "Displays Feedburner email subscribe form"
|
1392 |
-
msgstr "عرض مربع الإشتراك الخاص بـ FeedBurner"
|
1393 |
-
|
1394 |
-
#: lib/widgets/enews-widget.php:47
|
1395 |
-
msgid "Genesis - eNews and Updates"
|
1396 |
-
msgstr "الإشتراك البريدي"
|
1397 |
-
|
1398 |
-
#: lib/widgets/enews-widget.php:115 lib/widgets/enews-widget.php:124
|
1399 |
-
#: lib/widgets/latest-tweets-widget.php:181
|
1400 |
-
#: lib/widgets/latest-tweets-widget.php:190
|
1401 |
-
msgid "This widget has been deprecated, and should no longer be used."
|
1402 |
-
msgstr "هذا المربع الجانبي تم التخلي عنه، لا يجدر بكم إستعماله، في كان كانت له إضافة مخصصة، سيتم تنبيهكم لها"
|
1403 |
-
|
1404 |
-
#: lib/widgets/enews-widget.php:116
|
1405 |
-
msgid "If you would like to continue to use the eNews widget functionality, please have a site administrator <a href=\"%s\" target=\"_blank\">install this plugin</a> and replace this widget with the Genesis eNews Extended widget."
|
1406 |
-
msgstr "في حال رغبتم في الإستمرار في إستعمال المربع الجانبي، الرجاء <a href=\"%s\" class=\"thickbox\" title=\"Install Genesis eNews Extended\">تنصيب هذه الإضافة</a> واستبدال هذا المربع بالمربع الذي سيظهر لاحقا بعد التنصيب"
|
1407 |
-
|
1408 |
-
#: lib/widgets/enews-widget.php:125
|
1409 |
-
msgid "If you would like to continue to use the eNews widget functionality, please <a href=\"%s\" class=\"thickbox\" title=\"Install Genesis eNews Extended\">install this plugin</a> and replace this widget with the Genesis eNews Extended widget."
|
1410 |
-
msgstr "في حال رغبتم في الإستمرار في إستعمال المربع الجانبي، الرجاء <a href=\"%s\" class=\"thickbox\" title=\"Install Genesis eNews Extended\">تنصيب هذه الإضافة</a> واستبدال هذا المربع بالمربع الذي سيظهر لاحقا بعد التنصيب"
|
1411 |
-
|
1412 |
-
#: lib/widgets/featured-page-widget.php:51
|
1413 |
-
msgid "Displays featured page with thumbnails"
|
1414 |
-
msgstr "عرض الصفحة المميزة"
|
1415 |
-
|
1416 |
-
#: lib/widgets/featured-page-widget.php:60
|
1417 |
-
msgid "Genesis - Featured Page"
|
1418 |
-
msgstr "صفحة ميزة"
|
1419 |
-
|
1420 |
-
#: lib/widgets/featured-page-widget.php:159
|
1421 |
-
#: lib/widgets/featured-post-widget.php:215
|
1422 |
-
#: lib/widgets/featured-post-widget.php:251
|
1423 |
-
#: lib/widgets/featured-post-widget.php:371
|
1424 |
-
#: lib/widgets/user-profile-widget.php:136
|
1425 |
-
msgid "Title"
|
1426 |
-
msgstr "العنوان"
|
1427 |
-
|
1428 |
-
#: lib/widgets/featured-page-widget.php:164
|
1429 |
-
msgid "Page"
|
1430 |
-
msgstr "الصفحة"
|
1431 |
-
|
1432 |
-
#: lib/widgets/featured-page-widget.php:172
|
1433 |
-
#: lib/widgets/featured-post-widget.php:301
|
1434 |
-
msgid "Show Featured Image"
|
1435 |
-
msgstr "إظهار الصورة البارزة"
|
1436 |
-
|
1437 |
-
#: lib/widgets/featured-page-widget.php:176
|
1438 |
-
#: lib/widgets/featured-post-widget.php:305
|
1439 |
-
msgid "Image Size"
|
1440 |
-
msgstr "حجم الصورة"
|
1441 |
-
|
1442 |
-
#: lib/widgets/featured-page-widget.php:188
|
1443 |
-
#: lib/widgets/featured-post-widget.php:317
|
1444 |
-
msgid "Image Alignment"
|
1445 |
-
msgstr "محاذات الصورة"
|
1446 |
-
|
1447 |
-
#: lib/widgets/featured-page-widget.php:190
|
1448 |
-
#: lib/widgets/featured-post-widget.php:289
|
1449 |
-
#: lib/widgets/featured-post-widget.php:319
|
1450 |
-
#: lib/widgets/user-profile-widget.php:160
|
1451 |
-
#: lib/widgets/user-profile-widget.php:180
|
1452 |
-
msgid "None"
|
1453 |
-
msgstr "بدون محاذات"
|
1454 |
-
|
1455 |
-
#: lib/widgets/featured-page-widget.php:200
|
1456 |
-
msgid "Show Page Title"
|
1457 |
-
msgstr "إظهار عنوان الصفحة"
|
1458 |
-
|
1459 |
-
#: lib/widgets/featured-page-widget.php:205
|
1460 |
-
msgid "Show Page Byline"
|
1461 |
-
msgstr "إظهار صفحة في كل سطر"
|
1462 |
-
|
1463 |
-
#: lib/widgets/featured-page-widget.php:210
|
1464 |
-
msgid "Show Page Content"
|
1465 |
-
msgstr "إظهار محتوى الصفحة"
|
1466 |
-
|
1467 |
-
#: lib/widgets/featured-page-widget.php:214
|
1468 |
-
msgid "Content Character Limit"
|
1469 |
-
msgstr "حد حروف المحتوى"
|
1470 |
-
|
1471 |
-
#: lib/widgets/featured-page-widget.php:219
|
1472 |
-
msgid "More Text"
|
1473 |
-
msgstr "نص قراءة المزيد"
|
1474 |
-
|
1475 |
-
#: lib/widgets/featured-post-widget.php:51
|
1476 |
-
msgid "By"
|
1477 |
-
msgstr "بقلم"
|
1478 |
-
|
1479 |
-
#: lib/widgets/featured-post-widget.php:54
|
1480 |
-
msgid "[Read More...]"
|
1481 |
-
msgstr "[المزيد ...]"
|
1482 |
-
|
1483 |
-
#: lib/widgets/featured-post-widget.php:58
|
1484 |
-
msgid "More Posts from this Category"
|
1485 |
-
msgstr "مواضيع أخرى من هذا التصنيف"
|
1486 |
-
|
1487 |
-
#: lib/widgets/featured-post-widget.php:63
|
1488 |
-
msgid "Displays featured posts with thumbnails"
|
1489 |
-
msgstr "إظهار المواضيع المميزة مع الصور البارزة"
|
1490 |
-
|
1491 |
-
#: lib/widgets/featured-post-widget.php:72
|
1492 |
-
msgid "Genesis - Featured Posts"
|
1493 |
-
msgstr "مواضيع مميزة"
|
1494 |
-
|
1495 |
-
#: lib/widgets/featured-post-widget.php:224
|
1496 |
-
msgid "Category"
|
1497 |
-
msgstr "التصنيف"
|
1498 |
-
|
1499 |
-
#: lib/widgets/featured-post-widget.php:238
|
1500 |
-
#: lib/widgets/featured-post-widget.php:376
|
1501 |
-
msgid "Number of Posts to Show"
|
1502 |
-
msgstr "عدد التدوينات لعرضها"
|
1503 |
-
|
1504 |
-
#: lib/widgets/featured-post-widget.php:243
|
1505 |
-
msgid "Number of Posts to Offset"
|
1506 |
-
msgstr "عدد التدوينات لموازنتها"
|
1507 |
-
|
1508 |
-
#: lib/widgets/featured-post-widget.php:248
|
1509 |
-
msgid "Order By"
|
1510 |
-
msgstr "الترتيب حسب"
|
1511 |
-
|
1512 |
-
#: lib/widgets/featured-post-widget.php:250
|
1513 |
-
msgid "Date"
|
1514 |
-
msgstr "التاريخ"
|
1515 |
-
|
1516 |
-
#: lib/widgets/featured-post-widget.php:252
|
1517 |
-
msgid "Parent"
|
1518 |
-
msgstr "الرئيسي"
|
1519 |
-
|
1520 |
-
#: lib/widgets/featured-post-widget.php:253
|
1521 |
-
msgid "ID"
|
1522 |
-
msgstr "المعرف"
|
1523 |
-
|
1524 |
-
#: lib/widgets/featured-post-widget.php:254
|
1525 |
-
msgid "Comment Count"
|
1526 |
-
msgstr "عدد التعليقات"
|
1527 |
-
|
1528 |
-
#: lib/widgets/featured-post-widget.php:255
|
1529 |
-
msgid "Random"
|
1530 |
-
msgstr "عشوائيا"
|
1531 |
-
|
1532 |
-
#: lib/widgets/featured-post-widget.php:260
|
1533 |
-
msgid "Sort Order"
|
1534 |
-
msgstr "كيفية الترتيب"
|
1535 |
-
|
1536 |
-
#: lib/widgets/featured-post-widget.php:262
|
1537 |
-
msgid "Descending (3, 2, 1)"
|
1538 |
-
msgstr "تنازليا"
|
1539 |
-
|
1540 |
-
#: lib/widgets/featured-post-widget.php:263
|
1541 |
-
msgid "Ascending (1, 2, 3)"
|
1542 |
-
msgstr "تصاعديا"
|
1543 |
-
|
1544 |
-
#: lib/widgets/featured-post-widget.php:273
|
1545 |
-
msgid "Show Author Gravatar"
|
1546 |
-
msgstr "إظهار صورة الكاتب الرمزية"
|
1547 |
-
|
1548 |
-
#: lib/widgets/featured-post-widget.php:277
|
1549 |
-
#: lib/widgets/user-profile-widget.php:146
|
1550 |
-
msgid "Gravatar Size"
|
1551 |
-
msgstr "حجم الصورة الرمزية"
|
1552 |
-
|
1553 |
-
#: lib/widgets/featured-post-widget.php:279
|
1554 |
-
msgid "Small (45px)"
|
1555 |
-
msgstr "صغيرة (45 بيكسل)"
|
1556 |
-
|
1557 |
-
#: lib/widgets/featured-post-widget.php:280
|
1558 |
-
msgid "Medium (65px)"
|
1559 |
-
msgstr "متوسطة (65 بيكسل)"
|
1560 |
-
|
1561 |
-
#: lib/widgets/featured-post-widget.php:281
|
1562 |
-
msgid "Large (85px)"
|
1563 |
-
msgstr "كبيرة (85 بيكسل)"
|
1564 |
-
|
1565 |
-
#: lib/widgets/featured-post-widget.php:282
|
1566 |
-
msgid "Extra Large (125px)"
|
1567 |
-
msgstr "كبيرة للغاية (125 بيكسل)"
|
1568 |
-
|
1569 |
-
#: lib/widgets/featured-post-widget.php:287
|
1570 |
-
#: lib/widgets/user-profile-widget.php:158
|
1571 |
-
msgid "Gravatar Alignment"
|
1572 |
-
msgstr "محاذات الصورة الرمزية"
|
1573 |
-
|
1574 |
-
#: lib/widgets/featured-post-widget.php:335
|
1575 |
-
msgid "Show Post Title"
|
1576 |
-
msgstr "إظهار عنوان التدوينة"
|
1577 |
-
|
1578 |
-
#: lib/widgets/featured-post-widget.php:340
|
1579 |
-
msgid "Show Post Info"
|
1580 |
-
msgstr "إظهار معلومات التدوينة"
|
1581 |
-
|
1582 |
-
#: lib/widgets/featured-post-widget.php:345
|
1583 |
-
msgid "Content Type"
|
1584 |
-
msgstr "إظهار نوع المحتوى"
|
1585 |
-
|
1586 |
-
#: lib/widgets/featured-post-widget.php:347
|
1587 |
-
msgid "Show Content"
|
1588 |
-
msgstr "إظهار المحتوى"
|
1589 |
-
|
1590 |
-
#: lib/widgets/featured-post-widget.php:348
|
1591 |
-
msgid "Show Excerpt"
|
1592 |
-
msgstr "إظهار المقتطف"
|
1593 |
-
|
1594 |
-
#: lib/widgets/featured-post-widget.php:349
|
1595 |
-
msgid "Show Content Limit"
|
1596 |
-
msgstr "إظهار حد المحتوى"
|
1597 |
-
|
1598 |
-
#: lib/widgets/featured-post-widget.php:350
|
1599 |
-
msgid "No Content"
|
1600 |
-
msgstr "بدون محتوى"
|
1601 |
-
|
1602 |
-
#: lib/widgets/featured-post-widget.php:360
|
1603 |
-
msgid "More Text (if applicable)"
|
1604 |
-
msgstr "نص قراءة المزيد (في حال وجد)"
|
1605 |
-
|
1606 |
-
#: lib/widgets/featured-post-widget.php:368
|
1607 |
-
msgid "To display an unordered list of more posts from this category, please fill out the information below"
|
1608 |
-
msgstr "الرجاء إكمال المعلومات أسفله في حال رغبتم في إظهار قائمة غير مرتبة من هذا التصنيف"
|
1609 |
-
|
1610 |
-
#: lib/widgets/featured-post-widget.php:386
|
1611 |
-
msgid "Show Category Archive Link"
|
1612 |
-
msgstr "إظهار رابط أرشيف التصنيف"
|
1613 |
-
|
1614 |
-
#: lib/widgets/featured-post-widget.php:390
|
1615 |
-
msgid "Link Text"
|
1616 |
-
msgstr "رابط النص"
|
1617 |
-
|
1618 |
-
#: lib/widgets/latest-tweets-widget.php:49
|
1619 |
-
msgid "Display a list of your latest tweets."
|
1620 |
-
msgstr "إظهار قائمة بآخر زقزقاتكم على Twiter"
|
1621 |
-
|
1622 |
-
#: lib/widgets/latest-tweets-widget.php:58
|
1623 |
-
msgid "Genesis - Latest Tweets"
|
1624 |
-
msgstr "زقزقات Twitter"
|
1625 |
-
|
1626 |
-
#: lib/widgets/latest-tweets-widget.php:98
|
1627 |
-
msgid "The Twitter API is taking too long to respond. Please try again later."
|
1628 |
-
msgstr "الواجهة البرمجية لـ Twitter تأخذ وقتا طويلا للتحميل، الرجاء المحاولة مجددا"
|
1629 |
-
|
1630 |
-
#: lib/widgets/latest-tweets-widget.php:101
|
1631 |
-
msgid "There was an error while attempting to contact the Twitter API. Please try again."
|
1632 |
-
msgstr "لقد حصل خلل ما أثناء المحاولة للإتصال بالواجهة البرمجية لـ Twitter، الرجاء المحاولة مجددا."
|
1633 |
-
|
1634 |
-
#: lib/widgets/latest-tweets-widget.php:104
|
1635 |
-
msgid "The Twitter API returned an error while processing your request. Please try again."
|
1636 |
-
msgstr "الواجهة البرمجية لـ Twitter ردت برسالة خطأ أثناء معالجة طلبكم، الرجاء المحاولة مجددا"
|
1637 |
-
|
1638 |
-
#: lib/widgets/latest-tweets-widget.php:118
|
1639 |
-
msgid "about %s ago"
|
1640 |
-
msgstr "منذ حوالي %s مضت"
|
1641 |
-
|
1642 |
-
#: lib/widgets/latest-tweets-widget.php:182
|
1643 |
-
msgid "If you would like to continue to use the Latest Tweets widget functionality, please have a site administrator <a href=\"%s\" target=\"_blank\">install this plugin</a>."
|
1644 |
-
msgstr "للإستمرار بإستعمال مربع آخر الزقزقات من Twitter الرجاء <a href=\"%s\" target=\"_blank\">تنصيب هذه الإضافة</a>."
|
1645 |
-
|
1646 |
-
#: lib/widgets/latest-tweets-widget.php:191
|
1647 |
-
msgid "If you would like to continue to use the Latest Tweets widget functionality, please <a href=\"%s\" class=\"thickbox\" title=\"Install Genesis Latest Tweets\">install this plugin</a>."
|
1648 |
-
msgstr "للإستمرار في إستعمال مربع آخر الزقزقات الرجاء <a href=\"%s\" class=\"thickbox\" title=\"تنصيب إضافة Genesis Latest Tweets\">تنصيب هذه الإضافة</a>."
|
1649 |
-
|
1650 |
-
#: lib/widgets/user-profile-widget.php:42
|
1651 |
-
msgid "Read More"
|
1652 |
-
msgstr "قراءة المزيد"
|
1653 |
-
|
1654 |
-
#: lib/widgets/user-profile-widget.php:48
|
1655 |
-
msgid "Displays user profile block with Gravatar"
|
1656 |
-
msgstr "لعرض ملف الكاتب الشخصي مع صورة رمزية له"
|
1657 |
-
|
1658 |
-
#: lib/widgets/user-profile-widget.php:57
|
1659 |
-
msgid "Genesis - User Profile"
|
1660 |
-
msgstr "ملف الكاتب"
|
1661 |
-
|
1662 |
-
#: lib/widgets/user-profile-widget.php:96
|
1663 |
-
msgid "View My Blog Posts"
|
1664 |
-
msgstr "مشاهدة جميع مقالاتي"
|
1665 |
-
|
1666 |
-
#: lib/widgets/user-profile-widget.php:141
|
1667 |
-
msgid "Select a user. The email address for this account will be used to pull the Gravatar image."
|
1668 |
-
msgstr "الرجاء إختيار كاتب، بريده سيستخدم لجلب الصورة الرمزية من Gravatar"
|
1669 |
-
|
1670 |
-
#: lib/widgets/user-profile-widget.php:149
|
1671 |
-
msgid "Small"
|
1672 |
-
msgstr "صغيرة"
|
1673 |
-
|
1674 |
-
#: lib/widgets/user-profile-widget.php:149
|
1675 |
-
msgid "Medium"
|
1676 |
-
msgstr "متوسطة"
|
1677 |
-
|
1678 |
-
#: lib/widgets/user-profile-widget.php:149
|
1679 |
-
msgid "Large"
|
1680 |
-
msgstr "كبيرة"
|
1681 |
-
|
1682 |
-
#: lib/widgets/user-profile-widget.php:149
|
1683 |
-
msgid "Extra Large"
|
1684 |
-
msgstr "كبيرة للغاية"
|
1685 |
-
|
1686 |
-
#: lib/widgets/user-profile-widget.php:167
|
1687 |
-
msgid "Select which text you would like to use as the author description"
|
1688 |
-
msgstr "الرجاء إختيار أي نص ترغبون بأن يستعمل كوصف للكاتب"
|
1689 |
-
|
1690 |
-
#: lib/widgets/user-profile-widget.php:170
|
1691 |
-
msgid "Author Bio"
|
1692 |
-
msgstr "نبذة عن الكاتب"
|
1693 |
-
|
1694 |
-
#: lib/widgets/user-profile-widget.php:172
|
1695 |
-
msgid "Custom Text (below)"
|
1696 |
-
msgstr "نص مخصص (أسفله)"
|
1697 |
-
|
1698 |
-
#: lib/widgets/user-profile-widget.php:173
|
1699 |
-
msgid "Custom Text Content"
|
1700 |
-
msgstr "محتوى نصي مخصص"
|
1701 |
-
|
1702 |
-
#: lib/widgets/user-profile-widget.php:179
|
1703 |
-
msgid "Choose your extended \"About Me\" page from the list below. This will be the page linked to at the end of the about me section."
|
1704 |
-
msgstr "الرجاء إختيار صفحة \"عن الكاتب\" الموسعة من القائمة أسفله، ستكون هذه هي الصفحة الموصولة بالرابط أسفل النبذة"
|
1705 |
-
|
1706 |
-
#: lib/widgets/user-profile-widget.php:184
|
1707 |
-
msgid "Extended page link text"
|
1708 |
-
msgstr "نص رابط الصفحة الموسعة"
|
1709 |
-
|
1710 |
-
#: lib/widgets/user-profile-widget.php:190
|
1711 |
-
msgid "Show Author Archive Link?"
|
1712 |
-
msgstr "إظهار رابط ارشيف الكاتب ؟"
|
1713 |
-
|
1714 |
-
#: search.php:28
|
1715 |
-
msgid "Search Results for:"
|
1716 |
-
msgstr "نتائج البحث عن:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
genesis-translations/hr.mo
DELETED
Binary file
|
genesis-translations/hr.po
DELETED
@@ -1,1695 +0,0 @@
|
|
1 |
-
# Translation of Genesis 1.9 in Croatian
|
2 |
-
# This file is distributed under the same license as the Genesis 1.9 package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2013-05-16 12:05:24+0000\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/0.1\n"
|
11 |
-
"Project-Id-Version: Genesis 1.9\n"
|
12 |
-
|
13 |
-
#: lib/admin/whats-new.php:72
|
14 |
-
msgid "You may notice that the default Genesis style sheet is a bit shorter, and on the front end looks different. We've updated the default design and extended the width of the layout to 1152px. Now you've got more real estate to showcase your content."
|
15 |
-
msgstr "Primijetit ćete da je temeljni Genesis stylesheet nešto kraći no što je ranije bio, i na razini frontenda izgleda drukčije. Nadogradili smo osnovni dizajn i proširili osnovni izgled predloška na 1152px. Sada imate više prostora za prezentaciju vašeg sadržaja."
|
16 |
-
|
17 |
-
#: 404.php:33
|
18 |
-
msgid "Not Found, Error 404"
|
19 |
-
msgstr "NIje pronađeno, Greška 404"
|
20 |
-
|
21 |
-
#: 404.php:35
|
22 |
-
msgid "The page you are looking for no longer exists. Perhaps you can return back to the site's <a href=\"%s\">homepage</a> and see if you can find what you are looking for. Or, you can try finding it with the information below."
|
23 |
-
msgstr "Stranica koju tražite nije više dostupna. Možete se vratiti na naslovnicu <a href=\"%s\">stranice </a> i pokušati pronaći ono što tražiti. Ili, možete to potražiti putem niže navedenih informacija."
|
24 |
-
|
25 |
-
#: 404.php:39 lib/structure/post.php:219 page_archive.php:35
|
26 |
-
msgid "Pages:"
|
27 |
-
msgstr "Stranice:"
|
28 |
-
|
29 |
-
#: 404.php:44 page_archive.php:40
|
30 |
-
msgid "Categories:"
|
31 |
-
msgstr "Kategorije:"
|
32 |
-
|
33 |
-
#: 404.php:53 page_archive.php:49
|
34 |
-
msgid "Authors:"
|
35 |
-
msgstr "Autori:"
|
36 |
-
|
37 |
-
#: 404.php:58 page_archive.php:54
|
38 |
-
msgid "Monthly:"
|
39 |
-
msgstr "Mjesečno:"
|
40 |
-
|
41 |
-
#: 404.php:63 page_archive.php:59
|
42 |
-
msgid "Recent Posts:"
|
43 |
-
msgstr "Nedavno objavljeni članci:"
|
44 |
-
|
45 |
-
#: comments.php:24
|
46 |
-
msgid "This post is password protected. Enter the password to view comments."
|
47 |
-
msgstr "Ovaj članak zaštićen je zaporkom. Unesite zaporku kako biste vidjeli komentare."
|
48 |
-
|
49 |
-
#: lib/admin/import-export.php:45
|
50 |
-
msgid "Genesis - Import/Export"
|
51 |
-
msgstr "Genesis - Uvezi/Izvezi"
|
52 |
-
|
53 |
-
#: lib/admin/import-export.php:46
|
54 |
-
msgid "Import/Export"
|
55 |
-
msgstr "Uvezi/Izvezi"
|
56 |
-
|
57 |
-
#: lib/admin/import-export.php:81
|
58 |
-
msgid "Import Genesis Settings File"
|
59 |
-
msgstr "Uvezi datoteku s postavkama Genesisa"
|
60 |
-
|
61 |
-
#: lib/admin/import-export.php:83
|
62 |
-
msgid "Upload the data file (<code>.json</code>) from your computer and we'll import your settings."
|
63 |
-
msgstr "Prenesi datoteku (<code>.json</code>) s računala i mi ćemo primijeniti tvoje postavke."
|
64 |
-
|
65 |
-
#: lib/admin/import-export.php:84
|
66 |
-
msgid "Choose the file from your computer and click \"Upload file and Import\""
|
67 |
-
msgstr "Izaberite datoteku s računala i kliknite na \"Prenesi datoteku i importiraj\""
|
68 |
-
|
69 |
-
#: lib/admin/import-export.php:89
|
70 |
-
msgid "Upload File: (Maximum Size: %s)"
|
71 |
-
msgstr "Prenesi datoteku: (max. veličična: %s)"
|
72 |
-
|
73 |
-
#: lib/admin/import-export.php:92
|
74 |
-
msgid "Upload File and Import"
|
75 |
-
msgstr "Prenesi datoteku i uvezi."
|
76 |
-
|
77 |
-
#: lib/admin/import-export.php:100
|
78 |
-
msgid "Export Genesis Settings File"
|
79 |
-
msgstr "Izvezi Genesis Settings datoteku"
|
80 |
-
|
81 |
-
#: lib/admin/import-export.php:102
|
82 |
-
msgid "When you click the button below, Genesis will generate a data file (<code>.json</code>) for you to save to your computer."
|
83 |
-
msgstr "Kada kliknete na donji gumb, Genesis će generirati datoteku (<code>.json</code>) kako biste ju mogli spremiti na vaše računalo."
|
84 |
-
|
85 |
-
#: lib/admin/import-export.php:103
|
86 |
-
msgid "Once you have saved the download file, you can use the import function on another site to import this data."
|
87 |
-
msgstr "Nakon što spremite dokument kojeg ste prenijeli na računalo, možete koristiti opciju uvoza datoteke na vašoj drugoj internet stranici kako biste prenijeli i uvezli ove podatke."
|
88 |
-
|
89 |
-
#: lib/admin/import-export.php:110
|
90 |
-
msgid "Download Export File"
|
91 |
-
msgstr "Prenesi na računalo Export datoteku"
|
92 |
-
|
93 |
-
#: lib/admin/import-export.php:142
|
94 |
-
msgid "Settings successfully imported."
|
95 |
-
msgstr "Postavke su uspješno uvezene."
|
96 |
-
|
97 |
-
#: lib/admin/import-export.php:144
|
98 |
-
msgid "There was a problem importing your settings. Please try again."
|
99 |
-
msgstr "Postoji problem s uvozom vaših postavki. Molimo vas probajte ponovno."
|
100 |
-
|
101 |
-
#: lib/admin/import-export.php:162 lib/admin/theme-settings.php:58
|
102 |
-
#: lib/admin/theme-settings.php:59
|
103 |
-
msgid "Theme Settings"
|
104 |
-
msgstr "Postavke teme"
|
105 |
-
|
106 |
-
#: lib/admin/import-export.php:166 lib/admin/seo-settings.php:44
|
107 |
-
msgid "SEO Settings"
|
108 |
-
msgstr "SEO postavke"
|
109 |
-
|
110 |
-
#: lib/admin/import-export.php:188
|
111 |
-
msgid "No export options available."
|
112 |
-
msgstr "Ne postoje mogućnosti izvoza datoteke"
|
113 |
-
|
114 |
-
#: lib/admin/inpost-metaboxes.php:33 lib/admin/term-meta.php:119
|
115 |
-
#: lib/admin/user-meta.php:182
|
116 |
-
msgid "Theme SEO Settings"
|
117 |
-
msgstr "SEO postavke za temu"
|
118 |
-
|
119 |
-
#: lib/admin/inpost-metaboxes.php:54
|
120 |
-
msgid "Custom Document Title"
|
121 |
-
msgstr "Prilagođeni naziv dokumenta"
|
122 |
-
|
123 |
-
#: lib/admin/inpost-metaboxes.php:54 lib/admin/inpost-metaboxes.php:57
|
124 |
-
msgid "Characters Used: %s"
|
125 |
-
msgstr "Broj karaktera: %s"
|
126 |
-
|
127 |
-
#: lib/admin/inpost-metaboxes.php:57
|
128 |
-
msgid "Custom Post/Page Meta Description"
|
129 |
-
msgstr "Prilagođeni Meta Description za stranice/članke"
|
130 |
-
|
131 |
-
#: lib/admin/inpost-metaboxes.php:60
|
132 |
-
msgid "Custom Post/Page Meta Keywords, comma separated"
|
133 |
-
msgstr "Prilagođeni Meta Description za stranice/članke, comma separated"
|
134 |
-
|
135 |
-
#: lib/admin/inpost-metaboxes.php:63
|
136 |
-
msgid "Custom Canonical URI"
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: lib/admin/inpost-metaboxes.php:66
|
140 |
-
msgid "Custom Redirect URI"
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: lib/admin/inpost-metaboxes.php:71 lib/admin/seo-settings.php:176
|
144 |
-
msgid "Robots Meta Settings"
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
#: lib/admin/inpost-metaboxes.php:75 lib/admin/inpost-metaboxes.php:78
|
148 |
-
#: lib/admin/inpost-metaboxes.php:81
|
149 |
-
msgid "Apply %s to this post/page"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: lib/admin/inpost-metaboxes.php:86
|
153 |
-
msgid "Custom Tracking/Conversion Code"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: lib/admin/inpost-metaboxes.php:161 lib/admin/term-meta.php:202
|
157 |
-
#: lib/admin/user-meta.php:246
|
158 |
-
msgid "Layout Settings"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: lib/admin/inpost-metaboxes.php:185 lib/admin/term-meta.php:211
|
162 |
-
#: lib/admin/user-meta.php:256
|
163 |
-
msgid "Default Layout set in <a href=\"%s\">Theme Settings</a>"
|
164 |
-
msgstr ""
|
165 |
-
|
166 |
-
#: lib/admin/inpost-metaboxes.php:192
|
167 |
-
msgid "Custom Body Class"
|
168 |
-
msgstr ""
|
169 |
-
|
170 |
-
#: lib/admin/inpost-metaboxes.php:195
|
171 |
-
msgid "Custom Post Class"
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#: lib/admin/readme-menu.php:40 lib/admin/readme-menu.php:41
|
175 |
-
msgid "README"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: lib/admin/readme-menu.php:68
|
179 |
-
msgid "The %s file was not found in the child theme, or it was empty."
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: lib/admin/seo-settings.php:43
|
183 |
-
msgid "Genesis - SEO Settings"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: lib/admin/seo-settings.php:50 lib/admin/theme-settings.php:69
|
187 |
-
#: lib/classes/admin.php:104
|
188 |
-
msgid "Save Settings"
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: lib/admin/seo-settings.php:51 lib/admin/theme-settings.php:70
|
192 |
-
#: lib/classes/admin.php:105
|
193 |
-
msgid "Reset Settings"
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: lib/admin/seo-settings.php:52 lib/admin/theme-settings.php:71
|
197 |
-
#: lib/classes/admin.php:106
|
198 |
-
msgid "Settings saved."
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
-
#: lib/admin/seo-settings.php:53 lib/admin/theme-settings.php:72
|
202 |
-
#: lib/classes/admin.php:107
|
203 |
-
msgid "Settings reset."
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: lib/admin/seo-settings.php:54 lib/admin/theme-settings.php:73
|
207 |
-
#: lib/classes/admin.php:108
|
208 |
-
msgid "Error saving settings."
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: lib/admin/seo-settings.php:173
|
212 |
-
msgid "Document Title Settings"
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: lib/admin/seo-settings.php:174
|
216 |
-
msgid "Homepage Settings"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: lib/admin/seo-settings.php:175
|
220 |
-
msgid "Document Head Settings"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: lib/admin/seo-settings.php:177
|
224 |
-
msgid "Archives Settings"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: lib/admin/seo-settings.php:194
|
228 |
-
msgid "The document title (%s) is the single most important element in your document source for <abbr title=\"Search engine optimization\">SEO</abbr>. It succinctly informs search engines of what information is contained in the document. The title can, and should, be different on each page, but these options will help you control what it will look like by default."
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: lib/admin/seo-settings.php:196
|
232 |
-
msgid "<strong>By default</strong>, the home page document title will contain the site title, the single post and page document titles will contain the post or page title, the archive pages will contain the archive type, etc."
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: lib/admin/seo-settings.php:200
|
236 |
-
msgid "Add site description (tagline) to %s on home page?"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: lib/admin/seo-settings.php:205
|
240 |
-
msgid "Add site name to %s on inner pages?"
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: lib/admin/seo-settings.php:209
|
244 |
-
msgid "Document Title Additions Location:"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: lib/admin/seo-settings.php:210
|
248 |
-
msgid "Determines which side the added title text will go on."
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: lib/admin/seo-settings.php:214 lib/widgets/featured-page-widget.php:191
|
252 |
-
#: lib/widgets/featured-post-widget.php:290
|
253 |
-
#: lib/widgets/featured-post-widget.php:320
|
254 |
-
#: lib/widgets/user-profile-widget.php:161
|
255 |
-
msgid "Left"
|
256 |
-
msgstr "Lijevo"
|
257 |
-
|
258 |
-
#: lib/admin/seo-settings.php:217 lib/widgets/featured-page-widget.php:192
|
259 |
-
#: lib/widgets/featured-post-widget.php:291
|
260 |
-
#: lib/widgets/featured-post-widget.php:321
|
261 |
-
#: lib/widgets/user-profile-widget.php:162
|
262 |
-
msgid "Right"
|
263 |
-
msgstr "Desno"
|
264 |
-
|
265 |
-
#: lib/admin/seo-settings.php:222
|
266 |
-
msgid "Document Title Separator:"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: lib/admin/seo-settings.php:224
|
270 |
-
msgid "If the title consists of two parts (original title and optional addition), then the separator will go in between them."
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: lib/admin/seo-settings.php:245
|
274 |
-
msgid "Which text would you like to be wrapped in %s tags?"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: lib/admin/seo-settings.php:246
|
278 |
-
msgid "The %s tag is, arguably, the second most important <abbr title=\"Search engine optimization\">SEO</abbr> tag in the document source. Choose wisely."
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: lib/admin/seo-settings.php:250
|
282 |
-
msgid "Site Title"
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: lib/admin/seo-settings.php:253
|
286 |
-
msgid "Site Description (Tagline)"
|
287 |
-
msgstr ""
|
288 |
-
|
289 |
-
#: lib/admin/seo-settings.php:256
|
290 |
-
msgid "Neither. I'll manually wrap my own text on the homepage"
|
291 |
-
msgstr ""
|
292 |
-
|
293 |
-
#: lib/admin/seo-settings.php:260
|
294 |
-
msgid "Homepage Document Title:"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: lib/admin/seo-settings.php:262
|
298 |
-
msgid "If you leave the document title field blank, your site’s title will be used instead."
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#: lib/admin/seo-settings.php:266
|
302 |
-
msgid "Home Meta Description:"
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: lib/admin/seo-settings.php:268
|
306 |
-
msgid "The meta description can be used to determine the text used under the title on search engine results pages."
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: lib/admin/seo-settings.php:272
|
310 |
-
msgid "Home Meta Keywords (comma separated):"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: lib/admin/seo-settings.php:274
|
314 |
-
msgid "Keywords are generally ignored by Search Engines."
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: lib/admin/seo-settings.php:277
|
318 |
-
msgid "Homepage Robots Meta Tags:"
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: lib/admin/seo-settings.php:281 lib/admin/seo-settings.php:284
|
322 |
-
#: lib/admin/seo-settings.php:287
|
323 |
-
msgid "Apply %s to the homepage?"
|
324 |
-
msgstr ""
|
325 |
-
|
326 |
-
#: lib/admin/seo-settings.php:290
|
327 |
-
msgid "Homepage Author"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#: lib/admin/seo-settings.php:293
|
331 |
-
msgid "Select the user that you would like to be used as the %s for the homepage. Be sure the user you select has entered their Google+ profile address on the profile edit screen."
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#: lib/admin/seo-settings.php:298
|
335 |
-
msgid "Select User"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: lib/admin/seo-settings.php:321
|
339 |
-
msgid "By default, WordPress places several tags in your document %1$s. Most of these tags are completely unnecessary, and provide no <abbr title=\"Search engine optimization\">SEO</abbr> value whatsoever; they just make your site slower to load. Choose which tags you would like included in your document %1$s. If you do not know what something is, leave it unchecked."
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
#: lib/admin/seo-settings.php:323
|
343 |
-
msgid "Relationship Link Tags:"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: lib/admin/seo-settings.php:327
|
347 |
-
msgid "Adjacent Posts %s link tags"
|
348 |
-
msgstr ""
|
349 |
-
|
350 |
-
#: lib/admin/seo-settings.php:330
|
351 |
-
msgid "Windows Live Writer Support:"
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
#: lib/admin/seo-settings.php:334
|
355 |
-
msgid "Include Windows Live Writer Support Tag?"
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: lib/admin/seo-settings.php:337
|
359 |
-
msgid "Shortlink Tag:"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: lib/admin/seo-settings.php:341
|
363 |
-
msgid "Include Shortlink tag?"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: lib/admin/seo-settings.php:344
|
367 |
-
msgid "<span class=\"genesis-admin-note\">Note:</span> The shortlink tag might have some use for 3rd party service discoverability, but it has no <abbr title=\"Search engine optimization\">SEO</abbr> value whatsoever."
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: lib/admin/seo-settings.php:366
|
371 |
-
msgid "Depending on your situation, you may or may not want the following archive pages to be indexed by search engines. Only you can make that determination."
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: lib/admin/seo-settings.php:370 lib/admin/seo-settings.php:394
|
375 |
-
msgid "Apply %s to Category Archives?"
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
#: lib/admin/seo-settings.php:373 lib/admin/seo-settings.php:397
|
379 |
-
msgid "Apply %s to Tag Archives?"
|
380 |
-
msgstr ""
|
381 |
-
|
382 |
-
#: lib/admin/seo-settings.php:376 lib/admin/seo-settings.php:400
|
383 |
-
msgid "Apply %s to Author Archives?"
|
384 |
-
msgstr ""
|
385 |
-
|
386 |
-
#: lib/admin/seo-settings.php:379 lib/admin/seo-settings.php:403
|
387 |
-
msgid "Apply %s to Date Archives?"
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
#: lib/admin/seo-settings.php:382 lib/admin/seo-settings.php:406
|
391 |
-
msgid "Apply %s to Search Archives?"
|
392 |
-
msgstr ""
|
393 |
-
|
394 |
-
#: lib/admin/seo-settings.php:385
|
395 |
-
msgid "Some search engines will cache pages in your site (e.g. Google Cache). The %1$s tag will prevent them from doing so. Choose which archives you want %1$s applied to."
|
396 |
-
msgstr ""
|
397 |
-
|
398 |
-
#: lib/admin/seo-settings.php:389
|
399 |
-
msgid "Apply %s to Entire Site?"
|
400 |
-
msgstr ""
|
401 |
-
|
402 |
-
#: lib/admin/seo-settings.php:409
|
403 |
-
msgid "Occasionally, search engines use resources like the Open Directory Project and the Yahoo! Directory to find titles and descriptions for your content. Generally, you will not want them to do this. The %s and %s tags prevent them from doing so."
|
404 |
-
msgstr ""
|
405 |
-
|
406 |
-
#: lib/admin/seo-settings.php:413 lib/admin/seo-settings.php:416
|
407 |
-
msgid "Apply %s to your site?"
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: lib/admin/seo-settings.php:437
|
411 |
-
msgid "Canonical Paginated Archives"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: lib/admin/seo-settings.php:440
|
415 |
-
msgid "This option points search engines to the first page of an archive, if viewing a paginated page. If you do not know what this means, leave it on."
|
416 |
-
msgstr ""
|
417 |
-
|
418 |
-
#: lib/admin/term-meta.php:55
|
419 |
-
msgid "Archive Settings"
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#: lib/admin/term-meta.php:59
|
423 |
-
msgid "Archive Headline"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
#: lib/admin/term-meta.php:62
|
427 |
-
msgid "Leave empty if you do not want to display a headline."
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: lib/admin/term-meta.php:66
|
431 |
-
msgid "Archive Intro Text"
|
432 |
-
msgstr ""
|
433 |
-
|
434 |
-
#: lib/admin/term-meta.php:69
|
435 |
-
msgid "Leave empty if you do not want to display any intro text."
|
436 |
-
msgstr ""
|
437 |
-
|
438 |
-
#: lib/admin/term-meta.php:123 lib/admin/user-meta.php:187
|
439 |
-
msgid "Custom Document %s"
|
440 |
-
msgstr ""
|
441 |
-
|
442 |
-
#: lib/admin/term-meta.php:130 lib/admin/user-meta.php:194
|
443 |
-
msgid "%s Description"
|
444 |
-
msgstr ""
|
445 |
-
|
446 |
-
#: lib/admin/term-meta.php:137 lib/admin/user-meta.php:201
|
447 |
-
msgid "%s Keywords"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: lib/admin/term-meta.php:140 lib/admin/user-meta.php:204
|
451 |
-
msgid "Comma separated list"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: lib/admin/term-meta.php:145 lib/admin/user-meta.php:209
|
455 |
-
msgid "Robots Meta"
|
456 |
-
msgstr ""
|
457 |
-
|
458 |
-
#: lib/admin/term-meta.php:148 lib/admin/term-meta.php:150
|
459 |
-
#: lib/admin/term-meta.php:152 lib/admin/user-meta.php:212
|
460 |
-
#: lib/admin/user-meta.php:214 lib/admin/user-meta.php:216
|
461 |
-
msgid "Apply %s to this archive?"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: lib/admin/term-meta.php:206 lib/admin/user-meta.php:251
|
465 |
-
msgid "Choose Layout"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: lib/admin/theme-settings.php:91
|
469 |
-
msgid "Follow me on Twitter"
|
470 |
-
msgstr "Pratite me na Twitteru"
|
471 |
-
|
472 |
-
#: lib/admin/theme-settings.php:221
|
473 |
-
msgid "Information"
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: lib/admin/theme-settings.php:224
|
477 |
-
msgid "Color Style"
|
478 |
-
msgstr ""
|
479 |
-
|
480 |
-
#: lib/admin/theme-settings.php:226
|
481 |
-
msgid "Custom Feeds"
|
482 |
-
msgstr ""
|
483 |
-
|
484 |
-
#: lib/admin/theme-settings.php:227
|
485 |
-
msgid "Default Layout"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: lib/admin/theme-settings.php:230
|
489 |
-
msgid "Header"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: lib/admin/theme-settings.php:233
|
493 |
-
msgid "Navigation"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: lib/admin/theme-settings.php:236
|
497 |
-
msgid "Breadcrumbs"
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: lib/admin/theme-settings.php:238
|
501 |
-
msgid "Comments and Trackbacks"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
#: lib/admin/theme-settings.php:239
|
505 |
-
msgid "Content Archives"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: lib/admin/theme-settings.php:240
|
509 |
-
msgid "Blog Page Template"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: lib/admin/theme-settings.php:243
|
513 |
-
msgid "Header and Footer Scripts"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: lib/admin/theme-settings.php:284
|
517 |
-
msgid "Version:"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: lib/admin/theme-settings.php:284
|
521 |
-
msgid "Released:"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: lib/admin/theme-settings.php:288
|
525 |
-
msgid "Display Theme Information in your document source"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: lib/admin/theme-settings.php:292
|
529 |
-
msgid "This can be helpful for diagnosing problems with your theme when seeking assistance in the <a href=\"%s\" target=\"_blank\">support forums</a>."
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: lib/admin/theme-settings.php:296
|
533 |
-
msgid "Enable Automatic Updates"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: lib/admin/theme-settings.php:301
|
537 |
-
msgid "Notify"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: lib/admin/theme-settings.php:303
|
541 |
-
msgid "when updates are available"
|
542 |
-
msgstr ""
|
543 |
-
|
544 |
-
#: lib/admin/theme-settings.php:306
|
545 |
-
msgid "If you provide an email address above, your blog can email you when a new version of Genesis is available."
|
546 |
-
msgstr ""
|
547 |
-
|
548 |
-
#: lib/admin/theme-settings.php:329
|
549 |
-
msgid "Color Style:"
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: lib/admin/theme-settings.php:331 lib/tools/post-templates.php:159
|
553 |
-
msgid "Default"
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: lib/admin/theme-settings.php:343
|
557 |
-
msgid "Please select the color style from the drop down list and save your settings."
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: lib/admin/theme-settings.php:389
|
561 |
-
msgid "Use for site title/logo:"
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: lib/admin/theme-settings.php:391
|
565 |
-
msgid "Dynamic text"
|
566 |
-
msgstr ""
|
567 |
-
|
568 |
-
#: lib/admin/theme-settings.php:392
|
569 |
-
msgid "Image logo"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: lib/admin/theme-settings.php:418
|
573 |
-
msgid "In order to use the navigation menus, you must build a <a href=\"%s\">custom menu</a>, then assign it to the proper Menu Location."
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: lib/admin/theme-settings.php:423
|
577 |
-
msgid "Primary Navigation"
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: lib/admin/theme-settings.php:427 lib/admin/theme-settings.php:465
|
581 |
-
msgid "Enable Fancy Dropdowns?"
|
582 |
-
msgstr ""
|
583 |
-
|
584 |
-
#: lib/admin/theme-settings.php:432
|
585 |
-
msgid "Enable Extras on Right Side?"
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
#: lib/admin/theme-settings.php:437
|
589 |
-
msgid "Display the following:"
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: lib/admin/theme-settings.php:439
|
593 |
-
msgid "Today's date"
|
594 |
-
msgstr ""
|
595 |
-
|
596 |
-
#: lib/admin/theme-settings.php:440
|
597 |
-
msgid "RSS feed links"
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
#: lib/admin/theme-settings.php:441
|
601 |
-
msgid "Search form"
|
602 |
-
msgstr ""
|
603 |
-
|
604 |
-
#: lib/admin/theme-settings.php:442
|
605 |
-
msgid "Twitter link"
|
606 |
-
msgstr ""
|
607 |
-
|
608 |
-
#: lib/admin/theme-settings.php:447
|
609 |
-
msgid "Enter Twitter ID:"
|
610 |
-
msgstr ""
|
611 |
-
|
612 |
-
#: lib/admin/theme-settings.php:451
|
613 |
-
msgid "Twitter Link Text:"
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: lib/admin/theme-settings.php:461
|
617 |
-
msgid "Secondary Navigation"
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#: lib/admin/theme-settings.php:487
|
621 |
-
msgid "Enter your custom feed URI:"
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: lib/admin/theme-settings.php:491 lib/admin/theme-settings.php:499
|
625 |
-
msgid "Redirect Feed?"
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: lib/admin/theme-settings.php:495
|
629 |
-
msgid "Enter your custom comments feed URI:"
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: lib/admin/theme-settings.php:502
|
633 |
-
msgid "If your custom feed(s) are not handled by Feedburner, we do not recommend that you use the redirect options."
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: lib/admin/theme-settings.php:521
|
637 |
-
msgid "Enable Comments"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: lib/admin/theme-settings.php:523 lib/admin/theme-settings.php:532
|
641 |
-
msgid "on posts?"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: lib/admin/theme-settings.php:526 lib/admin/theme-settings.php:535
|
645 |
-
msgid "on pages?"
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
#: lib/admin/theme-settings.php:530
|
649 |
-
msgid "Enable Trackbacks"
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: lib/admin/theme-settings.php:538
|
653 |
-
msgid "Comments and Trackbacks can also be disabled on a per post/page basis when creating/editing posts/pages."
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: lib/admin/theme-settings.php:556
|
657 |
-
msgid "Enable on:"
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: lib/admin/theme-settings.php:560
|
661 |
-
msgid "Front Page"
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
#: lib/admin/theme-settings.php:563
|
665 |
-
msgid "Posts Page"
|
666 |
-
msgstr ""
|
667 |
-
|
668 |
-
#: lib/admin/theme-settings.php:566
|
669 |
-
msgid "Homepage"
|
670 |
-
msgstr ""
|
671 |
-
|
672 |
-
#: lib/admin/theme-settings.php:570 lib/structure/menu.php:149
|
673 |
-
msgid "Posts"
|
674 |
-
msgstr ""
|
675 |
-
|
676 |
-
#: lib/admin/theme-settings.php:573
|
677 |
-
msgid "Pages"
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: lib/admin/theme-settings.php:576
|
681 |
-
msgid "Archives"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: lib/admin/theme-settings.php:579
|
685 |
-
msgid "404 Page"
|
686 |
-
msgstr ""
|
687 |
-
|
688 |
-
#: lib/admin/theme-settings.php:582
|
689 |
-
msgid "Attachment Page"
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#: lib/admin/theme-settings.php:585
|
693 |
-
msgid "Breadcrumbs are a great way of letting your visitors find out where they are on your site with just a glance. You can enable/disable them on certain areas of your site."
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#: lib/admin/theme-settings.php:605
|
697 |
-
msgid "Select one of the following:"
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: lib/admin/theme-settings.php:611
|
701 |
-
msgid "Display post content"
|
702 |
-
msgstr ""
|
703 |
-
|
704 |
-
#: lib/admin/theme-settings.php:612
|
705 |
-
msgid "Display post excerpts"
|
706 |
-
msgstr ""
|
707 |
-
|
708 |
-
#: lib/admin/theme-settings.php:623 lib/widgets/featured-post-widget.php:353
|
709 |
-
msgid "Limit content to"
|
710 |
-
msgstr ""
|
711 |
-
|
712 |
-
#: lib/admin/theme-settings.php:625 lib/widgets/featured-post-widget.php:355
|
713 |
-
msgid "characters"
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#: lib/admin/theme-settings.php:628
|
717 |
-
msgid "Using this option will limit the text and strip all formatting from the text displayed. To use this option, choose \"Display post content\" in the select box above."
|
718 |
-
msgstr ""
|
719 |
-
|
720 |
-
#: lib/admin/theme-settings.php:633
|
721 |
-
msgid "Include the Featured Image?"
|
722 |
-
msgstr ""
|
723 |
-
|
724 |
-
#: lib/admin/theme-settings.php:637
|
725 |
-
msgid "Image Size:"
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: lib/admin/theme-settings.php:648
|
729 |
-
msgid "Select Post Navigation Technique:"
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
#: lib/admin/theme-settings.php:650
|
733 |
-
msgid "Older / Newer"
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: lib/admin/theme-settings.php:651
|
737 |
-
msgid "Previous / Next"
|
738 |
-
msgstr ""
|
739 |
-
|
740 |
-
#: lib/admin/theme-settings.php:652
|
741 |
-
msgid "Numeric"
|
742 |
-
msgstr ""
|
743 |
-
|
744 |
-
#: lib/admin/theme-settings.php:656
|
745 |
-
msgid "These options will affect any blog listings page, including archive, author, blog, category, search, and tag pages."
|
746 |
-
msgstr ""
|
747 |
-
|
748 |
-
#: lib/admin/theme-settings.php:674
|
749 |
-
msgid "These settings apply to any page given the \"Blog\" page template, not the homepage or post archive pages."
|
750 |
-
msgstr ""
|
751 |
-
|
752 |
-
#: lib/admin/theme-settings.php:679
|
753 |
-
msgid "Display which category:"
|
754 |
-
msgstr ""
|
755 |
-
|
756 |
-
#: lib/admin/theme-settings.php:680 lib/widgets/featured-post-widget.php:231
|
757 |
-
msgid "All Categories"
|
758 |
-
msgstr ""
|
759 |
-
|
760 |
-
#: lib/admin/theme-settings.php:684
|
761 |
-
msgid "Exclude the following Category IDs:"
|
762 |
-
msgstr ""
|
763 |
-
|
764 |
-
#: lib/admin/theme-settings.php:686
|
765 |
-
msgid "Comma separated - 1,2,3 for example"
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: lib/admin/theme-settings.php:691
|
769 |
-
msgid "Number of Posts to Show:"
|
770 |
-
msgstr ""
|
771 |
-
|
772 |
-
#: lib/admin/theme-settings.php:712 lib/admin/theme-settings.php:722
|
773 |
-
msgid "Enter scripts or code you would like output to %s:"
|
774 |
-
msgstr ""
|
775 |
-
|
776 |
-
#: lib/admin/theme-settings.php:717 lib/admin/theme-settings.php:727
|
777 |
-
msgid "The %1$s hook executes immediately before the closing %2$s tag in the document source."
|
778 |
-
msgstr ""
|
779 |
-
|
780 |
-
#: lib/admin/user-meta.php:25
|
781 |
-
msgid "Google+"
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: lib/admin/user-meta.php:73
|
785 |
-
msgid "User Permissions"
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: lib/admin/user-meta.php:77
|
789 |
-
msgid "Genesis Admin Menus"
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
-
#: lib/admin/user-meta.php:80
|
793 |
-
msgid "Enable Genesis Admin Menu?"
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: lib/admin/user-meta.php:82
|
797 |
-
msgid "Enable SEO Settings Submenu?"
|
798 |
-
msgstr ""
|
799 |
-
|
800 |
-
#: lib/admin/user-meta.php:84
|
801 |
-
msgid "Enable Import/Export Submenu?"
|
802 |
-
msgstr ""
|
803 |
-
|
804 |
-
#: lib/admin/user-meta.php:119
|
805 |
-
msgid "Author Archive Settings"
|
806 |
-
msgstr ""
|
807 |
-
|
808 |
-
#: lib/admin/user-meta.php:120 lib/admin/user-meta.php:183
|
809 |
-
#: lib/admin/user-meta.php:247
|
810 |
-
msgid "These settings apply to this author's archive pages."
|
811 |
-
msgstr ""
|
812 |
-
|
813 |
-
#: lib/admin/user-meta.php:124
|
814 |
-
msgid "Custom Archive Headline"
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: lib/admin/user-meta.php:127
|
818 |
-
msgid "Will display in the %s tag at the top of the first page"
|
819 |
-
msgstr ""
|
820 |
-
|
821 |
-
#: lib/admin/user-meta.php:132
|
822 |
-
msgid "Custom Description Text"
|
823 |
-
msgstr ""
|
824 |
-
|
825 |
-
#: lib/admin/user-meta.php:135
|
826 |
-
msgid "This text will be the first paragraph, and display on the first page"
|
827 |
-
msgstr ""
|
828 |
-
|
829 |
-
#: lib/admin/user-meta.php:140
|
830 |
-
msgid "Author Box"
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: lib/admin/user-meta.php:143
|
834 |
-
msgid "Enable Author Box on this User's Posts?"
|
835 |
-
msgstr ""
|
836 |
-
|
837 |
-
#: lib/admin/user-meta.php:145
|
838 |
-
msgid "Enable Author Box on this User's Archives?"
|
839 |
-
msgstr ""
|
840 |
-
|
841 |
-
#: lib/admin/whats-new.php:38
|
842 |
-
msgid "Welcome to Genesis %s"
|
843 |
-
msgstr ""
|
844 |
-
|
845 |
-
#: lib/admin/whats-new.php:65
|
846 |
-
msgid "Thank you for updating to the latest version! Using Genesis %s will give you more options than you've ever had and your website will continue to purr like a kitten."
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
#: lib/admin/whats-new.php:68
|
850 |
-
msgid "What’s New"
|
851 |
-
msgstr ""
|
852 |
-
|
853 |
-
#: lib/admin/whats-new.php:71
|
854 |
-
msgid "Updated Design and Wider Layout"
|
855 |
-
msgstr ""
|
856 |
-
|
857 |
-
#: lib/admin/whats-new.php:73
|
858 |
-
msgid "Updated Security Audit"
|
859 |
-
msgstr ""
|
860 |
-
|
861 |
-
#: lib/admin/whats-new.php:74
|
862 |
-
msgid "It's very important to us that we provide you the absolute best framework possible, so once again we hired WordPress Lead Developer Mark Jaquith to perform a full review of code for security as he's done in the past."
|
863 |
-
msgstr ""
|
864 |
-
|
865 |
-
#: lib/admin/whats-new.php:75
|
866 |
-
msgid "Google Author Highlights"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
-
#: lib/admin/whats-new.php:76
|
870 |
-
msgid "Genesis now offers support for author highlighting. This allows Google to associate your content with your Google+ content. Just edit your profile, find the field where you can enter your Google+ account URL, and save. Genesis does the rest. And if you want to associate an author with the homepage, you can do that in SEO Settings."
|
871 |
-
msgstr ""
|
872 |
-
|
873 |
-
#: lib/admin/whats-new.php:78
|
874 |
-
msgid "Deprecating Widgets"
|
875 |
-
msgstr ""
|
876 |
-
|
877 |
-
#: lib/admin/whats-new.php:79
|
878 |
-
msgid "Genesis has always included some useful widgets to help you build your sites faster and easier. But lately, we realized that some of these widgets should really be plugins, so authors can push out updates more frequently, and you get more up to date code. So, the \"eNews & Updates\" and \"Latest Tweets\" widgets are being ported to plugins, and will eventually be removed from Genesis."
|
879 |
-
msgstr ""
|
880 |
-
|
881 |
-
#: lib/admin/whats-new.php:81
|
882 |
-
msgid "Genesis Category/Page Menu Widgets Removed"
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: lib/admin/whats-new.php:82
|
886 |
-
msgid "We deprecated the Category and Page menu widgets a few releases ago, and as of this release, we've completely removed them from the framework. If you were still using either of these widgets, you will notice that your menu is no longer showing."
|
887 |
-
msgstr ""
|
888 |
-
|
889 |
-
#: lib/admin/whats-new.php:83
|
890 |
-
msgid "You will need to build a <a href=\"%s\">custom menu</a> and add the custom menu widget to the Header Right widget area."
|
891 |
-
msgstr ""
|
892 |
-
|
893 |
-
#: lib/admin/whats-new.php:85
|
894 |
-
msgid "Other Geeky Stuff"
|
895 |
-
msgstr ""
|
896 |
-
|
897 |
-
#: lib/admin/whats-new.php:86
|
898 |
-
msgid "We also fixed a lot of little bugs, improved some things, and generally made the framework a more solid foundation for you to use. We hope you enjoy this latest release!"
|
899 |
-
msgstr ""
|
900 |
-
|
901 |
-
#: lib/admin/whats-new.php:91
|
902 |
-
msgid "Genesis 2.0 Roadmap"
|
903 |
-
msgstr ""
|
904 |
-
|
905 |
-
#: lib/admin/whats-new.php:93
|
906 |
-
msgid "Support for HTML5 Markup"
|
907 |
-
msgstr ""
|
908 |
-
|
909 |
-
#: lib/admin/whats-new.php:94
|
910 |
-
msgid "We have big plans for a new markup structure in Genesis 2.0, all built with HTML5."
|
911 |
-
msgstr ""
|
912 |
-
|
913 |
-
#: lib/admin/whats-new.php:96
|
914 |
-
msgid "A New Mobile Strategy"
|
915 |
-
msgstr ""
|
916 |
-
|
917 |
-
#: lib/admin/whats-new.php:97
|
918 |
-
msgid "In case you can't tell, we're big fans of designing for mobile devices around here. So, we're going to be doing some things that will make it a whole lot easier to get your site mobile ready with Genesis in 2.0."
|
919 |
-
msgstr ""
|
920 |
-
|
921 |
-
#: lib/admin/whats-new.php:103
|
922 |
-
msgid "Project Leads"
|
923 |
-
msgstr ""
|
924 |
-
|
925 |
-
#: lib/admin/whats-new.php:109 lib/admin/whats-new.php:114
|
926 |
-
#: lib/admin/whats-new.php:119
|
927 |
-
msgid "Lead Developer"
|
928 |
-
msgstr ""
|
929 |
-
|
930 |
-
#: lib/admin/whats-new.php:127
|
931 |
-
msgid "Contributors"
|
932 |
-
msgstr ""
|
933 |
-
|
934 |
-
#: lib/admin/whats-new.php:133 lib/admin/whats-new.php:138
|
935 |
-
#: lib/admin/whats-new.php:143 lib/admin/whats-new.php:148
|
936 |
-
#: lib/admin/whats-new.php:153 lib/admin/whats-new.php:158
|
937 |
-
#: lib/admin/whats-new.php:163 lib/admin/whats-new.php:168
|
938 |
-
#: lib/admin/whats-new.php:173 lib/admin/whats-new.php:178
|
939 |
-
msgid "Contributor"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: lib/admin/whats-new.php:185
|
943 |
-
msgid "Go to Theme Settings →"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: lib/admin/whats-new.php:186
|
947 |
-
msgid "Go to SEO Settings →"
|
948 |
-
msgstr ""
|
949 |
-
|
950 |
-
#: lib/classes/admin.php:118
|
951 |
-
msgid "You cannot use %s to create two menus in the same subclass. Please use separate subclasses for each menu."
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#: lib/classes/admin.php:415 lib/classes/admin.php:424
|
955 |
-
#: lib/classes/admin.php:527 lib/classes/admin.php:546
|
956 |
-
msgid "Are you sure you want to reset?"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: lib/classes/breadcrumb.php:54 lib/functions/menu.php:133
|
960 |
-
msgid "Home"
|
961 |
-
msgstr "Naslovnica"
|
962 |
-
|
963 |
-
#: lib/classes/breadcrumb.php:63
|
964 |
-
msgid "You are here: "
|
965 |
-
msgstr "Nalazite se ovdje:"
|
966 |
-
|
967 |
-
#: lib/classes/breadcrumb.php:64 lib/classes/breadcrumb.php:65
|
968 |
-
#: lib/classes/breadcrumb.php:66 lib/classes/breadcrumb.php:67
|
969 |
-
#: lib/classes/breadcrumb.php:69 lib/classes/breadcrumb.php:70
|
970 |
-
msgid "Archives for "
|
971 |
-
msgstr ""
|
972 |
-
|
973 |
-
#: lib/classes/breadcrumb.php:68
|
974 |
-
msgid "Search for "
|
975 |
-
msgstr "Pretraga:"
|
976 |
-
|
977 |
-
#: lib/classes/breadcrumb.php:71
|
978 |
-
msgid "Not found: "
|
979 |
-
msgstr "Nije pronađeno:"
|
980 |
-
|
981 |
-
#: lib/classes/breadcrumb.php:120 lib/classes/breadcrumb.php:215
|
982 |
-
#: lib/classes/breadcrumb.php:281
|
983 |
-
msgid "View %s"
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: lib/classes/breadcrumb.php:300
|
987 |
-
msgid "View all posts in %s"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
#: lib/classes/breadcrumb.php:321
|
991 |
-
msgid "View all %s"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: lib/classes/breadcrumb.php:403 lib/classes/breadcrumb.php:427
|
995 |
-
msgid "View archives for %s"
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: lib/classes/breadcrumb.php:433
|
999 |
-
msgid "View archives for %s %s"
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: lib/classes/breadcrumb.php:525
|
1003 |
-
msgid "View all items in %s"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: lib/functions/admin.php:15
|
1007 |
-
msgid "This file no longer needs to be included."
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: lib/functions/formatting.php:292
|
1011 |
-
msgctxt "time difference"
|
1012 |
-
msgid "seconds"
|
1013 |
-
msgstr ""
|
1014 |
-
|
1015 |
-
#: lib/functions/formatting.php:296
|
1016 |
-
msgctxt "time difference"
|
1017 |
-
msgid "%s year"
|
1018 |
-
msgid_plural "%s years"
|
1019 |
-
msgstr[0] ""
|
1020 |
-
msgstr[1] ""
|
1021 |
-
msgstr[2] ""
|
1022 |
-
|
1023 |
-
#: lib/functions/formatting.php:297
|
1024 |
-
msgctxt "time difference"
|
1025 |
-
msgid "%s month"
|
1026 |
-
msgid_plural "%s months"
|
1027 |
-
msgstr[0] ""
|
1028 |
-
msgstr[1] ""
|
1029 |
-
msgstr[2] ""
|
1030 |
-
|
1031 |
-
#: lib/functions/formatting.php:298
|
1032 |
-
msgctxt "time difference"
|
1033 |
-
msgid "%s week"
|
1034 |
-
msgid_plural "%s weeks"
|
1035 |
-
msgstr[0] ""
|
1036 |
-
msgstr[1] ""
|
1037 |
-
msgstr[2] ""
|
1038 |
-
|
1039 |
-
#: lib/functions/formatting.php:299
|
1040 |
-
msgctxt "time difference"
|
1041 |
-
msgid "%s day"
|
1042 |
-
msgid_plural "%s days"
|
1043 |
-
msgstr[0] ""
|
1044 |
-
msgstr[1] ""
|
1045 |
-
msgstr[2] ""
|
1046 |
-
|
1047 |
-
#: lib/functions/formatting.php:300
|
1048 |
-
msgctxt "time difference"
|
1049 |
-
msgid "%s hour"
|
1050 |
-
msgid_plural "%s hours"
|
1051 |
-
msgstr[0] ""
|
1052 |
-
msgstr[1] ""
|
1053 |
-
msgstr[2] ""
|
1054 |
-
|
1055 |
-
#: lib/functions/formatting.php:301
|
1056 |
-
msgctxt "time difference"
|
1057 |
-
msgid "%s minute"
|
1058 |
-
msgid_plural "%s minutes"
|
1059 |
-
msgstr[0] ""
|
1060 |
-
msgstr[1] ""
|
1061 |
-
msgstr[2] ""
|
1062 |
-
|
1063 |
-
#: lib/functions/formatting.php:302
|
1064 |
-
msgctxt "time difference"
|
1065 |
-
msgid "%s second"
|
1066 |
-
msgid_plural "%s seconds"
|
1067 |
-
msgstr[0] ""
|
1068 |
-
msgstr[1] ""
|
1069 |
-
msgstr[2] ""
|
1070 |
-
|
1071 |
-
#: lib/functions/formatting.php:327
|
1072 |
-
msgctxt "separator in time difference"
|
1073 |
-
msgid "and"
|
1074 |
-
msgstr ""
|
1075 |
-
|
1076 |
-
#: lib/functions/layout.php:37
|
1077 |
-
msgid "Content-Sidebar"
|
1078 |
-
msgstr ""
|
1079 |
-
|
1080 |
-
#: lib/functions/layout.php:46
|
1081 |
-
msgid "Sidebar-Content"
|
1082 |
-
msgstr ""
|
1083 |
-
|
1084 |
-
#: lib/functions/layout.php:54
|
1085 |
-
msgid "Content-Sidebar-Sidebar"
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: lib/functions/layout.php:62
|
1089 |
-
msgid "Sidebar-Sidebar-Content"
|
1090 |
-
msgstr ""
|
1091 |
-
|
1092 |
-
#: lib/functions/layout.php:70
|
1093 |
-
msgid "Sidebar-Content-Sidebar"
|
1094 |
-
msgstr ""
|
1095 |
-
|
1096 |
-
#: lib/functions/layout.php:78
|
1097 |
-
msgid "Full Width Content"
|
1098 |
-
msgstr ""
|
1099 |
-
|
1100 |
-
#: lib/functions/layout.php:123
|
1101 |
-
msgid "No Label Selected"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: lib/functions/menu.php:104
|
1105 |
-
msgid "The argument, \"context\", has been replaced with \"theme_location\" in the $args array."
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
#: lib/functions/seo.php:122
|
1109 |
-
msgid "Have you tried our Scribe content marketing software? Do research, content and website optimization, and relationship building without leaving WordPress. <b>Genesis owners save big when using the special link on the special page we've created just for you</b>. <a href=\"%s\" target=\"_blank\">Click here for more info</a>."
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: lib/functions/seo.php:124
|
1113 |
-
msgid "Dismiss"
|
1114 |
-
msgstr ""
|
1115 |
-
|
1116 |
-
#: lib/functions/upgrade.php:411
|
1117 |
-
msgid "Congratulations! You are now rocking Genesis %s"
|
1118 |
-
msgstr ""
|
1119 |
-
|
1120 |
-
#: lib/functions/upgrade.php:436
|
1121 |
-
msgid "Click here to complete the upgrade"
|
1122 |
-
msgstr ""
|
1123 |
-
|
1124 |
-
#: lib/functions/upgrade.php:461
|
1125 |
-
msgid "Genesis %s is available. <a href=\"%s\" class=\"thickbox thickbox-preview\">Check out what's new</a> or <a href=\"%s\" onclick=\"return genesis_confirm('%s');\">update now</a>."
|
1126 |
-
msgstr ""
|
1127 |
-
|
1128 |
-
#: lib/functions/upgrade.php:465
|
1129 |
-
msgid "Upgrading Genesis will overwrite the current installed version of Genesis. Are you sure you want to upgrade?. \"Cancel\" to stop, \"OK\" to upgrade."
|
1130 |
-
msgstr ""
|
1131 |
-
|
1132 |
-
#: lib/functions/upgrade.php:507
|
1133 |
-
msgid "Genesis %s is available for %s"
|
1134 |
-
msgstr ""
|
1135 |
-
|
1136 |
-
#: lib/functions/upgrade.php:508
|
1137 |
-
msgid "Genesis %s is now available. We have provided 1-click updates for this theme, so please log into your dashboard and update at your earliest convenience."
|
1138 |
-
msgstr ""
|
1139 |
-
|
1140 |
-
#: lib/functions/widgetize.php:63
|
1141 |
-
msgid "Header Left"
|
1142 |
-
msgstr ""
|
1143 |
-
|
1144 |
-
#: lib/functions/widgetize.php:63
|
1145 |
-
msgid "Header Right"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
-
#: lib/functions/widgetize.php:64
|
1149 |
-
msgid "This is the widget area in the header."
|
1150 |
-
msgstr ""
|
1151 |
-
|
1152 |
-
#: lib/functions/widgetize.php:71
|
1153 |
-
msgid "Primary Sidebar"
|
1154 |
-
msgstr ""
|
1155 |
-
|
1156 |
-
#: lib/functions/widgetize.php:72
|
1157 |
-
msgid "This is the primary sidebar if you are using a two or three column site layout option."
|
1158 |
-
msgstr ""
|
1159 |
-
|
1160 |
-
#: lib/functions/widgetize.php:79
|
1161 |
-
msgid "Secondary Sidebar"
|
1162 |
-
msgstr ""
|
1163 |
-
|
1164 |
-
#: lib/functions/widgetize.php:80
|
1165 |
-
msgid "This is the secondary sidebar if you are using a three column site layout option."
|
1166 |
-
msgstr ""
|
1167 |
-
|
1168 |
-
#: lib/functions/widgetize.php:112
|
1169 |
-
msgid "Footer %d"
|
1170 |
-
msgstr ""
|
1171 |
-
|
1172 |
-
#: lib/functions/widgetize.php:113
|
1173 |
-
msgid "Footer %d widget area."
|
1174 |
-
msgstr ""
|
1175 |
-
|
1176 |
-
#: lib/init.php:47
|
1177 |
-
msgid "Primary Navigation Menu"
|
1178 |
-
msgstr ""
|
1179 |
-
|
1180 |
-
#: lib/init.php:48
|
1181 |
-
msgid "Secondary Navigation Menu"
|
1182 |
-
msgstr ""
|
1183 |
-
|
1184 |
-
#: lib/js/load-scripts.php:85
|
1185 |
-
msgid "Select / Deselect All"
|
1186 |
-
msgstr ""
|
1187 |
-
|
1188 |
-
#: lib/shortcodes/footer.php:41
|
1189 |
-
msgid "Return to top of page"
|
1190 |
-
msgstr "Na vrh"
|
1191 |
-
|
1192 |
-
#: lib/shortcodes/footer.php:176
|
1193 |
-
msgid "by "
|
1194 |
-
msgstr ""
|
1195 |
-
|
1196 |
-
#: lib/shortcodes/footer.php:241
|
1197 |
-
msgid "Log in"
|
1198 |
-
msgstr ""
|
1199 |
-
|
1200 |
-
#: lib/shortcodes/footer.php:243
|
1201 |
-
msgid "Log out"
|
1202 |
-
msgstr ""
|
1203 |
-
|
1204 |
-
#: lib/shortcodes/post.php:43
|
1205 |
-
msgid "ago"
|
1206 |
-
msgstr ""
|
1207 |
-
|
1208 |
-
#: lib/shortcodes/post.php:140
|
1209 |
-
msgid "Visit %s’s website"
|
1210 |
-
msgstr ""
|
1211 |
-
|
1212 |
-
#: lib/shortcodes/post.php:205 lib/widgets/featured-page-widget.php:101
|
1213 |
-
msgid "% Comments"
|
1214 |
-
msgstr "% komentara"
|
1215 |
-
|
1216 |
-
#: lib/shortcodes/post.php:206 lib/widgets/featured-page-widget.php:101
|
1217 |
-
msgid "1 Comment"
|
1218 |
-
msgstr "1 komentar"
|
1219 |
-
|
1220 |
-
#: lib/shortcodes/post.php:207 lib/widgets/featured-page-widget.php:101
|
1221 |
-
msgid "Leave a Comment"
|
1222 |
-
msgstr "Komentiraj"
|
1223 |
-
|
1224 |
-
#: lib/shortcodes/post.php:247
|
1225 |
-
msgid "Tagged With: "
|
1226 |
-
msgstr "Tagovi:"
|
1227 |
-
|
1228 |
-
#: lib/shortcodes/post.php:282 lib/shortcodes/post.php:320
|
1229 |
-
msgid "Filed Under: "
|
1230 |
-
msgstr "Kategorije:"
|
1231 |
-
|
1232 |
-
#: lib/shortcodes/post.php:364 lib/structure/comments.php:189
|
1233 |
-
#: lib/structure/post.php:207 lib/widgets/featured-page-widget.php:103
|
1234 |
-
msgid "(Edit)"
|
1235 |
-
msgstr "(Uredi)"
|
1236 |
-
|
1237 |
-
#: lib/structure/comments.php:63
|
1238 |
-
msgid "<h3>Comments</h3>"
|
1239 |
-
msgstr "<h3>Komentari</h3>"
|
1240 |
-
|
1241 |
-
#: lib/structure/comments.php:114
|
1242 |
-
msgid "<h3>Trackbacks</h3>"
|
1243 |
-
msgstr "<h3>Poveznice</h3>"
|
1244 |
-
|
1245 |
-
#: lib/structure/comments.php:184
|
1246 |
-
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">%s:</span>"
|
1247 |
-
msgstr ""
|
1248 |
-
|
1249 |
-
#: lib/structure/comments.php:184
|
1250 |
-
msgid "says"
|
1251 |
-
msgstr ""
|
1252 |
-
|
1253 |
-
#: lib/structure/comments.php:188
|
1254 |
-
msgid "%1$s at %2$s"
|
1255 |
-
msgstr ""
|
1256 |
-
|
1257 |
-
#: lib/structure/comments.php:195
|
1258 |
-
msgid "Your comment is awaiting moderation."
|
1259 |
-
msgstr "Komentar čeka odobrenje."
|
1260 |
-
|
1261 |
-
#: lib/structure/comments.php:252
|
1262 |
-
msgid "Name"
|
1263 |
-
msgstr "Ime"
|
1264 |
-
|
1265 |
-
#: lib/structure/comments.php:258
|
1266 |
-
msgid "Email"
|
1267 |
-
msgstr "E-mail"
|
1268 |
-
|
1269 |
-
#: lib/structure/comments.php:264
|
1270 |
-
msgid "Website"
|
1271 |
-
msgstr "Web"
|
1272 |
-
|
1273 |
-
#: lib/structure/comments.php:278
|
1274 |
-
msgid "Speak Your Mind"
|
1275 |
-
msgstr "Komentiraj"
|
1276 |
-
|
1277 |
-
#: lib/structure/footer.php:110
|
1278 |
-
msgid "Copyright"
|
1279 |
-
msgstr "Copyright"
|
1280 |
-
|
1281 |
-
#: lib/structure/footer.php:110
|
1282 |
-
msgid "on"
|
1283 |
-
msgstr ""
|
1284 |
-
|
1285 |
-
#: lib/structure/loops.php:192
|
1286 |
-
msgid "Read more"
|
1287 |
-
msgstr "Više"
|
1288 |
-
|
1289 |
-
#: lib/structure/menu.php:150
|
1290 |
-
msgid "Comments"
|
1291 |
-
msgstr "Komentari"
|
1292 |
-
|
1293 |
-
#: lib/structure/post.php:214 lib/structure/post.php:216
|
1294 |
-
msgid "[Read more...]"
|
1295 |
-
msgstr "[više]"
|
1296 |
-
|
1297 |
-
#: lib/structure/post.php:233
|
1298 |
-
msgid "Sorry, no posts matched your criteria."
|
1299 |
-
msgstr "Ništa nije pronađeno."
|
1300 |
-
|
1301 |
-
#: lib/structure/post.php:259 lib/widgets/featured-page-widget.php:98
|
1302 |
-
msgid "by"
|
1303 |
-
msgstr ""
|
1304 |
-
|
1305 |
-
#: lib/structure/post.php:334
|
1306 |
-
msgid "About"
|
1307 |
-
msgstr "O "
|
1308 |
-
|
1309 |
-
#: lib/structure/post.php:379
|
1310 |
-
msgid "Older Posts"
|
1311 |
-
msgstr "Starije"
|
1312 |
-
|
1313 |
-
#: lib/structure/post.php:380
|
1314 |
-
msgid "Newer Posts"
|
1315 |
-
msgstr "Novije"
|
1316 |
-
|
1317 |
-
#: lib/structure/post.php:400 lib/structure/post.php:462
|
1318 |
-
msgid "Previous Page"
|
1319 |
-
msgstr "Prethodna stranica"
|
1320 |
-
|
1321 |
-
#: lib/structure/post.php:401 lib/structure/post.php:492
|
1322 |
-
msgid "Next Page"
|
1323 |
-
msgstr "Sljedeća stranica"
|
1324 |
-
|
1325 |
-
#: lib/structure/search.php:23
|
1326 |
-
msgid "Search this website"
|
1327 |
-
msgstr "Pretraži"
|
1328 |
-
|
1329 |
-
#: lib/structure/search.php:25
|
1330 |
-
msgid "Search"
|
1331 |
-
msgstr "Tražilica"
|
1332 |
-
|
1333 |
-
#: lib/structure/sidebar.php:24
|
1334 |
-
msgid "Primary Sidebar Widget Area"
|
1335 |
-
msgstr ""
|
1336 |
-
|
1337 |
-
#: lib/structure/sidebar.php:27
|
1338 |
-
msgid "This is the Primary Sidebar Widget Area. You can add content to this area by visiting your <a href=\"%s\">Widgets Panel</a> and adding new widgets to this area."
|
1339 |
-
msgstr ""
|
1340 |
-
|
1341 |
-
#: lib/structure/sidebar.php:45
|
1342 |
-
msgid "Secondary Sidebar Widget Area"
|
1343 |
-
msgstr ""
|
1344 |
-
|
1345 |
-
#: lib/structure/sidebar.php:48
|
1346 |
-
msgid "This is the Secondary Sidebar Widget Area. You can add content to this area by visiting your <a href=\"%s\">Widgets Panel</a> and adding new widgets to this area."
|
1347 |
-
msgstr ""
|
1348 |
-
|
1349 |
-
#: lib/tools/post-templates.php:132
|
1350 |
-
msgid "Single Post Template"
|
1351 |
-
msgstr ""
|
1352 |
-
|
1353 |
-
#: lib/tools/post-templates.php:157
|
1354 |
-
msgid "Post Template"
|
1355 |
-
msgstr ""
|
1356 |
-
|
1357 |
-
#: lib/tools/post-templates.php:162
|
1358 |
-
msgid "Some themes have custom templates you can use for single posts that might have additional features or custom layouts. If so, you will see them above."
|
1359 |
-
msgstr ""
|
1360 |
-
|
1361 |
-
#: lib/widgets/enews-widget.php:38
|
1362 |
-
msgid "Enter your email address ..."
|
1363 |
-
msgstr "Unesite e-mail adresu..."
|
1364 |
-
|
1365 |
-
#: lib/widgets/enews-widget.php:39
|
1366 |
-
msgid "Go"
|
1367 |
-
msgstr "Kreni"
|
1368 |
-
|
1369 |
-
#: lib/widgets/enews-widget.php:44
|
1370 |
-
msgid "Displays Feedburner email subscribe form"
|
1371 |
-
msgstr ""
|
1372 |
-
|
1373 |
-
#: lib/widgets/enews-widget.php:47
|
1374 |
-
msgid "Genesis - eNews and Updates"
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
#: lib/widgets/enews-widget.php:115 lib/widgets/enews-widget.php:124
|
1378 |
-
#: lib/widgets/latest-tweets-widget.php:181
|
1379 |
-
#: lib/widgets/latest-tweets-widget.php:190
|
1380 |
-
msgid "This widget has been deprecated, and should no longer be used."
|
1381 |
-
msgstr ""
|
1382 |
-
|
1383 |
-
#: lib/widgets/enews-widget.php:116
|
1384 |
-
msgid "If you would like to continue to use the eNews widget functionality, please have a site administrator <a href=\"%s\" target=\"_blank\">install this plugin</a> and replace this widget with the Genesis eNews Extended widget."
|
1385 |
-
msgstr ""
|
1386 |
-
|
1387 |
-
#: lib/widgets/enews-widget.php:125
|
1388 |
-
msgid "If you would like to continue to use the eNews widget functionality, please <a href=\"%s\" class=\"thickbox\" title=\"Install Genesis eNews Extended\">install this plugin</a> and replace this widget with the Genesis eNews Extended widget."
|
1389 |
-
msgstr ""
|
1390 |
-
|
1391 |
-
#: lib/widgets/featured-page-widget.php:51
|
1392 |
-
msgid "Displays featured page with thumbnails"
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
#: lib/widgets/featured-page-widget.php:60
|
1396 |
-
msgid "Genesis - Featured Page"
|
1397 |
-
msgstr ""
|
1398 |
-
|
1399 |
-
#: lib/widgets/featured-page-widget.php:159
|
1400 |
-
#: lib/widgets/featured-post-widget.php:215
|
1401 |
-
#: lib/widgets/featured-post-widget.php:251
|
1402 |
-
#: lib/widgets/featured-post-widget.php:371
|
1403 |
-
#: lib/widgets/user-profile-widget.php:136
|
1404 |
-
msgid "Title"
|
1405 |
-
msgstr ""
|
1406 |
-
|
1407 |
-
#: lib/widgets/featured-page-widget.php:164
|
1408 |
-
msgid "Page"
|
1409 |
-
msgstr ""
|
1410 |
-
|
1411 |
-
#: lib/widgets/featured-page-widget.php:172
|
1412 |
-
#: lib/widgets/featured-post-widget.php:301
|
1413 |
-
msgid "Show Featured Image"
|
1414 |
-
msgstr ""
|
1415 |
-
|
1416 |
-
#: lib/widgets/featured-page-widget.php:176
|
1417 |
-
#: lib/widgets/featured-post-widget.php:305
|
1418 |
-
msgid "Image Size"
|
1419 |
-
msgstr ""
|
1420 |
-
|
1421 |
-
#: lib/widgets/featured-page-widget.php:188
|
1422 |
-
#: lib/widgets/featured-post-widget.php:317
|
1423 |
-
msgid "Image Alignment"
|
1424 |
-
msgstr ""
|
1425 |
-
|
1426 |
-
#: lib/widgets/featured-page-widget.php:190
|
1427 |
-
#: lib/widgets/featured-post-widget.php:289
|
1428 |
-
#: lib/widgets/featured-post-widget.php:319
|
1429 |
-
#: lib/widgets/user-profile-widget.php:160
|
1430 |
-
#: lib/widgets/user-profile-widget.php:180
|
1431 |
-
msgid "None"
|
1432 |
-
msgstr ""
|
1433 |
-
|
1434 |
-
#: lib/widgets/featured-page-widget.php:200
|
1435 |
-
msgid "Show Page Title"
|
1436 |
-
msgstr ""
|
1437 |
-
|
1438 |
-
#: lib/widgets/featured-page-widget.php:205
|
1439 |
-
msgid "Show Page Byline"
|
1440 |
-
msgstr ""
|
1441 |
-
|
1442 |
-
#: lib/widgets/featured-page-widget.php:210
|
1443 |
-
msgid "Show Page Content"
|
1444 |
-
msgstr ""
|
1445 |
-
|
1446 |
-
#: lib/widgets/featured-page-widget.php:214
|
1447 |
-
msgid "Content Character Limit"
|
1448 |
-
msgstr ""
|
1449 |
-
|
1450 |
-
#: lib/widgets/featured-page-widget.php:219
|
1451 |
-
msgid "More Text"
|
1452 |
-
msgstr ""
|
1453 |
-
|
1454 |
-
#: lib/widgets/featured-post-widget.php:51
|
1455 |
-
msgid "By"
|
1456 |
-
msgstr ""
|
1457 |
-
|
1458 |
-
#: lib/widgets/featured-post-widget.php:54
|
1459 |
-
msgid "[Read More...]"
|
1460 |
-
msgstr "[više]"
|
1461 |
-
|
1462 |
-
#: lib/widgets/featured-post-widget.php:58
|
1463 |
-
msgid "More Posts from this Category"
|
1464 |
-
msgstr ""
|
1465 |
-
|
1466 |
-
#: lib/widgets/featured-post-widget.php:63
|
1467 |
-
msgid "Displays featured posts with thumbnails"
|
1468 |
-
msgstr ""
|
1469 |
-
|
1470 |
-
#: lib/widgets/featured-post-widget.php:72
|
1471 |
-
msgid "Genesis - Featured Posts"
|
1472 |
-
msgstr ""
|
1473 |
-
|
1474 |
-
#: lib/widgets/featured-post-widget.php:224
|
1475 |
-
msgid "Category"
|
1476 |
-
msgstr ""
|
1477 |
-
|
1478 |
-
#: lib/widgets/featured-post-widget.php:238
|
1479 |
-
#: lib/widgets/featured-post-widget.php:376
|
1480 |
-
msgid "Number of Posts to Show"
|
1481 |
-
msgstr ""
|
1482 |
-
|
1483 |
-
#: lib/widgets/featured-post-widget.php:243
|
1484 |
-
msgid "Number of Posts to Offset"
|
1485 |
-
msgstr ""
|
1486 |
-
|
1487 |
-
#: lib/widgets/featured-post-widget.php:248
|
1488 |
-
msgid "Order By"
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
#: lib/widgets/featured-post-widget.php:250
|
1492 |
-
msgid "Date"
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: lib/widgets/featured-post-widget.php:252
|
1496 |
-
msgid "Parent"
|
1497 |
-
msgstr ""
|
1498 |
-
|
1499 |
-
#: lib/widgets/featured-post-widget.php:253
|
1500 |
-
msgid "ID"
|
1501 |
-
msgstr ""
|
1502 |
-
|
1503 |
-
#: lib/widgets/featured-post-widget.php:254
|
1504 |
-
msgid "Comment Count"
|
1505 |
-
msgstr ""
|
1506 |
-
|
1507 |
-
#: lib/widgets/featured-post-widget.php:255
|
1508 |
-
msgid "Random"
|
1509 |
-
msgstr ""
|
1510 |
-
|
1511 |
-
#: lib/widgets/featured-post-widget.php:260
|
1512 |
-
msgid "Sort Order"
|
1513 |
-
msgstr ""
|
1514 |
-
|
1515 |
-
#: lib/widgets/featured-post-widget.php:262
|
1516 |
-
msgid "Descending (3, 2, 1)"
|
1517 |
-
msgstr ""
|
1518 |
-
|
1519 |
-
#: lib/widgets/featured-post-widget.php:263
|
1520 |
-
msgid "Ascending (1, 2, 3)"
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: lib/widgets/featured-post-widget.php:273
|
1524 |
-
msgid "Show Author Gravatar"
|
1525 |
-
msgstr ""
|
1526 |
-
|
1527 |
-
#: lib/widgets/featured-post-widget.php:277
|
1528 |
-
#: lib/widgets/user-profile-widget.php:146
|
1529 |
-
msgid "Gravatar Size"
|
1530 |
-
msgstr ""
|
1531 |
-
|
1532 |
-
#: lib/widgets/featured-post-widget.php:279
|
1533 |
-
msgid "Small (45px)"
|
1534 |
-
msgstr ""
|
1535 |
-
|
1536 |
-
#: lib/widgets/featured-post-widget.php:280
|
1537 |
-
msgid "Medium (65px)"
|
1538 |
-
msgstr ""
|
1539 |
-
|
1540 |
-
#: lib/widgets/featured-post-widget.php:281
|
1541 |
-
msgid "Large (85px)"
|
1542 |
-
msgstr ""
|
1543 |
-
|
1544 |
-
#: lib/widgets/featured-post-widget.php:282
|
1545 |
-
msgid "Extra Large (125px)"
|
1546 |
-
msgstr ""
|
1547 |
-
|
1548 |
-
#: lib/widgets/featured-post-widget.php:287
|
1549 |
-
#: lib/widgets/user-profile-widget.php:158
|
1550 |
-
msgid "Gravatar Alignment"
|
1551 |
-
msgstr ""
|
1552 |
-
|
1553 |
-
#: lib/widgets/featured-post-widget.php:335
|
1554 |
-
msgid "Show Post Title"
|
1555 |
-
msgstr ""
|
1556 |
-
|
1557 |
-
#: lib/widgets/featured-post-widget.php:340
|
1558 |
-
msgid "Show Post Info"
|
1559 |
-
msgstr ""
|
1560 |
-
|
1561 |
-
#: lib/widgets/featured-post-widget.php:345
|
1562 |
-
msgid "Content Type"
|
1563 |
-
msgstr ""
|
1564 |
-
|
1565 |
-
#: lib/widgets/featured-post-widget.php:347
|
1566 |
-
msgid "Show Content"
|
1567 |
-
msgstr ""
|
1568 |
-
|
1569 |
-
#: lib/widgets/featured-post-widget.php:348
|
1570 |
-
msgid "Show Excerpt"
|
1571 |
-
msgstr ""
|
1572 |
-
|
1573 |
-
#: lib/widgets/featured-post-widget.php:349
|
1574 |
-
msgid "Show Content Limit"
|
1575 |
-
msgstr ""
|
1576 |
-
|
1577 |
-
#: lib/widgets/featured-post-widget.php:350
|
1578 |
-
msgid "No Content"
|
1579 |
-
msgstr ""
|
1580 |
-
|
1581 |
-
#: lib/widgets/featured-post-widget.php:360
|
1582 |
-
msgid "More Text (if applicable)"
|
1583 |
-
msgstr ""
|
1584 |
-
|
1585 |
-
#: lib/widgets/featured-post-widget.php:368
|
1586 |
-
msgid "To display an unordered list of more posts from this category, please fill out the information below"
|
1587 |
-
msgstr ""
|
1588 |
-
|
1589 |
-
#: lib/widgets/featured-post-widget.php:386
|
1590 |
-
msgid "Show Category Archive Link"
|
1591 |
-
msgstr ""
|
1592 |
-
|
1593 |
-
#: lib/widgets/featured-post-widget.php:390
|
1594 |
-
msgid "Link Text"
|
1595 |
-
msgstr ""
|
1596 |
-
|
1597 |
-
#: lib/widgets/latest-tweets-widget.php:49
|
1598 |
-
msgid "Display a list of your latest tweets."
|
1599 |
-
msgstr ""
|
1600 |
-
|
1601 |
-
#: lib/widgets/latest-tweets-widget.php:58
|
1602 |
-
msgid "Genesis - Latest Tweets"
|
1603 |
-
msgstr ""
|
1604 |
-
|
1605 |
-
#: lib/widgets/latest-tweets-widget.php:98
|
1606 |
-
msgid "The Twitter API is taking too long to respond. Please try again later."
|
1607 |
-
msgstr ""
|
1608 |
-
|
1609 |
-
#: lib/widgets/latest-tweets-widget.php:101
|
1610 |
-
msgid "There was an error while attempting to contact the Twitter API. Please try again."
|
1611 |
-
msgstr ""
|
1612 |
-
|
1613 |
-
#: lib/widgets/latest-tweets-widget.php:104
|
1614 |
-
msgid "The Twitter API returned an error while processing your request. Please try again."
|
1615 |
-
msgstr ""
|
1616 |
-
|
1617 |
-
#: lib/widgets/latest-tweets-widget.php:118
|
1618 |
-
msgid "about %s ago"
|
1619 |
-
msgstr ""
|
1620 |
-
|
1621 |
-
#: lib/widgets/latest-tweets-widget.php:182
|
1622 |
-
msgid "If you would like to continue to use the Latest Tweets widget functionality, please have a site administrator <a href=\"%s\" target=\"_blank\">install this plugin</a>."
|
1623 |
-
msgstr ""
|
1624 |
-
|
1625 |
-
#: lib/widgets/latest-tweets-widget.php:191
|
1626 |
-
msgid "If you would like to continue to use the Latest Tweets widget functionality, please <a href=\"%s\" class=\"thickbox\" title=\"Install Genesis Latest Tweets\">install this plugin</a>."
|
1627 |
-
msgstr ""
|
1628 |
-
|
1629 |
-
#: lib/widgets/user-profile-widget.php:42
|
1630 |
-
msgid "Read More"
|
1631 |
-
msgstr "[više]"
|
1632 |
-
|
1633 |
-
#: lib/widgets/user-profile-widget.php:48
|
1634 |
-
msgid "Displays user profile block with Gravatar"
|
1635 |
-
msgstr ""
|
1636 |
-
|
1637 |
-
#: lib/widgets/user-profile-widget.php:57
|
1638 |
-
msgid "Genesis - User Profile"
|
1639 |
-
msgstr ""
|
1640 |
-
|
1641 |
-
#: lib/widgets/user-profile-widget.php:96
|
1642 |
-
msgid "View My Blog Posts"
|
1643 |
-
msgstr ""
|
1644 |
-
|
1645 |
-
#: lib/widgets/user-profile-widget.php:141
|
1646 |
-
msgid "Select a user. The email address for this account will be used to pull the Gravatar image."
|
1647 |
-
msgstr ""
|
1648 |
-
|
1649 |
-
#: lib/widgets/user-profile-widget.php:149
|
1650 |
-
msgid "Small"
|
1651 |
-
msgstr ""
|
1652 |
-
|
1653 |
-
#: lib/widgets/user-profile-widget.php:149
|
1654 |
-
msgid "Medium"
|
1655 |
-
msgstr ""
|
1656 |
-
|
1657 |
-
#: lib/widgets/user-profile-widget.php:149
|
1658 |
-
msgid "Large"
|
1659 |
-
msgstr ""
|
1660 |
-
|
1661 |
-
#: lib/widgets/user-profile-widget.php:149
|
1662 |
-
msgid "Extra Large"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
#: lib/widgets/user-profile-widget.php:167
|
1666 |
-
msgid "Select which text you would like to use as the author description"
|
1667 |
-
msgstr ""
|
1668 |
-
|
1669 |
-
#: lib/widgets/user-profile-widget.php:170
|
1670 |
-
msgid "Author Bio"
|
1671 |
-
msgstr ""
|
1672 |
-
|
1673 |
-
#: lib/widgets/user-profile-widget.php:172
|
1674 |
-
msgid "Custom Text (below)"
|
1675 |
-
msgstr ""
|
1676 |
-
|
1677 |
-
#: lib/widgets/user-profile-widget.php:173
|
1678 |
-
msgid "Custom Text Content"
|
1679 |
-
msgstr ""
|
1680 |
-
|
1681 |
-
#: lib/widgets/user-profile-widget.php:179
|
1682 |
-
msgid "Choose your extended \"About Me\" page from the list below. This will be the page linked to at the end of the about me section."
|
1683 |
-
msgstr ""
|
1684 |
-
|
1685 |
-
#: lib/widgets/user-profile-widget.php:184
|
1686 |
-
msgid "Extended page link text"
|
1687 |
-
msgstr ""
|
1688 |
-
|
1689 |
-
#: lib/widgets/user-profile-widget.php:190
|
1690 |
-
msgid "Show Author Archive Link?"
|
1691 |
-
msgstr ""
|
1692 |
-
|
1693 |
-
#: search.php:28
|
1694 |
-
msgid "Search Results for:"
|
1695 |
-
msgstr "Rezultati pretrage:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.md
CHANGED
@@ -5,18 +5,19 @@
|
|
5 |
* Tags: genesis, translations,
|
6 |
* Requires at least: 3.1
|
7 |
* Tested up to: 3.5.
|
8 |
-
* Stable tag: 1.9.
|
9 |
|
10 |
-
Translate your Genesis powered WordPress site into one of the available languages.
|
11 |
|
12 |
## Description
|
13 |
|
14 |
-
This plugin translates your Genesis powered WordPress site easily with one of the available languages.
|
15 |
|
16 |
-
|
17 |
-
|
18 |
-
Currently the following translations are available for Genesis 1.8.x
|
19 |
|
|
|
|
|
|
|
20 |
* Danish - da_DK
|
21 |
* Dutch - nl_NL
|
22 |
* Italian - it_IT
|
@@ -33,16 +34,15 @@ Currently the following translations are available for Genesis 1.8.x
|
|
33 |
* Russian - ru_RU
|
34 |
* Norwegian - nb_NO
|
35 |
* Portuguese-Brazilian - pt_BR
|
36 |
-
* Greek - el_GR
|
37 |
-
* Hebrew - he_IL
|
38 |
-
* Polish - pl_PL
|
39 |
-
* Portuguese - pt_PT
|
40 |
-
* Hungarian - hu_HU
|
41 |
-
* Japanese - ja
|
42 |
-
* Chinese - zh_CN
|
43 |
* Icelandic - is_IS (front-end only)
|
44 |
|
45 |
-
|
46 |
So you don't see your language up here and you would like to see it added? [Please contact me](http://forsitemedia.net/contact/ "Please contact me") and we'll get you sorted.
|
47 |
|
48 |
This plugin only works on the [Genesis Framework](http://forsitemedia.net/go/genesis/ "Genesis Framework").
|
@@ -84,6 +84,10 @@ No screenshots (yet). Let me know if you need some.
|
|
84 |
|
85 |
##Changelog
|
86 |
|
|
|
|
|
|
|
|
|
87 |
### 1.9.0
|
88 |
|
89 |
* Added Arabic (ar), Afrikaans (af) & Croatian (hr)
|
5 |
* Tags: genesis, translations,
|
6 |
* Requires at least: 3.1
|
7 |
* Tested up to: 3.5.
|
8 |
+
* Stable tag: 1.9.1
|
9 |
|
10 |
+
Translate your Genesis Framework powered WordPress site into one of the available languages.
|
11 |
|
12 |
## Description
|
13 |
|
14 |
+
This plugin translates your Genesis powered WordPress site easily with one of the available languages. No need to fuss about with your `functions.php` file or uploading `.mo` and `.po` files. Just install this plugin et voilá! If you're curious about the status of your translations you can check out the translations here: http://translate.studiopress.com/ and if you'd like the improve your language you will need to register [here](http://translations.studiopress.com/home/) first.
|
15 |
|
16 |
+
Currently the following translations are available for Genesis 1.9.x
|
|
|
|
|
17 |
|
18 |
+
* Afrikaans - Af
|
19 |
+
* Arabic - Ar
|
20 |
+
* Croatian - hr
|
21 |
* Danish - da_DK
|
22 |
* Dutch - nl_NL
|
23 |
* Italian - it_IT
|
34 |
* Russian - ru_RU
|
35 |
* Norwegian - nb_NO
|
36 |
* Portuguese-Brazilian - pt_BR
|
37 |
+
* Greek - el_GR
|
38 |
+
* Hebrew - he_IL
|
39 |
+
* Polish - pl_PL
|
40 |
+
* Portuguese - pt_PT
|
41 |
+
* Hungarian - hu_HU
|
42 |
+
* Japanese - ja
|
43 |
+
* Chinese - zh_CN
|
44 |
* Icelandic - is_IS (front-end only)
|
45 |
|
|
|
46 |
So you don't see your language up here and you would like to see it added? [Please contact me](http://forsitemedia.net/contact/ "Please contact me") and we'll get you sorted.
|
47 |
|
48 |
This plugin only works on the [Genesis Framework](http://forsitemedia.net/go/genesis/ "Genesis Framework").
|
84 |
|
85 |
##Changelog
|
86 |
|
87 |
+
### 1.9.1
|
88 |
+
|
89 |
+
* small changes here and there
|
90 |
+
|
91 |
### 1.9.0
|
92 |
|
93 |
* Added Arabic (ar), Afrikaans (af) & Croatian (hr)
|
readme.txt
CHANGED
@@ -4,15 +4,13 @@ Donate link: http://remkusdevries.com/donate/
|
|
4 |
Tags: genesis, translations,
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.5.1
|
7 |
-
Stable tag: 1.9.
|
8 |
|
9 |
-
Translate your Genesis powered WordPress site into one of the available languages.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
This plugin translates your Genesis powered WordPress site easily with one of the available languages.
|
14 |
-
|
15 |
-
No need to fuss about with your `functions.php` file or uploading `.mo` and `.po` files. Just install this plugin et voilá!
|
16 |
|
17 |
Currently the following translations are available for Genesis 1.9.x
|
18 |
|
@@ -86,6 +84,14 @@ No screenshots (yet). Let me know if you need some.
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
= 1.9.0 =
|
90 |
|
91 |
* Added Arabic (ar), Afrikaans (af) & Croatian (hr)
|
4 |
Tags: genesis, translations,
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 1.9.2
|
8 |
|
9 |
+
Translate your Genesis Framework powered WordPress site into one of the available languages.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
This plugin translates your Genesis powered WordPress site easily with one of the available languages. No need to fuss about with your `functions.php` file or uploading `.mo` and `.po` files. Just install this plugin et voilá! If you're curious about the status of your translations you can check out the translations here: http://translate.studiopress.com/ and if you'd like the improve your language you will need to register [here](http://translations.studiopress.com/home/) first.
|
|
|
|
|
14 |
|
15 |
Currently the following translations are available for Genesis 1.9.x
|
16 |
|
84 |
|
85 |
== Changelog ==
|
86 |
|
87 |
+
= 1.9.2 =
|
88 |
+
|
89 |
+
* Updates to various languages + added Welsh (cy)
|
90 |
+
|
91 |
+
= 1.9.1 =
|
92 |
+
|
93 |
+
* Updated a few things in readme
|
94 |
+
|
95 |
= 1.9.0 =
|
96 |
|
97 |
* Added Arabic (ar), Afrikaans (af) & Croatian (hr)
|