Changeset 504559
- Timestamp:
- 02/13/2012 11:55:18 PM (14 years ago)
- Location:
- catablog/trunk
- Files:
-
- 20 edited
-
catablog.php (modified) (2 diffs)
-
css/catablog-admin.css (modified) (3 diffs)
-
css/catablog.css (modified) (1 diff)
-
js/catablog-admin.js (modified) (1 diff)
-
lib/CataBlog.class.php (modified) (5 diffs)
-
lib/CataBlogItem.class.php (modified) (2 diffs)
-
lib/CataBlogWidget.class.php (modified) (1 diff)
-
localization/catablog-de_DE.mo (modified) (previous)
-
localization/catablog-de_DE.po (modified) (9 diffs)
-
localization/catablog-es_ES.mo (modified) (previous)
-
localization/catablog-es_ES.po (modified) (18 diffs)
-
localization/catablog-sv_SE.mo (modified) (previous)
-
localization/catablog-sv_SE.po (modified) (9 diffs)
-
localization/catablog.mo (modified) (previous)
-
localization/catablog.po (modified) (9 diffs)
-
readme.txt (modified) (2 diffs)
-
templates/admin-contextual-help.php (modified) (1 diff)
-
templates/admin-new.php (modified) (1 diff)
-
templates/admin-options.php (modified) (11 diffs)
-
templates/admin-templates-editor.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
catablog/trunk/catablog.php
r501312 r504559 4 4 Plugin URI: http://catablog.illproductions.com/ 5 5 Description: CataBlog is a comprehensive and effortless tool that helps you create, organize and share catalogs, stores, galleries and portfolios on your blog. 6 Version: 1.4. 16 Version: 1.4.2 7 7 Author: Zachary Segal 8 8 Author URI: http://catablog.illproductions.com/about/ … … 192 192 // Remote post on deactivation 193 193 function catablog_deactivate() { 194 $body_array = array('action'=>'deactivate', 'site-url'=>site_url(), 'version'=>'1.4.1'); 195 $post_action = wp_remote_post('http://catablog.illproductions.com/tracker.php', array('body'=>$body_array)); 194 // do nothing 196 195 } 197 196 register_deactivation_hook( __FILE__, 'catablog_deactivate' ); -
catablog/trunk/css/catablog-admin.css
r495415 r504559 1 body { 2 /* min-width: 900px !important;*/ 3 } 4 1 /* 2 * CataBlog Admin StyleSheet 3 */ 5 4 6 5 .error { … … 668 667 669 668 670 /*671 form#catablog-import-export fieldset div.controls {672 float: left;673 width: 280px;674 675 }676 form#catablog-import-export fieldset div.advice {677 margin: 0 0 0 300px;678 border-left: 1px #e3e3e3 solid;679 padding: 0 0 0 20px;680 }681 */682 683 684 685 686 687 688 669 689 670 … … 699 680 } 700 681 701 702 703 704 705 /*706 707 form#catablog-view {}708 form#catablog-view #catablog-view-menu {709 display: block;710 margin: 0 0 10px 0;711 padding: 3px;712 margin: 0 0 10px 0;713 width: 100%;714 }715 */716 682 717 683 -
catablog/trunk/css/catablog.css
r501312 r504559 1 1 /* 2 * CataBlog StyleSheet , version 1.4.12 * CataBlog StyleSheet 3 3 */ 4 4 -
catablog/trunk/js/catablog-admin.js
r492787 r504559 71 71 72 72 function possibly_disable_save_button() { 73 if (jQuery(' small.error:visible').size() == 0) {73 if (jQuery('.error:not(.hidden)').size() == 0) { 74 74 jQuery('#save_changes').attr('disabled', false); 75 75 jQuery('#save_changes').attr('class', 'button-primary'); -
catablog/trunk/lib/CataBlog.class.php
r501312 r504559 5 5 * This file contains the core class for the CataBlog WordPress Plugin. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.4. 17 * @version 1.4.2 8 8 * @package catablog 9 9 */ … … 19 19 20 20 // plugin version number and blog url 21 private $version = "1.4. 1";21 private $version = "1.4.2"; 22 22 private $blog_url = 'http://catablog.illproductions.com/'; 23 23 private $debug = false; … … 677 677 } 678 678 679 // make sure public post and tax slugs are not the same 680 if ($post_vars['public_post_slug'] == $post_vars['public_tax_slug']) { 681 $this->wp_error(__('Form Validation Error. Please make sure that the individual and category public page slugs are not identical.', 'catablog')); 682 } 679 683 680 684 // flush the rewrite rules for public option updates … … 2350 2354 2351 2355 if ($this->install_user_templates() === false) { 2352 $this->wp_error(__('The CataBlog Templates Directory cannot be written. ', "catablog") . __(' Please check your server file permissions and apache configuration.', "catablog"));2356 $this->wp_error(__('The CataBlog Templates Directory cannot be written. ', "catablog") . __('Please check your server file permissions and apache configuration.', "catablog")); 2353 2357 return false; 2354 2358 } … … 2551 2555 if (version_compare($this->options['version'], '1.3.2', '<')) { 2552 2556 if ($this->upgrade_user_templates() === false) { 2553 $this->wp_error(__('The New CataBlog Templates cannot be written. ', "catablog") . __(' Please check your server file permissions and apache configuration.', "catablog"));2557 $this->wp_error(__('The New CataBlog Templates cannot be written. ', "catablog") . __('Please check your server file permissions and apache configuration.', "catablog")); 2554 2558 return false; 2555 2559 } -
catablog/trunk/lib/CataBlogItem.class.php
r501312 r504559 5 5 * This file contains the class for each CataBlog Item that is fetched from the database. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.4. 17 * @version 1.4.2 8 8 * @package catablog 9 9 */ … … 402 402 $params['menu_order'] = $this->order; 403 403 $params['post_date'] = $this->date; 404 $params['post_status'] = 'publish'; 404 405 405 406 if ($this->id > 0) { -
catablog/trunk/lib/CataBlogWidget.class.php
r501312 r504559 5 5 * This file contains the widget classes for the CataBlog WordPress Plugin. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.4. 17 * @version 1.4.2 8 8 * @package catablog 9 9 */ -
catablog/trunk/localization/catablog-de_DE.po
r498885 r504559 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-02- 01 18:15-0800\n"8 "PO-Revision-Date: 2012-02- 01 18:15-0800\n"7 "POT-Creation-Date: 2012-02-13 14:58-0800\n" 8 "PO-Revision-Date: 2012-02-13 14:58-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: illProductions <zac@illproductions.com>\n" … … 18 18 "X-Poedit-SearchPath-0: ./..\n" 19 19 20 #: ../catablog.php:115 21 #: ../lib/CataBlogWidget.class.php:314 20 #: ../catablog.php:108 21 #, fuzzy 22 msgid "CataBlog Error:" 23 msgstr "CataBlog-Eintrag" 24 25 #: ../catablog.php:110 26 #, php-format 27 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 28 msgstr "" 29 30 #: ../catablog.php:127 22 31 #, fuzzy 23 32 msgid "Select Category" 24 33 msgstr "Wähle eine Farbe" 25 34 26 #: ../catablog.php:1 4135 #: ../catablog.php:169 27 36 msgid "<strong>CataBlog</strong> requires <strong>PHP 5</strong> or better running on your web server. You're version of PHP is to old, please contact your hosting company or IT department for an upgrade. Thanks." 28 37 msgstr "<strong>CataBlog</strong> benötigt mindestens <strong>PHP 5</strong>. Die eingesetzte PHP-Version ist zu alt. Bitte kontaktiere Hosting-Anbieter oder IT-Abteilung für ein Upgrade. Danke." 29 38 30 #: ../catablog.php:1 4639 #: ../catablog.php:174 31 40 msgid "<strong>CataBlog</strong> requires that the <strong>GD Library</strong> be installed on your web server's version of PHP. Please contact your hosting company or IT department for more information. Thanks." 32 41 msgstr "<strong>CataBlog</strong> benötigt <strong>GD Library</strong>. Bitte kontaktiere Hosting-Anbieter oder IT-Abteilung für weitere Informationen. Danke." 33 42 34 #: ../catablog.php:1 5143 #: ../catablog.php:179 35 44 msgid "<strong>CataBlog</strong> requires <strong>WordPress 3.1</strong> or above. Please upgrade WordPress or contact your system administrator about upgrading." 36 45 msgstr "<strong>CataBlog</strong> benötigt mindestens <strong>WordPress 3.1</strong>. Bitte aktualisiere WordPress oder wende dich an den Administrator für ein Upgrade." 37 46 38 #: ../catablog.php:1 5747 #: ../catablog.php:185 39 48 msgid "<strong>CataBlog</strong> could not detect your upload directory or it is not writable by PHP. Please make sure Apache and PHP have write permission for the configured uploads folder. Contact your hosting company or IT department for more information. Thanks." 40 49 msgstr "<strong>CataBlog</ strong> konnte das Upload-Verzeichnis nicht finden. Bitte überprüfe, ob Apache und PHP über Schreibrechte im Upload-Verzeichnis verfügen. Bitte kontaktiere Hosting-Anbieter oder IT-Abteilung für weitere Informationen. Danke." … … 154 163 msgstr "Ansicht" 155 164 156 #: ../lib/CataBlog.class.php:685 165 #: ../lib/CataBlog.class.php:681 166 #, fuzzy 167 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 168 msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut." 169 170 #: ../lib/CataBlog.class.php:689 157 171 msgid "CataBlog Options Saved" 158 172 msgstr "CataBlog-Einstellungen gespeichert" 159 173 160 #: ../lib/CataBlog.class.php:7 38174 #: ../lib/CataBlog.class.php:742 161 175 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 162 176 msgstr "Bitte warte bis die Bildverarbeitung abgeschlossen ist, bevor du diese Seite verlässt." 163 177 164 #: ../lib/CataBlog.class.php:7 56165 #: ../lib/CataBlog.class.php:80 3166 #: ../lib/CataBlog.class.php:8 06178 #: ../lib/CataBlog.class.php:760 179 #: ../lib/CataBlog.class.php:807 180 #: ../lib/CataBlog.class.php:810 167 181 msgid "Form Validation Error. Please reload the page and try again." 168 182 msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut." 169 183 170 #: ../lib/CataBlog.class.php: 797184 #: ../lib/CataBlog.class.php:801 171 185 #, fuzzy 172 186 msgid "Template Changes Saved Successfully." 173 187 msgstr "Änderungen übernommen." 174 188 175 #: ../lib/CataBlog.class.php:80 0189 #: ../lib/CataBlog.class.php:804 176 190 #, fuzzy 177 191 msgid "Template Created Successfully." 178 192 msgstr "Löschen erfolgreich." 179 193 180 #: ../lib/CataBlog.class.php:8 09194 #: ../lib/CataBlog.class.php:813 181 195 #, php-format 182 196 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 183 197 msgstr "" 184 198 185 #: ../lib/CataBlog.class.php:81 2199 #: ../lib/CataBlog.class.php:816 186 200 msgid "File Creation Error. A template already exists with that name." 187 201 msgstr "" 188 202 189 #: ../lib/CataBlog.class.php:81 5203 #: ../lib/CataBlog.class.php:819 190 204 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 191 205 msgstr "" 192 206 193 #: ../lib/CataBlog.class.php: 897194 #: ../lib/CataBlog.class.php: 898195 #: ../lib/CataBlog.class.php: 899207 #: ../lib/CataBlog.class.php:901 208 #: ../lib/CataBlog.class.php:902 209 #: ../lib/CataBlog.class.php:903 196 210 msgid "not present" 197 211 msgstr "nicht vorhanden" 198 212 199 #: ../lib/CataBlog.class.php:99 0213 #: ../lib/CataBlog.class.php:994 200 214 msgid "The file you selected was to large or you didn't select anything at all, please try again." 201 215 msgstr "Die gewählte Datei ist zu groß oder es wurde nichts ausgewählt. Bitte versuche es erneut." 202 216 203 #: ../lib/CataBlog.class.php:994 204 #: ../lib/CataBlog.class.php:1046 217 #: ../lib/CataBlog.class.php:998 218 #: ../lib/CataBlog.class.php:1050 219 #: ../lib/CataBlog.class.php:1102 220 #: ../lib/CataBlog.class.php:1140 221 #: ../lib/CataBlog.class.php:1273 222 msgid "WordPress Nonce Error, please reload the form and try again." 223 msgstr "WordPress-Fehler. Bitte lade die Seite neu und versuche es erneut." 224 225 #: ../lib/CataBlog.class.php:1054 226 msgid "full form was not submitted, please try again." 227 msgstr "Formular unvollständig. Bitte versuche es erneut." 228 205 229 #: ../lib/CataBlog.class.php:1098 206 230 #: ../lib/CataBlog.class.php:1136 207 #: ../lib/CataBlog.class.php:1269208 msgid "WordPress Nonce Error, please reload the form and try again."209 msgstr "WordPress-Fehler. Bitte lade die Seite neu und versuche es erneut."210 211 #: ../lib/CataBlog.class.php:1050212 msgid "full form was not submitted, please try again."213 msgstr "Formular unvollständig. Bitte versuche es erneut."214 215 #: ../lib/CataBlog.class.php:1094216 #: ../lib/CataBlog.class.php:1132217 231 msgid "You didn't select anything to upload, please try again." 218 232 msgstr "Nichts ausgewählt. Bitte versuche es erneut." 219 233 220 #: ../lib/CataBlog.class.php:110 2221 #: ../lib/CataBlog.class.php:114 0234 #: ../lib/CataBlog.class.php:1106 235 #: ../lib/CataBlog.class.php:1144 222 236 msgid "No item ID posted, press back arrow and try again." 223 237 msgstr "Keine ID gewählt. Bitte versuche es erneut." 224 238 225 #: ../lib/CataBlog.class.php:118 3239 #: ../lib/CataBlog.class.php:1187 226 240 msgid "Please make your selection by checking the boxes in the list below." 227 241 msgstr "Bitte wähle aus der folgenden Liste." 228 242 229 #: ../lib/CataBlog.class.php:12 29243 #: ../lib/CataBlog.class.php:1233 230 244 #, php-format 231 245 msgid "Error during set category, could not load item with id %s." 232 246 msgstr "Fehler. Eintrag mit der ID %s konnte nicht geladen werden." 233 247 234 #: ../lib/CataBlog.class.php:12 47248 #: ../lib/CataBlog.class.php:1251 235 249 #, php-format 236 250 msgid "Error during bulk delete, could not load item with id %s." 237 251 msgstr "Fehler. Eintrag mit der ID %s konnte nicht geladen werden." 238 252 239 #: ../lib/CataBlog.class.php:12 78253 #: ../lib/CataBlog.class.php:1282 240 254 msgid "No file was selected for upload, please try again." 241 255 msgstr "Nichts ausgewählt. Bitte versuche es erneut." 242 256 243 #: ../lib/CataBlog.class.php:12 87257 #: ../lib/CataBlog.class.php:1291 244 258 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 245 259 msgstr "XML-Dokument konnte nicht verarbeitet werden. Überprüfe, ob die Datei valide ist." 246 260 247 #: ../lib/CataBlog.class.php:1 297261 #: ../lib/CataBlog.class.php:1301 248 262 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 249 263 msgstr "Dateiformat unbekannt. Bitte überprüfe, ob die Dateiendung .xml oder .csv lautet." 250 264 251 #: ../lib/CataBlog.class.php:13 68265 #: ../lib/CataBlog.class.php:1372 252 266 msgid "The CataBlog upload directories have been unlocked." 253 267 msgstr "Die CataBlog-Upload-Verzeichnisse sind freigegeben." 254 268 255 #: ../lib/CataBlog.class.php:137 1256 #: ../lib/CataBlog.class.php:138 4269 #: ../lib/CataBlog.class.php:1375 270 #: ../lib/CataBlog.class.php:1388 257 271 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 258 272 msgstr "Verzeichnis konnte nicht gesperrt/freigegeben werden. Bist du sicher, dass ein UNIX-Server eingesetzt wird?" 259 273 260 #: ../lib/CataBlog.class.php:138 1274 #: ../lib/CataBlog.class.php:1385 261 275 msgid "The CataBlog upload directories have been locked." 262 276 msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt." 263 277 264 #: ../lib/CataBlog.class.php:1 498278 #: ../lib/CataBlog.class.php:1502 265 279 msgid "micro save successful" 266 280 msgstr "" 267 281 268 #: ../lib/CataBlog.class.php:15 26282 #: ../lib/CataBlog.class.php:1530 269 283 msgid "Screen Options updated successfully." 270 284 msgstr "Anzeigeeinstellungen erfolgreich aktualisiert." 271 285 272 #: ../lib/CataBlog.class.php:155 5286 #: ../lib/CataBlog.class.php:1559 273 287 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 274 288 msgstr "Kategoriename enthält ungültige Zeichen." 275 289 276 #: ../lib/CataBlog.class.php:156 1290 #: ../lib/CataBlog.class.php:1565 277 291 msgid "Please be a little more specific with your category name." 278 292 msgstr "Bitte sei etwas eindeutiger mit dem Kategorienamen." 279 293 280 #: ../lib/CataBlog.class.php:157 3294 #: ../lib/CataBlog.class.php:1577 281 295 msgid "There already is a category with that name." 282 296 msgstr "Dieser Kategoriename existiert bereits." 283 297 284 #: ../lib/CataBlog.class.php:160 2298 #: ../lib/CataBlog.class.php:1606 285 299 msgid "Term Removed Successfully." 286 300 msgstr "Löschen erfolgreich." 287 301 288 #: ../lib/CataBlog.class.php:160 5302 #: ../lib/CataBlog.class.php:1609 289 303 msgid "Term did not exist, please refresh page and try again." 290 304 msgstr "Bezeichnung existiert nicht. Bitte lade die Seite neu und versuche es erneut." 291 305 292 #: ../lib/CataBlog.class.php:16 56306 #: ../lib/CataBlog.class.php:1660 293 307 msgid "unsupported image size type" 294 308 msgstr "Bildgröße nicht unterstützt." 295 309 296 #: ../lib/CataBlog.class.php:16 66310 #: ../lib/CataBlog.class.php:1670 297 311 #, php-format 298 312 msgid "Rendering... %s of %s" 299 313 msgstr "Bildverarbeitung... %s von %s" 300 314 301 #: ../lib/CataBlog.class.php:16 68315 #: ../lib/CataBlog.class.php:1672 302 316 msgid "Image rendering is now complete." 303 317 msgstr "Bildverarbeitung abgeschlossen." 304 318 305 #: ../lib/CataBlog.class.php:17 09319 #: ../lib/CataBlog.class.php:1713 306 320 msgid "error" 307 321 msgstr "Fehler" 308 322 309 #: ../lib/CataBlog.class.php:171 2323 #: ../lib/CataBlog.class.php:1716 310 324 msgid "sub image deleted successfully" 311 325 msgstr "Löschen erfolgreich." 312 326 313 #: ../lib/CataBlog.class.php:173 1327 #: ../lib/CataBlog.class.php:1735 314 328 #, php-format 315 329 msgid "%s library items deleted successfully." 316 330 msgstr "%s Einträge entfernt." 317 331 318 #: ../lib/CataBlog.class.php:173 4332 #: ../lib/CataBlog.class.php:1738 319 333 msgid "CataBlog Library Cleared Successfully." 320 334 msgstr "CataBlog-Einträge entfernt." 321 335 322 #: ../lib/CataBlog.class.php:17 47336 #: ../lib/CataBlog.class.php:1751 323 337 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 324 338 msgstr "CataBlog-Einstellungen, Verzeichnisse und Bezeichnungen entfernt." 325 339 326 #: ../lib/CataBlog.class.php:17 48340 #: ../lib/CataBlog.class.php:1752 327 341 msgid "You may now go deactivate CataBlog and nothing will be left behind." 328 342 msgstr "Du kannst nun CataBlog deaktivieren. Es bleibt nichts zurück." 329 343 330 #: ../lib/CataBlog.class.php:17 49344 #: ../lib/CataBlog.class.php:1753 331 345 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 332 346 msgstr "Wenn du CataBlog wieder nutzen möchtest, installiere alles Nötige erneut." 333 347 334 #: ../lib/CataBlog.class.php:188 5348 #: ../lib/CataBlog.class.php:1889 335 349 #, php-format 336 350 msgid "CataBlog %s LightBox Styles | %s" 337 351 msgstr "CataBlog %s LightBox Styles | %s" 338 352 339 #: ../lib/CataBlog.class.php:19 08353 #: ../lib/CataBlog.class.php:1912 340 354 msgid "You may also press "P" or the left arrow on your keyboard" 341 355 msgstr "Die linke Pfeiltaste oder "P" kann auch genutzt werden." 342 356 343 #: ../lib/CataBlog.class.php:19 09357 #: ../lib/CataBlog.class.php:1913 344 358 msgid "You may also press "N" or the right arrow on your keyboard" 345 359 msgstr "Die rechte Pfeiltaste oder "N" kann auch genutzt werden." 346 360 347 #: ../lib/CataBlog.class.php:191 0361 #: ../lib/CataBlog.class.php:1914 348 362 msgid "Close LightBox Now" 349 363 msgstr "LightBox schließen" 350 364 351 #: ../lib/CataBlog.class.php:191 1365 #: ../lib/CataBlog.class.php:1915 352 366 msgid "PREV" 353 367 msgstr "zurück" 354 368 355 #: ../lib/CataBlog.class.php:191 2369 #: ../lib/CataBlog.class.php:1916 356 370 msgid "NEXT" 357 371 msgstr "weiter" 358 372 359 #: ../lib/CataBlog.class.php:191 3373 #: ../lib/CataBlog.class.php:1917 360 374 msgid "CLOSE" 361 375 msgstr "schließen" 362 376 363 #: ../lib/CataBlog.class.php:19 17377 #: ../lib/CataBlog.class.php:1921 364 378 #, php-format 365 379 msgid "CataBlog %s LightBox JavaScript | %s" 366 380 msgstr "CataBlog %s LightBox JavaScript | %s" 367 381 368 #: ../lib/CataBlog.class.php:19 19382 #: ../lib/CataBlog.class.php:1923 369 383 msgid "End CataBlog LightBox JavaScript" 370 384 msgstr "Beende CataBlog LightBox JavaScript" 371 385 372 #: ../lib/CataBlog.class.php:20 68386 #: ../lib/CataBlog.class.php:2072 373 387 #, php-format 374 388 msgid "%s to %s of %s" 375 389 msgstr "" 376 390 377 #: ../lib/CataBlog.class.php:220 2391 #: ../lib/CataBlog.class.php:2206 378 392 #, fuzzy, php-format 379 393 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 380 394 msgstr "CataBlog-ShortCode-Parameter-Fehler: Das Vorlagenattribut dieses ShortCodes zeigt auf eine Datei, die nicht existiert. Bitte überprüfe, ob sich eine Datei namens '%s.htm' im Verzeichnis befindet." 381 395 382 #: ../lib/CataBlog.class.php:222 5396 #: ../lib/CataBlog.class.php:2229 383 397 #, php-format 384 398 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 385 399 msgstr "CataBlog-ShortCode-Parameter-Fehler: Das Vorlagenattribut dieses ShortCodes zeigt auf eine Datei, die nicht existiert. Bitte überprüfe, ob sich eine Datei namens '%s.htm' im Verzeichnis befindet." 386 400 387 #: ../lib/CataBlog.class.php:22 26401 #: ../lib/CataBlog.class.php:2230 388 402 #: ../templates/admin-library.php:20 389 403 msgid "Learn More" 390 404 msgstr "Erfahre mehr" 391 405 392 #: ../lib/CataBlog.class.php:23 47406 #: ../lib/CataBlog.class.php:2351 393 407 #, fuzzy 394 408 msgid "The CataBlog Upload Directory cannot be written. " 395 409 msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt." 396 410 397 #: ../lib/CataBlog.class.php:2347 411 #: ../lib/CataBlog.class.php:2351 412 #: ../lib/CataBlog.class.php:2356 413 #: ../lib/CataBlog.class.php:2557 398 414 msgid "Please check your server file permissions and apache configuration." 399 415 msgstr "" 400 416 401 #: ../lib/CataBlog.class.php:235 2417 #: ../lib/CataBlog.class.php:2356 402 418 #, fuzzy 403 419 msgid "The CataBlog Templates Directory cannot be written. " 404 420 msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt." 405 421 406 #: ../lib/CataBlog.class.php:2352 407 #: ../lib/CataBlog.class.php:2553 408 msgid " Please check your server file permissions and apache configuration." 409 msgstr "" 410 411 #: ../lib/CataBlog.class.php:2362 422 #: ../lib/CataBlog.class.php:2366 412 423 #, php-format 413 424 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 414 425 msgstr "CataBlog-Einstellungen und -Verzeichnisse wurden eingespielt. Bitte %sneu laden%s" 415 426 416 #: ../lib/CataBlog.class.php:23 86417 #: ../lib/CataBlog.class.php:25 58427 #: ../lib/CataBlog.class.php:2390 428 #: ../lib/CataBlog.class.php:2562 418 429 msgid "Previous" 419 430 msgstr "" 420 431 421 #: ../lib/CataBlog.class.php:23 87422 #: ../lib/CataBlog.class.php:25 59432 #: ../lib/CataBlog.class.php:2391 433 #: ../lib/CataBlog.class.php:2563 423 434 msgid "Next" 424 435 msgstr "" 425 436 426 #: ../lib/CataBlog.class.php:244 3437 #: ../lib/CataBlog.class.php:2447 427 438 #, php-format 428 439 msgid "There was an error creating the default term: %s" 429 440 msgstr "Fehler beim Erstellen der Standardbezeichnung: %s" 430 441 431 #: ../lib/CataBlog.class.php:248 1442 #: ../lib/CataBlog.class.php:2485 432 443 msgid "CataBlog options and directories have been successfully upgraded." 433 444 msgstr "CataBlog-Einstellungen und -Verzeichnisse wurden aktualisiert." 434 445 435 #: ../lib/CataBlog.class.php:255 3446 #: ../lib/CataBlog.class.php:2557 436 447 #, fuzzy 437 448 msgid "The New CataBlog Templates cannot be written. " 438 449 msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt." 439 450 440 #: ../lib/CataBlog.class.php:274 0451 #: ../lib/CataBlog.class.php:2744 441 452 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 442 453 msgstr "CSV-Dokument konnte nicht verarbeitet werden. Überprüfe, ob die Datei valide ist." 443 454 444 #: ../lib/CataBlog.class.php:278 1455 #: ../lib/CataBlog.class.php:2785 445 456 #, fuzzy, php-format 446 457 msgid "There was an error parsing your CSV file on lines: %s." 447 458 msgstr "Fehler beim Erstellen der Standardbezeichnung: %s" 448 459 449 #: ../lib/CataBlog.class.php:2828 450 #: ../lib/CataBlog.class.php:2871 460 #: ../lib/CataBlog.class.php:2832 451 461 #: ../lib/CataBlog.class.php:2875 452 #: ../lib/CataBlog.class.php:2878 462 #: ../lib/CataBlog.class.php:2879 463 #: ../lib/CataBlog.class.php:2882 453 464 msgid "Error:" 454 465 msgstr "Fehler:" 455 466 456 #: ../lib/CataBlog.class.php:284 2467 #: ../lib/CataBlog.class.php:2846 457 468 msgid "Success:" 458 469 msgstr "Erfolg:" 459 470 460 #: ../lib/CataBlog.class.php:284 2471 #: ../lib/CataBlog.class.php:2846 461 472 #, php-format 462 473 msgid " %s inserted into catalog categories." 463 474 msgstr "%s in Kategorien eingefügt." 464 475 465 #: ../lib/CataBlog.class.php:285 0476 #: ../lib/CataBlog.class.php:2854 466 477 msgid "All New Categories Created" 467 478 msgstr "Alle neuen Kategorien erstellt" 468 479 469 #: ../lib/CataBlog.class.php:285 4480 #: ../lib/CataBlog.class.php:2858 470 481 msgid "No New Categories Created" 471 482 msgstr "Keine neuen Kategorien erstellt" 472 483 473 #: ../lib/CataBlog.class.php:28 69474 #: ../lib/CataBlog.class.php:292 3484 #: ../lib/CataBlog.class.php:2873 485 #: ../lib/CataBlog.class.php:2927 475 486 msgid "Insert:" 476 487 msgstr "Einfügen:" 477 488 478 #: ../lib/CataBlog.class.php:28 69479 #: ../lib/CataBlog.class.php:292 3489 #: ../lib/CataBlog.class.php:2873 490 #: ../lib/CataBlog.class.php:2927 480 491 #, php-format 481 492 msgid " %s inserted into the database." 482 493 msgstr "%s in Datenbank eingefügt." 483 494 484 #: ../lib/CataBlog.class.php:287 1495 #: ../lib/CataBlog.class.php:2875 485 496 #, php-format 486 497 msgid " %s was not inserted into the database." 487 498 msgstr "%s wurde nicht in die Datenbank eingefügt." 488 499 489 #: ../lib/CataBlog.class.php:287 5500 #: ../lib/CataBlog.class.php:2879 490 501 msgid "Item had no title and could not be made." 491 502 msgstr "Eintrag hat keinen Titel und konnte nicht erstellt werden." 492 503 493 #: ../lib/CataBlog.class.php:28 78504 #: ../lib/CataBlog.class.php:2882 494 505 msgid "Item had no primary image name and could not be made." 495 506 msgstr "Eintrag hat kein Bild und konnte nicht erstellt werden." 496 507 497 #: ../lib/CataBlog.class.php:292 0508 #: ../lib/CataBlog.class.php:2924 498 509 msgid "Update:" 499 510 msgstr "Aktualisierung:" 500 511 501 #: ../lib/CataBlog.class.php:292 0512 #: ../lib/CataBlog.class.php:2924 502 513 #, php-format 503 514 msgid " %s updated in database." 504 515 msgstr "%s in Datenbank aktualisiert." 505 516 506 #: ../lib/CataBlog.class.php:29 49517 #: ../lib/CataBlog.class.php:2953 507 518 #, fuzzy, php-format 508 519 msgid "%s Catalog Items Inserted" 509 520 msgstr "Alle Einträge verarbeitet" 510 521 511 #: ../lib/CataBlog.class.php:301 4522 #: ../lib/CataBlog.class.php:3018 512 523 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 513 524 msgstr "Hochgeladene Datei überschreitet die maximale Dateigröße, die PHP zulässt." 514 525 515 #: ../lib/CataBlog.class.php:30 17526 #: ../lib/CataBlog.class.php:3021 516 527 msgid "Upload File Exceeded The HTML Form's Max File Size." 517 528 msgstr "Hochgeladene Datei überschreitet die maximale Dateigröße, die das Formular zulässt." 518 529 519 #: ../lib/CataBlog.class.php:302 0530 #: ../lib/CataBlog.class.php:3024 520 531 msgid "File Only Partially Uploaded, Please Try Again." 521 532 msgstr "Datei nur teilweise hochgeladen. Bitte versuche es erneut." 522 533 523 #: ../lib/CataBlog.class.php:302 3534 #: ../lib/CataBlog.class.php:3027 524 535 msgid "No File Selected For Upload. Please Resubmit The Form." 525 536 msgstr "Keine Datei gewählt. Bitte versuche es erneut." 526 537 527 #: ../lib/CataBlog.class.php:30 26538 #: ../lib/CataBlog.class.php:3030 528 539 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 529 540 msgstr "In der PHP-Konfiguration ist kein temporäres Verzeichnis für Uploads. Bitte kontaktiere den Systemadministrator." 530 541 531 #: ../lib/CataBlog.class.php:30 29542 #: ../lib/CataBlog.class.php:3033 532 543 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 533 544 msgstr "In der PHP-Konfiguration ist das Schreiben auf die Festplatte deaktiviert. Bitte kontaktiere den Systemadministrator." 534 545 535 #: ../lib/CataBlog.class.php:303 2546 #: ../lib/CataBlog.class.php:3036 536 547 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 537 548 msgstr "Eine PHP-Erweiterung blockiert PHP-Aktualisierungen. Bitte kontaktiere den Systemadministrator." 538 549 539 #: ../lib/CataBlog.class.php:303 5550 #: ../lib/CataBlog.class.php:3039 540 551 msgid "An Unknown Upload Error Has Occurred" 541 552 msgstr "Ein unbekannter Fehler ist bein Upload aufgetreten" … … 601 612 602 613 #: ../lib/CataBlogItem.class.php:361 603 #: ../lib/CataBlogItem.class.php:54 8614 #: ../lib/CataBlogItem.class.php:549 604 615 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 605 616 msgstr "Das Bild besitzt ein nicht unterstütztes Format. JPEG, GIF und PNG sind möglich." 606 617 607 618 #: ../lib/CataBlogItem.class.php:374 608 #: ../lib/CataBlogItem.class.php:53 5619 #: ../lib/CataBlogItem.class.php:536 609 620 msgid "Can not write uploaded image to server, your storage space is exhausted." 610 621 msgstr "Bild konnte nicht gespeichert werden. Es steht kein Speicherplatz zur Verfügung." 611 622 612 623 #: ../lib/CataBlogItem.class.php:375 613 #: ../lib/CataBlogItem.class.php:53 6624 #: ../lib/CataBlogItem.class.php:537 614 625 msgid "Please delete some media files to free up space and try again." 615 626 msgstr "Bitte lösch ein paar Dateien um Platz zu schaffen und versuche es erneut." 616 627 617 628 #: ../lib/CataBlogItem.class.php:376 618 #: ../lib/CataBlogItem.class.php:53 7629 #: ../lib/CataBlogItem.class.php:538 619 630 #, php-format 620 631 msgid "You have %sMB of available space on your server and your image is %sMB." 621 632 msgstr "Du hast %sMB Speicherplatz zur Verfügung. Das Bild ist %sMB groß." 622 633 623 #: ../lib/CataBlogItem.class.php:46 5634 #: ../lib/CataBlogItem.class.php:466 624 635 msgid "Could not set categories, please try again." 625 636 msgstr "Kategorien konnten nicht gewählt werden. Bitte versuche es erneut." 626 637 627 #: ../lib/CataBlogItem.class.php:59 2628 #: ../lib/CataBlogItem.class.php:65 3638 #: ../lib/CataBlogItem.class.php:593 639 #: ../lib/CataBlogItem.class.php:654 629 640 #, php-format 630 641 msgid "Original image file missing, could not be located at %s" 631 642 msgstr "Original Bilddatei fehlt. Sie konnte nicht in %s gefunden werden" 632 643 633 #: ../lib/CataBlogItem.class.php: 599634 #: ../lib/CataBlogItem.class.php:66 1644 #: ../lib/CataBlogItem.class.php:600 645 #: ../lib/CataBlogItem.class.php:662 635 646 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 636 647 msgstr "Die Abmessungen des Originalbildes betragen weniger als 1 px. Wahrscheinlich besitzt PHP keine Leseberechtigung." 637 648 638 #: ../lib/CataBlogItem.class.php:62 8639 #: ../lib/CataBlogItem.class.php:67 5649 #: ../lib/CataBlogItem.class.php:629 650 #: ../lib/CataBlogItem.class.php:676 640 651 msgid "Original image could not be loaded because it is an unsupported format." 641 652 msgstr "Originalbild konnte nicht geladen werden, da es ein nicht unterstütztes Format besitzt." … … 698 709 699 710 #: ../lib/CataBlogWidget.class.php:70 700 #: ../lib/CataBlogWidget.class.php:2 63711 #: ../lib/CataBlogWidget.class.php:270 701 712 #, fuzzy 702 713 msgid "Title: " … … 749 760 msgstr "CataBlog-Kategorie" 750 761 751 #: ../lib/CataBlogWidget.class.php:270 762 #: ../lib/CataBlogWidget.class.php:250 763 #, php-format 764 msgid "This widget requires you to enable the %sCataBlog Public Option%s." 765 msgstr "" 766 767 #: ../lib/CataBlogWidget.class.php:277 752 768 msgid "Display as dropdown" 753 769 msgstr "" 754 770 755 #: ../lib/CataBlogWidget.class.php:2 73771 #: ../lib/CataBlogWidget.class.php:280 756 772 #, fuzzy 757 773 msgid "Show post count" … … 1592 1608 msgstr "Dies ist die Basis, die dein Blog für Katalogarchivseiten nutzt." 1593 1609 1594 #: ../templates/admin-options.php:173 1610 #: ../templates/admin-options.php:170 1611 msgid "Your public slugs cannot be the same." 1612 msgstr "" 1613 1614 #: ../templates/admin-options.php:175 1595 1615 msgid "Catalog Slugs Warning" 1596 1616 msgstr "Hinweis zu Katalogbasen" 1597 1617 1598 #: ../templates/admin-options.php:17 41618 #: ../templates/admin-options.php:176 1599 1619 #, php-format 1600 1620 msgid "Please make sure you do not set either of your catalog slugs to a %sWordPress Reserved Term%s." 1601 1621 msgstr "Bitte achte darauf, dass du keine %svon WordPress genutzten Begriffe%s verwendest." 1602 1622 1603 #: ../templates/admin-options.php:17 51623 #: ../templates/admin-options.php:177 1604 1624 msgid "These labels must also be URL friendly, so they may be transformed from your original input." 1605 1625 msgstr "Diese Begriffe sollten für URLs geeignet sein, um Verarbeitungsfehler zu vermeiden." 1606 1626 1607 #: ../templates/admin-options.php:18 51627 #: ../templates/admin-options.php:187 1608 1628 msgid "Previous Link Label:" 1609 1629 msgstr "" 1610 1630 1611 #: ../templates/admin-options.php:1 881612 msgid " What word would youlike to be used for a paginated catalog's previous page link."1613 msgstr "" 1614 1615 #: ../templates/admin-options.php:19 31631 #: ../templates/admin-options.php:190 1632 msgid "The word you would like to be used for a paginated catalog's previous page link." 1633 msgstr "" 1634 1635 #: ../templates/admin-options.php:195 1616 1636 msgid "Next Link Label:" 1617 1637 msgstr "" 1618 1638 1619 #: ../templates/admin-options.php:19 61620 msgid " What word would youlike to be used for a paginated catalog's next page link."1621 msgstr "" 1622 1623 #: ../templates/admin-options.php:20 31639 #: ../templates/admin-options.php:198 1640 msgid "The word you would like to be used for a paginated catalog's next page link." 1641 msgstr "" 1642 1643 #: ../templates/admin-options.php:205 1624 1644 msgid "Display Location:" 1625 1645 msgstr "" 1626 1646 1627 #: ../templates/admin-options.php:20 51647 #: ../templates/admin-options.php:207 1628 1648 #, fuzzy 1629 1649 msgid "Above Catalog" 1630 1650 msgstr "Über CataBlog" 1631 1651 1632 #: ../templates/admin-options.php:20 51652 #: ../templates/admin-options.php:207 1633 1653 #, fuzzy 1634 1654 msgid "Below Catalog" 1635 1655 msgstr "CataBlog entfernen" 1636 1656 1637 #: ../templates/admin-options.php:20 51657 #: ../templates/admin-options.php:207 1638 1658 msgid "Above and Below" 1639 1659 msgstr "" 1640 1660 1641 #: ../templates/admin-options.php:21 21661 #: ../templates/admin-options.php:214 1642 1662 msgid "Select where you would like your navigation controls to be displayed" 1643 1663 msgstr "" 1644 1664 1645 #: ../templates/admin-options.php:2 181665 #: ../templates/admin-options.php:220 1646 1666 msgid "Show Extra Navigation Info:" 1647 1667 msgstr "" 1648 1668 1649 #: ../templates/admin-options.php:22 01669 #: ../templates/admin-options.php:222 1650 1670 #, fuzzy 1651 1671 msgid "If this is checked then the index of the catalog items being viewed on the page will be shown." 1652 1672 msgstr "Setzt du ein Häkchen, wird jedem Katalogeintrag seine eigene Seite zugewiesen (mit Permalink)." 1653 1673 1654 #: ../templates/admin-options.php:2 291674 #: ../templates/admin-options.php:231 1655 1675 msgid "Link Target:" 1656 1676 msgstr "Linkziel:" 1657 1677 1658 #: ../templates/admin-options.php:23 21678 #: ../templates/admin-options.php:234 1659 1679 msgid "The link target setting will set the <strong>target</strong> attribute of all the catalog title links." 1660 1680 msgstr "Die Einstellung zum Linkziel setzt das <strong>target</strong>-Attribut bei allen Katalogtitellinks." 1661 1681 1662 #: ../templates/admin-options.php:23 31663 #: ../templates/admin-options.php:24 11682 #: ../templates/admin-options.php:235 1683 #: ../templates/admin-options.php:243 1664 1684 msgid "examples:" 1665 1685 msgstr "Beispiele:" 1666 1686 1667 #: ../templates/admin-options.php:23 71687 #: ../templates/admin-options.php:239 1668 1688 msgid "Link Relationship:" 1669 1689 msgstr "Linkbeziehung:" 1670 1690 1671 #: ../templates/admin-options.php:24 01691 #: ../templates/admin-options.php:242 1672 1692 msgid "The link relationship will set the <strong>rel</strong> attribute of all the catalog title links." 1673 1693 msgstr "Die Linkbeziehung setzt das <strong>rel</strong>-Attribut bei allen Katalogtitellinks." 1674 1694 1675 #: ../templates/admin-options.php:25 11695 #: ../templates/admin-options.php:253 1676 1696 msgid "Enable WordPress Filters:" 1677 1697 msgstr "WordPress-Filter aktivieren:" 1678 1698 1679 #: ../templates/admin-options.php:25 41699 #: ../templates/admin-options.php:256 1680 1700 msgid "Enable the standard WordPress filters for your catalog item's description." 1681 1701 msgstr "Aktiviere die WordPress-Filter für die Beschreibung eines Eintrags." 1682 1702 1683 #: ../templates/admin-options.php:25 51703 #: ../templates/admin-options.php:257 1684 1704 msgid "This allows you to use ShortCodes and media embeds inside your catalog item descriptions." 1685 1705 msgstr "Dies erlaubt dir ShortCodes und eingebettete Mediendaten in den Beschreibungen eines Eintrags." 1686 1706 1687 #: ../templates/admin-options.php:25 61707 #: ../templates/admin-options.php:258 1688 1708 msgid "Please <strong>do not use the CataBlog ShortCode</strong> inside a catalog item's description." 1689 1709 msgstr "Bitte <strong>keinen CataBlog ShortCode</strong> innerhalb der Beschreibung eines Eintrags nutzen." 1690 1710 1691 #: ../templates/admin-options.php:26 21711 #: ../templates/admin-options.php:264 1692 1712 msgid "Render Line Breaks:" 1693 1713 msgstr "Darstellung der Zeilenumbrüche:" 1694 1714 1695 #: ../templates/admin-options.php:26 51715 #: ../templates/admin-options.php:267 1696 1716 #, php-format 1697 1717 msgid "Filter your catalog item's description through the standard PHP function %s." 1698 1718 msgstr "Filtere die Einträge durch die PHP-Funktion %s." 1699 1719 1700 #: ../templates/admin-options.php:26 61720 #: ../templates/admin-options.php:268 1701 1721 msgid "This will insert HTML line breaks before all new lines in your catalog descriptions." 1702 1722 msgstr "Dies fügt HTML-Zeilenumbrüche vor allen neuen Zeilen der Beschreibungen ein." 1703 1723 1704 #: ../templates/admin-options.php:26 71724 #: ../templates/admin-options.php:269 1705 1725 msgid "Turn this off if unwanted line breaks are being rendered on your page." 1706 1726 msgstr "Deaktiviere dies, wenn ungewünschte Zeilenumbrüche erscheinen." 1707 1727 1708 #: ../templates/admin-options.php:27 21728 #: ../templates/admin-options.php:274 1709 1729 msgid "Excerpt Length:" 1710 1730 msgstr "" 1711 1731 1712 #: ../templates/admin-options.php:27 51732 #: ../templates/admin-options.php:277 1713 1733 msgid "The excerpt length lets you set how many characters long the description will be when using the %EXCERPT% token." 1714 1734 msgstr "" 1715 1735 1716 #: ../templates/admin-options.php:27 61736 #: ../templates/admin-options.php:278 1717 1737 msgid "The excerpt will cut off any incomplete words at the end, so don't worry if the character count is a little different." 1718 1738 msgstr "" 1719 1739 1720 #: ../templates/admin-options.php:30 11740 #: ../templates/admin-options.php:303 1721 1741 msgid "You may export your CataBlog data to a XML or CSV file which may be used to backup and protect your work. The XML or CSV file is a simple transfer of the database information itself and the <strong>images are not included in this backup</strong>. To backup your images follow the directions at the bottom of the page." 1722 1742 msgstr "Die CataBlog-Daten lassen sich als XML- oder CSV-Datei exportieren. Diese Dateien können als Backup dienen. XML- und CSV-Dateien beinhalten nur die Informationen aus der Datenbank. <strong>Bilder sind in diesem Backup nicht eingeschlossen.</strong> Um Bilder zu sichern, folge den Anweisungen am Ende der Seite." 1723 1743 1724 #: ../templates/admin-options.php:30 71744 #: ../templates/admin-options.php:309 1725 1745 msgid "Save XML BackUp File" 1726 1746 msgstr "XML-Datei speichern" 1727 1747 1728 #: ../templates/admin-options.php:31 11748 #: ../templates/admin-options.php:313 1729 1749 msgid "Save CSV BackUp File" 1730 1750 msgstr "CSV-Datei speichern" 1731 1751 1732 #: ../templates/admin-options.php:3 181752 #: ../templates/admin-options.php:320 1733 1753 #, php-format 1734 1754 msgid "You must have the function %sfputcsv()%s available on your web server's version of PHP for CSV export to work." 1735 1755 msgstr "Die PHP-Funktion %sfputcsv()%s muss verfügbar sein um CSV-Dateien zu exportieren." 1736 1756 1737 #: ../templates/admin-options.php:32 01757 #: ../templates/admin-options.php:322 1738 1758 msgid "Please contact your server administrator for more information regarding this error." 1739 1759 msgstr "Bitte kontaktiere deinen Server-Administrator für weitere Informationen zu diesem Fehler." 1740 1760 1741 #: ../templates/admin-options.php:32 71761 #: ../templates/admin-options.php:329 1742 1762 msgid "Backing Up Images:" 1743 1763 msgstr "Bilder sichern:" 1744 1764 1745 #: ../templates/admin-options.php:3 281765 #: ../templates/admin-options.php:330 1746 1766 msgid "Please copy the <em>catablog</em> directory to a secure location." 1747 1767 msgstr "Bitte kopiere das <em>CataBlog</em>-Verzeichnis an einen sicheren Ort." 1748 1768 1749 #: ../templates/admin-options.php:3 291769 #: ../templates/admin-options.php:331 1750 1770 msgid "The directory for this WordPress blog can be located on your web server at:" 1751 1771 msgstr "Das WordPress-Verzeichnis befindet sich hier auf dem Server:" 1752 1772 1753 #: ../templates/admin-options.php:34 01773 #: ../templates/admin-options.php:342 1754 1774 msgid "Import XML/CSV Data" 1755 1775 msgstr "XML-/CSV-Daten importieren" 1756 1776 1757 #: ../templates/admin-options.php:3 481777 #: ../templates/admin-options.php:350 1758 1778 msgid "Replace All Data:" 1759 1779 msgstr "Alle Daten ersetzen:" 1760 1780 1761 #: ../templates/admin-options.php:35 11781 #: ../templates/admin-options.php:353 1762 1782 msgid "Import CataBlog Data" 1763 1783 msgstr "CataBlog-Daten importieren" 1764 1784 1765 #: ../templates/admin-options.php:35 51785 #: ../templates/admin-options.php:357 1766 1786 msgid "You must have the <strong>Simple XML Library</strong> installed on your web server's version of PHP for XML imports to work. Please contact your server administrator for more information regarding this error." 1767 1787 msgstr "Eine <strong>Simple-XML-Bibliothek</strong> muss für den XML-Export verfügbar sein. Bitte kontaktiere deinen Server-Administrator für weitere Informationen zu diesem Fehler." 1768 1788 1769 #: ../templates/admin-options.php:36 01789 #: ../templates/admin-options.php:362 1770 1790 msgid "To import data into your catalog you simply select a XML or CVS file on your hard drive and click the <em>Import CataBlog Data</em> button. You may choose to completely erase all your data before importing by checking the <em>Replace All Data</em> checkbox.<br />Keep in mind, this <strong>does not import or delete images</strong>." 1771 1791 msgstr "Um Daten zu importieren wähle einfach eine XML- oder CSV-Datei von deinem Rechner aus und klicke <em>CataBlog-Daten importieren</em>. Du kannst alle bestehenden Daten entfernen, wenn du bei <em>Alle Daten ersetzen</em> ein Häkchen machst.<br />Bitte behalte im Hinterkopf, dass dies <strong>keine Bilder entfernt oder importiert</strong>." 1772 1792 1773 #: ../templates/admin-options.php:36 31793 #: ../templates/admin-options.php:365 1774 1794 #, php-format 1775 1795 msgid "To import images you should upload them to the <em>originals</em> directory, located at: <em>%s</em>. Once you load the XML or CVS file and the images into the <em>originals</em> directory everything should be set after you %sRegenerate All Images%s in the systems tab." 1776 1796 msgstr "Um Bilder zu importieren, lade sie in das Verzeichnis <em>originals</em> hoch. Dies befindet sich hier: <em>%s</em>. Sobald du die XML- oder CVS-Datei hoch und die Bilder ins <em>originals</em>-Verzeichnis geladen hast, sollte nach einem Klick auf %sAlle Bilder neu verarbeiten%s im System-Tab alles funktionieren." 1777 1797 1778 #: ../templates/admin-options.php:36 71798 #: ../templates/admin-options.php:369 1779 1799 #, php-format 1780 1800 msgid "You may view XML and CSV examples in the %simport/export documentation%s." 1781 1801 msgstr "Schau dir XML- und CSV-Beispiele in der %sImport/Export-Documentation%s an." 1782 1802 1783 #: ../templates/admin-options.php:38 11803 #: ../templates/admin-options.php:383 1784 1804 msgid "CataBlog Upload Folders are <strong>Unlocked</strong>" 1785 1805 msgstr "CataBlog-Upload-Verzeichnisse sind <strong>beschreibbar</strong>" 1786 1806 1787 #: ../templates/admin-options.php:38 31807 #: ../templates/admin-options.php:385 1788 1808 msgid "CataBlog Upload Folders are <strong>Locked</strong>" 1789 1809 msgstr "CataBlog-Upload-Verzeichnisse sind <strong>geschützt</strong>" 1790 1810 1791 #: ../templates/admin-options.php:39 11811 #: ../templates/admin-options.php:393 1792 1812 msgid "Lock Folders" 1793 1813 msgstr "Verzeichniss schützen" 1794 1814 1795 #: ../templates/admin-options.php:39 31815 #: ../templates/admin-options.php:395 1796 1816 msgid "Unlock Folders" 1797 1817 msgstr "Verzeichnisse freigeben" 1798 1818 1799 #: ../templates/admin-options.php:39 71819 #: ../templates/admin-options.php:399 1800 1820 #, php-format 1801 1821 msgid "You may lock and unlock your <em>catablog</em> folders with these controls. The idea is to unlock the folders, use your FTP client to upload your original files and then lock the folders to protect them from hackers. After unlocking your directories please upload the original files directly into the <strong>%s</strong> folder without replacing it. <strong>Do not replace any of the CataBlog created folders</strong>. You should then regenerate all your thumbnail and lightbox pictures below. These controls may not work on a Windows server, it depends on your servers PHP settings and if the chmod command is supported." 1802 1822 msgstr "Mit diesen Einstellungen kannst du <em>CataBlog</em>-Verzeichnisse schützen und freigeben. Die Idee dahinter ist, dass du ein FTP-Programm zum hochladen nutzen kannst und danach einen Schreibschutz einrichten kannst, um ungewollter Veränderung vorzubeugen. Nach der Freigabe lade die Dateien bitte direkt in den Ordner <strong>%s</strong> ohne ihn zu ersetzen. <strong>Ersetze keine Verzeichnisse, die von CataBlog erstellt wurden.</strong> Führe nach dem Upload eine neue Verarbeitung der Vorschau- und LightBox-Bilder durch." 1803 1823 1804 #: ../templates/admin-options.php:40 21824 #: ../templates/admin-options.php:404 1805 1825 msgid "Rescan Original Image Folder" 1806 1826 msgstr "Originalbilder-Verzeichnis neu laden" 1807 1827 1808 #: ../templates/admin-options.php:40 41828 #: ../templates/admin-options.php:406 1809 1829 msgid "Rescan Original Images Folder Now" 1810 1830 msgstr "Originalbilder-Verzeichnis jetzt neu laden" 1811 1831 1812 #: ../templates/admin-options.php:40 61832 #: ../templates/admin-options.php:408 1813 1833 msgid "Click the <em>Rescan Now</em> button to rescan the original catablog images folder and automatically import any new jpeg, gif or png images. It works simply by making a list of all the image names in the database and then compares each file's name in the originals folder against the list of image names in the database. Any newly discovered images will automatically be made into a new catalog item. You should Regenerate Images after running this command." 1814 1834 msgstr "Klick den <em>Originalbilder-Verzeichnis neu laden</em>-Button um automatisch neue JPEG-, GIF- oder PNG-Bilder zu importieren. In diesem Vorgang wird eine Liste der Dateinamen, die sich in der Datenbank befinden, angelegt und mit den Dateien im Verzeichnis verglichen. Zu allen neuen Bildern wird automatisch ein Eintrag erstellt. Nach dem Laden empfiehlt sich eine neue Verarbeitung aller Bilder." 1815 1835 1816 #: ../templates/admin-options.php:41 11836 #: ../templates/admin-options.php:413 1817 1837 msgid "Regenerate Images" 1818 1838 msgstr "Bilder neu verarbeiten" 1819 1839 1820 #: ../templates/admin-options.php:41 31840 #: ../templates/admin-options.php:415 1821 1841 msgid "Regenerate All Images Now" 1822 1842 msgstr "Alle Bilder neu verarbeiten" 1823 1843 1824 #: ../templates/admin-options.php:41 51844 #: ../templates/admin-options.php:417 1825 1845 msgid "Click the <em>Regenerate Now</em> button to recreate all the thumbnail and lightbox images that CataBlog has generated over the time you have used it. This is also useful when restoring exported data from another version of CataBlog. after you have uploaded your original images you must regenerate your images so they display properly." 1826 1846 msgstr "Mit dem <em>Alle Bilder neu verarbeiten</em>-Button werden alle Vorschau- und LightBox-Bilder, die sich über die Zeit angesammelt haben, neu berechnet. Dies ist sinnvoll, wenn Daten aus einer anderen CataBlog-Version importiert werden. Nachdem die Originalbilder hochgeladen sind, solltest du sie neu berechnen lassen damit sie korrekt angezeigt werden." 1827 1847 1828 #: ../templates/admin-options.php:42 01848 #: ../templates/admin-options.php:422 1829 1849 msgid "Remove CataBlog" 1830 1850 msgstr "CataBlog entfernen" 1831 1851 1832 #: ../templates/admin-options.php:42 21852 #: ../templates/admin-options.php:424 1833 1853 msgid "Remove All CataBlog Data" 1834 1854 msgstr "Alle CataBlog-Daten entfernen" 1835 1855 1836 #: ../templates/admin-options.php:42 41856 #: ../templates/admin-options.php:426 1837 1857 msgid "Delete your entire catalog, deleting all photos and custom data permanently. Sometimes you can use this to fix an improper installation." 1838 1858 msgstr "Dies entfernt deinen gesamten Katalog mit allen Fotos und Daten. Eventuell kann dies sinnvoll sein, um eine fehlerhafte Installation zu reparieren." 1839 1859 1840 #: ../templates/admin-options.php:43 31841 #: ../templates/admin-templates-editor.php:6 61860 #: ../templates/admin-options.php:435 1861 #: ../templates/admin-templates-editor.php:67 1842 1862 #, php-format 1843 1863 msgid "or %sundo current changes%s" 1844 1864 msgstr "oder %saktuelle Änderungen rückgängig machen%s" 1845 1865 1846 #: ../templates/admin-options.php:734 1866 #: ../templates/admin-options.php:643 1867 msgid "There are errors, please correct them before saving." 1868 msgstr "" 1869 1870 #: ../templates/admin-options.php:755 1847 1871 #: ../templates/admin-regenerate.php:43 1848 1872 #: ../templates/admin-rescan.php:49 … … 1850 1874 msgstr "Bitte warte bis die Bildverarbeitung abgeschlossen ist, bevor du diese Seite verlässt. Klick Abbrechen um zurückzukehren und den Vorgang abschließen zu lassen." 1851 1875 1852 #: ../templates/admin-options.php:7 391876 #: ../templates/admin-options.php:760 1853 1877 msgid "Image rendering is not complete, you should let image rendering complete before leaving this page." 1854 1878 msgstr "Die Bildverarbeitung ist noch nicht abgeschlossen. Bitte warte, bevor du diese Seite verlässt." … … 1941 1965 msgstr "" 1942 1966 1943 #: ../templates/admin-templates-editor.php:7 11967 #: ../templates/admin-templates-editor.php:72 1944 1968 #, fuzzy 1945 1969 msgid "You may change the HTML rendered by CataBlog with this control panel, allowing you to make fundamental changes to how catalogs will appear in your posts. You may choose a template to edit from the list of templates to the right . If you want to setup a photo gallery I would recommend that you use the <strong>Gallery Template</strong> by adding the template parameter to the ShortCode. Example: <code>[catablog template=\"gallery\"]</code>" 1946 1970 msgstr "Hier kannst du den HTML-Code, der von <strong>CataBlog</strong> genutzt wird, verändern. Du hast die Möglichkeit grundlegende Änderung im Erscheinungsbild der Kataloge vorzunehmen. Vorlagen kannst du aus dem obigen Drop-down-Menü auswählen und mit <em>Vorlage laden</em> laden. Möchtest du eine Fotogallerie einrichten, steht dir das <em>Gallery template</em> zur Verfügung. Um einen Warenkorb einzurichten, lade das <em>Default Template</em> und eine Shop-Vorlage." 1947 1971 1948 #: ../templates/admin-templates-editor.php:7 61972 #: ../templates/admin-templates-editor.php:77 1949 1973 msgid "If you specify a template in your CataBlog ShortCodes the <strong>default template will be ignored</strong>." 1950 1974 msgstr "" 1951 1975 1952 #: ../templates/admin-templates-editor.php: 791976 #: ../templates/admin-templates-editor.php:80 1953 1977 msgid "If you do not specify a template in your CataBlog ShortCodes then the <strong>default template will be used</strong>." 1954 1978 msgstr "" 1955 1979 1956 #: ../templates/admin-templates-editor.php:8 21980 #: ../templates/admin-templates-editor.php:83 1957 1981 msgid "If you do not specify a template and the default template cannot be found then CataBlog will not be able to render your catalog." 1958 1982 msgstr "" 1959 1983 1960 #: ../templates/admin-templates-editor.php:8 51984 #: ../templates/admin-templates-editor.php:86 1961 1985 #, php-format 1962 1986 msgid "If you need more help read the %shelp panel%s." 1963 1987 msgstr "" 1964 1988 1965 #: ../templates/admin-templates-editor.php:10 41989 #: ../templates/admin-templates-editor.php:105 1966 1990 msgid "Create a New Template File" 1967 1991 msgstr "" 1968 1992 1969 #: ../templates/admin-templates-editor.php:10 71993 #: ../templates/admin-templates-editor.php:108 1970 1994 #, fuzzy 1971 1995 msgid "Save Other Changes Before Creating A New Template File." 1972 1996 msgstr "Speichere Änderungen bevor du ein neues Bild hochlädst." 1973 1997 1974 #: ../templates/admin-templates-editor.php:11 31998 #: ../templates/admin-templates-editor.php:114 1975 1999 #, fuzzy 1976 2000 msgid "Create Template" 1977 2001 msgstr "Vorlage laden" 1978 2002 1979 #: ../templates/admin-templates-editor.php:11 52003 #: ../templates/admin-templates-editor.php:116 1980 2004 msgid "Please enter the name of the new CataBlog Template you wish to create." 1981 2005 msgstr "" 1982 2006 1983 #: ../templates/admin-templates-editor.php:11 62007 #: ../templates/admin-templates-editor.php:117 1984 2008 msgid "If you are missing any system templates you may make them here by typing in their name, such as default." 1985 2009 msgstr "" 1986 2010 1987 #: ../templates/admin-templates-editor.php:11 72011 #: ../templates/admin-templates-editor.php:118 1988 2012 msgid "Please only use underscores, hyphens and alphanumeric characters only." 1989 2013 msgstr "" -
catablog/trunk/localization/catablog-es_ES.po
r498885 r504559 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-02- 01 18:15-0800\n"8 "PO-Revision-Date: 2012-02- 01 18:15-0800\n"7 "POT-Creation-Date: 2012-02-13 15:05-0800\n" 8 "PO-Revision-Date: 2012-02-13 15:15-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: illProductions <zac@illproductions.com>\n" … … 18 18 "X-Poedit-SearchPath-0: ./..\n" 19 19 20 #: ../catablog.php:115 21 #: ../lib/CataBlogWidget.class.php:314 22 #, fuzzy 20 #: ../catablog.php:108 21 msgid "CataBlog Error:" 22 msgstr "CataBlog de error:" 23 24 #: ../catablog.php:110 25 #, php-format 26 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 27 msgstr "Categorías CataBlog requieren para activar %sla opción pública CataBlog%s." 28 29 #: ../catablog.php:127 23 30 msgid "Select Category" 24 msgstr " Elija un color"25 26 #: ../catablog.php:1 4131 msgstr "Seleccione una categoría" 32 33 #: ../catablog.php:169 27 34 msgid "<strong>CataBlog</strong> requires <strong>PHP 5</strong> or better running on your web server. You're version of PHP is to old, please contact your hosting company or IT department for an upgrade. Thanks." 28 35 msgstr "<strong>CataBlog</strong> <strong>requiere PHP 5</strong> o mejor ejecución en el servidor web. Usted es la versión de PHP es viejo, por favor comuníquese con su compañía de alojamiento o departamento de TI para una actualización. Gracias." 29 36 30 #: ../catablog.php:1 4637 #: ../catablog.php:174 31 38 msgid "<strong>CataBlog</strong> requires that the <strong>GD Library</strong> be installed on your web server's version of PHP. Please contact your hosting company or IT department for more information. Thanks." 32 39 msgstr "<strong>CataBlog</strong> requiere que el <strong>GD Library</strong> puede instalar en la versión de su servidor web de PHP. Póngase en contacto con su empresa de alojamiento o departamento de TI para obtener más información. Gracias." 33 40 34 #: ../catablog.php:1 5141 #: ../catablog.php:179 35 42 msgid "<strong>CataBlog</strong> requires <strong>WordPress 3.1</strong> or above. Please upgrade WordPress or contact your system administrator about upgrading." 36 43 msgstr "<strong>CataBlog</strong> requiere <strong>WordPress 3.1</strong> o superior. Por favor, actualice WordPress o ponerte en contacto con el administrador del sistema acerca de la actualización." 37 44 38 #: ../catablog.php:1 5745 #: ../catablog.php:185 39 46 msgid "<strong>CataBlog</strong> could not detect your upload directory or it is not writable by PHP. Please make sure Apache and PHP have write permission for the configured uploads folder. Contact your hosting company or IT department for more information. Thanks." 40 47 msgstr "<strong> CataBlog </ strong> no pudo detectar el directorio de carga o no se puede escribir en PHP. Por favor, asegúrese de que Apache y PHP tiene permisos de escritura para la carpeta configurada carga. Póngase en contacto con su empresa de alojamiento o departamento de IT para obtener más información. Gracias." … … 78 85 79 86 #: ../lib/CataBlog.class.php:330 80 #, fuzzy81 87 msgid "CataBlog Templates" 82 msgstr " CataBlog Quitar"88 msgstr "Plantillas CataBlog" 83 89 84 90 #: ../lib/CataBlog.class.php:330 85 91 #: ../lib/CataBlog.class.php:410 86 #, fuzzy87 92 msgid "Templates" 88 msgstr "Plantilla "93 msgstr "Plantillas" 89 94 90 95 #: ../lib/CataBlog.class.php:331 … … 154 159 msgstr "Ver ahora" 155 160 156 #: ../lib/CataBlog.class.php:685 161 #: ../lib/CataBlog.class.php:681 162 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 163 msgstr "Formulario de error de validación. Por favor, asegúrese de que las balas individuales y la categoría de públicos de página no son idénticos." 164 165 #: ../lib/CataBlog.class.php:689 157 166 msgid "CataBlog Options Saved" 158 167 msgstr "Opciones CataBlog guardados" 159 168 160 #: ../lib/CataBlog.class.php:7 38169 #: ../lib/CataBlog.class.php:742 161 170 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 162 171 msgstr "Por favor, Deja que la Prestación continuación completa antes de salir de esta página" 163 172 164 #: ../lib/CataBlog.class.php:7 56165 #: ../lib/CataBlog.class.php:80 3166 #: ../lib/CataBlog.class.php:8 06173 #: ../lib/CataBlog.class.php:760 174 #: ../lib/CataBlog.class.php:807 175 #: ../lib/CataBlog.class.php:810 167 176 msgid "Form Validation Error. Please reload the page and try again." 168 177 msgstr "Formulario de error de validación. Por favor, vuelva a cargar la página e inténtalo de nuevo." 169 178 170 #: ../lib/CataBlog.class.php:797 171 #, fuzzy 179 #: ../lib/CataBlog.class.php:801 172 180 msgid "Template Changes Saved Successfully." 173 msgstr "Cambios guardados con éxito." 174 175 #: ../lib/CataBlog.class.php:800 176 #, fuzzy 181 msgstr "Cambios en las plantillas guardado correctamente." 182 183 #: ../lib/CataBlog.class.php:804 177 184 msgid "Template Created Successfully." 178 msgstr "Pla zo eliminado con éxito."179 180 #: ../lib/CataBlog.class.php:8 09185 msgstr "Plantilla creado correctamente." 186 187 #: ../lib/CataBlog.class.php:813 181 188 #, php-format 182 189 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 183 msgstr " "184 185 #: ../lib/CataBlog.class.php:81 2190 msgstr "Error de creación del archivo. Por favor, asegúrese de que WordPress se puede escribir en este directorio:<br /><code>%s</code>" 191 192 #: ../lib/CataBlog.class.php:816 186 193 msgid "File Creation Error. A template already exists with that name." 187 msgstr " "188 189 #: ../lib/CataBlog.class.php:81 5194 msgstr "Error de creación del archivo. Una plantilla que ya existe con ese nombre." 195 196 #: ../lib/CataBlog.class.php:819 190 197 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 191 msgstr " "192 193 #: ../lib/CataBlog.class.php: 897194 #: ../lib/CataBlog.class.php: 898195 #: ../lib/CataBlog.class.php: 899198 msgstr "Error de creación del archivo. A nombre de la plantilla sólo puede consistir en guiones bajos, guiones y caracteres alfanuméricos." 199 200 #: ../lib/CataBlog.class.php:901 201 #: ../lib/CataBlog.class.php:902 202 #: ../lib/CataBlog.class.php:903 196 203 msgid "not present" 197 204 msgstr "no está presente" 198 205 199 #: ../lib/CataBlog.class.php:99 0206 #: ../lib/CataBlog.class.php:994 200 207 msgid "The file you selected was to large or you didn't select anything at all, please try again." 201 208 msgstr "El archivo que se seleccionó a los grandes o si no ha seleccionado nada en absoluto, por favor, inténtelo de nuevo." 202 209 203 #: ../lib/CataBlog.class.php:994 204 #: ../lib/CataBlog.class.php:1046 210 #: ../lib/CataBlog.class.php:998 211 #: ../lib/CataBlog.class.php:1050 212 #: ../lib/CataBlog.class.php:1102 213 #: ../lib/CataBlog.class.php:1140 214 #: ../lib/CataBlog.class.php:1273 215 msgid "WordPress Nonce Error, please reload the form and try again." 216 msgstr "WordPress Nonce Error: por favor, vuelva a cargar el formulario y vuelva a intentarlo." 217 218 #: ../lib/CataBlog.class.php:1054 219 msgid "full form was not submitted, please try again." 220 msgstr "forma completa, no se presentó, por favor, inténtelo de nuevo." 221 205 222 #: ../lib/CataBlog.class.php:1098 206 223 #: ../lib/CataBlog.class.php:1136 207 #: ../lib/CataBlog.class.php:1269208 msgid "WordPress Nonce Error, please reload the form and try again."209 msgstr "WordPress Nonce Error: por favor, vuelva a cargar el formulario y vuelva a intentarlo."210 211 #: ../lib/CataBlog.class.php:1050212 msgid "full form was not submitted, please try again."213 msgstr "forma completa, no se presentó, por favor, inténtelo de nuevo."214 215 #: ../lib/CataBlog.class.php:1094216 #: ../lib/CataBlog.class.php:1132217 224 msgid "You didn't select anything to upload, please try again." 218 225 msgstr "Usted no ha seleccionado nada para subir, por favor, inténtelo de nuevo." 219 226 220 #: ../lib/CataBlog.class.php:110 2221 #: ../lib/CataBlog.class.php:114 0227 #: ../lib/CataBlog.class.php:1106 228 #: ../lib/CataBlog.class.php:1144 222 229 msgid "No item ID posted, press back arrow and try again." 223 230 msgstr "Sin ID elemento publicado, pulse la flecha de nuevo y vuelve a intentarlo." 224 231 225 #: ../lib/CataBlog.class.php:118 3232 #: ../lib/CataBlog.class.php:1187 226 233 msgid "Please make your selection by checking the boxes in the list below." 227 234 msgstr "Por favor haga su selección marcando las casillas de la lista a continuación." 228 235 229 #: ../lib/CataBlog.class.php:12 29236 #: ../lib/CataBlog.class.php:1233 230 237 #, php-format 231 238 msgid "Error during set category, could not load item with id %s." 232 239 msgstr "Error durante la categoría de conjunto, no se puede cargar el elemento con id %s." 233 240 234 #: ../lib/CataBlog.class.php:12 47241 #: ../lib/CataBlog.class.php:1251 235 242 #, php-format 236 243 msgid "Error during bulk delete, could not load item with id %s." 237 244 msgstr "Error durante la eliminación masiva, no se puede cargar el elemento con id %s." 238 245 239 #: ../lib/CataBlog.class.php:12 78246 #: ../lib/CataBlog.class.php:1282 240 247 msgid "No file was selected for upload, please try again." 241 248 msgstr "No existe el fichero ha sido seleccionada para la subida, por favor, inténtelo de nuevo." 242 249 243 #: ../lib/CataBlog.class.php:12 87250 #: ../lib/CataBlog.class.php:1291 244 251 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 245 252 msgstr "Archivo Subido XML No se pudieron analizar, Compruebe que el contenido del archivo XML es válido." 246 253 247 #: ../lib/CataBlog.class.php:1 297254 #: ../lib/CataBlog.class.php:1301 248 255 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 249 256 msgstr "El archivo subido no era de formato correcto, por favor asegúrese de que el nombre de archivo tiene un xml o csv." 250 257 251 #: ../lib/CataBlog.class.php:13 68258 #: ../lib/CataBlog.class.php:1372 252 259 msgid "The CataBlog upload directories have been unlocked." 253 260 msgstr "El CataBlog subir directorios han sido desbloqueados." 254 261 255 #: ../lib/CataBlog.class.php:137 1256 #: ../lib/CataBlog.class.php:138 4262 #: ../lib/CataBlog.class.php:1375 263 #: ../lib/CataBlog.class.php:1388 257 264 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 258 265 msgstr "No se pudo bloquear / desbloquear el directorio. ¿Está utilizando un servidor basado en Unix?" 259 266 260 #: ../lib/CataBlog.class.php:138 1267 #: ../lib/CataBlog.class.php:1385 261 268 msgid "The CataBlog upload directories have been locked." 262 269 msgstr "El CataBlog subir directorios se han bloqueado." 263 270 264 #: ../lib/CataBlog.class.php:1 498271 #: ../lib/CataBlog.class.php:1502 265 272 msgid "micro save successful" 266 273 msgstr "micro guardar con éxito" 267 274 268 #: ../lib/CataBlog.class.php:15 26275 #: ../lib/CataBlog.class.php:1530 269 276 msgid "Screen Options updated successfully." 270 277 msgstr "Opciones de la pantalla actualizado correctamente." 271 278 272 #: ../lib/CataBlog.class.php:155 5279 #: ../lib/CataBlog.class.php:1559 273 280 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 274 281 msgstr "Las comas, Tubos y reservados caracteres HTML no están permitidos en los nombres de categoría." 275 282 276 #: ../lib/CataBlog.class.php:156 1283 #: ../lib/CataBlog.class.php:1565 277 284 msgid "Please be a little more specific with your category name." 278 285 msgstr "Por favor, un poco más específico con su nombre de la categoría." 279 286 280 #: ../lib/CataBlog.class.php:157 3287 #: ../lib/CataBlog.class.php:1577 281 288 msgid "There already is a category with that name." 282 289 msgstr "Ya existe una categoría con ese nombre." 283 290 284 #: ../lib/CataBlog.class.php:160 2291 #: ../lib/CataBlog.class.php:1606 285 292 msgid "Term Removed Successfully." 286 293 msgstr "Plazo eliminado con éxito." 287 294 288 #: ../lib/CataBlog.class.php:160 5295 #: ../lib/CataBlog.class.php:1609 289 296 msgid "Term did not exist, please refresh page and try again." 290 297 msgstr "Término no existía, por favor, volver a cargar la página e inténtalo de nuevo." 291 298 292 #: ../lib/CataBlog.class.php:16 56299 #: ../lib/CataBlog.class.php:1660 293 300 msgid "unsupported image size type" 294 301 msgstr "imagen sin soporte en papel del tamaño" 295 302 296 #: ../lib/CataBlog.class.php:16 66303 #: ../lib/CataBlog.class.php:1670 297 304 #, php-format 298 305 msgid "Rendering... %s of %s" 299 306 msgstr "Representación... %s de %s" 300 307 301 #: ../lib/CataBlog.class.php:16 68308 #: ../lib/CataBlog.class.php:1672 302 309 msgid "Image rendering is now complete." 303 310 msgstr "De representación en imágenes se ha completado." 304 311 305 #: ../lib/CataBlog.class.php:17 09312 #: ../lib/CataBlog.class.php:1713 306 313 msgid "error" 307 314 msgstr "error" 308 315 309 #: ../lib/CataBlog.class.php:171 2316 #: ../lib/CataBlog.class.php:1716 310 317 msgid "sub image deleted successfully" 311 318 msgstr "sub imagen eliminado con éxito" 312 319 313 #: ../lib/CataBlog.class.php:173 1320 #: ../lib/CataBlog.class.php:1735 314 321 #, php-format 315 322 msgid "%s library items deleted successfully." 316 323 msgstr "%s elementos de la biblioteca eliminado con éxito." 317 324 318 #: ../lib/CataBlog.class.php:173 4325 #: ../lib/CataBlog.class.php:1738 319 326 msgid "CataBlog Library Cleared Successfully." 320 327 msgstr "Colección CataBlog aclarados con éxito." 321 328 322 #: ../lib/CataBlog.class.php:17 47329 #: ../lib/CataBlog.class.php:1751 323 330 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 324 331 msgstr "Opciones CataBlog, Directorios y Condiciones eliminados con éxito." 325 332 326 #: ../lib/CataBlog.class.php:17 48333 #: ../lib/CataBlog.class.php:1752 327 334 msgid "You may now go deactivate CataBlog and nothing will be left behind." 328 335 msgstr "Ahora puede ir a desactivar CataBlog y nada se quedará atrás." 329 336 330 #: ../lib/CataBlog.class.php:17 49337 #: ../lib/CataBlog.class.php:1753 331 338 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 332 339 msgstr "Si desea seguir utilizando CataBlog, ir a la biblioteca para volver a instalar los ajustes necesarios." 333 340 334 #: ../lib/CataBlog.class.php:188 5341 #: ../lib/CataBlog.class.php:1889 335 342 #, php-format 336 343 msgid "CataBlog %s LightBox Styles | %s" 337 344 msgstr "CataBlog %s LightBox Styles | %s" 338 345 339 #: ../lib/CataBlog.class.php:19 08346 #: ../lib/CataBlog.class.php:1912 340 347 msgid "You may also press "P" or the left arrow on your keyboard" 341 348 msgstr "También puede pulsar "A" o la flecha izquierda del teclado" 342 349 343 #: ../lib/CataBlog.class.php:19 09350 #: ../lib/CataBlog.class.php:1913 344 351 msgid "You may also press "N" or the right arrow on your keyboard" 345 352 msgstr "También puede presionar "S" o la flecha derecha del teclado" 346 353 347 #: ../lib/CataBlog.class.php:191 0354 #: ../lib/CataBlog.class.php:1914 348 355 msgid "Close LightBox Now" 349 356 msgstr "Cerca LightBox Ahora" 350 357 351 #: ../lib/CataBlog.class.php:191 1358 #: ../lib/CataBlog.class.php:1915 352 359 msgid "PREV" 353 360 msgstr "ANTERIOR" 354 361 355 #: ../lib/CataBlog.class.php:191 2362 #: ../lib/CataBlog.class.php:1916 356 363 msgid "NEXT" 357 364 msgstr "SIGUIENTE" 358 365 359 #: ../lib/CataBlog.class.php:191 3366 #: ../lib/CataBlog.class.php:1917 360 367 msgid "CLOSE" 361 368 msgstr "CERRAR" 362 369 363 #: ../lib/CataBlog.class.php:19 17370 #: ../lib/CataBlog.class.php:1921 364 371 #, php-format 365 372 msgid "CataBlog %s LightBox JavaScript | %s" 366 373 msgstr "CataBlog %s LightBox JavaScript | %s" 367 374 368 #: ../lib/CataBlog.class.php:19 19375 #: ../lib/CataBlog.class.php:1923 369 376 msgid "End CataBlog LightBox JavaScript" 370 377 msgstr "Fin CataBlog LightBox JavaScript" 371 378 372 #: ../lib/CataBlog.class.php:20 68379 #: ../lib/CataBlog.class.php:2072 373 380 #, php-format 374 381 msgid "%s to %s of %s" 375 msgstr " "376 377 #: ../lib/CataBlog.class.php:220 2378 #, fuzzy,php-format382 msgstr "%s a %s de %s" 383 384 #: ../lib/CataBlog.class.php:2206 385 #, php-format 379 386 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 380 msgstr "CataBlog abreviado de parámetros de error: El atributo de plantilla de este código abreviado puntos a un archivo que no existe. Por favor, asegúrese de que su es un archivo con '%s.htm' el nombre en el directorio de puntos de 'view'."381 382 #: ../lib/CataBlog.class.php:222 5387 msgstr "CataBlog error de plantilla: La plantilla de la tienda no existe. Por favor, asegúrese de que su es un archivo con extensión '%s.htm' en el directorio <code>wp-content/uploads/catablog/templates</code>." 388 389 #: ../lib/CataBlog.class.php:2229 383 390 #, php-format 384 391 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 385 392 msgstr "CataBlog abreviado de parámetros de error: El atributo de plantilla de este código abreviado puntos a un archivo que no existe. Por favor, asegúrese de que su es un archivo con '%s.htm' el nombre en el directorio de puntos de 'view'." 386 393 387 #: ../lib/CataBlog.class.php:22 26394 #: ../lib/CataBlog.class.php:2230 388 395 #: ../templates/admin-library.php:20 389 396 msgid "Learn More" 390 397 msgstr "Más información" 391 398 392 #: ../lib/CataBlog.class.php:2347 393 #, fuzzy 399 #: ../lib/CataBlog.class.php:2351 394 400 msgid "The CataBlog Upload Directory cannot be written. " 395 msgstr "El CataBlog subir directorios se han bloqueado." 396 397 #: ../lib/CataBlog.class.php:2347 401 msgstr "El Directorio de CataBlog Subir no se puede escribir." 402 403 #: ../lib/CataBlog.class.php:2351 404 #: ../lib/CataBlog.class.php:2356 405 #: ../lib/CataBlog.class.php:2557 398 406 msgid "Please check your server file permissions and apache configuration." 399 msgstr "" 400 401 #: ../lib/CataBlog.class.php:2352 402 #, fuzzy 407 msgstr "Compruebe sus permisos de servidor de archivos y la configuración de apache." 408 409 #: ../lib/CataBlog.class.php:2356 403 410 msgid "The CataBlog Templates Directory cannot be written. " 404 msgstr "El CataBlog subir directorios se han bloqueado." 405 406 #: ../lib/CataBlog.class.php:2352 407 #: ../lib/CataBlog.class.php:2553 408 msgid " Please check your server file permissions and apache configuration." 409 msgstr "" 410 411 #: ../lib/CataBlog.class.php:2362 411 msgstr "El Directorio de CataBlog Las plantillas no se puede escribir." 412 413 #: ../lib/CataBlog.class.php:2366 412 414 #, php-format 413 415 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 414 416 msgstr "Opciones CataBlog y directorios se han instalado con éxito. Por favor, %sactualice ahora%s" 415 417 416 #: ../lib/CataBlog.class.php:23 86417 #: ../lib/CataBlog.class.php:25 58418 #: ../lib/CataBlog.class.php:2390 419 #: ../lib/CataBlog.class.php:2562 418 420 msgid "Previous" 419 msgstr " "420 421 #: ../lib/CataBlog.class.php:23 87422 #: ../lib/CataBlog.class.php:25 59421 msgstr "anterior" 422 423 #: ../lib/CataBlog.class.php:2391 424 #: ../lib/CataBlog.class.php:2563 423 425 msgid "Next" 424 msgstr " "425 426 #: ../lib/CataBlog.class.php:244 3426 msgstr "próximo" 427 428 #: ../lib/CataBlog.class.php:2447 427 429 #, php-format 428 430 msgid "There was an error creating the default term: %s" 429 431 msgstr "Se ha producido un error al crear el término por defecto: %s" 430 432 431 #: ../lib/CataBlog.class.php:248 1433 #: ../lib/CataBlog.class.php:2485 432 434 msgid "CataBlog options and directories have been successfully upgraded." 433 435 msgstr "Opciones CataBlog y directorios se han actualizado correctamente." 434 436 435 #: ../lib/CataBlog.class.php:2553 436 #, fuzzy 437 #: ../lib/CataBlog.class.php:2557 437 438 msgid "The New CataBlog Templates cannot be written. " 438 msgstr " El CataBlog subir directorios se han bloqueado."439 440 #: ../lib/CataBlog.class.php:274 0439 msgstr "Las nuevas plantillas CataBlog no se puede escribir." 440 441 #: ../lib/CataBlog.class.php:2744 441 442 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 442 443 msgstr "Archivo Subido CSV no se pudo analizar, Compruebe que el formato del archivo es válido." 443 444 444 #: ../lib/CataBlog.class.php:278 1445 #, fuzzy,php-format445 #: ../lib/CataBlog.class.php:2785 446 #, php-format 446 447 msgid "There was an error parsing your CSV file on lines: %s." 447 msgstr "Se ha producido un error al crear el término por defecto: %s" 448 449 #: ../lib/CataBlog.class.php:2828 450 #: ../lib/CataBlog.class.php:2871 448 msgstr "Hubo un error al analizar el archivo CSV en las líneas: %s" 449 450 #: ../lib/CataBlog.class.php:2832 451 451 #: ../lib/CataBlog.class.php:2875 452 #: ../lib/CataBlog.class.php:2878 452 #: ../lib/CataBlog.class.php:2879 453 #: ../lib/CataBlog.class.php:2882 453 454 msgid "Error:" 454 455 msgstr "Error:" 455 456 456 #: ../lib/CataBlog.class.php:284 2457 #: ../lib/CataBlog.class.php:2846 457 458 msgid "Success:" 458 459 msgstr "Éxito:" 459 460 460 #: ../lib/CataBlog.class.php:284 2461 #: ../lib/CataBlog.class.php:2846 461 462 #, php-format 462 463 msgid " %s inserted into catalog categories." 463 464 msgstr "%s inserta en categorías catálogo." 464 465 465 #: ../lib/CataBlog.class.php:285 0466 #: ../lib/CataBlog.class.php:2854 466 467 msgid "All New Categories Created" 467 468 msgstr "Todas las categorías Nueva creación" 468 469 469 #: ../lib/CataBlog.class.php:285 4470 #: ../lib/CataBlog.class.php:2858 470 471 msgid "No New Categories Created" 471 472 msgstr "No hay nuevas categorías creadas" 472 473 473 #: ../lib/CataBlog.class.php:28 69474 #: ../lib/CataBlog.class.php:292 3474 #: ../lib/CataBlog.class.php:2873 475 #: ../lib/CataBlog.class.php:2927 475 476 msgid "Insert:" 476 477 msgstr "Insertar:" 477 478 478 #: ../lib/CataBlog.class.php:28 69479 #: ../lib/CataBlog.class.php:292 3479 #: ../lib/CataBlog.class.php:2873 480 #: ../lib/CataBlog.class.php:2927 480 481 #, php-format 481 482 msgid " %s inserted into the database." 482 483 msgstr "%s inserta en la base de datos." 483 484 484 #: ../lib/CataBlog.class.php:287 1485 #: ../lib/CataBlog.class.php:2875 485 486 #, php-format 486 487 msgid " %s was not inserted into the database." 487 488 msgstr "%s no fue insertado en la base de datos." 488 489 489 #: ../lib/CataBlog.class.php:287 5490 #: ../lib/CataBlog.class.php:2879 490 491 msgid "Item had no title and could not be made." 491 492 msgstr "Artículo no tiene título y no pudo realizar." 492 493 493 #: ../lib/CataBlog.class.php:28 78494 #: ../lib/CataBlog.class.php:2882 494 495 msgid "Item had no primary image name and could not be made." 495 496 msgstr "Artículo no tiene nombre de la imagen principal y no pudo realizar." 496 497 497 #: ../lib/CataBlog.class.php:292 0498 #: ../lib/CataBlog.class.php:2924 498 499 msgid "Update:" 499 500 msgstr "Actualización:" 500 501 501 #: ../lib/CataBlog.class.php:292 0502 #: ../lib/CataBlog.class.php:2924 502 503 #, php-format 503 504 msgid " %s updated in database." 504 505 msgstr "%s actualizada la base de datos." 505 506 506 #: ../lib/CataBlog.class.php:29 49507 #, fuzzy,php-format507 #: ../lib/CataBlog.class.php:2953 508 #, php-format 508 509 msgid "%s Catalog Items Inserted" 509 msgstr " Todos los productos del catálogo procesados"510 511 #: ../lib/CataBlog.class.php:301 4510 msgstr "%s artículos de catálogo insertada" 511 512 #: ../lib/CataBlog.class.php:3018 512 513 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 513 514 msgstr "El archivo subido excede el máximo de configuraciones de PHP Tamaño del archivo." 514 515 515 #: ../lib/CataBlog.class.php:30 17516 #: ../lib/CataBlog.class.php:3021 516 517 msgid "Upload File Exceeded The HTML Form's Max File Size." 517 518 msgstr "Carga de archivos ha superado el máximo de formulario HTML Tamaño del archivo." 518 519 519 #: ../lib/CataBlog.class.php:302 0520 #: ../lib/CataBlog.class.php:3024 520 521 msgid "File Only Partially Uploaded, Please Try Again." 521 522 msgstr "El archivo sólo parcialmente cargado, por favor intente de nuevo." 522 523 523 #: ../lib/CataBlog.class.php:302 3524 #: ../lib/CataBlog.class.php:3027 524 525 msgid "No File Selected For Upload. Please Resubmit The Form." 525 526 msgstr "No hay archivos seleccionados para subir. Por favor, vuelva a enviar el formulario." 526 527 527 #: ../lib/CataBlog.class.php:30 26528 #: ../lib/CataBlog.class.php:3030 528 529 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 529 530 msgstr "Configuración de su servidor PHP no tiene una carpeta temporal de Cargas, Póngase en contacto con el administrador del sistema." 530 531 531 #: ../lib/CataBlog.class.php:30 29532 #: ../lib/CataBlog.class.php:3033 532 533 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 533 534 msgstr "Configuración de su servidor PHP no se puede escribir en el disco, Por favor contacte al administrador del sistema." 534 535 535 #: ../lib/CataBlog.class.php:303 2536 #: ../lib/CataBlog.class.php:3036 536 537 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 537 538 msgstr "Una extensión de PHP está bloqueando PHP De Cargas aceptar, Póngase en contacto con el administrador del sistema." 538 539 539 #: ../lib/CataBlog.class.php:303 5540 #: ../lib/CataBlog.class.php:3039 540 541 msgid "An Unknown Upload Error Has Occurred" 541 542 msgstr "Un desconocido Subir error ha ocurrido" … … 600 601 601 602 #: ../lib/CataBlogItem.class.php:361 602 #: ../lib/CataBlogItem.class.php:54 8603 #: ../lib/CataBlogItem.class.php:549 603 604 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 604 605 msgstr "La imagen no pudo ser utilizado debido a que es un formato no compatible. JPEG, GIF y PNG solamente." 605 606 606 607 #: ../lib/CataBlogItem.class.php:374 607 #: ../lib/CataBlogItem.class.php:53 5608 #: ../lib/CataBlogItem.class.php:536 608 609 msgid "Can not write uploaded image to server, your storage space is exhausted." 609 610 msgstr "No se puede escribir la imagen subido al servidor, el espacio de almacenamiento se ha agotado." 610 611 611 612 #: ../lib/CataBlogItem.class.php:375 612 #: ../lib/CataBlogItem.class.php:53 6613 #: ../lib/CataBlogItem.class.php:537 613 614 msgid "Please delete some media files to free up space and try again." 614 615 msgstr "Por favor, elimine algunos archivos para liberar espacio y vuelve a intentarlo." 615 616 616 617 #: ../lib/CataBlogItem.class.php:376 617 #: ../lib/CataBlogItem.class.php:53 7618 #: ../lib/CataBlogItem.class.php:538 618 619 #, php-format 619 620 msgid "You have %sMB of available space on your server and your image is %sMB." 620 621 msgstr "Tiene %sMB del espacio disponible en el servidor y su imagen es %sMB." 621 622 622 #: ../lib/CataBlogItem.class.php:46 5623 #: ../lib/CataBlogItem.class.php:466 623 624 msgid "Could not set categories, please try again." 624 625 msgstr "No se pudo establecer categorías, por favor, inténtelo de nuevo." 625 626 626 #: ../lib/CataBlogItem.class.php:59 2627 #: ../lib/CataBlogItem.class.php:65 3627 #: ../lib/CataBlogItem.class.php:593 628 #: ../lib/CataBlogItem.class.php:654 628 629 #, php-format 629 630 msgid "Original image file missing, could not be located at %s" 630 631 msgstr "Archivo original de la imagen que falta, no se encuentra en %s" 631 632 632 #: ../lib/CataBlogItem.class.php: 599633 #: ../lib/CataBlogItem.class.php:66 1633 #: ../lib/CataBlogItem.class.php:600 634 #: ../lib/CataBlogItem.class.php:662 634 635 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 635 636 msgstr "Imagen original dimensiones son inferiores a 1 píxel. Más probable es que PHP no tiene permiso para leer el archivo original." 636 637 637 #: ../lib/CataBlogItem.class.php:62 8638 #: ../lib/CataBlogItem.class.php:67 5638 #: ../lib/CataBlogItem.class.php:629 639 #: ../lib/CataBlogItem.class.php:676 639 640 msgid "Original image could not be loaded because it is an unsupported format." 640 641 msgstr "Imagen original no se pudo cargar porque es un formato no compatible." 641 642 642 643 #: ../lib/CataBlogWidget.class.php:14 643 #, fuzzy644 644 msgid "Entries from your CataBlog Library" 645 msgstr " CataBlog Colección"645 msgstr "Las entradas de la biblioteca de CataBlog" 646 646 647 647 #: ../lib/CataBlogWidget.class.php:15 648 #, fuzzy649 648 msgid "CataBlog Catalog" 650 msgstr "CataBlog Cat egoría"649 msgstr "CataBlog Catálogo" 651 650 652 651 #: ../lib/CataBlogWidget.class.php:50 … … 671 670 #: ../lib/CataBlogWidget.class.php:53 672 671 msgid "Random" 673 msgstr " "672 msgstr "Azar" 674 673 675 674 #: ../lib/CataBlogWidget.class.php:56 676 675 msgid "Ascending" 677 msgstr " "676 msgstr "Ascendente" 678 677 679 678 #: ../lib/CataBlogWidget.class.php:57 680 679 msgid "Descending" 681 msgstr " "680 msgstr "Descendente" 682 681 683 682 #: ../lib/CataBlogWidget.class.php:60 684 #, fuzzy685 683 msgid "In Categories" 686 msgstr " Categorías"684 msgstr "En Categorías" 687 685 688 686 #: ../lib/CataBlogWidget.class.php:61 689 #, fuzzy690 687 msgid "Not In Categories" 691 msgstr " Editar categorías"688 msgstr "No en Categorías" 692 689 693 690 #: ../lib/CataBlogWidget.class.php:62 694 #, fuzzy695 691 msgid "In All Categories" 696 msgstr " Todas las categorías"692 msgstr "En todas las categorías" 697 693 698 694 #: ../lib/CataBlogWidget.class.php:70 699 #: ../lib/CataBlogWidget.class.php:263 700 #, fuzzy 695 #: ../lib/CataBlogWidget.class.php:270 701 696 msgid "Title: " 702 msgstr "Título "697 msgstr "Título:" 703 698 704 699 #: ../lib/CataBlogWidget.class.php:87 705 #, fuzzy706 700 msgid "Category:" 707 msgstr "Categoría s"701 msgstr "Categoría:" 708 702 709 703 #: ../lib/CataBlogWidget.class.php:90 710 704 msgid "Separate category names with commas" 711 msgstr " "705 msgstr "Separe los nombres de categoría con comas" 712 706 713 707 #: ../lib/CataBlogWidget.class.php:94 714 #, fuzzy715 708 msgid "Template:" 716 msgstr "Plantilla "709 msgstr "Plantilla:" 717 710 718 711 #: ../lib/CataBlogWidget.class.php:106 719 #, fuzzy720 712 msgid "Sort:" 721 msgstr "Ti enda"713 msgstr "Tipo:" 722 714 723 715 #: ../lib/CataBlogWidget.class.php:117 724 #, fuzzy725 716 msgid "Order:" 726 msgstr "Orden "717 msgstr "Orden:" 727 718 728 719 #: ../lib/CataBlogWidget.class.php:128 729 720 msgid "Operator:" 730 msgstr " "721 msgstr "Operador:" 731 722 732 723 #: ../lib/CataBlogWidget.class.php:139 733 724 msgid "Limit:" 734 msgstr " "725 msgstr "Límite:" 735 726 736 727 #: ../lib/CataBlogWidget.class.php:207 737 728 msgid "CataBlog display functions could not be found, please completely reinstall CataBlog." 738 msgstr " "729 msgstr "Funciones CataBlog pantalla no se ha encontrado, por favor reinstale por completo CataBlog." 739 730 740 731 #: ../lib/CataBlogWidget.class.php:239 741 #, fuzzy742 732 msgid "Categories from your CataBlog Library" 743 msgstr "Cat aBlog Colección"733 msgstr "Categorías de la Biblioteca de CataBlog" 744 734 745 735 #: ../lib/CataBlogWidget.class.php:240 746 #, fuzzy747 736 msgid "CataBlog Categories" 748 msgstr "CataBlog Categoría" 749 750 #: ../lib/CataBlogWidget.class.php:270 737 msgstr "CataBlog Categorías" 738 739 #: ../lib/CataBlogWidget.class.php:250 740 #, php-format 741 msgid "This widget requires you to enable the %sCataBlog Public Option%s." 742 msgstr "Este widget le requiere para que %sla opción pública CataBlog%s." 743 744 #: ../lib/CataBlogWidget.class.php:277 751 745 msgid "Display as dropdown" 752 msgstr "" 753 754 #: ../lib/CataBlogWidget.class.php:273 755 #, fuzzy 746 msgstr "Mostrar como desplegable" 747 748 #: ../lib/CataBlogWidget.class.php:280 756 749 msgid "Show post count" 757 msgstr "Mostrar en pantalla"750 msgstr "Mostrar publicar recuento" 758 751 759 752 #: ../templates/admin-404.php:4 … … 812 805 813 806 #: ../templates/admin-about.php:41 814 #, fuzzy815 807 msgid "GD Version:" 816 msgstr "Versión de PHP:"808 msgstr "Versión de GD:" 817 809 818 810 #: ../templates/admin-about.php:42 … … 884 876 #: ../templates/admin-contextual-help.php:44 885 877 msgid "First select a template file to edit by clicking it in the templates list. " 886 msgstr " "878 msgstr "Primero, seleccione un archivo de plantilla para editar haciendo clic en la lista de plantillas." 887 879 888 880 #: ../templates/admin-contextual-help.php:45 889 881 msgid "Than simply change the HTML code using CataBlog Tokens for specific values. " 890 msgstr " "882 msgstr "Que simplemente cambiar el código HTML usando tokens CataBlog de valores específicos." 891 883 892 884 #: ../templates/admin-contextual-help.php:46 893 885 msgid "You may also make your own template files and use the template parameter in the CataBlog ShortCode to specify which template shall be used to render your catalog. " 894 msgstr " "886 msgstr "También puede hacer sus propios archivos de plantilla y utilizar el parámetro de plantilla en el código abreviado CataBlog para especificar qué plantilla se utiliza para representar a su catálogo." 895 887 896 888 #: ../templates/admin-contextual-help.php:50 897 889 msgid "The <strong>Default View</strong> will be used as your basic template if no others are specified in your CataBlog ShortCodes." 898 msgstr " "890 msgstr "La vista <strong>Default</strong> se utilizará como base la plantilla si no se especifican en los demás sus códigos cortos CataBlog." 899 891 900 892 #: ../templates/admin-contextual-help.php:54 901 893 msgid "The <strong>Single View</strong> will be used to render all Public CataBlog Single Pages." 902 msgstr " "894 msgstr "La vista <strong>Single</strong> se utiliza para representar todos los públicos de páginas únicas CataBlog." 903 895 904 896 #: ../templates/admin-contextual-help.php:58 905 897 msgid "The <strong>Archive View</strong> will be used to render all Public CataBlog Archive (Category) Pages." 906 msgstr " "898 msgstr "La vista <strong>Archive</strong> se utiliza para representar todos los públicos CataBlog Archivo (Categoría) páginas." 907 899 908 900 #: ../templates/admin-contextual-help.php:62 909 901 msgid "The <strong>Store View</strong> will be used to render your <code>%BUY-NOW-BUTTON%</code>." 910 msgstr " "902 msgstr "La vista <strong>Store</strong> se utiliza para representar a su <code>%BUY-NOW-BUTTON%</code>." 911 903 912 904 #: ../templates/admin-contextual-help.php:66 913 905 #, php-format 914 906 msgid "The rest of the templates are there for your convenience and may be found on your server at:<br /><code>%s</code>" 915 msgstr " "907 msgstr "El resto de las plantillas son para su conveniencia y puede ser encontrado en el servidor en:<br /><code>%s</code>" 916 908 917 909 #: ../templates/admin-contextual-help.php:71 918 910 msgid "Read more and get the entire list of token at: " 919 msgstr "" 920 921 #: ../templates/admin-contextual-help.php:72 922 msgid "CataBlog Documentation - Making Custom Templates" 923 msgstr "" 911 msgstr "Leer más y obtener la lista completa de testigo en:" 924 912 925 913 #: ../templates/admin-contextual-help.php:82 … … 1223 1211 1224 1212 #: ../templates/admin-library.php:19 1225 #, fuzzy1226 1213 msgid "You must have a JavaScript enabled browser for bulk actions." 1227 msgstr " Usted debe tener un explorador Javascript activado para poder crear nuevas categorías."1214 msgstr "Debe tener un navegador con JavaScript habilitado para las acciones a granel." 1228 1215 1229 1216 #: ../templates/admin-library.php:34 … … 1365 1352 #: ../templates/admin-new.php:22 1366 1353 msgid "Flash upload was not enabled." 1367 msgstr " "1354 msgstr "Flash subir no se ha habilitado." 1368 1355 1369 1356 #: ../templates/admin-new.php:22 1370 1357 msgid "Either you elected to disable it, JavaScript is disabled, or your version of Flash is too old." 1371 msgstr " "1358 msgstr "Ya sea que usted eligió para desactivarlo, JavaScript no está habilitado, o su versión de Flash es demasiado antigua." 1372 1359 1373 1360 #: ../templates/admin-new.php:25 … … 1382 1369 #: ../templates/admin-new.php:34 1383 1370 msgid "Flash uploader not working for you?" 1384 msgstr " "1371 msgstr "¿Cargador de Flash no trabaja para usted?" 1385 1372 1386 1373 #: ../templates/admin-new.php:35 1387 #, fuzzy1388 1374 msgid "Disable Flash Upload" 1389 msgstr " CancelarSubir"1375 msgstr "Deshabilitar Flash Subir" 1390 1376 1391 1377 #: ../templates/admin-new.php:39 1392 #, fuzzy1393 1378 msgid "Why not try the flash uploader?" 1394 msgstr " Ir a la última página"1379 msgstr "¿Por qué no pruebas el cargador de flash?" 1395 1380 1396 1381 #: ../templates/admin-new.php:40 1397 #, fuzzy1398 1382 msgid "Enable Flash Upload" 1399 msgstr " CancelarSubir"1383 msgstr "Activar Flash Subir" 1400 1384 1401 1385 #: ../templates/admin-new.php:77 … … 1436 1420 #: ../templates/admin-options.php:39 1437 1421 msgid "Navigation" 1438 msgstr " "1422 msgstr "Navegación" 1439 1423 1440 1424 #: ../templates/admin-options.php:40 1441 #, fuzzy1442 1425 msgid "Title Link" 1443 msgstr "Título "1426 msgstr "Título del enlace" 1444 1427 1445 1428 #: ../templates/admin-options.php:48 … … 1456 1439 1457 1440 #: ../templates/admin-options.php:57 1458 #, fuzzy1459 1441 msgid "Thumbnail Width:" 1460 msgstr "Miniatura Tamaño:"1442 msgstr "Miniatura Ancho:" 1461 1443 1462 1444 #: ../templates/admin-options.php:59 … … 1467 1449 1468 1450 #: ../templates/admin-options.php:61 1469 #, fuzzy1470 1451 msgid "Your thumbnail width must be a positive integer." 1471 msgstr "Su tamaño miniaturadebe ser un entero positivo."1452 msgstr "Su ancho de imagen debe ser un entero positivo." 1472 1453 1473 1454 #: ../templates/admin-options.php:62 1474 #, fuzzy1475 1455 msgid "this will change the thumbnail width of all your catalog items." 1476 msgstr "esto va a cambiar el tamaño de las miniaturasde todos sus artículos del catálogo."1456 msgstr "esto va a cambiar el ancho de imagen de todos sus artículos del catálogo." 1477 1457 1478 1458 #: ../templates/admin-options.php:65 1479 #, fuzzy1480 1459 msgid "Thumbnail Height:" 1481 msgstr "Miniatura Tamaño:"1460 msgstr "Miniatura de Altura:" 1482 1461 1483 1462 #: ../templates/admin-options.php:69 1484 #, fuzzy1485 1463 msgid "Your thumbnail height must be a positive integer." 1486 msgstr "Su tamaño miniaturadebe ser un entero positivo."1464 msgstr "Su altura de imagen debe ser un entero positivo." 1487 1465 1488 1466 #: ../templates/admin-options.php:70 1489 #, fuzzy1490 1467 msgid "this will change the thumbnail height of all your catalog items." 1491 msgstr "esto va a cambiar el tamaño de las miniaturasde todos sus artículos del catálogo."1468 msgstr "esto va a cambiar la altura en miniatura de todos sus artículos del catálogo." 1492 1469 1493 1470 #: ../templates/admin-options.php:74 … … 1521 1498 #: ../templates/admin-options.php:110 1522 1499 msgid "LightBox Navigation - Combine All ShortCodes:" 1523 msgstr " "1500 msgstr "LightBox Navegación - Combine todos los códigos cortos:" 1524 1501 1525 1502 #: ../templates/admin-options.php:112 1526 1503 msgid "check this box to make the LightBox's next and previous navigation buttons jump from one ShortCode to another." 1527 msgstr " "1504 msgstr "Marque esta casilla para hacer que la caja de luz de los botones de navegación Siguiente y Anterior saltar de un código corto a otro." 1528 1505 1529 1506 #: ../templates/admin-options.php:117 … … 1588 1565 msgstr "Esta es la babosa de la identificación de su blog se use para crear sus páginas de archivo de catálogo." 1589 1566 1590 #: ../templates/admin-options.php:173 1567 #: ../templates/admin-options.php:170 1568 msgid "Your public slugs cannot be the same." 1569 msgstr "Sus babosas públicas no puede ser el mismo." 1570 1571 #: ../templates/admin-options.php:175 1591 1572 msgid "Catalog Slugs Warning" 1592 1573 msgstr "Las babosas Catálogo de advertencia" 1593 1574 1594 #: ../templates/admin-options.php:17 41575 #: ../templates/admin-options.php:176 1595 1576 #, php-format 1596 1577 msgid "Please make sure you do not set either of your catalog slugs to a %sWordPress Reserved Term%s." 1597 1578 msgstr "Por favor, asegúrese de que no establece ninguna de las babosas de su catálogo a un %splazo de WordPress reservados%s." 1598 1579 1599 #: ../templates/admin-options.php:17 51580 #: ../templates/admin-options.php:177 1600 1581 msgid "These labels must also be URL friendly, so they may be transformed from your original input." 1601 1582 msgstr "Estas etiquetas también deben presentar una URL amigable, por lo que puede ser transformado desde su entrada original." 1602 1583 1603 #: ../templates/admin-options.php:18 51584 #: ../templates/admin-options.php:187 1604 1585 msgid "Previous Link Label:" 1605 msgstr " "1606 1607 #: ../templates/admin-options.php:1 881608 msgid " What word would youlike to be used for a paginated catalog's previous page link."1609 msgstr " "1610 1611 #: ../templates/admin-options.php:19 31586 msgstr "Etiqueta de Enlace anterior:" 1587 1588 #: ../templates/admin-options.php:190 1589 msgid "The word you would like to be used for a paginated catalog's previous page link." 1590 msgstr "La palabra que le gustaría ser utilizado para el enlace de un catálogo paginado de la página anterior." 1591 1592 #: ../templates/admin-options.php:195 1612 1593 msgid "Next Link Label:" 1613 msgstr " "1614 1615 #: ../templates/admin-options.php:19 61616 msgid " What word would youlike to be used for a paginated catalog's next page link."1617 msgstr " "1618 1619 #: ../templates/admin-options.php:20 31594 msgstr "Etiqueta siguiente enlace:" 1595 1596 #: ../templates/admin-options.php:198 1597 msgid "The word you would like to be used for a paginated catalog's next page link." 1598 msgstr "La palabra que le gustaría ser utilizado para el enlace de un catálogo paginado de la página siguiente." 1599 1600 #: ../templates/admin-options.php:205 1620 1601 msgid "Display Location:" 1621 msgstr "" 1622 1623 #: ../templates/admin-options.php:205 1624 #, fuzzy 1602 msgstr "Ubicación de la pantalla:" 1603 1604 #: ../templates/admin-options.php:207 1625 1605 msgid "Above Catalog" 1626 msgstr "Acerca de CataBlog" 1627 1628 #: ../templates/admin-options.php:205 1629 #, fuzzy 1606 msgstr "Sobre el Catálogo" 1607 1608 #: ../templates/admin-options.php:207 1630 1609 msgid "Below Catalog" 1631 msgstr " Retire CataBlog"1632 1633 #: ../templates/admin-options.php:20 51610 msgstr "A continuación Catálogo" 1611 1612 #: ../templates/admin-options.php:207 1634 1613 msgid "Above and Below" 1635 msgstr " "1636 1637 #: ../templates/admin-options.php:21 21614 msgstr "Arriba y Abajo" 1615 1616 #: ../templates/admin-options.php:214 1638 1617 msgid "Select where you would like your navigation controls to be displayed" 1639 msgstr " "1640 1641 #: ../templates/admin-options.php:2 181618 msgstr "Seleccionar dónde le gustaría que sus controles de navegación para que se muestre" 1619 1620 #: ../templates/admin-options.php:220 1642 1621 msgid "Show Extra Navigation Info:" 1643 msgstr "" 1644 1645 #: ../templates/admin-options.php:220 1646 #, fuzzy 1622 msgstr "Mostrar Historia Navegación:" 1623 1624 #: ../templates/admin-options.php:222 1647 1625 msgid "If this is checked then the index of the catalog items being viewed on the page will be shown." 1648 msgstr "Si se marca esta opción, todos y cada elemento del catálogo tendrá su propia página, con enlace permanente."1649 1650 #: ../templates/admin-options.php:2 291626 msgstr "Si esto se comprueba a continuación el índice de los artículos del catálogo también se está viendo en la página aparecerá." 1627 1628 #: ../templates/admin-options.php:231 1651 1629 msgid "Link Target:" 1652 1630 msgstr "Destino de vínculo:" 1653 1631 1654 #: ../templates/admin-options.php:23 21632 #: ../templates/admin-options.php:234 1655 1633 msgid "The link target setting will set the <strong>target</strong> attribute of all the catalog title links." 1656 1634 msgstr "La fijación de objetivos enlace se establece el atributo de destino de todos los enlaces catálogo título." 1657 1635 1658 #: ../templates/admin-options.php:23 31659 #: ../templates/admin-options.php:24 11636 #: ../templates/admin-options.php:235 1637 #: ../templates/admin-options.php:243 1660 1638 msgid "examples:" 1661 1639 msgstr "ejemplos:" 1662 1640 1663 #: ../templates/admin-options.php:23 71641 #: ../templates/admin-options.php:239 1664 1642 msgid "Link Relationship:" 1665 1643 msgstr "Vincular la relación:" 1666 1644 1667 #: ../templates/admin-options.php:24 01645 #: ../templates/admin-options.php:242 1668 1646 msgid "The link relationship will set the <strong>rel</strong> attribute of all the catalog title links." 1669 1647 msgstr "La relación de enlace se establece el atributo rel de todos los enlaces catálogo título." 1670 1648 1671 #: ../templates/admin-options.php:25 11649 #: ../templates/admin-options.php:253 1672 1650 msgid "Enable WordPress Filters:" 1673 1651 msgstr "Habilitar WordPress Filtros:" 1674 1652 1675 #: ../templates/admin-options.php:25 41653 #: ../templates/admin-options.php:256 1676 1654 msgid "Enable the standard WordPress filters for your catalog item's description." 1677 1655 msgstr "Habilitar los filtros estándar de WordPress para su catálogo de descripción de artículos." 1678 1656 1679 #: ../templates/admin-options.php:25 51657 #: ../templates/admin-options.php:257 1680 1658 msgid "This allows you to use ShortCodes and media embeds inside your catalog item descriptions." 1681 1659 msgstr "Esto le permite utilizar códigos cortos y reproductores multimedia dentro de las descripciones de catálogo tema." 1682 1660 1683 #: ../templates/admin-options.php:25 61661 #: ../templates/admin-options.php:258 1684 1662 msgid "Please <strong>do not use the CataBlog ShortCode</strong> inside a catalog item's description." 1685 1663 msgstr "Por favor, no use el código abreviado CataBlog dentro de la descripción un elemento de catálogo." 1686 1664 1687 #: ../templates/admin-options.php:26 21665 #: ../templates/admin-options.php:264 1688 1666 msgid "Render Line Breaks:" 1689 1667 msgstr "Render saltos de línea:" 1690 1668 1691 #: ../templates/admin-options.php:26 51669 #: ../templates/admin-options.php:267 1692 1670 #, php-format 1693 1671 msgid "Filter your catalog item's description through the standard PHP function %s." 1694 1672 msgstr "Filtro descripción de su artículo del catálogo a través de la función estándar de PHP, %s." 1695 1673 1696 #: ../templates/admin-options.php:26 61674 #: ../templates/admin-options.php:268 1697 1675 msgid "This will insert HTML line breaks before all new lines in your catalog descriptions." 1698 1676 msgstr "Esto insertar HTML saltos de línea antes de todas las nuevas líneas en las descripciones de su catálogo." 1699 1677 1700 #: ../templates/admin-options.php:26 71678 #: ../templates/admin-options.php:269 1701 1679 msgid "Turn this off if unwanted line breaks are being rendered on your page." 1702 1680 msgstr "Desactivar esta opción si se rompe la línea no deseados están siendo prestados en su página." 1703 1681 1704 #: ../templates/admin-options.php:27 21682 #: ../templates/admin-options.php:274 1705 1683 msgid "Excerpt Length:" 1706 msgstr " "1707 1708 #: ../templates/admin-options.php:27 51684 msgstr "Extracto de longitud:" 1685 1686 #: ../templates/admin-options.php:277 1709 1687 msgid "The excerpt length lets you set how many characters long the description will be when using the %EXCERPT% token." 1710 msgstr " "1711 1712 #: ../templates/admin-options.php:27 61688 msgstr "La longitud extracto le permite establecer el número de caracteres de largo de la descripción será cuando se utiliza el %EXCERPT% token." 1689 1690 #: ../templates/admin-options.php:278 1713 1691 msgid "The excerpt will cut off any incomplete words at the end, so don't worry if the character count is a little different." 1714 msgstr " "1715 1716 #: ../templates/admin-options.php:30 11692 msgstr "El extracto se cortó las palabras incompletas al final, por lo que no se preocupe si el recuento de caracteres es un poco diferente." 1693 1694 #: ../templates/admin-options.php:303 1717 1695 msgid "You may export your CataBlog data to a XML or CSV file which may be used to backup and protect your work. The XML or CSV file is a simple transfer of the database information itself and the <strong>images are not included in this backup</strong>. To backup your images follow the directions at the bottom of the page." 1718 1696 msgstr "Puede exportar los datos CataBlog a un archivo XML o CSV que puede ser usado para copia de seguridad y proteger su trabajo. El archivo XML o CSV es una simple transferencia de la información propia base de datos y las imágenes no están incluidos en esta copia de seguridad. Para respaldar sus imágenes, siga las instrucciones en la parte inferior de la página." 1719 1697 1720 #: ../templates/admin-options.php:30 71698 #: ../templates/admin-options.php:309 1721 1699 msgid "Save XML BackUp File" 1722 1700 msgstr "Guardar archivo XML BackUp" 1723 1701 1724 #: ../templates/admin-options.php:31 11702 #: ../templates/admin-options.php:313 1725 1703 msgid "Save CSV BackUp File" 1726 1704 msgstr "Guardar archivo CSV BackUp" 1727 1705 1728 #: ../templates/admin-options.php:3 181706 #: ../templates/admin-options.php:320 1729 1707 #, php-format 1730 1708 msgid "You must have the function %sfputcsv()%s available on your web server's version of PHP for CSV export to work." 1731 1709 msgstr "Debe tener el %sfputcsv()%s función disponible en la versión de su servidor web de PHP para la exportación a CSV trabajo." 1732 1710 1733 #: ../templates/admin-options.php:32 01711 #: ../templates/admin-options.php:322 1734 1712 msgid "Please contact your server administrator for more information regarding this error." 1735 1713 msgstr "Póngase en contacto con el administrador del servidor para obtener más información sobre este error." 1736 1714 1737 #: ../templates/admin-options.php:32 71715 #: ../templates/admin-options.php:329 1738 1716 msgid "Backing Up Images:" 1739 1717 msgstr "Copia de seguridad de las imágenes:" 1740 1718 1741 #: ../templates/admin-options.php:3 281719 #: ../templates/admin-options.php:330 1742 1720 msgid "Please copy the <em>catablog</em> directory to a secure location." 1743 1721 msgstr "Por favor, copie el directorio <em>catablog</em> a un lugar seguro." 1744 1722 1745 #: ../templates/admin-options.php:3 291723 #: ../templates/admin-options.php:331 1746 1724 msgid "The directory for this WordPress blog can be located on your web server at:" 1747 1725 msgstr "El directorio de este blog de WordPress se puede encontrar en su servidor web en:" 1748 1726 1749 #: ../templates/admin-options.php:34 01727 #: ../templates/admin-options.php:342 1750 1728 msgid "Import XML/CSV Data" 1751 1729 msgstr "Importar XML / CSV datos" 1752 1730 1753 #: ../templates/admin-options.php:3 481731 #: ../templates/admin-options.php:350 1754 1732 msgid "Replace All Data:" 1755 1733 msgstr "Reemplace todos los datos:" 1756 1734 1757 #: ../templates/admin-options.php:35 11735 #: ../templates/admin-options.php:353 1758 1736 msgid "Import CataBlog Data" 1759 1737 msgstr "Importar Datos CataBlog" 1760 1738 1761 #: ../templates/admin-options.php:35 51739 #: ../templates/admin-options.php:357 1762 1740 msgid "You must have the <strong>Simple XML Library</strong> installed on your web server's version of PHP for XML imports to work. Please contact your server administrator for more information regarding this error." 1763 1741 msgstr "Usted debe tener la simple colección de XML instalado en la versión de su servidor web de PHP para la importación XML para trabajar. Póngase en contacto con el administrador del servidor para obtener más información sobre este error." 1764 1742 1765 #: ../templates/admin-options.php:36 01743 #: ../templates/admin-options.php:362 1766 1744 msgid "To import data into your catalog you simply select a XML or CVS file on your hard drive and click the <em>Import CataBlog Data</em> button. You may choose to completely erase all your data before importing by checking the <em>Replace All Data</em> checkbox.<br />Keep in mind, this <strong>does not import or delete images</strong>." 1767 1745 msgstr "Para importar datos en el catálogo que sólo tiene que seleccionar un archivo XML o CVS en su disco duro y haga clic en el botón Importar CataBlog datos. Usted puede optar por eliminar por completo todos sus datos antes de importar, marcando la casilla de verificación Reemplace todos los datos.<br /><strong>Tenga en cuenta que esto no importar o borrar imágenes</strong>." 1768 1746 1769 #: ../templates/admin-options.php:36 31747 #: ../templates/admin-options.php:365 1770 1748 #, php-format 1771 1749 msgid "To import images you should upload them to the <em>originals</em> directory, located at: <em>%s</em>. Once you load the XML or CVS file and the images into the <em>originals</em> directory everything should be set after you %sRegenerate All Images%s in the systems tab." 1772 1750 msgstr "Para importar imágenes que debería cargar en el directorio de los originales, que se encuentra en: <em>%s</em>. Una vez que se carga el archivo XML o CVS y las imágenes en el directorio de todo lo <em>original</em> que se fijará después de que %sRegenerar todas las imágenes%s en la ficha sistemas." 1773 1751 1774 #: ../templates/admin-options.php:36 71752 #: ../templates/admin-options.php:369 1775 1753 #, php-format 1776 1754 msgid "You may view XML and CSV examples in the %simport/export documentation%s." 1777 1755 msgstr "Usted puede ver ejemplos de XML y CSV en la %sdocumentación de importación / exportación%s." 1778 1756 1779 #: ../templates/admin-options.php:38 11757 #: ../templates/admin-options.php:383 1780 1758 msgid "CataBlog Upload Folders are <strong>Unlocked</strong>" 1781 1759 msgstr "CataBlog Subir carpetas se <strong>Desbloqueado</strong>" 1782 1760 1783 #: ../templates/admin-options.php:38 31761 #: ../templates/admin-options.php:385 1784 1762 msgid "CataBlog Upload Folders are <strong>Locked</strong>" 1785 1763 msgstr "CataBlog Subir carpetas son <strong>Bloqueados</strong>" 1786 1764 1787 #: ../templates/admin-options.php:39 11765 #: ../templates/admin-options.php:393 1788 1766 msgid "Lock Folders" 1789 1767 msgstr "Bloqueo de carpetas" 1790 1768 1791 #: ../templates/admin-options.php:39 31769 #: ../templates/admin-options.php:395 1792 1770 msgid "Unlock Folders" 1793 1771 msgstr "Desbloquear carpetas" 1794 1772 1795 #: ../templates/admin-options.php:39 71773 #: ../templates/admin-options.php:399 1796 1774 #, php-format 1797 1775 msgid "You may lock and unlock your <em>catablog</em> folders with these controls. The idea is to unlock the folders, use your FTP client to upload your original files and then lock the folders to protect them from hackers. After unlocking your directories please upload the original files directly into the <strong>%s</strong> folder without replacing it. <strong>Do not replace any of the CataBlog created folders</strong>. You should then regenerate all your thumbnail and lightbox pictures below. These controls may not work on a Windows server, it depends on your servers PHP settings and if the chmod command is supported." 1798 1776 msgstr "Usted puede bloquear y desbloquear el <em>CataBlog</em> carpetas con estos controles. La idea es abrir las carpetas, use su cliente FTP para subir tus archivos originales y bloquee las carpetas para protegerlos de los piratas informáticos. Después de abrir sus directorios por favor, subir los archivos originales directamente en el <strong>%s</strong> carpeta sin que lo sustituya. <strong>No cambie ninguno de los CataBlog creado carpetas</strong>. A continuación, debe regenerar todas sus imágenes en miniatura y mesa de luz de abajo. Estos controles pueden no funcionar en un servidor Windows, depende de los servidores de configuración de PHP y si el comando chmod es compatible." 1799 1777 1800 #: ../templates/admin-options.php:40 21778 #: ../templates/admin-options.php:404 1801 1779 msgid "Rescan Original Image Folder" 1802 1780 msgstr "Rescan la carpeta de la imagen original" 1803 1781 1804 #: ../templates/admin-options.php:40 41782 #: ../templates/admin-options.php:406 1805 1783 msgid "Rescan Original Images Folder Now" 1806 1784 msgstr "Rescan Ahora" 1807 1785 1808 #: ../templates/admin-options.php:40 61786 #: ../templates/admin-options.php:408 1809 1787 msgid "Click the <em>Rescan Now</em> button to rescan the original catablog images folder and automatically import any new jpeg, gif or png images. It works simply by making a list of all the image names in the database and then compares each file's name in the originals folder against the list of image names in the database. Any newly discovered images will automatically be made into a new catalog item. You should Regenerate Images after running this command." 1810 1788 msgstr "Haga clic en la <em>Rescan Ahora</em> para volver a examinar los catablog carpeta original de las imágenes y automáticamente importar cualquier nueva jpeg, gif o png imágenes. Funciona simplemente haciendo una lista de todos los nombres de las imágenes en la base de datos y compara el nombre de cada archivo en la carpeta original con la lista de nombres de imágenes en la base de datos. Las imágenes recién descubiertos automáticamente se convertirá en un elemento nuevo catálogo. Usted debe regenerar las imágenes después de ejecutar este comando." 1811 1789 1812 #: ../templates/admin-options.php:41 11790 #: ../templates/admin-options.php:413 1813 1791 msgid "Regenerate Images" 1814 1792 msgstr "Regenerar las imágenes" 1815 1793 1816 #: ../templates/admin-options.php:41 31794 #: ../templates/admin-options.php:415 1817 1795 msgid "Regenerate All Images Now" 1818 1796 msgstr "Regenerar Ahora" 1819 1797 1820 #: ../templates/admin-options.php:41 51798 #: ../templates/admin-options.php:417 1821 1799 msgid "Click the <em>Regenerate Now</em> button to recreate all the thumbnail and lightbox images that CataBlog has generated over the time you have used it. This is also useful when restoring exported data from another version of CataBlog. after you have uploaded your original images you must regenerate your images so they display properly." 1822 1800 msgstr "Haga clic en la <em>Regenerar Ahora</em> para volver a crear todas las imágenes en miniatura y la mesa de luz que CataBlog ha generado durante el tiempo que lo utilice. Esto también es útil al restaurar los datos exportados desde otra versión de CataBlog. después de haber subido las imágenes originales que debe volver a generar las imágenes para que muestre correctamente." 1823 1801 1824 #: ../templates/admin-options.php:42 01802 #: ../templates/admin-options.php:422 1825 1803 msgid "Remove CataBlog" 1826 1804 msgstr "Retire CataBlog" 1827 1805 1828 #: ../templates/admin-options.php:42 21806 #: ../templates/admin-options.php:424 1829 1807 msgid "Remove All CataBlog Data" 1830 1808 msgstr "Eliminar todos los datos CataBlog" 1831 1809 1832 #: ../templates/admin-options.php:42 41810 #: ../templates/admin-options.php:426 1833 1811 msgid "Delete your entire catalog, deleting all photos and custom data permanently. Sometimes you can use this to fix an improper installation." 1834 1812 msgstr "Eliminar todo el catálogo, eliminar todas las fotos y datos personalizados de forma permanente. A veces se puede usar esto para arreglar una instalación incorrecta." 1835 1813 1836 #: ../templates/admin-options.php:43 31837 #: ../templates/admin-templates-editor.php:6 61814 #: ../templates/admin-options.php:435 1815 #: ../templates/admin-templates-editor.php:67 1838 1816 #, php-format 1839 1817 msgid "or %sundo current changes%s" 1840 1818 msgstr "o %sdeshacer los cambios actuales%s" 1841 1819 1842 #: ../templates/admin-options.php:734 1820 #: ../templates/admin-options.php:643 1821 msgid "There are errors, please correct them before saving." 1822 msgstr "Hay errores, por favor corregirlos antes de guardar." 1823 1824 #: ../templates/admin-options.php:755 1843 1825 #: ../templates/admin-regenerate.php:43 1844 1826 #: ../templates/admin-rescan.php:49 … … 1846 1828 msgstr "Por favor, permitan la prestación de completar antes de salir de esta página. Haga clic en cancelar para volver atrás y dejar que la prestación completa." 1847 1829 1848 #: ../templates/admin-options.php:7 391830 #: ../templates/admin-options.php:760 1849 1831 msgid "Image rendering is not complete, you should let image rendering complete before leaving this page." 1850 1832 msgstr "De representación en imágenes no es completo, usted debe dejar la imagen de representación completa antes de salir de esta página." … … 1919 1901 1920 1902 #: ../templates/admin-templates-editor.php:8 1921 #, fuzzy1922 1903 msgid "You must have a JavaScript enabled browser to use the CataBlog Templates Editor. You may always edit the CataBlog template file directly using FTP." 1923 msgstr " Usted debe tener un explorador Javascript activado para poder cambiar las opciones de CataBlog."1904 msgstr "Debe tener un navegador compatible con JavaScript para utilizar el Editor de plantillas de CataBlog. Usted siempre puede editar el archivo de plantilla CataBlog directamente a través de FTP." 1924 1905 1925 1906 #: ../templates/admin-templates-editor.php:23 1926 #, fuzzy1927 1907 msgid "Views" 1928 msgstr "Ver" 1908 msgstr "Vistas" 1909 1910 #: ../templates/admin-templates-editor.php:44 1911 msgid "new" 1912 msgstr "nuevo" 1929 1913 1930 1914 #: ../templates/admin-templates-editor.php:48 1931 #, fuzzy1932 1915 msgid "Could not locate the CataBlog Templates directory. Please reinstall CataBlog." 1933 msgstr "No se pudo encontrar el directorio de p untos de vista. Por favor, vuelva a instalar CataBlog."1916 msgstr "No se pudo encontrar el directorio de plantillas CataBlog. Por favor, vuelva a instalar CataBlog." 1934 1917 1935 1918 #: ../templates/admin-templates-editor.php:55 1936 1919 msgid "select a template to edit" 1937 msgstr "" 1938 1939 #: ../templates/admin-templates-editor.php:71 1940 #, fuzzy 1920 msgstr "seleccionar una plantilla para editar" 1921 1922 #: ../templates/admin-templates-editor.php:72 1941 1923 msgid "You may change the HTML rendered by CataBlog with this control panel, allowing you to make fundamental changes to how catalogs will appear in your posts. You may choose a template to edit from the list of templates to the right . If you want to setup a photo gallery I would recommend that you use the <strong>Gallery Template</strong> by adding the template parameter to the ShortCode. Example: <code>[catablog template=\"gallery\"]</code>" 1942 msgstr "Usted puede cambiar el código html prestados por CataBlog aquí, esto le permite hacer cambios fundamentales en la forma catálogos aparecerán en sus mensajes. Usted puede elegir una plantilla a partir del menú desplegable en la parte superior y, a continuación, haga clic en Cargar plantilla para cargarlo en el código de la plantilla. Si desea configurar una galería de fotos le recomiendo que se carga la galería de plantillas y haga clic en guardar a continuación. Para configurar un carro de la compra usted debe cargar el código de plantilla por defecto y cargar una plantilla de la tienda."1943 1944 #: ../templates/admin-templates-editor.php:7 61924 msgstr "Usted puede cambiar el código HTML representado por CataBlog con este panel de control, lo que le permite hacer cambios fundamentales en la forma de catálogos aparecerán en tus mensajes. Usted puede elegir una plantilla que desea editar en la lista de plantillas a la derecha. Si desea configurar una galería de fotos le recomiendo que utilice la plantilla de <strong>Gallery</strong>, añadiendo el parámetro de plantilla en el código abreviado. Ejemplo: <code>[catablog template=\"gallery\"]</code>" 1925 1926 #: ../templates/admin-templates-editor.php:77 1945 1927 msgid "If you specify a template in your CataBlog ShortCodes the <strong>default template will be ignored</strong>." 1946 msgstr " "1947 1948 #: ../templates/admin-templates-editor.php: 791928 msgstr "Si se especifica una plantilla en su CataBlog Shortcodes <strong>la plantilla predeterminada se tendrá en cuenta</strong>." 1929 1930 #: ../templates/admin-templates-editor.php:80 1949 1931 msgid "If you do not specify a template in your CataBlog ShortCodes then the <strong>default template will be used</strong>." 1950 msgstr " "1951 1952 #: ../templates/admin-templates-editor.php:8 21932 msgstr "Si no se especifica una plantilla en su CataBlog Shortcodes continuación, <strong>la plantilla predeterminada se utilizará</strong>." 1933 1934 #: ../templates/admin-templates-editor.php:83 1953 1935 msgid "If you do not specify a template and the default template cannot be found then CataBlog will not be able to render your catalog." 1954 msgstr " "1955 1956 #: ../templates/admin-templates-editor.php:8 51936 msgstr "Si no se especifica una plantilla y la plantilla predeterminada no se puede encontrar a continuación CataBlog no será capaz de hacer su catálogo." 1937 1938 #: ../templates/admin-templates-editor.php:86 1957 1939 #, php-format 1958 1940 msgid "If you need more help read the %shelp panel%s." 1959 msgstr " "1960 1961 #: ../templates/admin-templates-editor.php:10 41941 msgstr "Si necesita más ayuda lea %sel panel de ayuda%s." 1942 1943 #: ../templates/admin-templates-editor.php:105 1962 1944 msgid "Create a New Template File" 1963 msgstr "" 1964 1965 #: ../templates/admin-templates-editor.php:107 1966 #, fuzzy 1945 msgstr "Crear un nuevo archivo de plantilla" 1946 1947 #: ../templates/admin-templates-editor.php:108 1967 1948 msgid "Save Other Changes Before Creating A New Template File." 1968 msgstr "Guardar cambios Otros Antes de subir una nueva imagen." 1969 1970 #: ../templates/admin-templates-editor.php:113 1971 #, fuzzy 1949 msgstr "Guardar cambios Otras Antes de crear un nuevo archivo de plantilla." 1950 1951 #: ../templates/admin-templates-editor.php:114 1972 1952 msgid "Create Template" 1973 msgstr "C argar plantilla"1974 1975 #: ../templates/admin-templates-editor.php:11 51953 msgstr "Crear plantilla" 1954 1955 #: ../templates/admin-templates-editor.php:116 1976 1956 msgid "Please enter the name of the new CataBlog Template you wish to create." 1977 msgstr " "1978 1979 #: ../templates/admin-templates-editor.php:11 61957 msgstr "Por favor, introduzca el nombre de la plantilla de CataBlog nuevo que desea crear." 1958 1959 #: ../templates/admin-templates-editor.php:117 1980 1960 msgid "If you are missing any system templates you may make them here by typing in their name, such as default." 1981 msgstr " "1982 1983 #: ../templates/admin-templates-editor.php:11 71961 msgstr "Si le falta algún sistema de plantillas usted puede hacer aquí, simplemente introduciendo su nombre, como por defecto." 1962 1963 #: ../templates/admin-templates-editor.php:118 1984 1964 msgid "Please only use underscores, hyphens and alphanumeric characters only." 1985 msgstr "" 1965 msgstr "Por favor, sólo uso de guiones bajos, guiones y caracteres alfanuméricos." 1966 1967 #~ msgid "CataBlog Documentation - Making Custom Templates" 1968 #~ msgstr "CataBlog Documentación - Realización de plantillas personalizadas" 1986 1969 1987 1970 #~ msgid "" -
catablog/trunk/localization/catablog-sv_SE.po
r498885 r504559 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-02- 01 18:15-0800\n"8 "PO-Revision-Date: 2012-02- 01 18:15-0800\n"7 "POT-Creation-Date: 2012-02-13 14:58-0800\n" 8 "PO-Revision-Date: 2012-02-13 14:58-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: illProductions <zac@illproductions.com>\n" … … 18 18 "X-Poedit-SearchPath-0: ./..\n" 19 19 20 #: ../catablog.php:115 21 #: ../lib/CataBlogWidget.class.php:314 20 #: ../catablog.php:108 21 #, fuzzy 22 msgid "CataBlog Error:" 23 msgstr "CataBlog inlägg" 24 25 #: ../catablog.php:110 26 #, php-format 27 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 28 msgstr "" 29 30 #: ../catablog.php:127 22 31 #, fuzzy 23 32 msgid "Select Category" 24 33 msgstr "Välj en färg" 25 34 26 #: ../catablog.php:1 4135 #: ../catablog.php:169 27 36 msgid "<strong>CataBlog</strong> requires <strong>PHP 5</strong> or better running on your web server. You're version of PHP is to old, please contact your hosting company or IT department for an upgrade. Thanks." 28 37 msgstr "<strong>CataBlog</strong> kräver <strong>PHP 5</strong> eller högre på din webbserver. Din PHP version är för gammal, var god kontakta ditt webbhotell eller IT-avdelning för att uppgradera. Tack." 29 38 30 #: ../catablog.php:1 4639 #: ../catablog.php:174 31 40 msgid "<strong>CataBlog</strong> requires that the <strong>GD Library</strong> be installed on your web server's version of PHP. Please contact your hosting company or IT department for more information. Thanks." 32 41 msgstr "<strong>CataBlog</strong> kräver att <strong>GD Library</strong> är installerat på webbservern med PHP. Kontakta ditt webbhotell eller IT avdelning för mer information. Tack." 33 42 34 #: ../catablog.php:1 5143 #: ../catablog.php:179 35 44 msgid "<strong>CataBlog</strong> requires <strong>WordPress 3.1</strong> or above. Please upgrade WordPress or contact your system administrator about upgrading." 36 45 msgstr "<strong>CataBlog</strong> kräver att <strong>Wordpress 3.1</strong> eller högre. Kontakta ditt webbhotell eller IT avdelning för uppdatering. Tack." 37 46 38 #: ../catablog.php:1 5747 #: ../catablog.php:185 39 48 msgid "<strong>CataBlog</strong> could not detect your upload directory or it is not writable by PHP. Please make sure Apache and PHP have write permission for the configured uploads folder. Contact your hosting company or IT department for more information. Thanks." 40 49 msgstr "<strong>CataBlog</strong> kunde inte detektera uppladnings katalogen eller så är den inte skrivbar av PHP. Säkerställ att Apache och PHP har skrivrättigheter för uppladdningsmappen. Kontakta ditt webbhotell eller IT avdelning för mer information. Tack." … … 154 163 msgstr "Se nu" 155 164 156 #: ../lib/CataBlog.class.php:685 165 #: ../lib/CataBlog.class.php:681 166 #, fuzzy 167 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 168 msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen." 169 170 #: ../lib/CataBlog.class.php:689 157 171 msgid "CataBlog Options Saved" 158 172 msgstr "CataBlog alternativ sparade" 159 173 160 #: ../lib/CataBlog.class.php:7 38174 #: ../lib/CataBlog.class.php:742 161 175 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 162 176 msgstr "Var god låt renderingen nedan avslutas innan du navigerar dig ifrån sidan" 163 177 164 #: ../lib/CataBlog.class.php:7 56165 #: ../lib/CataBlog.class.php:80 3166 #: ../lib/CataBlog.class.php:8 06178 #: ../lib/CataBlog.class.php:760 179 #: ../lib/CataBlog.class.php:807 180 #: ../lib/CataBlog.class.php:810 167 181 msgid "Form Validation Error. Please reload the page and try again." 168 182 msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen." 169 183 170 #: ../lib/CataBlog.class.php: 797184 #: ../lib/CataBlog.class.php:801 171 185 #, fuzzy 172 186 msgid "Template Changes Saved Successfully." 173 187 msgstr "Ändringar sparades." 174 188 175 #: ../lib/CataBlog.class.php:80 0189 #: ../lib/CataBlog.class.php:804 176 190 #, fuzzy 177 191 msgid "Template Created Successfully." 178 192 msgstr "Termen borttagen." 179 193 180 #: ../lib/CataBlog.class.php:8 09194 #: ../lib/CataBlog.class.php:813 181 195 #, php-format 182 196 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 183 197 msgstr "" 184 198 185 #: ../lib/CataBlog.class.php:81 2199 #: ../lib/CataBlog.class.php:816 186 200 msgid "File Creation Error. A template already exists with that name." 187 201 msgstr "" 188 202 189 #: ../lib/CataBlog.class.php:81 5203 #: ../lib/CataBlog.class.php:819 190 204 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 191 205 msgstr "" 192 206 193 #: ../lib/CataBlog.class.php: 897194 #: ../lib/CataBlog.class.php: 898195 #: ../lib/CataBlog.class.php: 899207 #: ../lib/CataBlog.class.php:901 208 #: ../lib/CataBlog.class.php:902 209 #: ../lib/CataBlog.class.php:903 196 210 msgid "not present" 197 211 msgstr "inte närvarande" 198 212 199 #: ../lib/CataBlog.class.php:99 0213 #: ../lib/CataBlog.class.php:994 200 214 msgid "The file you selected was to large or you didn't select anything at all, please try again." 201 215 msgstr "Filen som du valde var antingen för stor eller så valde du inget, var god prova igen." 202 216 203 #: ../lib/CataBlog.class.php:994 204 #: ../lib/CataBlog.class.php:1046 217 #: ../lib/CataBlog.class.php:998 218 #: ../lib/CataBlog.class.php:1050 219 #: ../lib/CataBlog.class.php:1102 220 #: ../lib/CataBlog.class.php:1140 221 #: ../lib/CataBlog.class.php:1273 222 msgid "WordPress Nonce Error, please reload the form and try again." 223 msgstr "Tillfälligt WordPress problem, var god ladda om sidan och prova igen." 224 225 #: ../lib/CataBlog.class.php:1054 226 msgid "full form was not submitted, please try again." 227 msgstr "hela formuläret skickades inte, var god prova igen." 228 205 229 #: ../lib/CataBlog.class.php:1098 206 230 #: ../lib/CataBlog.class.php:1136 207 #: ../lib/CataBlog.class.php:1269208 msgid "WordPress Nonce Error, please reload the form and try again."209 msgstr "Tillfälligt WordPress problem, var god ladda om sidan och prova igen."210 211 #: ../lib/CataBlog.class.php:1050212 msgid "full form was not submitted, please try again."213 msgstr "hela formuläret skickades inte, var god prova igen."214 215 #: ../lib/CataBlog.class.php:1094216 #: ../lib/CataBlog.class.php:1132217 231 msgid "You didn't select anything to upload, please try again." 218 232 msgstr "Du valde inget att ladda upp, var god prova igen." 219 233 220 #: ../lib/CataBlog.class.php:110 2221 #: ../lib/CataBlog.class.php:114 0234 #: ../lib/CataBlog.class.php:1106 235 #: ../lib/CataBlog.class.php:1144 222 236 msgid "No item ID posted, press back arrow and try again." 223 237 msgstr "Inget artikel ID sänt, klicka på tillbaka pilen och prova igen." 224 238 225 #: ../lib/CataBlog.class.php:118 3239 #: ../lib/CataBlog.class.php:1187 226 240 msgid "Please make your selection by checking the boxes in the list below." 227 241 msgstr "Var god gör dit val genom att markera i listan nedan." 228 242 229 #: ../lib/CataBlog.class.php:12 29243 #: ../lib/CataBlog.class.php:1233 230 244 #, php-format 231 245 msgid "Error during set category, could not load item with id %s." 232 246 msgstr "Problem under skapandet av kategorin, kunde inte ladda artiklar med id %s." 233 247 234 #: ../lib/CataBlog.class.php:12 47248 #: ../lib/CataBlog.class.php:1251 235 249 #, php-format 236 250 msgid "Error during bulk delete, could not load item with id %s." 237 251 msgstr "Fel under gruppbortagningen, kunde inte ladda artikel med ID %s." 238 252 239 #: ../lib/CataBlog.class.php:12 78253 #: ../lib/CataBlog.class.php:1282 240 254 msgid "No file was selected for upload, please try again." 241 255 msgstr "Ingen fil vald för att laddas upp, var god försök igen." 242 256 243 #: ../lib/CataBlog.class.php:12 87257 #: ../lib/CataBlog.class.php:1291 244 258 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 245 259 msgstr "Uppladdad XML fil kunde inte analyseras, kolla upp så att filens innehåll är korrekt XML." 246 260 247 #: ../lib/CataBlog.class.php:1 297261 #: ../lib/CataBlog.class.php:1301 248 262 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 249 263 msgstr "Uppladdad fil var inte i korrekt format, var god kolla upp så att filen har xml eller csv som filändelse." 250 264 251 #: ../lib/CataBlog.class.php:13 68265 #: ../lib/CataBlog.class.php:1372 252 266 msgid "The CataBlog upload directories have been unlocked." 253 267 msgstr "CataBlogs uppladdningskataloger är olåsta." 254 268 255 #: ../lib/CataBlog.class.php:137 1256 #: ../lib/CataBlog.class.php:138 4269 #: ../lib/CataBlog.class.php:1375 270 #: ../lib/CataBlog.class.php:1388 257 271 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 258 272 msgstr "Kunde inte låsa/låsa upp katalogen. Använder du en UNIX baserad server?" 259 273 260 #: ../lib/CataBlog.class.php:138 1274 #: ../lib/CataBlog.class.php:1385 261 275 msgid "The CataBlog upload directories have been locked." 262 276 msgstr "CataBlog uppladdningskataloger är låsta." 263 277 264 #: ../lib/CataBlog.class.php:1 498278 #: ../lib/CataBlog.class.php:1502 265 279 msgid "micro save successful" 266 280 msgstr "" 267 281 268 #: ../lib/CataBlog.class.php:15 26282 #: ../lib/CataBlog.class.php:1530 269 283 msgid "Screen Options updated successfully." 270 284 msgstr "Skärmalternativ uppdaterades." 271 285 272 #: ../lib/CataBlog.class.php:155 5286 #: ../lib/CataBlog.class.php:1559 273 287 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 274 288 msgstr "Komma, lodrätt streck och reserverade HTML tecken är inte tillåtet i kategorinamn." 275 289 276 #: ../lib/CataBlog.class.php:156 1290 #: ../lib/CataBlog.class.php:1565 277 291 msgid "Please be a little more specific with your category name." 278 292 msgstr "Var lite mer specifik med namnen på dina kategorier." 279 293 280 #: ../lib/CataBlog.class.php:157 3294 #: ../lib/CataBlog.class.php:1577 281 295 msgid "There already is a category with that name." 282 296 msgstr "Det finns redan en kategori med det namnet." 283 297 284 #: ../lib/CataBlog.class.php:160 2298 #: ../lib/CataBlog.class.php:1606 285 299 msgid "Term Removed Successfully." 286 300 msgstr "Termen borttagen." 287 301 288 #: ../lib/CataBlog.class.php:160 5302 #: ../lib/CataBlog.class.php:1609 289 303 msgid "Term did not exist, please refresh page and try again." 290 304 msgstr "Termen fanns inte, var god uppdatera sidan och prova igen." 291 305 292 #: ../lib/CataBlog.class.php:16 56306 #: ../lib/CataBlog.class.php:1660 293 307 msgid "unsupported image size type" 294 308 msgstr "bildtypen stöds inte" 295 309 296 #: ../lib/CataBlog.class.php:16 66310 #: ../lib/CataBlog.class.php:1670 297 311 #, php-format 298 312 msgid "Rendering... %s of %s" 299 313 msgstr "Renderar... %s av %s" 300 314 301 #: ../lib/CataBlog.class.php:16 68315 #: ../lib/CataBlog.class.php:1672 302 316 msgid "Image rendering is now complete." 303 317 msgstr "Bildrendering är klar." 304 318 305 #: ../lib/CataBlog.class.php:17 09319 #: ../lib/CataBlog.class.php:1713 306 320 msgid "error" 307 321 msgstr "fel" 308 322 309 #: ../lib/CataBlog.class.php:171 2323 #: ../lib/CataBlog.class.php:1716 310 324 msgid "sub image deleted successfully" 311 325 msgstr "ersättningsbilden togs bort" 312 326 313 #: ../lib/CataBlog.class.php:173 1327 #: ../lib/CataBlog.class.php:1735 314 328 #, php-format 315 329 msgid "%s library items deleted successfully." 316 330 msgstr "%s biblioteks artiklar togs bort." 317 331 318 #: ../lib/CataBlog.class.php:173 4332 #: ../lib/CataBlog.class.php:1738 319 333 msgid "CataBlog Library Cleared Successfully." 320 334 msgstr "CataBlogs bibliotek rensades." 321 335 322 #: ../lib/CataBlog.class.php:17 47336 #: ../lib/CataBlog.class.php:1751 323 337 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 324 338 msgstr "CataBlogs inställningar, kataloger och villkor har tagits bort." 325 339 326 #: ../lib/CataBlog.class.php:17 48340 #: ../lib/CataBlog.class.php:1752 327 341 msgid "You may now go deactivate CataBlog and nothing will be left behind." 328 342 msgstr "Du kan nu avaktivera CataBlog och inget kommer att var kvar." 329 343 330 #: ../lib/CataBlog.class.php:17 49344 #: ../lib/CataBlog.class.php:1753 331 345 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 332 346 msgstr "Om du vill fortsätta och använda CataBlog måste du gå till biblioteket och ominstallera inställningarna." 333 347 334 #: ../lib/CataBlog.class.php:188 5348 #: ../lib/CataBlog.class.php:1889 335 349 #, php-format 336 350 msgid "CataBlog %s LightBox Styles | %s" 337 351 msgstr "CataBlog %s LightBox stilar | %sl" 338 352 339 #: ../lib/CataBlog.class.php:19 08353 #: ../lib/CataBlog.class.php:1912 340 354 msgid "You may also press "P" or the left arrow on your keyboard" 341 355 msgstr "Du kan också klicka på "P" eller på vänster pilknapp på tangentbordet" 342 356 343 #: ../lib/CataBlog.class.php:19 09357 #: ../lib/CataBlog.class.php:1913 344 358 msgid "You may also press "N" or the right arrow on your keyboard" 345 359 msgstr "Du kan också klicka på "N" eller på höger pilknapp på tangentbordet" 346 360 347 #: ../lib/CataBlog.class.php:191 0361 #: ../lib/CataBlog.class.php:1914 348 362 msgid "Close LightBox Now" 349 363 msgstr "Stäng LightBox nu" 350 364 351 #: ../lib/CataBlog.class.php:191 1365 #: ../lib/CataBlog.class.php:1915 352 366 msgid "PREV" 353 367 msgstr "TDGR" 354 368 355 #: ../lib/CataBlog.class.php:191 2369 #: ../lib/CataBlog.class.php:1916 356 370 msgid "NEXT" 357 371 msgstr "NÄSTA" 358 372 359 #: ../lib/CataBlog.class.php:191 3373 #: ../lib/CataBlog.class.php:1917 360 374 msgid "CLOSE" 361 375 msgstr "STÄNG" 362 376 363 #: ../lib/CataBlog.class.php:19 17377 #: ../lib/CataBlog.class.php:1921 364 378 #, php-format 365 379 msgid "CataBlog %s LightBox JavaScript | %s" 366 380 msgstr "CataBlog %s LightBox JavaScript | %s" 367 381 368 #: ../lib/CataBlog.class.php:19 19382 #: ../lib/CataBlog.class.php:1923 369 383 msgid "End CataBlog LightBox JavaScript" 370 384 msgstr "Slut CataBlog LightBox JavaScript" 371 385 372 #: ../lib/CataBlog.class.php:20 68386 #: ../lib/CataBlog.class.php:2072 373 387 #, php-format 374 388 msgid "%s to %s of %s" 375 389 msgstr "" 376 390 377 #: ../lib/CataBlog.class.php:220 2391 #: ../lib/CataBlog.class.php:2206 378 392 #, fuzzy, php-format 379 393 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 380 394 msgstr "CataBlog kortkods parameter fel: Mall attributet av denna kortkod pekar mot en fil som inte finns. Var god se till att det finns en fil med namnet '%s.htm' i vykatalogen." 381 395 382 #: ../lib/CataBlog.class.php:222 5396 #: ../lib/CataBlog.class.php:2229 383 397 #, php-format 384 398 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 385 399 msgstr "CataBlog kortkods parameter fel: Mall attributet av denna kortkod pekar mot en fil som inte finns. Var god se till att det finns en fil med namnet '%s.htm' i vykatalogen." 386 400 387 #: ../lib/CataBlog.class.php:22 26401 #: ../lib/CataBlog.class.php:2230 388 402 #: ../templates/admin-library.php:20 389 403 msgid "Learn More" 390 404 msgstr "Lär dig mer" 391 405 392 #: ../lib/CataBlog.class.php:23 47406 #: ../lib/CataBlog.class.php:2351 393 407 #, fuzzy 394 408 msgid "The CataBlog Upload Directory cannot be written. " 395 409 msgstr "CataBlog uppladdningskataloger är låsta." 396 410 397 #: ../lib/CataBlog.class.php:2347 411 #: ../lib/CataBlog.class.php:2351 412 #: ../lib/CataBlog.class.php:2356 413 #: ../lib/CataBlog.class.php:2557 398 414 msgid "Please check your server file permissions and apache configuration." 399 415 msgstr "" 400 416 401 #: ../lib/CataBlog.class.php:235 2417 #: ../lib/CataBlog.class.php:2356 402 418 #, fuzzy 403 419 msgid "The CataBlog Templates Directory cannot be written. " 404 420 msgstr "CataBlog uppladdningskataloger är låsta." 405 421 406 #: ../lib/CataBlog.class.php:2352 407 #: ../lib/CataBlog.class.php:2553 408 msgid " Please check your server file permissions and apache configuration." 409 msgstr "" 410 411 #: ../lib/CataBlog.class.php:2362 422 #: ../lib/CataBlog.class.php:2366 412 423 #, php-format 413 424 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 414 425 msgstr "CataBlogs inställningar och kataloger har blivit installerad. Var god %suppdatera nu%s" 415 426 416 #: ../lib/CataBlog.class.php:23 86417 #: ../lib/CataBlog.class.php:25 58427 #: ../lib/CataBlog.class.php:2390 428 #: ../lib/CataBlog.class.php:2562 418 429 msgid "Previous" 419 430 msgstr "" 420 431 421 #: ../lib/CataBlog.class.php:23 87422 #: ../lib/CataBlog.class.php:25 59432 #: ../lib/CataBlog.class.php:2391 433 #: ../lib/CataBlog.class.php:2563 423 434 msgid "Next" 424 435 msgstr "" 425 436 426 #: ../lib/CataBlog.class.php:244 3437 #: ../lib/CataBlog.class.php:2447 427 438 #, php-format 428 439 msgid "There was an error creating the default term: %s" 429 440 msgstr "Ett fel uppstod när grundtermen skulle skapas: %s" 430 441 431 #: ../lib/CataBlog.class.php:248 1442 #: ../lib/CataBlog.class.php:2485 432 443 msgid "CataBlog options and directories have been successfully upgraded." 433 444 msgstr "CataBlogs inställningar och kataloger har uppgraderats." 434 445 435 #: ../lib/CataBlog.class.php:255 3446 #: ../lib/CataBlog.class.php:2557 436 447 #, fuzzy 437 448 msgid "The New CataBlog Templates cannot be written. " 438 449 msgstr "CataBlog uppladdningskataloger är låsta." 439 450 440 #: ../lib/CataBlog.class.php:274 0451 #: ../lib/CataBlog.class.php:2744 441 452 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 442 453 msgstr "Uppladdad CSV fil kunde inte analyseras, kolla så att filformatet är korrekt." 443 454 444 #: ../lib/CataBlog.class.php:278 1455 #: ../lib/CataBlog.class.php:2785 445 456 #, fuzzy, php-format 446 457 msgid "There was an error parsing your CSV file on lines: %s." 447 458 msgstr "Ett fel uppstod när grundtermen skulle skapas: %s" 448 459 449 #: ../lib/CataBlog.class.php:2828 450 #: ../lib/CataBlog.class.php:2871 460 #: ../lib/CataBlog.class.php:2832 451 461 #: ../lib/CataBlog.class.php:2875 452 #: ../lib/CataBlog.class.php:2878 462 #: ../lib/CataBlog.class.php:2879 463 #: ../lib/CataBlog.class.php:2882 453 464 msgid "Error:" 454 465 msgstr "Fel:" 455 466 456 #: ../lib/CataBlog.class.php:284 2467 #: ../lib/CataBlog.class.php:2846 457 468 msgid "Success:" 458 469 msgstr "Lyckat:" 459 470 460 #: ../lib/CataBlog.class.php:284 2471 #: ../lib/CataBlog.class.php:2846 461 472 #, php-format 462 473 msgid " %s inserted into catalog categories." 463 474 msgstr "%s tillagt i katalog kategorierna." 464 475 465 #: ../lib/CataBlog.class.php:285 0476 #: ../lib/CataBlog.class.php:2854 466 477 msgid "All New Categories Created" 467 478 msgstr "Alla nya kategorier skapades" 468 479 469 #: ../lib/CataBlog.class.php:285 4480 #: ../lib/CataBlog.class.php:2858 470 481 msgid "No New Categories Created" 471 482 msgstr "Inga nya kategorier skapades" 472 483 473 #: ../lib/CataBlog.class.php:28 69474 #: ../lib/CataBlog.class.php:292 3484 #: ../lib/CataBlog.class.php:2873 485 #: ../lib/CataBlog.class.php:2927 475 486 msgid "Insert:" 476 487 msgstr "Infoga:" 477 488 478 #: ../lib/CataBlog.class.php:28 69479 #: ../lib/CataBlog.class.php:292 3489 #: ../lib/CataBlog.class.php:2873 490 #: ../lib/CataBlog.class.php:2927 480 491 #, php-format 481 492 msgid " %s inserted into the database." 482 493 msgstr "%s fördes in i databasen" 483 494 484 #: ../lib/CataBlog.class.php:287 1495 #: ../lib/CataBlog.class.php:2875 485 496 #, php-format 486 497 msgid " %s was not inserted into the database." 487 498 msgstr "%s infördes inte i databasen." 488 499 489 #: ../lib/CataBlog.class.php:287 5500 #: ../lib/CataBlog.class.php:2879 490 501 msgid "Item had no title and could not be made." 491 502 msgstr "Artikeln hade ingen titel och kunde inte skapas." 492 503 493 #: ../lib/CataBlog.class.php:28 78504 #: ../lib/CataBlog.class.php:2882 494 505 msgid "Item had no primary image name and could not be made." 495 506 msgstr "Artikeln hade inget primärt bildnamn och kunde inte skapas." 496 507 497 #: ../lib/CataBlog.class.php:292 0508 #: ../lib/CataBlog.class.php:2924 498 509 msgid "Update:" 499 510 msgstr "Uppdatera:" 500 511 501 #: ../lib/CataBlog.class.php:292 0512 #: ../lib/CataBlog.class.php:2924 502 513 #, php-format 503 514 msgid " %s updated in database." 504 515 msgstr "%s uppdaterat i databasen." 505 516 506 #: ../lib/CataBlog.class.php:29 49517 #: ../lib/CataBlog.class.php:2953 507 518 #, fuzzy, php-format 508 519 msgid "%s Catalog Items Inserted" 509 520 msgstr "Alla katalog artiklar bearbetades" 510 521 511 #: ../lib/CataBlog.class.php:301 4522 #: ../lib/CataBlog.class.php:3018 512 523 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 513 524 msgstr "Uppladda fil översteg PHP konfigurationens max gräns." 514 525 515 #: ../lib/CataBlog.class.php:30 17526 #: ../lib/CataBlog.class.php:3021 516 527 msgid "Upload File Exceeded The HTML Form's Max File Size." 517 528 msgstr "Uppladda fil översteg HTML formulärets max gräns." 518 529 519 #: ../lib/CataBlog.class.php:302 0530 #: ../lib/CataBlog.class.php:3024 520 531 msgid "File Only Partially Uploaded, Please Try Again." 521 532 msgstr "Filen laddades endast upp delvis, var god försök igen." 522 533 523 #: ../lib/CataBlog.class.php:302 3534 #: ../lib/CataBlog.class.php:3027 524 535 msgid "No File Selected For Upload. Please Resubmit The Form." 525 536 msgstr "Ingen fil valdes för uppladdning. Var god skicka formuläret igen." 526 537 527 #: ../lib/CataBlog.class.php:30 26538 #: ../lib/CataBlog.class.php:3030 528 539 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 529 540 msgstr "Din servers PHP konfiguration har ingen temporär mapp för uppladdning, var god kontakta system administratören." 530 541 531 #: ../lib/CataBlog.class.php:30 29542 #: ../lib/CataBlog.class.php:3033 532 543 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 533 544 msgstr "Din servers PHP konfiguration kan inte skriva till disk, var god kontakta system administratören." 534 545 535 #: ../lib/CataBlog.class.php:303 2546 #: ../lib/CataBlog.class.php:3036 536 547 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 537 548 msgstr "En PHP förlängning blockerar PHP från att tillåta uppladdningar, var god kontakta system administratören." 538 549 539 #: ../lib/CataBlog.class.php:303 5550 #: ../lib/CataBlog.class.php:3039 540 551 msgid "An Unknown Upload Error Has Occurred" 541 552 msgstr "Ett okänt uppladdningsproblem har uppstått" … … 601 612 602 613 #: ../lib/CataBlogItem.class.php:361 603 #: ../lib/CataBlogItem.class.php:54 8614 #: ../lib/CataBlogItem.class.php:549 604 615 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 605 616 msgstr "Bilden kunde inte användas eftersom det är ett format som inte stöds. Endast JPEG, GIF eller PNG format." 606 617 607 618 #: ../lib/CataBlogItem.class.php:374 608 #: ../lib/CataBlogItem.class.php:53 5619 #: ../lib/CataBlogItem.class.php:536 609 620 msgid "Can not write uploaded image to server, your storage space is exhausted." 610 621 msgstr "Kan inte skriva uppladdad bild till servern, finns ingen plats." 611 622 612 623 #: ../lib/CataBlogItem.class.php:375 613 #: ../lib/CataBlogItem.class.php:53 6624 #: ../lib/CataBlogItem.class.php:537 614 625 msgid "Please delete some media files to free up space and try again." 615 626 msgstr "Var god och ta bort några filer för att skapa mer plats och prova igen." 616 627 617 628 #: ../lib/CataBlogItem.class.php:376 618 #: ../lib/CataBlogItem.class.php:53 7629 #: ../lib/CataBlogItem.class.php:538 619 630 #, php-format 620 631 msgid "You have %sMB of available space on your server and your image is %sMB." 621 632 msgstr "Du har %sMB med tillgänglig plats på servern och din bild är %sMB." 622 633 623 #: ../lib/CataBlogItem.class.php:46 5634 #: ../lib/CataBlogItem.class.php:466 624 635 msgid "Could not set categories, please try again." 625 636 msgstr "Kunde inte ställa in kategorierna, var god prova igen." 626 637 627 #: ../lib/CataBlogItem.class.php:59 2628 #: ../lib/CataBlogItem.class.php:65 3638 #: ../lib/CataBlogItem.class.php:593 639 #: ../lib/CataBlogItem.class.php:654 629 640 #, php-format 630 641 msgid "Original image file missing, could not be located at %s" 631 642 msgstr "Orginalbilden fattas, kunde inte hittas på %s" 632 643 633 #: ../lib/CataBlogItem.class.php: 599634 #: ../lib/CataBlogItem.class.php:66 1644 #: ../lib/CataBlogItem.class.php:600 645 #: ../lib/CataBlogItem.class.php:662 635 646 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 636 647 msgstr "Orginalbildens dimensioner är mindre än 1px. Troligtvis har inte PHP rätt att läsa orginal filen." 637 648 638 #: ../lib/CataBlogItem.class.php:62 8639 #: ../lib/CataBlogItem.class.php:67 5649 #: ../lib/CataBlogItem.class.php:629 650 #: ../lib/CataBlogItem.class.php:676 640 651 msgid "Original image could not be loaded because it is an unsupported format." 641 652 msgstr "Orginalbilden kunde inte laddas för att filformatet inte stöds." … … 698 709 699 710 #: ../lib/CataBlogWidget.class.php:70 700 #: ../lib/CataBlogWidget.class.php:2 63711 #: ../lib/CataBlogWidget.class.php:270 701 712 #, fuzzy 702 713 msgid "Title: " … … 749 760 msgstr "CataBlog Kategori" 750 761 751 #: ../lib/CataBlogWidget.class.php:270 762 #: ../lib/CataBlogWidget.class.php:250 763 #, php-format 764 msgid "This widget requires you to enable the %sCataBlog Public Option%s." 765 msgstr "" 766 767 #: ../lib/CataBlogWidget.class.php:277 752 768 msgid "Display as dropdown" 753 769 msgstr "" 754 770 755 #: ../lib/CataBlogWidget.class.php:2 73771 #: ../lib/CataBlogWidget.class.php:280 756 772 #, fuzzy 757 773 msgid "Show post count" … … 1592 1608 msgstr "Detta är identifieraren som din blig kommer att använda för att skapa dina sidor för katalog arkiven." 1593 1609 1594 #: ../templates/admin-options.php:173 1610 #: ../templates/admin-options.php:170 1611 msgid "Your public slugs cannot be the same." 1612 msgstr "" 1613 1614 #: ../templates/admin-options.php:175 1595 1615 msgid "Catalog Slugs Warning" 1596 1616 msgstr "Katalogens permalänk varning" 1597 1617 1598 #: ../templates/admin-options.php:17 41618 #: ../templates/admin-options.php:176 1599 1619 #, php-format 1600 1620 msgid "Please make sure you do not set either of your catalog slugs to a %sWordPress Reserved Term%s." 1601 1621 msgstr "Var säker på att du inte sätter en permalänk till en katalog med en %sWordPress Reserverat Uttryck%s." 1602 1622 1603 #: ../templates/admin-options.php:17 51623 #: ../templates/admin-options.php:177 1604 1624 msgid "These labels must also be URL friendly, so they may be transformed from your original input." 1605 1625 msgstr "Dessa etiketter måste även vara URL vänliga, så att de kan bli förändrade." 1606 1626 1607 #: ../templates/admin-options.php:18 51627 #: ../templates/admin-options.php:187 1608 1628 msgid "Previous Link Label:" 1609 1629 msgstr "" 1610 1630 1611 #: ../templates/admin-options.php:1 881612 msgid " What word would youlike to be used for a paginated catalog's previous page link."1613 msgstr "" 1614 1615 #: ../templates/admin-options.php:19 31631 #: ../templates/admin-options.php:190 1632 msgid "The word you would like to be used for a paginated catalog's previous page link." 1633 msgstr "" 1634 1635 #: ../templates/admin-options.php:195 1616 1636 msgid "Next Link Label:" 1617 1637 msgstr "" 1618 1638 1619 #: ../templates/admin-options.php:19 61620 msgid " What word would youlike to be used for a paginated catalog's next page link."1621 msgstr "" 1622 1623 #: ../templates/admin-options.php:20 31639 #: ../templates/admin-options.php:198 1640 msgid "The word you would like to be used for a paginated catalog's next page link." 1641 msgstr "" 1642 1643 #: ../templates/admin-options.php:205 1624 1644 msgid "Display Location:" 1625 1645 msgstr "" 1626 1646 1627 #: ../templates/admin-options.php:20 51647 #: ../templates/admin-options.php:207 1628 1648 #, fuzzy 1629 1649 msgid "Above Catalog" 1630 1650 msgstr "Om CataBlog" 1631 1651 1632 #: ../templates/admin-options.php:20 51652 #: ../templates/admin-options.php:207 1633 1653 #, fuzzy 1634 1654 msgid "Below Catalog" 1635 1655 msgstr "Ta bort CataBlog" 1636 1656 1637 #: ../templates/admin-options.php:20 51657 #: ../templates/admin-options.php:207 1638 1658 msgid "Above and Below" 1639 1659 msgstr "" 1640 1660 1641 #: ../templates/admin-options.php:21 21661 #: ../templates/admin-options.php:214 1642 1662 msgid "Select where you would like your navigation controls to be displayed" 1643 1663 msgstr "" 1644 1664 1645 #: ../templates/admin-options.php:2 181665 #: ../templates/admin-options.php:220 1646 1666 msgid "Show Extra Navigation Info:" 1647 1667 msgstr "" 1648 1668 1649 #: ../templates/admin-options.php:22 01669 #: ../templates/admin-options.php:222 1650 1670 #, fuzzy 1651 1671 msgid "If this is checked then the index of the catalog items being viewed on the page will be shown." 1652 1672 msgstr "Om denna är markerad kommer varje enskild katalog artikel få sin egen sida, komplett med permalänk." 1653 1673 1654 #: ../templates/admin-options.php:2 291674 #: ../templates/admin-options.php:231 1655 1675 msgid "Link Target:" 1656 1676 msgstr "Länkmål:" 1657 1677 1658 #: ../templates/admin-options.php:23 21678 #: ../templates/admin-options.php:234 1659 1679 msgid "The link target setting will set the <strong>target</strong> attribute of all the catalog title links." 1660 1680 msgstr "Länkmålsinställningen sätter <strong>målattributet</strong> för länkarna i alla katalogtitlar." 1661 1681 1662 #: ../templates/admin-options.php:23 31663 #: ../templates/admin-options.php:24 11682 #: ../templates/admin-options.php:235 1683 #: ../templates/admin-options.php:243 1664 1684 msgid "examples:" 1665 1685 msgstr "exempel:" 1666 1686 1667 #: ../templates/admin-options.php:23 71687 #: ../templates/admin-options.php:239 1668 1688 msgid "Link Relationship:" 1669 1689 msgstr "Länk relationer:" 1670 1690 1671 #: ../templates/admin-options.php:24 01691 #: ../templates/admin-options.php:242 1672 1692 msgid "The link relationship will set the <strong>rel</strong> attribute of all the catalog title links." 1673 1693 msgstr "Länk relationen sätter <strong>rel</strong> attributet till alla katalogens titellänkar." 1674 1694 1675 #: ../templates/admin-options.php:25 11695 #: ../templates/admin-options.php:253 1676 1696 msgid "Enable WordPress Filters:" 1677 1697 msgstr "Aktivera WordPress filter:" 1678 1698 1679 #: ../templates/admin-options.php:25 41699 #: ../templates/admin-options.php:256 1680 1700 msgid "Enable the standard WordPress filters for your catalog item's description." 1681 1701 msgstr "Aktivera WordPress standard filter för beskrivningen av dina katalog artiklar. " 1682 1702 1683 #: ../templates/admin-options.php:25 51703 #: ../templates/admin-options.php:257 1684 1704 msgid "This allows you to use ShortCodes and media embeds inside your catalog item descriptions." 1685 1705 msgstr "Detta gör det möjligt för dig att använda Kortkoder och inbädda media i beskrivningen av dina katalog artiklar." 1686 1706 1687 #: ../templates/admin-options.php:25 61707 #: ../templates/admin-options.php:258 1688 1708 msgid "Please <strong>do not use the CataBlog ShortCode</strong> inside a catalog item's description." 1689 1709 msgstr "Var god <strong>använd inte CataBlog Kortkoder</strong> i beskrivningen av dina katalog artiklar." 1690 1710 1691 #: ../templates/admin-options.php:26 21711 #: ../templates/admin-options.php:264 1692 1712 msgid "Render Line Breaks:" 1693 1713 msgstr "Rendera radbrytningar:" 1694 1714 1695 #: ../templates/admin-options.php:26 51715 #: ../templates/admin-options.php:267 1696 1716 #, php-format 1697 1717 msgid "Filter your catalog item's description through the standard PHP function %s." 1698 1718 msgstr "Filtrera dina beskrivningar av katalog artiklar genom PHP funktionen %s." 1699 1719 1700 #: ../templates/admin-options.php:26 61720 #: ../templates/admin-options.php:268 1701 1721 msgid "This will insert HTML line breaks before all new lines in your catalog descriptions." 1702 1722 msgstr "Detta inför HTML radbrytningar före alla nya rader i din beskrivning." 1703 1723 1704 #: ../templates/admin-options.php:26 71724 #: ../templates/admin-options.php:269 1705 1725 msgid "Turn this off if unwanted line breaks are being rendered on your page." 1706 1726 msgstr "Stäng av detta om det skapas oönskade radbrytningar på din sida." 1707 1727 1708 #: ../templates/admin-options.php:27 21728 #: ../templates/admin-options.php:274 1709 1729 msgid "Excerpt Length:" 1710 1730 msgstr "" 1711 1731 1712 #: ../templates/admin-options.php:27 51732 #: ../templates/admin-options.php:277 1713 1733 msgid "The excerpt length lets you set how many characters long the description will be when using the %EXCERPT% token." 1714 1734 msgstr "" 1715 1735 1716 #: ../templates/admin-options.php:27 61736 #: ../templates/admin-options.php:278 1717 1737 msgid "The excerpt will cut off any incomplete words at the end, so don't worry if the character count is a little different." 1718 1738 msgstr "" 1719 1739 1720 #: ../templates/admin-options.php:30 11740 #: ../templates/admin-options.php:303 1721 1741 msgid "You may export your CataBlog data to a XML or CSV file which may be used to backup and protect your work. The XML or CSV file is a simple transfer of the database information itself and the <strong>images are not included in this backup</strong>. To backup your images follow the directions at the bottom of the page." 1722 1742 msgstr "Du kan exportera data från CataBlog till en XML eller CSV fil och på detta sätt ta en backup och skydda ditt jobb. XML eller CSV filen är information som kopieras från databasen och <strong>bilderna inkluderas inte i denna backup</strong>. För att ta en backup på dina bilder är det bara att följa instruktionerna längst ner på sidan." 1723 1743 1724 #: ../templates/admin-options.php:30 71744 #: ../templates/admin-options.php:309 1725 1745 msgid "Save XML BackUp File" 1726 1746 msgstr "Spara XML backup filen" 1727 1747 1728 #: ../templates/admin-options.php:31 11748 #: ../templates/admin-options.php:313 1729 1749 msgid "Save CSV BackUp File" 1730 1750 msgstr "Spara CSV backup filen" 1731 1751 1732 #: ../templates/admin-options.php:3 181752 #: ../templates/admin-options.php:320 1733 1753 #, php-format 1734 1754 msgid "You must have the function %sfputcsv()%s available on your web server's version of PHP for CSV export to work." 1735 1755 msgstr "Du måste ha funktionen %sfputcsv()%s tillgänglig på din webbserver för att få CSV exporten att fungera." 1736 1756 1737 #: ../templates/admin-options.php:32 01757 #: ../templates/admin-options.php:322 1738 1758 msgid "Please contact your server administrator for more information regarding this error." 1739 1759 msgstr "Ta kontakt med din server administratör för mer information om detta fel." 1740 1760 1741 #: ../templates/admin-options.php:32 71761 #: ../templates/admin-options.php:329 1742 1762 msgid "Backing Up Images:" 1743 1763 msgstr "Backup på bilderna:" 1744 1764 1745 #: ../templates/admin-options.php:3 281765 #: ../templates/admin-options.php:330 1746 1766 msgid "Please copy the <em>catablog</em> directory to a secure location." 1747 1767 msgstr "Var god och kopiera <em>CataBlog</em> katalogen till en säker plats." 1748 1768 1749 #: ../templates/admin-options.php:3 291769 #: ../templates/admin-options.php:331 1750 1770 msgid "The directory for this WordPress blog can be located on your web server at:" 1751 1771 msgstr "Katalogen för denna WordPress blogg hittas på din webbserver här:" 1752 1772 1753 #: ../templates/admin-options.php:34 01773 #: ../templates/admin-options.php:342 1754 1774 msgid "Import XML/CSV Data" 1755 1775 msgstr "Importera XML/CSV data" 1756 1776 1757 #: ../templates/admin-options.php:3 481777 #: ../templates/admin-options.php:350 1758 1778 msgid "Replace All Data:" 1759 1779 msgstr "Byt ut all data:" 1760 1780 1761 #: ../templates/admin-options.php:35 11781 #: ../templates/admin-options.php:353 1762 1782 msgid "Import CataBlog Data" 1763 1783 msgstr "Importera CataBlog data" 1764 1784 1765 #: ../templates/admin-options.php:35 51785 #: ../templates/admin-options.php:357 1766 1786 msgid "You must have the <strong>Simple XML Library</strong> installed on your web server's version of PHP for XML imports to work. Please contact your server administrator for more information regarding this error." 1767 1787 msgstr "Du måste ha <strong>Simple XML Library</strong> installerad på din webbserver för att XML importering ska fungera. Ta kontakt med din server administratör för mer information angående felet." 1768 1788 1769 #: ../templates/admin-options.php:36 01789 #: ../templates/admin-options.php:362 1770 1790 msgid "To import data into your catalog you simply select a XML or CVS file on your hard drive and click the <em>Import CataBlog Data</em> button. You may choose to completely erase all your data before importing by checking the <em>Replace All Data</em> checkbox.<br />Keep in mind, this <strong>does not import or delete images</strong>." 1771 1791 msgstr "För att importera data in i en katalog väljer du helt enkelt en XML eller CVS fil på din hårddisk och klickar på <em>Importera CataBlog data</em> knappen. Du får valet att antingen ta bort all tidigare data innan import genom att markera <em>Ersätt all data</em>. <br />Kom ihåg, <strong>detta varken importerar eller tar bort bilder</strong>." 1772 1792 1773 #: ../templates/admin-options.php:36 31793 #: ../templates/admin-options.php:365 1774 1794 #, php-format 1775 1795 msgid "To import images you should upload them to the <em>originals</em> directory, located at: <em>%s</em>. Once you load the XML or CVS file and the images into the <em>originals</em> directory everything should be set after you %sRegenerate All Images%s in the systems tab." 1776 1796 msgstr "För att importera bilder bör du ladda upp de till <em>orginal</em> katalogen: <em>%s</em>. När du har laddat XML eller CVS filen samt lagt upp bilderna till <em>orginal</em> katalogen är allt färdigt inför att %sÅterskapa alla bilder%s under systemfliken." 1777 1797 1778 #: ../templates/admin-options.php:36 71798 #: ../templates/admin-options.php:369 1779 1799 #, php-format 1780 1800 msgid "You may view XML and CSV examples in the %simport/export documentation%s." 1781 1801 msgstr "Du kan titta på XML och CSV exempel i %simportera/exportera dokumentationen%s." 1782 1802 1783 #: ../templates/admin-options.php:38 11803 #: ../templates/admin-options.php:383 1784 1804 msgid "CataBlog Upload Folders are <strong>Unlocked</strong>" 1785 1805 msgstr "CataBlogs katalog för uppladdning är <strong>Olåst</strong>" 1786 1806 1787 #: ../templates/admin-options.php:38 31807 #: ../templates/admin-options.php:385 1788 1808 msgid "CataBlog Upload Folders are <strong>Locked</strong>" 1789 1809 msgstr "CataBlogs katalog för uppladdning är <strong>Låst</strong>" 1790 1810 1791 #: ../templates/admin-options.php:39 11811 #: ../templates/admin-options.php:393 1792 1812 msgid "Lock Folders" 1793 1813 msgstr "Lås mapparna" 1794 1814 1795 #: ../templates/admin-options.php:39 31815 #: ../templates/admin-options.php:395 1796 1816 msgid "Unlock Folders" 1797 1817 msgstr "Lås upp mapparna" 1798 1818 1799 #: ../templates/admin-options.php:39 71819 #: ../templates/admin-options.php:399 1800 1820 #, php-format 1801 1821 msgid "You may lock and unlock your <em>catablog</em> folders with these controls. The idea is to unlock the folders, use your FTP client to upload your original files and then lock the folders to protect them from hackers. After unlocking your directories please upload the original files directly into the <strong>%s</strong> folder without replacing it. <strong>Do not replace any of the CataBlog created folders</strong>. You should then regenerate all your thumbnail and lightbox pictures below. These controls may not work on a Windows server, it depends on your servers PHP settings and if the chmod command is supported." 1802 1822 msgstr "Du kan låsa eller låsa upp dina <em>CataBlog</em> mappar med dessa kontroller. Idén är att låsa upp mapparna, använda FTP för att ladda upp orginal filerna och sedan låsa mapparna för att skydda dessa mot hackare. Efter att du har låst upp dina kataloger ladda då upp dina orginalfiler direkt in i <strong>%s</strong> mappen utan att ersätta den. <strong>Ersätt inga av CataBlogs skapade mappar</strong>. Du bör sedan återskapa alla dina tumnagel och LightBox bilder nedan. Dessa kontroller kan eventuellt inte fungera på en Windows server, beroende på serverns PHP inställnigar och om chmod stöds." 1803 1823 1804 #: ../templates/admin-options.php:40 21824 #: ../templates/admin-options.php:404 1805 1825 msgid "Rescan Original Image Folder" 1806 1826 msgstr "Skanna om orginalbildernas mapp" 1807 1827 1808 #: ../templates/admin-options.php:40 41828 #: ../templates/admin-options.php:406 1809 1829 msgid "Rescan Original Images Folder Now" 1810 1830 msgstr "Skanna om orginalbildernas mapp nu" 1811 1831 1812 #: ../templates/admin-options.php:40 61832 #: ../templates/admin-options.php:408 1813 1833 msgid "Click the <em>Rescan Now</em> button to rescan the original catablog images folder and automatically import any new jpeg, gif or png images. It works simply by making a list of all the image names in the database and then compares each file's name in the originals folder against the list of image names in the database. Any newly discovered images will automatically be made into a new catalog item. You should Regenerate Images after running this command." 1814 1834 msgstr "Klicka på <em>Skanna nu</em> knappen för att skanna om mappen med orginalbilder och automatiskt importera alla nya JPEG, GIF eller PNG bilder. Det fungerar genom att en lista skapas med alla bildnamn i databasen och sedan jämförs de varje enskilt filnamn i mappen. Alla nya bilder som hittas blir automatiskt en ny katalog artikel. Du bör Återskapa bilder efter att du har kört denna funktion." 1815 1835 1816 #: ../templates/admin-options.php:41 11836 #: ../templates/admin-options.php:413 1817 1837 msgid "Regenerate Images" 1818 1838 msgstr "Återskapa bilder" 1819 1839 1820 #: ../templates/admin-options.php:41 31840 #: ../templates/admin-options.php:415 1821 1841 msgid "Regenerate All Images Now" 1822 1842 msgstr "Återskapa alla bilder nu" 1823 1843 1824 #: ../templates/admin-options.php:41 51844 #: ../templates/admin-options.php:417 1825 1845 msgid "Click the <em>Regenerate Now</em> button to recreate all the thumbnail and lightbox images that CataBlog has generated over the time you have used it. This is also useful when restoring exported data from another version of CataBlog. after you have uploaded your original images you must regenerate your images so they display properly." 1826 1846 msgstr "Klicka på <em>Återskapa nu</em> knappen för att återskapa alla tumnagel och LightBox bilder som CataBlog har genererat under den tid som du har använd det. Detta är också användbart när du vill återställa exporterat data från en annan version av CataBlog. Efter att du har laddat upp dina orginalbilder måste du återskapa dina bilder så att de visas korrekt." 1827 1847 1828 #: ../templates/admin-options.php:42 01848 #: ../templates/admin-options.php:422 1829 1849 msgid "Remove CataBlog" 1830 1850 msgstr "Ta bort CataBlog" 1831 1851 1832 #: ../templates/admin-options.php:42 21852 #: ../templates/admin-options.php:424 1833 1853 msgid "Remove All CataBlog Data" 1834 1854 msgstr "Ta bort all CataBlog data" 1835 1855 1836 #: ../templates/admin-options.php:42 41856 #: ../templates/admin-options.php:426 1837 1857 msgid "Delete your entire catalog, deleting all photos and custom data permanently. Sometimes you can use this to fix an improper installation." 1838 1858 msgstr "Ta bort hela din katalog, ta bort alla bilder och anpassad data permanent. Ibland kan du använda detta till att åtgärda en felaktig installation." 1839 1859 1840 #: ../templates/admin-options.php:43 31841 #: ../templates/admin-templates-editor.php:6 61860 #: ../templates/admin-options.php:435 1861 #: ../templates/admin-templates-editor.php:67 1842 1862 #, php-format 1843 1863 msgid "or %sundo current changes%s" 1844 1864 msgstr "eller %sångra nuvarande ändringar%s" 1845 1865 1846 #: ../templates/admin-options.php:734 1866 #: ../templates/admin-options.php:643 1867 msgid "There are errors, please correct them before saving." 1868 msgstr "" 1869 1870 #: ../templates/admin-options.php:755 1847 1871 #: ../templates/admin-regenerate.php:43 1848 1872 #: ../templates/admin-rescan.php:49 … … 1850 1874 msgstr "Låt renderingen avslutas innan du byter sida. Klicka på avbryt för att gå tillbaka och låt renderingen avslutas." 1851 1875 1852 #: ../templates/admin-options.php:7 391876 #: ../templates/admin-options.php:760 1853 1877 msgid "Image rendering is not complete, you should let image rendering complete before leaving this page." 1854 1878 msgstr "Renderingen av bilderna är inte klar, du bör låta renderingen avslutas innan du fortsätter." … … 1941 1965 msgstr "" 1942 1966 1943 #: ../templates/admin-templates-editor.php:7 11967 #: ../templates/admin-templates-editor.php:72 1944 1968 #, fuzzy 1945 1969 msgid "You may change the HTML rendered by CataBlog with this control panel, allowing you to make fundamental changes to how catalogs will appear in your posts. You may choose a template to edit from the list of templates to the right . If you want to setup a photo gallery I would recommend that you use the <strong>Gallery Template</strong> by adding the template parameter to the ShortCode. Example: <code>[catablog template=\"gallery\"]</code>" 1946 1970 msgstr "Här kan du ändra HTML koden som <strong>CataBlog</strong> skapar, detta gör det möjligt för dig att fundamentalt ändra hur kataloger ska visas. Du kan välja en mall från gardinmenyn högst upp och sedan klicka <em>Ladda mall</em> för att ladda mallens kod. Om du vill skapa ett fotogalleri rekommenderar jag att du laddar <em>Galleri mallen</em> och klickar på spara nedan. För att skapa en varukorg bör du ladda <em>Grundmallen</em> och sedan använda en Butiksmall. " 1947 1971 1948 #: ../templates/admin-templates-editor.php:7 61972 #: ../templates/admin-templates-editor.php:77 1949 1973 msgid "If you specify a template in your CataBlog ShortCodes the <strong>default template will be ignored</strong>." 1950 1974 msgstr "" 1951 1975 1952 #: ../templates/admin-templates-editor.php: 791976 #: ../templates/admin-templates-editor.php:80 1953 1977 msgid "If you do not specify a template in your CataBlog ShortCodes then the <strong>default template will be used</strong>." 1954 1978 msgstr "" 1955 1979 1956 #: ../templates/admin-templates-editor.php:8 21980 #: ../templates/admin-templates-editor.php:83 1957 1981 msgid "If you do not specify a template and the default template cannot be found then CataBlog will not be able to render your catalog." 1958 1982 msgstr "" 1959 1983 1960 #: ../templates/admin-templates-editor.php:8 51984 #: ../templates/admin-templates-editor.php:86 1961 1985 #, php-format 1962 1986 msgid "If you need more help read the %shelp panel%s." 1963 1987 msgstr "" 1964 1988 1965 #: ../templates/admin-templates-editor.php:10 41989 #: ../templates/admin-templates-editor.php:105 1966 1990 msgid "Create a New Template File" 1967 1991 msgstr "" 1968 1992 1969 #: ../templates/admin-templates-editor.php:10 71993 #: ../templates/admin-templates-editor.php:108 1970 1994 #, fuzzy 1971 1995 msgid "Save Other Changes Before Creating A New Template File." 1972 1996 msgstr "Spara andra ändringar innan du laddar upp en ny bild." 1973 1997 1974 #: ../templates/admin-templates-editor.php:11 31998 #: ../templates/admin-templates-editor.php:114 1975 1999 #, fuzzy 1976 2000 msgid "Create Template" 1977 2001 msgstr "Ladda mall" 1978 2002 1979 #: ../templates/admin-templates-editor.php:11 52003 #: ../templates/admin-templates-editor.php:116 1980 2004 msgid "Please enter the name of the new CataBlog Template you wish to create." 1981 2005 msgstr "" 1982 2006 1983 #: ../templates/admin-templates-editor.php:11 62007 #: ../templates/admin-templates-editor.php:117 1984 2008 msgid "If you are missing any system templates you may make them here by typing in their name, such as default." 1985 2009 msgstr "" 1986 2010 1987 #: ../templates/admin-templates-editor.php:11 72011 #: ../templates/admin-templates-editor.php:118 1988 2012 msgid "Please only use underscores, hyphens and alphanumeric characters only." 1989 2013 msgstr "" -
catablog/trunk/localization/catablog.po
r498885 r504559 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-02- 01 18:14-0800\n"8 "PO-Revision-Date: 2012-02- 01 18:15-0800\n"7 "POT-Creation-Date: 2012-02-13 14:58-0800\n" 8 "PO-Revision-Date: 2012-02-13 14:58-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: illProductions <zac@illproductions.com>\n" … … 18 18 "X-Poedit-SearchPath-0: ./..\n" 19 19 20 #: ../catablog.php:115 21 #: ../lib/CataBlogWidget.class.php:314 20 #: ../catablog.php:108 21 msgid "CataBlog Error:" 22 msgstr "" 23 24 #: ../catablog.php:110 25 #, php-format 26 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 27 msgstr "" 28 29 #: ../catablog.php:127 22 30 msgid "Select Category" 23 31 msgstr "" 24 32 25 #: ../catablog.php:1 4133 #: ../catablog.php:169 26 34 msgid "<strong>CataBlog</strong> requires <strong>PHP 5</strong> or better running on your web server. You're version of PHP is to old, please contact your hosting company or IT department for an upgrade. Thanks." 27 35 msgstr "" 28 36 29 #: ../catablog.php:1 4637 #: ../catablog.php:174 30 38 msgid "<strong>CataBlog</strong> requires that the <strong>GD Library</strong> be installed on your web server's version of PHP. Please contact your hosting company or IT department for more information. Thanks." 31 39 msgstr "" 32 40 33 #: ../catablog.php:1 5141 #: ../catablog.php:179 34 42 msgid "<strong>CataBlog</strong> requires <strong>WordPress 3.1</strong> or above. Please upgrade WordPress or contact your system administrator about upgrading." 35 43 msgstr "" 36 44 37 #: ../catablog.php:1 5745 #: ../catablog.php:185 38 46 msgid "<strong>CataBlog</strong> could not detect your upload directory or it is not writable by PHP. Please make sure Apache and PHP have write permission for the configured uploads folder. Contact your hosting company or IT department for more information. Thanks." 39 47 msgstr "" … … 151 159 msgstr "" 152 160 153 #: ../lib/CataBlog.class.php:685 161 #: ../lib/CataBlog.class.php:681 162 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 163 msgstr "" 164 165 #: ../lib/CataBlog.class.php:689 154 166 msgid "CataBlog Options Saved" 155 167 msgstr "" 156 168 157 #: ../lib/CataBlog.class.php:7 38169 #: ../lib/CataBlog.class.php:742 158 170 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 159 171 msgstr "" 160 172 161 #: ../lib/CataBlog.class.php:7 56162 #: ../lib/CataBlog.class.php:80 3163 #: ../lib/CataBlog.class.php:8 06173 #: ../lib/CataBlog.class.php:760 174 #: ../lib/CataBlog.class.php:807 175 #: ../lib/CataBlog.class.php:810 164 176 msgid "Form Validation Error. Please reload the page and try again." 165 177 msgstr "" 166 178 167 #: ../lib/CataBlog.class.php: 797179 #: ../lib/CataBlog.class.php:801 168 180 msgid "Template Changes Saved Successfully." 169 181 msgstr "" 170 182 171 #: ../lib/CataBlog.class.php:80 0183 #: ../lib/CataBlog.class.php:804 172 184 msgid "Template Created Successfully." 173 185 msgstr "" 174 186 175 #: ../lib/CataBlog.class.php:8 09187 #: ../lib/CataBlog.class.php:813 176 188 #, php-format 177 189 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 178 190 msgstr "" 179 191 180 #: ../lib/CataBlog.class.php:81 2192 #: ../lib/CataBlog.class.php:816 181 193 msgid "File Creation Error. A template already exists with that name." 182 194 msgstr "" 183 195 184 #: ../lib/CataBlog.class.php:81 5196 #: ../lib/CataBlog.class.php:819 185 197 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 186 198 msgstr "" 187 199 188 #: ../lib/CataBlog.class.php: 897189 #: ../lib/CataBlog.class.php: 898190 #: ../lib/CataBlog.class.php: 899200 #: ../lib/CataBlog.class.php:901 201 #: ../lib/CataBlog.class.php:902 202 #: ../lib/CataBlog.class.php:903 191 203 msgid "not present" 192 204 msgstr "" 193 205 194 #: ../lib/CataBlog.class.php:99 0206 #: ../lib/CataBlog.class.php:994 195 207 msgid "The file you selected was to large or you didn't select anything at all, please try again." 196 208 msgstr "" 197 209 198 #: ../lib/CataBlog.class.php:994 199 #: ../lib/CataBlog.class.php:1046 210 #: ../lib/CataBlog.class.php:998 211 #: ../lib/CataBlog.class.php:1050 212 #: ../lib/CataBlog.class.php:1102 213 #: ../lib/CataBlog.class.php:1140 214 #: ../lib/CataBlog.class.php:1273 215 msgid "WordPress Nonce Error, please reload the form and try again." 216 msgstr "" 217 218 #: ../lib/CataBlog.class.php:1054 219 msgid "full form was not submitted, please try again." 220 msgstr "" 221 200 222 #: ../lib/CataBlog.class.php:1098 201 223 #: ../lib/CataBlog.class.php:1136 202 #: ../lib/CataBlog.class.php:1269203 msgid "WordPress Nonce Error, please reload the form and try again."204 msgstr ""205 206 #: ../lib/CataBlog.class.php:1050207 msgid "full form was not submitted, please try again."208 msgstr ""209 210 #: ../lib/CataBlog.class.php:1094211 #: ../lib/CataBlog.class.php:1132212 224 msgid "You didn't select anything to upload, please try again." 213 225 msgstr "" 214 226 215 #: ../lib/CataBlog.class.php:110 2216 #: ../lib/CataBlog.class.php:114 0227 #: ../lib/CataBlog.class.php:1106 228 #: ../lib/CataBlog.class.php:1144 217 229 msgid "No item ID posted, press back arrow and try again." 218 230 msgstr "" 219 231 220 #: ../lib/CataBlog.class.php:118 3232 #: ../lib/CataBlog.class.php:1187 221 233 msgid "Please make your selection by checking the boxes in the list below." 222 234 msgstr "" 223 235 224 #: ../lib/CataBlog.class.php:12 29236 #: ../lib/CataBlog.class.php:1233 225 237 #, php-format 226 238 msgid "Error during set category, could not load item with id %s." 227 239 msgstr "" 228 240 229 #: ../lib/CataBlog.class.php:12 47241 #: ../lib/CataBlog.class.php:1251 230 242 #, php-format 231 243 msgid "Error during bulk delete, could not load item with id %s." 232 244 msgstr "" 233 245 234 #: ../lib/CataBlog.class.php:12 78246 #: ../lib/CataBlog.class.php:1282 235 247 msgid "No file was selected for upload, please try again." 236 248 msgstr "" 237 249 238 #: ../lib/CataBlog.class.php:12 87250 #: ../lib/CataBlog.class.php:1291 239 251 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 240 252 msgstr "" 241 253 242 #: ../lib/CataBlog.class.php:1 297254 #: ../lib/CataBlog.class.php:1301 243 255 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 244 256 msgstr "" 245 257 246 #: ../lib/CataBlog.class.php:13 68258 #: ../lib/CataBlog.class.php:1372 247 259 msgid "The CataBlog upload directories have been unlocked." 248 260 msgstr "" 249 261 250 #: ../lib/CataBlog.class.php:137 1251 #: ../lib/CataBlog.class.php:138 4262 #: ../lib/CataBlog.class.php:1375 263 #: ../lib/CataBlog.class.php:1388 252 264 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 253 265 msgstr "" 254 266 255 #: ../lib/CataBlog.class.php:138 1267 #: ../lib/CataBlog.class.php:1385 256 268 msgid "The CataBlog upload directories have been locked." 257 269 msgstr "" 258 270 259 #: ../lib/CataBlog.class.php:1 498271 #: ../lib/CataBlog.class.php:1502 260 272 msgid "micro save successful" 261 273 msgstr "" 262 274 263 #: ../lib/CataBlog.class.php:15 26275 #: ../lib/CataBlog.class.php:1530 264 276 msgid "Screen Options updated successfully." 265 277 msgstr "" 266 278 267 #: ../lib/CataBlog.class.php:155 5279 #: ../lib/CataBlog.class.php:1559 268 280 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 269 281 msgstr "" 270 282 271 #: ../lib/CataBlog.class.php:156 1283 #: ../lib/CataBlog.class.php:1565 272 284 msgid "Please be a little more specific with your category name." 273 285 msgstr "" 274 286 275 #: ../lib/CataBlog.class.php:157 3287 #: ../lib/CataBlog.class.php:1577 276 288 msgid "There already is a category with that name." 277 289 msgstr "" 278 290 279 #: ../lib/CataBlog.class.php:160 2291 #: ../lib/CataBlog.class.php:1606 280 292 msgid "Term Removed Successfully." 281 293 msgstr "" 282 294 283 #: ../lib/CataBlog.class.php:160 5295 #: ../lib/CataBlog.class.php:1609 284 296 msgid "Term did not exist, please refresh page and try again." 285 297 msgstr "" 286 298 287 #: ../lib/CataBlog.class.php:16 56299 #: ../lib/CataBlog.class.php:1660 288 300 msgid "unsupported image size type" 289 301 msgstr "" 290 302 291 #: ../lib/CataBlog.class.php:16 66303 #: ../lib/CataBlog.class.php:1670 292 304 #, php-format 293 305 msgid "Rendering... %s of %s" 294 306 msgstr "" 295 307 296 #: ../lib/CataBlog.class.php:16 68308 #: ../lib/CataBlog.class.php:1672 297 309 msgid "Image rendering is now complete." 298 310 msgstr "" 299 311 300 #: ../lib/CataBlog.class.php:17 09312 #: ../lib/CataBlog.class.php:1713 301 313 msgid "error" 302 314 msgstr "" 303 315 304 #: ../lib/CataBlog.class.php:171 2316 #: ../lib/CataBlog.class.php:1716 305 317 msgid "sub image deleted successfully" 306 318 msgstr "" 307 319 308 #: ../lib/CataBlog.class.php:173 1320 #: ../lib/CataBlog.class.php:1735 309 321 #, php-format 310 322 msgid "%s library items deleted successfully." 311 323 msgstr "" 312 324 313 #: ../lib/CataBlog.class.php:173 4325 #: ../lib/CataBlog.class.php:1738 314 326 msgid "CataBlog Library Cleared Successfully." 315 327 msgstr "" 316 328 317 #: ../lib/CataBlog.class.php:17 47329 #: ../lib/CataBlog.class.php:1751 318 330 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 319 331 msgstr "" 320 332 321 #: ../lib/CataBlog.class.php:17 48333 #: ../lib/CataBlog.class.php:1752 322 334 msgid "You may now go deactivate CataBlog and nothing will be left behind." 323 335 msgstr "" 324 336 325 #: ../lib/CataBlog.class.php:17 49337 #: ../lib/CataBlog.class.php:1753 326 338 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 327 339 msgstr "" 328 340 329 #: ../lib/CataBlog.class.php:188 5341 #: ../lib/CataBlog.class.php:1889 330 342 #, php-format 331 343 msgid "CataBlog %s LightBox Styles | %s" 332 344 msgstr "" 333 345 334 #: ../lib/CataBlog.class.php:19 08346 #: ../lib/CataBlog.class.php:1912 335 347 msgid "You may also press "P" or the left arrow on your keyboard" 336 348 msgstr "" 337 349 338 #: ../lib/CataBlog.class.php:19 09350 #: ../lib/CataBlog.class.php:1913 339 351 msgid "You may also press "N" or the right arrow on your keyboard" 340 352 msgstr "" 341 353 342 #: ../lib/CataBlog.class.php:191 0354 #: ../lib/CataBlog.class.php:1914 343 355 msgid "Close LightBox Now" 344 356 msgstr "" 345 357 346 #: ../lib/CataBlog.class.php:191 1358 #: ../lib/CataBlog.class.php:1915 347 359 msgid "PREV" 348 360 msgstr "" 349 361 350 #: ../lib/CataBlog.class.php:191 2362 #: ../lib/CataBlog.class.php:1916 351 363 msgid "NEXT" 352 364 msgstr "" 353 365 354 #: ../lib/CataBlog.class.php:191 3366 #: ../lib/CataBlog.class.php:1917 355 367 msgid "CLOSE" 356 368 msgstr "" 357 369 358 #: ../lib/CataBlog.class.php:19 17370 #: ../lib/CataBlog.class.php:1921 359 371 #, php-format 360 372 msgid "CataBlog %s LightBox JavaScript | %s" 361 373 msgstr "" 362 374 363 #: ../lib/CataBlog.class.php:19 19375 #: ../lib/CataBlog.class.php:1923 364 376 msgid "End CataBlog LightBox JavaScript" 365 377 msgstr "" 366 378 367 #: ../lib/CataBlog.class.php:20 68379 #: ../lib/CataBlog.class.php:2072 368 380 #, php-format 369 381 msgid "%s to %s of %s" 370 382 msgstr "" 371 383 372 #: ../lib/CataBlog.class.php:220 2384 #: ../lib/CataBlog.class.php:2206 373 385 #, php-format 374 386 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 375 387 msgstr "" 376 388 377 #: ../lib/CataBlog.class.php:222 5389 #: ../lib/CataBlog.class.php:2229 378 390 #, php-format 379 391 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 380 392 msgstr "" 381 393 382 #: ../lib/CataBlog.class.php:22 26394 #: ../lib/CataBlog.class.php:2230 383 395 #: ../templates/admin-library.php:20 384 396 msgid "Learn More" 385 397 msgstr "" 386 398 387 #: ../lib/CataBlog.class.php:23 47399 #: ../lib/CataBlog.class.php:2351 388 400 msgid "The CataBlog Upload Directory cannot be written. " 389 401 msgstr "" 390 402 391 #: ../lib/CataBlog.class.php:2347 403 #: ../lib/CataBlog.class.php:2351 404 #: ../lib/CataBlog.class.php:2356 405 #: ../lib/CataBlog.class.php:2557 392 406 msgid "Please check your server file permissions and apache configuration." 393 407 msgstr "" 394 408 395 #: ../lib/CataBlog.class.php:235 2409 #: ../lib/CataBlog.class.php:2356 396 410 msgid "The CataBlog Templates Directory cannot be written. " 397 411 msgstr "" 398 412 399 #: ../lib/CataBlog.class.php:2352 400 #: ../lib/CataBlog.class.php:2553 401 msgid " Please check your server file permissions and apache configuration." 402 msgstr "" 403 404 #: ../lib/CataBlog.class.php:2362 413 #: ../lib/CataBlog.class.php:2366 405 414 #, php-format 406 415 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 407 416 msgstr "" 408 417 409 #: ../lib/CataBlog.class.php:23 86410 #: ../lib/CataBlog.class.php:25 58418 #: ../lib/CataBlog.class.php:2390 419 #: ../lib/CataBlog.class.php:2562 411 420 msgid "Previous" 412 421 msgstr "" 413 422 414 #: ../lib/CataBlog.class.php:23 87415 #: ../lib/CataBlog.class.php:25 59423 #: ../lib/CataBlog.class.php:2391 424 #: ../lib/CataBlog.class.php:2563 416 425 msgid "Next" 417 426 msgstr "" 418 427 419 #: ../lib/CataBlog.class.php:244 3428 #: ../lib/CataBlog.class.php:2447 420 429 #, php-format 421 430 msgid "There was an error creating the default term: %s" 422 431 msgstr "" 423 432 424 #: ../lib/CataBlog.class.php:248 1433 #: ../lib/CataBlog.class.php:2485 425 434 msgid "CataBlog options and directories have been successfully upgraded." 426 435 msgstr "" 427 436 428 #: ../lib/CataBlog.class.php:255 3437 #: ../lib/CataBlog.class.php:2557 429 438 msgid "The New CataBlog Templates cannot be written. " 430 439 msgstr "" 431 440 432 #: ../lib/CataBlog.class.php:274 0441 #: ../lib/CataBlog.class.php:2744 433 442 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 434 443 msgstr "" 435 444 436 #: ../lib/CataBlog.class.php:278 1445 #: ../lib/CataBlog.class.php:2785 437 446 #, php-format 438 447 msgid "There was an error parsing your CSV file on lines: %s." 439 448 msgstr "" 440 449 441 #: ../lib/CataBlog.class.php:2828 442 #: ../lib/CataBlog.class.php:2871 450 #: ../lib/CataBlog.class.php:2832 443 451 #: ../lib/CataBlog.class.php:2875 444 #: ../lib/CataBlog.class.php:2878 452 #: ../lib/CataBlog.class.php:2879 453 #: ../lib/CataBlog.class.php:2882 445 454 msgid "Error:" 446 455 msgstr "" 447 456 448 #: ../lib/CataBlog.class.php:284 2457 #: ../lib/CataBlog.class.php:2846 449 458 msgid "Success:" 450 459 msgstr "" 451 460 452 #: ../lib/CataBlog.class.php:284 2461 #: ../lib/CataBlog.class.php:2846 453 462 #, php-format 454 463 msgid " %s inserted into catalog categories." 455 464 msgstr "" 456 465 457 #: ../lib/CataBlog.class.php:285 0466 #: ../lib/CataBlog.class.php:2854 458 467 msgid "All New Categories Created" 459 468 msgstr "" 460 469 461 #: ../lib/CataBlog.class.php:285 4470 #: ../lib/CataBlog.class.php:2858 462 471 msgid "No New Categories Created" 463 472 msgstr "" 464 473 465 #: ../lib/CataBlog.class.php:28 69466 #: ../lib/CataBlog.class.php:292 3474 #: ../lib/CataBlog.class.php:2873 475 #: ../lib/CataBlog.class.php:2927 467 476 msgid "Insert:" 468 477 msgstr "" 469 478 470 #: ../lib/CataBlog.class.php:28 69471 #: ../lib/CataBlog.class.php:292 3479 #: ../lib/CataBlog.class.php:2873 480 #: ../lib/CataBlog.class.php:2927 472 481 #, php-format 473 482 msgid " %s inserted into the database." 474 483 msgstr "" 475 484 476 #: ../lib/CataBlog.class.php:287 1485 #: ../lib/CataBlog.class.php:2875 477 486 #, php-format 478 487 msgid " %s was not inserted into the database." 479 488 msgstr "" 480 489 481 #: ../lib/CataBlog.class.php:287 5490 #: ../lib/CataBlog.class.php:2879 482 491 msgid "Item had no title and could not be made." 483 492 msgstr "" 484 493 485 #: ../lib/CataBlog.class.php:28 78494 #: ../lib/CataBlog.class.php:2882 486 495 msgid "Item had no primary image name and could not be made." 487 496 msgstr "" 488 497 489 #: ../lib/CataBlog.class.php:292 0498 #: ../lib/CataBlog.class.php:2924 490 499 msgid "Update:" 491 500 msgstr "" 492 501 493 #: ../lib/CataBlog.class.php:292 0502 #: ../lib/CataBlog.class.php:2924 494 503 #, php-format 495 504 msgid " %s updated in database." 496 505 msgstr "" 497 506 498 #: ../lib/CataBlog.class.php:29 49507 #: ../lib/CataBlog.class.php:2953 499 508 #, php-format 500 509 msgid "%s Catalog Items Inserted" 501 510 msgstr "" 502 511 503 #: ../lib/CataBlog.class.php:301 4512 #: ../lib/CataBlog.class.php:3018 504 513 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 505 514 msgstr "" 506 515 507 #: ../lib/CataBlog.class.php:30 17516 #: ../lib/CataBlog.class.php:3021 508 517 msgid "Upload File Exceeded The HTML Form's Max File Size." 509 518 msgstr "" 510 519 511 #: ../lib/CataBlog.class.php:302 0520 #: ../lib/CataBlog.class.php:3024 512 521 msgid "File Only Partially Uploaded, Please Try Again." 513 522 msgstr "" 514 523 515 #: ../lib/CataBlog.class.php:302 3524 #: ../lib/CataBlog.class.php:3027 516 525 msgid "No File Selected For Upload. Please Resubmit The Form." 517 526 msgstr "" 518 527 519 #: ../lib/CataBlog.class.php:30 26528 #: ../lib/CataBlog.class.php:3030 520 529 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 521 530 msgstr "" 522 531 523 #: ../lib/CataBlog.class.php:30 29532 #: ../lib/CataBlog.class.php:3033 524 533 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 525 534 msgstr "" 526 535 527 #: ../lib/CataBlog.class.php:303 2536 #: ../lib/CataBlog.class.php:3036 528 537 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 529 538 msgstr "" 530 539 531 #: ../lib/CataBlog.class.php:303 5540 #: ../lib/CataBlog.class.php:3039 532 541 msgid "An Unknown Upload Error Has Occurred" 533 542 msgstr "" … … 592 601 593 602 #: ../lib/CataBlogItem.class.php:361 594 #: ../lib/CataBlogItem.class.php:54 8603 #: ../lib/CataBlogItem.class.php:549 595 604 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 596 605 msgstr "" 597 606 598 607 #: ../lib/CataBlogItem.class.php:374 599 #: ../lib/CataBlogItem.class.php:53 5608 #: ../lib/CataBlogItem.class.php:536 600 609 msgid "Can not write uploaded image to server, your storage space is exhausted." 601 610 msgstr "" 602 611 603 612 #: ../lib/CataBlogItem.class.php:375 604 #: ../lib/CataBlogItem.class.php:53 6613 #: ../lib/CataBlogItem.class.php:537 605 614 msgid "Please delete some media files to free up space and try again." 606 615 msgstr "" 607 616 608 617 #: ../lib/CataBlogItem.class.php:376 609 #: ../lib/CataBlogItem.class.php:53 7618 #: ../lib/CataBlogItem.class.php:538 610 619 #, php-format 611 620 msgid "You have %sMB of available space on your server and your image is %sMB." 612 621 msgstr "" 613 622 614 #: ../lib/CataBlogItem.class.php:46 5623 #: ../lib/CataBlogItem.class.php:466 615 624 msgid "Could not set categories, please try again." 616 625 msgstr "" 617 626 618 #: ../lib/CataBlogItem.class.php:59 2619 #: ../lib/CataBlogItem.class.php:65 3627 #: ../lib/CataBlogItem.class.php:593 628 #: ../lib/CataBlogItem.class.php:654 620 629 #, php-format 621 630 msgid "Original image file missing, could not be located at %s" 622 631 msgstr "" 623 632 624 #: ../lib/CataBlogItem.class.php: 599625 #: ../lib/CataBlogItem.class.php:66 1633 #: ../lib/CataBlogItem.class.php:600 634 #: ../lib/CataBlogItem.class.php:662 626 635 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 627 636 msgstr "" 628 637 629 #: ../lib/CataBlogItem.class.php:62 8630 #: ../lib/CataBlogItem.class.php:67 5638 #: ../lib/CataBlogItem.class.php:629 639 #: ../lib/CataBlogItem.class.php:676 631 640 msgid "Original image could not be loaded because it is an unsupported format." 632 641 msgstr "" … … 684 693 685 694 #: ../lib/CataBlogWidget.class.php:70 686 #: ../lib/CataBlogWidget.class.php:2 63695 #: ../lib/CataBlogWidget.class.php:270 687 696 msgid "Title: " 688 697 msgstr "" … … 728 737 msgstr "" 729 738 730 #: ../lib/CataBlogWidget.class.php:270 739 #: ../lib/CataBlogWidget.class.php:250 740 #, php-format 741 msgid "This widget requires you to enable the %sCataBlog Public Option%s." 742 msgstr "" 743 744 #: ../lib/CataBlogWidget.class.php:277 731 745 msgid "Display as dropdown" 732 746 msgstr "" 733 747 734 #: ../lib/CataBlogWidget.class.php:2 73748 #: ../lib/CataBlogWidget.class.php:280 735 749 msgid "Show post count" 736 750 msgstr "" … … 1555 1569 msgstr "" 1556 1570 1557 #: ../templates/admin-options.php:173 1571 #: ../templates/admin-options.php:170 1572 msgid "Your public slugs cannot be the same." 1573 msgstr "" 1574 1575 #: ../templates/admin-options.php:175 1558 1576 msgid "Catalog Slugs Warning" 1559 1577 msgstr "" 1560 1578 1561 #: ../templates/admin-options.php:17 41579 #: ../templates/admin-options.php:176 1562 1580 #, php-format 1563 1581 msgid "Please make sure you do not set either of your catalog slugs to a %sWordPress Reserved Term%s." 1564 1582 msgstr "" 1565 1583 1566 #: ../templates/admin-options.php:17 51584 #: ../templates/admin-options.php:177 1567 1585 msgid "These labels must also be URL friendly, so they may be transformed from your original input." 1568 1586 msgstr "" 1569 1587 1570 #: ../templates/admin-options.php:18 51588 #: ../templates/admin-options.php:187 1571 1589 msgid "Previous Link Label:" 1572 1590 msgstr "" 1573 1591 1574 #: ../templates/admin-options.php:1 881575 msgid " What word would youlike to be used for a paginated catalog's previous page link."1576 msgstr "" 1577 1578 #: ../templates/admin-options.php:19 31592 #: ../templates/admin-options.php:190 1593 msgid "The word you would like to be used for a paginated catalog's previous page link." 1594 msgstr "" 1595 1596 #: ../templates/admin-options.php:195 1579 1597 msgid "Next Link Label:" 1580 1598 msgstr "" 1581 1599 1582 #: ../templates/admin-options.php:19 61583 msgid " What word would youlike to be used for a paginated catalog's next page link."1584 msgstr "" 1585 1586 #: ../templates/admin-options.php:20 31600 #: ../templates/admin-options.php:198 1601 msgid "The word you would like to be used for a paginated catalog's next page link." 1602 msgstr "" 1603 1604 #: ../templates/admin-options.php:205 1587 1605 msgid "Display Location:" 1588 1606 msgstr "" 1589 1607 1590 #: ../templates/admin-options.php:20 51608 #: ../templates/admin-options.php:207 1591 1609 msgid "Above Catalog" 1592 1610 msgstr "" 1593 1611 1594 #: ../templates/admin-options.php:20 51612 #: ../templates/admin-options.php:207 1595 1613 msgid "Below Catalog" 1596 1614 msgstr "" 1597 1615 1598 #: ../templates/admin-options.php:20 51616 #: ../templates/admin-options.php:207 1599 1617 msgid "Above and Below" 1600 1618 msgstr "" 1601 1619 1602 #: ../templates/admin-options.php:21 21620 #: ../templates/admin-options.php:214 1603 1621 msgid "Select where you would like your navigation controls to be displayed" 1604 1622 msgstr "" 1605 1623 1606 #: ../templates/admin-options.php:2 181624 #: ../templates/admin-options.php:220 1607 1625 msgid "Show Extra Navigation Info:" 1608 1626 msgstr "" 1609 1627 1610 #: ../templates/admin-options.php:22 01628 #: ../templates/admin-options.php:222 1611 1629 msgid "If this is checked then the index of the catalog items being viewed on the page will be shown." 1612 1630 msgstr "" 1613 1631 1614 #: ../templates/admin-options.php:2 291632 #: ../templates/admin-options.php:231 1615 1633 msgid "Link Target:" 1616 1634 msgstr "" 1617 1635 1618 #: ../templates/admin-options.php:23 21636 #: ../templates/admin-options.php:234 1619 1637 msgid "The link target setting will set the <strong>target</strong> attribute of all the catalog title links." 1620 1638 msgstr "" 1621 1639 1622 #: ../templates/admin-options.php:23 31623 #: ../templates/admin-options.php:24 11640 #: ../templates/admin-options.php:235 1641 #: ../templates/admin-options.php:243 1624 1642 msgid "examples:" 1625 1643 msgstr "" 1626 1644 1627 #: ../templates/admin-options.php:23 71645 #: ../templates/admin-options.php:239 1628 1646 msgid "Link Relationship:" 1629 1647 msgstr "" 1630 1648 1631 #: ../templates/admin-options.php:24 01649 #: ../templates/admin-options.php:242 1632 1650 msgid "The link relationship will set the <strong>rel</strong> attribute of all the catalog title links." 1633 1651 msgstr "" 1634 1652 1635 #: ../templates/admin-options.php:25 11653 #: ../templates/admin-options.php:253 1636 1654 msgid "Enable WordPress Filters:" 1637 1655 msgstr "" 1638 1656 1639 #: ../templates/admin-options.php:25 41657 #: ../templates/admin-options.php:256 1640 1658 msgid "Enable the standard WordPress filters for your catalog item's description." 1641 1659 msgstr "" 1642 1660 1643 #: ../templates/admin-options.php:25 51661 #: ../templates/admin-options.php:257 1644 1662 msgid "This allows you to use ShortCodes and media embeds inside your catalog item descriptions." 1645 1663 msgstr "" 1646 1664 1647 #: ../templates/admin-options.php:25 61665 #: ../templates/admin-options.php:258 1648 1666 msgid "Please <strong>do not use the CataBlog ShortCode</strong> inside a catalog item's description." 1649 1667 msgstr "" 1650 1668 1651 #: ../templates/admin-options.php:26 21669 #: ../templates/admin-options.php:264 1652 1670 msgid "Render Line Breaks:" 1653 1671 msgstr "" 1654 1672 1655 #: ../templates/admin-options.php:26 51673 #: ../templates/admin-options.php:267 1656 1674 #, php-format 1657 1675 msgid "Filter your catalog item's description through the standard PHP function %s." 1658 1676 msgstr "" 1659 1677 1660 #: ../templates/admin-options.php:26 61678 #: ../templates/admin-options.php:268 1661 1679 msgid "This will insert HTML line breaks before all new lines in your catalog descriptions." 1662 1680 msgstr "" 1663 1681 1664 #: ../templates/admin-options.php:26 71682 #: ../templates/admin-options.php:269 1665 1683 msgid "Turn this off if unwanted line breaks are being rendered on your page." 1666 1684 msgstr "" 1667 1685 1668 #: ../templates/admin-options.php:27 21686 #: ../templates/admin-options.php:274 1669 1687 msgid "Excerpt Length:" 1670 1688 msgstr "" 1671 1689 1672 #: ../templates/admin-options.php:27 51690 #: ../templates/admin-options.php:277 1673 1691 msgid "The excerpt length lets you set how many characters long the description will be when using the %EXCERPT% token." 1674 1692 msgstr "" 1675 1693 1676 #: ../templates/admin-options.php:27 61694 #: ../templates/admin-options.php:278 1677 1695 msgid "The excerpt will cut off any incomplete words at the end, so don't worry if the character count is a little different." 1678 1696 msgstr "" 1679 1697 1680 #: ../templates/admin-options.php:30 11698 #: ../templates/admin-options.php:303 1681 1699 msgid "You may export your CataBlog data to a XML or CSV file which may be used to backup and protect your work. The XML or CSV file is a simple transfer of the database information itself and the <strong>images are not included in this backup</strong>. To backup your images follow the directions at the bottom of the page." 1682 1700 msgstr "" 1683 1701 1684 #: ../templates/admin-options.php:30 71702 #: ../templates/admin-options.php:309 1685 1703 msgid "Save XML BackUp File" 1686 1704 msgstr "" 1687 1705 1688 #: ../templates/admin-options.php:31 11706 #: ../templates/admin-options.php:313 1689 1707 msgid "Save CSV BackUp File" 1690 1708 msgstr "" 1691 1709 1692 #: ../templates/admin-options.php:3 181710 #: ../templates/admin-options.php:320 1693 1711 #, php-format 1694 1712 msgid "You must have the function %sfputcsv()%s available on your web server's version of PHP for CSV export to work." 1695 1713 msgstr "" 1696 1714 1697 #: ../templates/admin-options.php:32 01715 #: ../templates/admin-options.php:322 1698 1716 msgid "Please contact your server administrator for more information regarding this error." 1699 1717 msgstr "" 1700 1718 1701 #: ../templates/admin-options.php:32 71719 #: ../templates/admin-options.php:329 1702 1720 msgid "Backing Up Images:" 1703 1721 msgstr "" 1704 1722 1705 #: ../templates/admin-options.php:3 281723 #: ../templates/admin-options.php:330 1706 1724 msgid "Please copy the <em>catablog</em> directory to a secure location." 1707 1725 msgstr "" 1708 1726 1709 #: ../templates/admin-options.php:3 291727 #: ../templates/admin-options.php:331 1710 1728 msgid "The directory for this WordPress blog can be located on your web server at:" 1711 1729 msgstr "" 1712 1730 1713 #: ../templates/admin-options.php:34 01731 #: ../templates/admin-options.php:342 1714 1732 msgid "Import XML/CSV Data" 1715 1733 msgstr "" 1716 1734 1717 #: ../templates/admin-options.php:3 481735 #: ../templates/admin-options.php:350 1718 1736 msgid "Replace All Data:" 1719 1737 msgstr "" 1720 1738 1721 #: ../templates/admin-options.php:35 11739 #: ../templates/admin-options.php:353 1722 1740 msgid "Import CataBlog Data" 1723 1741 msgstr "" 1724 1742 1725 #: ../templates/admin-options.php:35 51743 #: ../templates/admin-options.php:357 1726 1744 msgid "You must have the <strong>Simple XML Library</strong> installed on your web server's version of PHP for XML imports to work. Please contact your server administrator for more information regarding this error." 1727 1745 msgstr "" 1728 1746 1729 #: ../templates/admin-options.php:36 01747 #: ../templates/admin-options.php:362 1730 1748 msgid "To import data into your catalog you simply select a XML or CVS file on your hard drive and click the <em>Import CataBlog Data</em> button. You may choose to completely erase all your data before importing by checking the <em>Replace All Data</em> checkbox.<br />Keep in mind, this <strong>does not import or delete images</strong>." 1731 1749 msgstr "" 1732 1750 1733 #: ../templates/admin-options.php:36 31751 #: ../templates/admin-options.php:365 1734 1752 #, php-format 1735 1753 msgid "To import images you should upload them to the <em>originals</em> directory, located at: <em>%s</em>. Once you load the XML or CVS file and the images into the <em>originals</em> directory everything should be set after you %sRegenerate All Images%s in the systems tab." 1736 1754 msgstr "" 1737 1755 1738 #: ../templates/admin-options.php:36 71756 #: ../templates/admin-options.php:369 1739 1757 #, php-format 1740 1758 msgid "You may view XML and CSV examples in the %simport/export documentation%s." 1741 1759 msgstr "" 1742 1760 1743 #: ../templates/admin-options.php:38 11761 #: ../templates/admin-options.php:383 1744 1762 msgid "CataBlog Upload Folders are <strong>Unlocked</strong>" 1745 1763 msgstr "" 1746 1764 1747 #: ../templates/admin-options.php:38 31765 #: ../templates/admin-options.php:385 1748 1766 msgid "CataBlog Upload Folders are <strong>Locked</strong>" 1749 1767 msgstr "" 1750 1768 1751 #: ../templates/admin-options.php:39 11769 #: ../templates/admin-options.php:393 1752 1770 msgid "Lock Folders" 1753 1771 msgstr "" 1754 1772 1755 #: ../templates/admin-options.php:39 31773 #: ../templates/admin-options.php:395 1756 1774 msgid "Unlock Folders" 1757 1775 msgstr "" 1758 1776 1759 #: ../templates/admin-options.php:39 71777 #: ../templates/admin-options.php:399 1760 1778 #, php-format 1761 1779 msgid "You may lock and unlock your <em>catablog</em> folders with these controls. The idea is to unlock the folders, use your FTP client to upload your original files and then lock the folders to protect them from hackers. After unlocking your directories please upload the original files directly into the <strong>%s</strong> folder without replacing it. <strong>Do not replace any of the CataBlog created folders</strong>. You should then regenerate all your thumbnail and lightbox pictures below. These controls may not work on a Windows server, it depends on your servers PHP settings and if the chmod command is supported." 1762 1780 msgstr "" 1763 1781 1764 #: ../templates/admin-options.php:40 21782 #: ../templates/admin-options.php:404 1765 1783 msgid "Rescan Original Image Folder" 1766 1784 msgstr "" 1767 1785 1768 #: ../templates/admin-options.php:40 41786 #: ../templates/admin-options.php:406 1769 1787 msgid "Rescan Original Images Folder Now" 1770 1788 msgstr "" 1771 1789 1772 #: ../templates/admin-options.php:40 61790 #: ../templates/admin-options.php:408 1773 1791 msgid "Click the <em>Rescan Now</em> button to rescan the original catablog images folder and automatically import any new jpeg, gif or png images. It works simply by making a list of all the image names in the database and then compares each file's name in the originals folder against the list of image names in the database. Any newly discovered images will automatically be made into a new catalog item. You should Regenerate Images after running this command." 1774 1792 msgstr "" 1775 1793 1776 #: ../templates/admin-options.php:41 11794 #: ../templates/admin-options.php:413 1777 1795 msgid "Regenerate Images" 1778 1796 msgstr "" 1779 1797 1780 #: ../templates/admin-options.php:41 31798 #: ../templates/admin-options.php:415 1781 1799 msgid "Regenerate All Images Now" 1782 1800 msgstr "" 1783 1801 1784 #: ../templates/admin-options.php:41 51802 #: ../templates/admin-options.php:417 1785 1803 msgid "Click the <em>Regenerate Now</em> button to recreate all the thumbnail and lightbox images that CataBlog has generated over the time you have used it. This is also useful when restoring exported data from another version of CataBlog. after you have uploaded your original images you must regenerate your images so they display properly." 1786 1804 msgstr "" 1787 1805 1788 #: ../templates/admin-options.php:42 01806 #: ../templates/admin-options.php:422 1789 1807 msgid "Remove CataBlog" 1790 1808 msgstr "" 1791 1809 1792 #: ../templates/admin-options.php:42 21810 #: ../templates/admin-options.php:424 1793 1811 msgid "Remove All CataBlog Data" 1794 1812 msgstr "" 1795 1813 1796 #: ../templates/admin-options.php:42 41814 #: ../templates/admin-options.php:426 1797 1815 msgid "Delete your entire catalog, deleting all photos and custom data permanently. Sometimes you can use this to fix an improper installation." 1798 1816 msgstr "" 1799 1817 1800 #: ../templates/admin-options.php:43 31801 #: ../templates/admin-templates-editor.php:6 61818 #: ../templates/admin-options.php:435 1819 #: ../templates/admin-templates-editor.php:67 1802 1820 #, php-format 1803 1821 msgid "or %sundo current changes%s" 1804 1822 msgstr "" 1805 1823 1806 #: ../templates/admin-options.php:734 1824 #: ../templates/admin-options.php:643 1825 msgid "There are errors, please correct them before saving." 1826 msgstr "" 1827 1828 #: ../templates/admin-options.php:755 1807 1829 #: ../templates/admin-regenerate.php:43 1808 1830 #: ../templates/admin-rescan.php:49 … … 1810 1832 msgstr "" 1811 1833 1812 #: ../templates/admin-options.php:7 391834 #: ../templates/admin-options.php:760 1813 1835 msgid "Image rendering is not complete, you should let image rendering complete before leaving this page." 1814 1836 msgstr "" … … 1898 1920 msgstr "" 1899 1921 1900 #: ../templates/admin-templates-editor.php:7 11922 #: ../templates/admin-templates-editor.php:72 1901 1923 msgid "You may change the HTML rendered by CataBlog with this control panel, allowing you to make fundamental changes to how catalogs will appear in your posts. You may choose a template to edit from the list of templates to the right . If you want to setup a photo gallery I would recommend that you use the <strong>Gallery Template</strong> by adding the template parameter to the ShortCode. Example: <code>[catablog template=\"gallery\"]</code>" 1902 1924 msgstr "" 1903 1925 1904 #: ../templates/admin-templates-editor.php:7 61926 #: ../templates/admin-templates-editor.php:77 1905 1927 msgid "If you specify a template in your CataBlog ShortCodes the <strong>default template will be ignored</strong>." 1906 1928 msgstr "" 1907 1929 1908 #: ../templates/admin-templates-editor.php: 791930 #: ../templates/admin-templates-editor.php:80 1909 1931 msgid "If you do not specify a template in your CataBlog ShortCodes then the <strong>default template will be used</strong>." 1910 1932 msgstr "" 1911 1933 1912 #: ../templates/admin-templates-editor.php:8 21934 #: ../templates/admin-templates-editor.php:83 1913 1935 msgid "If you do not specify a template and the default template cannot be found then CataBlog will not be able to render your catalog." 1914 1936 msgstr "" 1915 1937 1916 #: ../templates/admin-templates-editor.php:8 51938 #: ../templates/admin-templates-editor.php:86 1917 1939 #, php-format 1918 1940 msgid "If you need more help read the %shelp panel%s." 1919 1941 msgstr "" 1920 1942 1921 #: ../templates/admin-templates-editor.php:10 41943 #: ../templates/admin-templates-editor.php:105 1922 1944 msgid "Create a New Template File" 1923 1945 msgstr "" 1924 1946 1925 #: ../templates/admin-templates-editor.php:10 71947 #: ../templates/admin-templates-editor.php:108 1926 1948 msgid "Save Other Changes Before Creating A New Template File." 1927 1949 msgstr "" 1928 1950 1929 #: ../templates/admin-templates-editor.php:11 31951 #: ../templates/admin-templates-editor.php:114 1930 1952 msgid "Create Template" 1931 1953 msgstr "" 1932 1954 1933 #: ../templates/admin-templates-editor.php:11 51955 #: ../templates/admin-templates-editor.php:116 1934 1956 msgid "Please enter the name of the new CataBlog Template you wish to create." 1935 1957 msgstr "" 1936 1958 1937 #: ../templates/admin-templates-editor.php:11 61959 #: ../templates/admin-templates-editor.php:117 1938 1960 msgid "If you are missing any system templates you may make them here by typing in their name, such as default." 1939 1961 msgstr "" 1940 1962 1941 #: ../templates/admin-templates-editor.php:11 71963 #: ../templates/admin-templates-editor.php:118 1942 1964 msgid "Please only use underscores, hyphens and alphanumeric characters only." 1943 1965 msgstr "" -
catablog/trunk/readme.txt
r501307 r504559 5 5 Requires at least: 3.1 6 6 Tested up to: 3.3.1 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 9 9 CataBlog is a comprehensive and effortless tool that allows you to create catalogs, stores and galleries for your blog. … … 101 101 102 102 == Changelog == 103 104 = 1.4.2 = 105 * Fix: Updated localization, including a now complete spanish translation. 106 * Fix: All catalog items are saved with a status of published, even with a future date. 107 * Fix: Better validation and error checking for the CataBlog Options Admin Panel. 103 108 104 109 = 1.4.1 = -
catablog/trunk/templates/admin-contextual-help.php
r495986 r504559 70 70 $message .= "<p>"; 71 71 $message .= __("Read more and get the entire list of token at: ", "catablog"); 72 $message .= sprintf(" <a href='http://catablog.illproductions.com/documentation/making-custom-templates/' target='_blank'/>%s</a>", __("CataBlog Documentation - Making Custom Templates", "catablog"));72 $message .= sprintf(" <a href='http://catablog.illproductions.com/documentation/making-custom-templates/' target='_blank'/>%s</a>", "CataBlog Documentation - Making Custom Templates"); 73 73 $message .= "</p>"; 74 74 -
catablog/trunk/templates/admin-new.php
r492787 r504559 33 33 <p id="catablog-disable-flash-form" class="hide"><small> 34 34 <?php _e("Flash uploader not working for you?", "catablog"); ?><br /> 35 <a id="catablog-disable-flash-upload" href='#disable-flash'><?php _e("Disable Flash Upload" ) ?></a>35 <a id="catablog-disable-flash-upload" href='#disable-flash'><?php _e("Disable Flash Upload", "catablog") ?></a> 36 36 </small></p> 37 37 38 38 <p id="catablog-enable-flash-form" class=""><small> 39 39 <?php _e("Why not try the flash uploader?", "catablog"); ?><br /> 40 <a id="catablog-enable-flash-upload" href='#enable-flash'><?php _e("Enable Flash Upload" ) ?></a>40 <a id="catablog-enable-flash-upload" href='#enable-flash'><?php _e("Enable Flash Upload", "catablog") ?></a> 41 41 </small></p> 42 42 -
catablog/trunk/templates/admin-options.php
r498885 r504559 159 159 <label for='public_post_slug'><?php _e("Individual Pages Slug:", "catablog"); ?></label> 160 160 <input type='text' name='public_post_slug' id='public_post_slug' size='20' value='<?php echo $public_posts_slug ?>' /><br /> 161 <small><?php _e("This is the identifying slug your blog will use to create your individual catalog item pages.", "catablog"); ?></small> 161 <small><?php _e("This is the identifying slug your blog will use to create your individual catalog item pages.", "catablog"); ?></small><br /> 162 162 </p> 163 163 … … 165 165 <label for='public_tax_slug'><?php _e("Category Pages Slug:", "catablog"); ?></label> 166 166 <input type='text' name='public_tax_slug' id='public_tax_slug' size='20' value='<?php echo $public_tax_slug ?>' /><br /> 167 <small><?php _e("This is the identifying slug your blog will use to create your catalog archive pages.", "catablog") ?></small> 168 </p> 167 <small><?php _e("This is the identifying slug your blog will use to create your catalog archive pages.", "catablog") ?></small><br /> 168 </p> 169 170 <p class="error hidden"><small><?php _e("Your public slugs cannot be the same.", "catablog"); ?></small></p> 169 171 170 172 <p> </p> … … 186 188 <input type="text" id="nav_prev_label" name="nav_prev_label" value="<?php echo $nav_prev_label ?>" /><br /> 187 189 <small> 188 <?php _e(" What word would youlike to be used for a paginated catalog's previous page link.", "catablog"); ?>190 <?php _e("The word you would like to be used for a paginated catalog's previous page link.", "catablog"); ?> 189 191 </small> 190 192 </p> … … 194 196 <input type="text" id="nav_next_label" name="nav_next_label" value="<?php echo $nav_next_label ?>" /><br /> 195 197 <small> 196 <?php _e(" What word would youlike to be used for a paginated catalog's next page link.", "catablog"); ?>198 <?php _e("The word you would like to be used for a paginated catalog's next page link.", "catablog"); ?> 197 199 </small> 198 200 </p> … … 443 445 ****************************************/ 444 446 $('#save_changes').bind('click', function(event) { 445 var form_action = $('#catablog-options').attr('action');446 var active_tab = $('#catablog-options-menu li.selected a').attr('href');447 448 $('#catablog-options').attr('action', (form_action+active_tab))449 447 $('#catablog-options').submit(); 450 448 }); … … 491 489 var v = this.value; 492 490 if (is_integer(v) && (v > 0)) { 493 $(this).siblings('small.error'). hide();491 $(this).siblings('small.error').addClass('hidden'); 494 492 resize_image_adjustment(); 495 493 jQuery('#demo_box').animate({width:(v-1)}, 100); … … 499 497 var v = this.value; 500 498 if (is_integer(v) && (v > 0)) { 501 $(this).siblings('small.error'). hide();499 $(this).siblings('small.error').addClass('hidden'); 502 500 resize_image_adjustment(); 503 501 jQuery('#demo_box').animate({height:(v-1)}, 100); … … 568 566 ** PUBLIC PANEL 569 567 ****************************************/ 570 $('#public -catalog-slug').attr('readonly', !$('#public-catalog-items').attr('checked'));571 $('#public -catalog-items').bind('click', function(event) {568 $('#public_post_slug, #public_tax_slug').attr('readonly', !$('#public_posts').attr('checked')); 569 $('#public_posts').bind('click', function(event) { 572 570 if (this.checked) { 573 $('#public -catalog-slug').attr('readonly', false);571 $('#public_post_slug, #public_tax_slug').attr('readonly', false); 574 572 } 575 573 else { 576 $('#public-catalog-slug').attr('readonly', true); 577 } 578 }); 574 $('#public_post_slug, #public_tax_slug').attr('readonly', true); 575 } 576 }); 577 $('#public_post_slug, #public_tax_slug').bind('keyup', function() { 578 var post_slug = $('#public_post_slug').val(); 579 var tax_slug = $('#public_tax_slug').val(); 580 if (post_slug == tax_slug) { 581 $(this).parent().siblings('.error').removeClass('hidden'); 582 } 583 else { 584 $(this).parent().siblings('.error').addClass('hidden'); 585 } 586 587 possibly_disable_save_button(); 588 }) 579 589 580 590 … … 624 634 ** GENERAL FORM BINDINGS 625 635 ****************************************/ 636 // check for errors when form is submitted 637 $('#catablog-options').bind('submit', function(event) { 638 if (jQuery('.error:not(.hidden)').size() > 0) { 639 alert("<?php _e('There are errors, please correct them before saving.', 'catablog'); ?>"); 640 return false; 641 } 642 643 var form_action = $(this).attr('action'); 644 var active_tab = $('#catablog-options-menu li.selected a').attr('href'); 645 form_action += (active_tab == undefined) ? "" : active_tab; 646 647 $(this).attr('action', form_action); 648 649 }); 650 626 651 // enter key submits form 627 652 $('#catablog-options input').bind('keydown', function(event) { … … 649 674 } 650 675 else { 651 $(this).siblings('small.error'). show();676 $(this).siblings('small.error').removeClass('hidden'); 652 677 } 653 678 … … 660 685 return confirm(message); 661 686 }) 662 663 687 664 688 -
catablog/trunk/templates/admin-templates-editor.php
r495986 r504559 42 42 <?php endforeach ?> 43 43 44 <li><a href="#new" id="catablog-template-new"> + new</a></li>44 <li><a href="#new" id="catablog-template-new"><?php printf("+ %s", __("new", "catablog")); ?></a></li> 45 45 46 46 <?php else: ?> … … 60 60 <form action="admin.php?page=catablog-templates-save" method="post"> 61 61 <textarea name="template-code" id="catablog-template-code" class="catablog-code" rows="10" cols="30" disabled="disabled"></textarea> 62 62 63 <fieldset> 63 64 <input type="hidden" id="catablog-template-filename" name="catablog-template-filename" value="" />
Note: See TracChangeset
for help on using the changeset viewer.