Changeset 2428225
- Timestamp:
- 11/29/2020 07:39:50 PM (5 years ago)
- Location:
- link-view/trunk
- Files:
-
- 19 added
- 16 deleted
- 6 edited
-
admin/about.php (added)
-
admin/admin.php (modified) (9 diffs)
-
admin/css/about.css (added)
-
admin/css/admin_about.css (deleted)
-
admin/css/admin_settings.css (deleted)
-
admin/css/settings.css (added)
-
admin/includes (deleted)
-
admin/settings.php (added)
-
includes/attribute.php (deleted)
-
includes/config-admin-data.php (added)
-
includes/config.php (added)
-
includes/links.php (added)
-
includes/option.php (added)
-
includes/options-helptexts.php (deleted)
-
includes/options.php (deleted)
-
includes/options_helptexts.php (deleted)
-
includes/sc_linkview.php (deleted)
-
includes/sc_linkview_helptexts.php (deleted)
-
includes/shortcode-atts-helptexts.php (deleted)
-
includes/shortcode-atts.php (deleted)
-
includes/shortcode.php (deleted)
-
includes/shortcodes.php (deleted)
-
includes/widget-helptexts.php (deleted)
-
includes/widget.php (deleted)
-
includes/widget_helptexts.php (deleted)
-
languages/link-view-de_DE.mo (modified) (previous)
-
languages/link-view-de_DE.po (modified) (84 diffs)
-
languages/link-view.pot (modified) (2 diffs)
-
link-view.php (modified) (11 diffs)
-
readme.txt (modified) (2 diffs)
-
shortcode (added)
-
shortcode/config-admin-data.php (added)
-
shortcode/config.php (added)
-
shortcode/factory.php (added)
-
shortcode/link.php (added)
-
shortcode/shortcode.php (added)
-
shortcode/slider.php (added)
-
widget (added)
-
widget/config-admin-data.php (added)
-
widget/config.php (added)
-
widget/widget.php (added)
Legend:
- Unmodified
- Added
- Removed
-
link-view/trunk/admin/admin.php
r2286812 r2428225 7 7 8 8 // declare( strict_types=1 ); Remove for now due to warnings in php <7.0! 9 10 namespace WordPress\Plugins\mibuthu\LinkView\Admin; 11 12 use WordPress\Plugins\mibuthu\LinkView\Config; 13 9 14 if ( ! defined( 'WP_ADMIN' ) ) { 10 15 exit(); 11 16 } 12 17 13 require_once LV_PATH . 'includes/options.php';18 require_once PLUGIN_PATH . 'includes/config.php'; 14 19 15 20 … … 19 24 * This class handles all LinkView admin pages. 20 25 */ 21 class LV_Admin {26 class Admin { 22 27 23 28 /** 24 * C lass singletoninstance reference29 * Config class instance reference 25 30 * 26 * @var self31 * @var Config 27 32 */ 28 private static $instance; 29 30 /** 31 * Options class instance reference 32 * 33 * @var LV_Options 34 */ 35 private $options; 36 37 38 /** 39 * Singleton provider and setup 40 * 41 * @return self 42 */ 43 public static function &get_instance() { 44 if ( ! isset( self::$instance ) ) { 45 self::$instance = new self(); 46 } 47 return self::$instance; 48 } 33 private $config; 49 34 50 35 51 36 /** 52 37 * Class constructor which initializes required variables 38 * 39 * @param Config $config_instance The Config instance as a reference. 53 40 */ 54 p rivate function __construct() {55 $this-> options = LV_Options::get_instance();41 public function __construct( &$config_instance ) { 42 $this->config = $config_instance; 56 43 } 57 44 … … 62 49 * @return void 63 50 */ 64 public function init_admin_page() { 65 add_action( 'admin_menu', array( &$this, 'register_pages' ) ); 51 public function init() { 52 add_action( 'admin_menu', [ $this, 'register_pages' ] ); 53 add_action( 'plugins_loaded', [ $this->config, 'version_upgrade' ] ); 66 54 } 67 55 … … 77 65 sprintf( __( 'About %1$s', 'link-view' ), 'LinkView' ), 78 66 sprintf( __( 'About %1$s', 'link-view' ), 'LinkView' ), 79 $this-> options->get( 'lv_req_cap' ),80 'lv _admin_about',81 array( &$this, 'show_about_page' )67 $this->config->req_capabilities, 68 'lvw_admin_about', 69 [ $this, 'show_about_page' ] 82 70 ); 83 add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_about_styles' ));71 add_action( 'admin_print_scripts-' . $page, [ $this, 'embed_about_styles' ] ); 84 72 $page = add_submenu_page( 85 73 'options-general.php', … … 87 75 'LinkView', 88 76 'manage_options', 89 'lv _admin_options',90 array( &$this, 'show_settings_page' )77 'lvw_admin_settings', 78 [ &$this, 'show_settings_page' ] 91 79 ); 92 add_action( 'admin_print_scripts-' . $page, array( &$this, 'embed_settings_styles' ));80 add_action( 'admin_print_scripts-' . $page, [ &$this, 'embed_settings_styles' ] ); 93 81 } 94 82 … … 100 88 */ 101 89 public function show_about_page() { 102 require_once LV_PATH . 'admin/includes/admin-about.php'; 103 LV_Admin_About::get_instance()->show_page(); 90 require_once PLUGIN_PATH . 'admin/about.php'; 91 $about = new About( $this->config ); 92 $about->show_page(); 104 93 } 105 94 … … 111 100 */ 112 101 public function show_settings_page() { 113 require_once LV_PATH . 'admin/includes/admin-settings.php'; 114 LV_Admin_Settings::get_instance()->show_page(); 102 require_once PLUGIN_PATH . 'admin/settings.php'; 103 $settings = new Settings( $this->config ); 104 $settings->show_page(); 115 105 } 116 106 … … 123 113 */ 124 114 public function embed_about_styles() { 125 wp_enqueue_style( 'lv _admin_about', LV_URL . 'admin/css/admin_about.css', array(), '1.0' );115 wp_enqueue_style( 'lvw_admin_about', PLUGIN_URL . 'admin/css/about.css', [], '1.0' ); 126 116 } 127 117 … … 134 124 */ 135 125 public function embed_settings_styles() { 136 wp_enqueue_style( 'lv _admin_settings', LV_URL . 'admin/css/admin_settings.css', array(), '1.0' );126 wp_enqueue_style( 'lvw_admin_settings', PLUGIN_URL . 'admin/css/settings.css', [], '1.0' ); 137 127 } 138 128 -
link-view/trunk/languages/link-view-de_DE.po
r2286812 r2428225 10 10 msgstr "" 11 11 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/link-view/\n" 12 "POT-Creation-Date: 2020- 04-19 16:29+0200\n"12 "POT-Creation-Date: 2020-11-29 20:23+0100\n" 13 13 "Last-Translator: mibuthu, 2020\n" 14 14 "Language-Team: German (Germany) (https://www.transifex.com/mibuthu/teams/70724/de_DE/)\n" … … 19 19 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 20 21 #: admin/a dmin.php:77 admin/admin.php:78 admin/includes/admin-about.php:7621 #: admin/about.php:64 admin/admin.php:65 admin/admin.php:66 22 22 #, php-format 23 23 msgid "About %1$s" 24 24 msgstr "Über %1$s" 25 25 26 #: admin/admin.php:86 admin/includes/admin-about.php:156 27 #: admin/includes/admin-settings.php:75 28 #, php-format 29 msgid "%1$s Settings" 30 msgstr "%1$s Einstellungen" 31 32 #: admin/includes/admin-about.php:99 admin/includes/admin-about.php:223 26 #: admin/about.php:87 admin/about.php:207 33 27 msgid "General" 34 28 msgstr "Allgemein" 35 29 36 #: admin/ includes/admin-about.php:100 admin/includes/admin-about.php:21930 #: admin/about.php:88 admin/about.php:203 37 31 msgid "Shortcode Attributes" 38 32 msgstr "Shortcode Attribute" 39 33 40 #: admin/ includes/admin-about.php:11934 #: admin/about.php:107 41 35 msgid "Help and Instructions" 42 36 msgstr "Hilfe und Anleitungen" 43 37 44 #: admin/ includes/admin-about.php:12038 #: admin/about.php:108 45 39 msgid "Show links in posts or pages" 46 40 msgstr "Anzeigen von Links in Beiträgen oder Seiten" 47 41 48 #: admin/ includes/admin-about.php:12242 #: admin/about.php:110 49 43 #, php-format 50 44 msgid "" … … 55 49 "im Beitrags- bzw. Seitentext eingefügt werden." 56 50 57 #: admin/ includes/admin-about.php:12351 #: admin/about.php:111 58 52 msgid "" 59 53 "The listed links and their styles can be modified with the available " … … 63 57 "Shortcode-Attribute angepasst werden." 64 58 65 #: admin/ includes/admin-about.php:12459 #: admin/about.php:112 66 60 msgid "You can combine as much attributes as you want." 67 61 msgstr "" … … 69 63 "verwendet werden." 70 64 71 #: admin/ includes/admin-about.php:12565 #: admin/about.php:113 72 66 #, php-format 73 67 msgid "" … … 78 72 "folgendermaßen aussehen" 79 73 80 #: admin/ includes/admin-about.php:12774 #: admin/about.php:115 81 75 msgid "" 82 76 "Below you can find tables with all supported attributes, their descriptions " … … 86 80 "mit deren Beschreibung und verfügbaren Optionen aufgelistet." 87 81 88 #: admin/ includes/admin-about.php:12982 #: admin/about.php:117 89 83 msgid "Show links in sidebars and widget areas" 90 84 msgstr "Anzeigen von Links in Seitenleisten und Widget-Bereichen" 91 85 92 #: admin/ includes/admin-about.php:13186 #: admin/about.php:119 93 87 #, php-format 94 88 msgid "With the %1$s Widget you can add links in sidebars and widget areas." … … 97 91 "hinzugefügt werden." 98 92 99 #: admin/ includes/admin-about.php:13493 #: admin/about.php:122 100 94 #, php-format 101 95 msgid "" … … 105 99 "Bereich." 106 100 107 #: admin/ includes/admin-about.php:145101 #: admin/about.php:131 108 102 #, php-format 109 103 msgid "" … … 116 110 "Attribute können auch im Widget verwendet werden." 117 111 118 #: admin/ includes/admin-about.php:148112 #: admin/about.php:134 119 113 #, php-format 120 114 msgid "Press %1$s to confirm the changes." 121 115 msgstr "Drücke %1$s um die Änderungen zu bestätigen." 122 116 123 #: admin/includes/admin-about.php:160 117 #: admin/about.php:141 admin/admin.php:74 admin/settings.php:62 118 #, php-format 119 msgid "%1$s Settings" 120 msgstr "%1$s Einstellungen" 121 122 #: admin/about.php:145 124 123 #, php-format 125 124 msgid "" … … 130 129 "zur Anpassung des Plugins zu finden." 131 130 132 #: admin/ includes/admin-about.php:180131 #: admin/about.php:164 133 132 msgid "About the plugin author" 134 133 msgstr "Über den Autor des Plugins" 135 134 136 #: admin/ includes/admin-about.php:182135 #: admin/about.php:166 137 136 #, php-format 138 137 msgid "" … … 143 142 "sind unter der %2$s zu finden." 144 143 145 #: admin/ includes/admin-about.php:182144 #: admin/about.php:166 146 145 msgid "WordPress plugin site" 147 146 msgstr "WordPress Plugin Seite" 148 147 149 #: admin/ includes/admin-about.php:183148 #: admin/about.php:167 150 149 #, php-format 151 150 msgid "If you like the plugin please rate it on the %1$s." 152 151 msgstr "Wenn dir das Plugin gefällt bewerte es bitte unter der %1$s." 153 152 154 #: admin/ includes/admin-about.php:183153 #: admin/about.php:167 155 154 msgid "WordPress plugin review site" 156 155 msgstr "WordPress Plugin-Bewertungsseite" 157 156 158 #: admin/ includes/admin-about.php:184157 #: admin/about.php:168 159 158 msgid "" 160 159 "If you want to support the plugin I would be happy to get a small donation" … … 163 162 "Spende freuen" 164 163 165 #: admin/includes/admin-about.php:185 admin/includes/admin-about.php:186 166 #: admin/includes/admin-about.php:187 164 #: admin/about.php:169 admin/about.php:170 admin/about.php:171 167 165 #, php-format 168 166 msgid "Donate with %1$s" 169 167 msgstr "Spende über %1$s" 170 168 171 #: admin/ includes/admin-about.php:201169 #: admin/about.php:185 172 170 msgid "Translations" 173 171 msgstr "Übersetzungen" 174 172 175 #: admin/ includes/admin-about.php:203173 #: admin/about.php:187 176 174 msgid "Please help translating this plugin into your language." 177 175 msgstr "Bitte unterstütze die Übersetzung dieses Plugins in deine Sprache." 178 176 179 #: admin/ includes/admin-about.php:204177 #: admin/about.php:188 180 178 #, php-format 181 179 msgid "You can submit your translations at %1$s." 182 180 msgstr "Du kannst deine Übersetzungen über %1$s einreichen." 183 181 184 #: admin/ includes/admin-about.php:205182 #: admin/about.php:189 185 183 msgid "" 186 184 "There the source strings will be kept in sync with the actual development " … … 192 190 "Übersetzungen aktualisiert." 193 191 194 #: admin/ includes/admin-about.php:221192 #: admin/about.php:205 195 193 #, php-format 196 194 msgid "" … … 201 199 " aufgelistet" 202 200 203 #: admin/ includes/admin-about.php:225201 #: admin/about.php:209 204 202 msgid "Link List" 205 203 msgstr "Link Liste" 206 204 207 #: admin/ includes/admin-about.php:227205 #: admin/about.php:211 208 206 msgid "Link Slider" 209 207 msgstr "Link Slider" 210 208 211 #: admin/includes/admin-about.php:231 212 #: includes/shortcode-atts-helptexts.php:163 213 #: includes/shortcode-atts-helptexts.php:174 209 #: admin/about.php:215 shortcode/config-admin-data.php:238 210 #: shortcode/config-admin-data.php:250 214 211 msgid "Multi-column layout types and options" 215 212 msgstr "Mehr-Spalten-Layout Typen und Optionen" 216 213 217 #: admin/ includes/admin-about.php:232214 #: admin/about.php:216 218 215 msgid "" 219 216 "There are 3 different types of multiple column layouts for category or link-" … … 225 222 "einige Vorteile aber auch Nachteile." 226 223 227 #: admin/ includes/admin-about.php:233224 #: admin/about.php:217 228 225 msgid "Additionally the available layouts can be modified with their options" 229 226 msgstr "" … … 231 228 "werden" 232 229 233 #: admin/ includes/admin-about.php:235230 #: admin/about.php:219 234 231 msgid "layout type" 235 232 msgstr "Layout Typ" 236 233 237 #: admin/ includes/admin-about.php:235234 #: admin/about.php:219 238 235 msgid "type description" 239 236 msgstr "Beschreibung des Typs" 240 237 241 #: admin/ includes/admin-about.php:236 includes/shortcode-atts-helptexts.php:76238 #: admin/about.php:220 shortcode/config-admin-data.php:136 242 239 msgid "Number" 243 240 msgstr "Zahl" 244 241 245 #: admin/ includes/admin-about.php:236242 #: admin/about.php:220 246 243 msgid "Use a single number to specify a static number of columns." 247 244 msgstr "" … … 249 246 "definieren." 250 247 251 #: admin/ includes/admin-about.php:237248 #: admin/about.php:221 252 249 msgid "This is a short form of the static layout type (see below)." 253 250 msgstr "Dies ist die Kurzform für den statischen Layout-Typ (siehe unten)." 254 251 255 #: admin/ includes/admin-about.php:238252 #: admin/about.php:222 256 253 msgid "" 257 254 "Set a static number of columns. The categories or links will be arranged in " … … 261 258 "Spalten angeordnet." 262 259 263 #: admin/includes/admin-about.php:239 admin/includes/admin-about.php:242 264 #: admin/includes/admin-about.php:246 260 #: admin/about.php:223 admin/about.php:226 admin/about.php:230 265 261 msgid "available options" 266 262 msgstr "verfügbare Optionen" 267 263 268 #: admin/ includes/admin-about.php:240264 #: admin/about.php:224 269 265 msgid "" 270 266 "Provide a single number which specifys the number of columns. If no value is" … … 274 270 "angegeben wird, werden standardmäßig 3 Spalten angezeigt." 275 271 276 #: admin/ includes/admin-about.php:241 admin/includes/admin-about.php:245272 #: admin/about.php:225 admin/about.php:229 277 273 #, php-format 278 274 msgid "This type uses the %1$s to arrange the columns." 279 275 msgstr "Dieser Typ verwendet die %1$s für die Anordnung der Spalten." 280 276 281 #: admin/ includes/admin-about.php:241277 #: admin/about.php:225 282 278 msgid "multi-column feature of CSS" 283 279 msgstr "Mehrspalten-Feature von CSS" 284 280 285 #: admin/ includes/admin-about.php:243281 #: admin/about.php:227 286 282 #, php-format 287 283 msgid "" … … 292 288 "Feature verfügbar sind (siehe %1$s für weitere Informationen)." 293 289 294 #: admin/ includes/admin-about.php:243 admin/includes/admin-about.php:247290 #: admin/about.php:227 admin/about.php:231 295 291 msgid "this link" 296 292 msgstr "diesem Link" 297 293 298 #: admin/ includes/admin-about.php:244294 #: admin/about.php:228 299 295 msgid "" 300 296 "The given attributes will be added to the wrapper div element. Also the " … … 304 300 " Zusätzlich werden die Browser-spezifischen Attribute ergänzt." 305 301 306 #: admin/ includes/admin-about.php:245302 #: admin/about.php:229 307 303 #, php-format 308 304 msgid "%1$s grid layout javascript library" 309 305 msgstr "%1$s Raster Layout Javascript Bibliothek" 310 306 311 #: admin/ includes/admin-about.php:247312 #, php-format 313 msgid "" 314 "You can use all Options which are available for the Masonry library (see "307 #: admin/about.php:231 308 #, php-format 309 msgid "" 310 "You can use all options which are available for the Masonry library (see " 315 311 "%1$s for detailed information)." 316 312 msgstr "" … … 318 314 "Bibliothek verfügbar sind (siehe %1$s für weitere Informationen)." 319 315 320 #: admin/ includes/admin-about.php:248316 #: admin/about.php:232 321 317 msgid "The given options will be forwarded to the javascript library." 322 318 msgstr "" … … 324 320 "weitergeleitet." 325 321 326 #: admin/ includes/admin-about.php:251322 #: admin/about.php:235 327 323 msgid "Usage" 328 324 msgstr "Verwendung" 329 325 330 #: admin/ includes/admin-about.php:252326 #: admin/about.php:236 331 327 msgid "" 332 328 "For the most types and options it is recommended to define a fixed width for" … … 338 334 "gesetzt werden, z.B. über die entsprechenden CSS-Einträge:" 339 335 340 #: admin/ includes/admin-about.php:253336 #: admin/about.php:237 341 337 msgid "" 342 338 "Depending on the type and options there are probably more css modifications " … … 346 342 "erforderlich, um das Mehrspalten-Layout korrekt darzustellen." 347 343 348 #: admin/ includes/admin-about.php:256344 #: admin/about.php:240 349 345 #, php-format 350 346 msgid "" … … 356 352 "zu finden sind." 357 353 358 #: admin/ includes/admin-about.php:259 includes/options-helptexts.php:47354 #: admin/about.php:243 359 355 #, php-format 360 356 msgid "CSS-code for %1$s" 361 357 msgstr "CSS-Code für %1$s" 362 358 363 #: admin/ includes/admin-about.php:265359 #: admin/about.php:249 364 360 #, php-format 365 361 msgid "" … … 372 368 "getrennt durch eine Pipe %1$s angegeben werden." 373 369 374 #: admin/ includes/admin-about.php:266 includes/options-helptexts.php:53375 #: includes/shortcode-atts-helptexts.php:27370 #: admin/about.php:250 includes/config-admin-data.php:91 371 #: shortcode/config-admin-data.php:78 376 372 msgid "Examples" 377 373 msgstr "Beispiele" 378 374 379 #: admin/ includes/admin-about.php:267375 #: admin/about.php:251 380 376 msgid "show the categories in 3 static columns" 381 377 msgstr "zeigt die Kategorien in 3 statischen Spalten" 382 378 383 #: admin/ includes/admin-about.php:268379 #: admin/about.php:252 384 380 msgid "show the link-lists in 2 static columns" 385 381 msgstr "zeigt die Link-Liste in 2 statischen Spalten" 386 382 387 #: admin/ includes/admin-about.php:269383 #: admin/about.php:253 388 384 msgid "" 389 385 "show the categories in columns with the css column properties with a fixed " … … 393 389 "fixen Spaltenbreite pro Kategorie" 394 390 395 #: admin/ includes/admin-about.php:270391 #: admin/about.php:254 396 392 msgid "" 397 393 "show the link-lists in 4 columns by using the CSS multi column properties" … … 400 396 "Features" 401 397 402 #: admin/ includes/admin-about.php:271398 #: admin/about.php:255 403 399 msgid "" 404 400 "show the categories in columns by using the masonry script (with some " … … 408 404 "einigen spezifischen Masonry Einstellungen)" 409 405 410 #: admin/ includes/admin-about.php:289406 #: admin/about.php:273 411 407 msgid "Attribute name" 412 408 msgstr "Name" 413 409 414 #: admin/includes/admin-about.php:290 415 #: includes/shortcode-atts-helptexts.php:102 410 #: admin/about.php:274 shortcode/config-admin-data.php:164 416 411 msgid "Value options" 417 412 msgstr "zulässige Werte" 418 413 419 #: admin/ includes/admin-about.php:291414 #: admin/about.php:275 420 415 msgid "Default value" 421 416 msgstr "Standard-Wert" 422 417 423 #: admin/ includes/admin-about.php:292418 #: admin/about.php:276 424 419 msgid "Description" 425 420 msgstr "Beschreibung" 426 421 427 #: includes/ options-helptexts.php:16422 #: includes/config-admin-data.php:46 428 423 #, php-format 429 424 msgid "Required capabilities to show the %1$s page" 430 425 msgstr "Erforderliche Rechte zur Anzeige der %1$s Seite" 431 426 432 #: includes/ options-helptexts.php:16 includes/options-helptexts.php:22433 #: includes/ options-helptexts.php:42427 #: includes/config-admin-data.php:46 includes/config-admin-data.php:53 428 #: includes/config-admin-data.php:71 434 429 msgid "About" 435 430 msgstr "Über" 436 431 437 #: includes/ options-helptexts.php:18 includes/options-helptexts.php:32432 #: includes/config-admin-data.php:48 includes/config-admin-data.php:62 438 433 msgid "Default" 439 434 msgstr "Standard" 440 435 441 #: includes/ options-helptexts.php:22436 #: includes/config-admin-data.php:53 442 437 #, php-format 443 438 msgid "" … … 448 443 "Seite festgelegt werden." 449 444 450 #: includes/ options-helptexts.php:23 includes/options-helptexts.php:41445 #: includes/config-admin-data.php:54 includes/config-admin-data.php:70 451 446 #, php-format 452 447 msgid "More information can be found in the %1$s." 453 448 msgstr "Weitere Informationen sind im %1$s zu finden." 454 449 455 #: includes/ options-helptexts.php:28450 #: includes/config-admin-data.php:59 456 451 msgid "Required role to manage links" 457 452 msgstr "Erforderliche Rolle für das Link-Management" 458 453 459 #: includes/ options-helptexts.php:40454 #: includes/config-admin-data.php:69 460 455 msgid "With this option minimum required role to manage links can be set" 461 456 msgstr "" … … 463 458 "für das Link-Management erforderlich ist" 464 459 465 #: includes/ options-helptexts.php:40460 #: includes/config-admin-data.php:69 466 461 msgid "Capability" 467 462 msgstr "Capability" 468 463 469 #: includes/ options-helptexts.php:42464 #: includes/config-admin-data.php:71 470 465 #, php-format 471 466 msgid "" … … 476 471 "Seite hat, wenn die Rechte auf %2$s gesetzt sind." 477 472 478 #: includes/options-helptexts.php:48 479 #, php-format 480 msgid "" 481 "With this option you can specify CSS-code for the links displayed by the " 473 #: includes/config-admin-data.php:76 474 #, php-format 475 msgid "Custom CSS classes for %1$s" 476 msgstr "Benutzerdefinierte CSS-Klassen für %1$s" 477 478 #: includes/config-admin-data.php:78 479 #, php-format 480 msgid "" 481 "With this option you can specify custom CSS classes which will be added to " 482 "the wrapper div of the %1$s shortcode." 483 msgstr "" 484 "Mit dieser Option können spezifische CSS-Klassen definiert werden, die im " 485 "Wrapper div des %1$s Shortcodes ergänzt werden." 486 487 #: includes/config-admin-data.php:79 shortcode/config-admin-data.php:205 488 #, php-format 489 msgid "Use the %1$s to seperate multiple classes." 490 msgstr "Verwende %1$s um mehrere Klassen voneinander zu trennen." 491 492 #: includes/config-admin-data.php:84 493 #, php-format 494 msgid "Custom CSS for %1$s" 495 msgstr "Benutzerdefiniertes CSS für %1$s" 496 497 #: includes/config-admin-data.php:86 498 #, php-format 499 msgid "" 500 "With this option you can specify custom CSS for the links displayed by the " 482 501 "%1$s shortcode." 483 502 msgstr "" … … 485 504 "angezeigten Links definiert werden." 486 505 487 #: includes/ options-helptexts.php:49506 #: includes/config-admin-data.php:87 488 507 #, php-format 489 508 msgid "" … … 494 513 "Shortcode hinzugefügt werden" 495 514 496 #: includes/ options-helptexts.php:49 includes/options-helptexts.php:52515 #: includes/config-admin-data.php:87 includes/config-admin-data.php:90 497 516 msgid "e.g." 498 517 msgstr "z.B." 499 518 500 #: includes/ options-helptexts.php:50519 #: includes/config-admin-data.php:88 501 520 msgid "" 502 521 "All available classes can be found in the sourcecode of a post or page where" … … 506 525 "Seite ersichtlich, in dem der Shortcode oder das Widget eingebunden ist." 507 526 508 #: includes/ options-helptexts.php:51527 #: includes/config-admin-data.php:89 509 528 #, php-format 510 529 msgid "" … … 516 535 "werden." 517 536 518 #: includes/shortcode-atts-helptexts.php:16537 #: shortcode/config-admin-data.php:66 519 538 msgid "This attribute specifies how the links are displayed." 520 539 msgstr "Dieses Attribute definiert, wie die Links angezeigt werden." 521 540 522 #: includes/shortcode-atts-helptexts.php:17541 #: shortcode/config-admin-data.php:67 523 542 msgid "" 524 543 "Showing the links in a list is the default, alternatively the links can be " … … 528 547 "die Links als Slider angezeigt werden." 529 548 530 #: includes/shortcode-atts-helptexts.php:22549 #: shortcode/config-admin-data.php:72 531 550 msgid "category slugs" 532 551 msgstr "Kategorie Titelform" 533 552 534 #: includes/shortcode-atts-helptexts.php:23553 #: shortcode/config-admin-data.php:74 535 554 msgid "" 536 555 "This attribute specifies the displayed link categories. Default is an empty " … … 540 559 "ein leerer Text um alle Kategorien anzuzeigen." 541 560 542 #: includes/shortcode-atts-helptexts.php:24561 #: shortcode/config-admin-data.php:75 543 562 msgid "" 544 563 "Links with categories that doesn´t match the filter will not be displayed." … … 547 566 "angezeigt." 548 567 549 #: includes/shortcode-atts-helptexts.php:25568 #: shortcode/config-admin-data.php:76 550 569 msgid "" 551 570 "The filter is specified via the given category slug. The simplest version is" … … 555 574 "ist ein einzelner Slug, um nur die Links dieser einen Kategorie anzuzeigen." 556 575 557 #: includes/shortcode-atts-helptexts.php:26576 #: shortcode/config-admin-data.php:77 558 577 #, php-format 559 578 msgid "" … … 564 583 "%1$s oder %2$s getrennt sind, angegeben werden." 565 584 566 #: includes/shortcode-atts-helptexts.php:28585 #: shortcode/config-admin-data.php:79 567 586 #, php-format 568 587 msgid "Show all links with category %1$s." 569 588 msgstr "Zeige alle Links der Kategorie %1$s." 570 589 571 #: includes/shortcode-atts-helptexts.php:29590 #: shortcode/config-admin-data.php:80 572 591 #, php-format 573 592 msgid "Show all links with category %1$s or %2$s." 574 593 msgstr "Zeige alle Links mit Kategorie %1$s oder %2$s." 575 594 576 #: includes/shortcode-atts-helptexts.php:35595 #: shortcode/config-admin-data.php:87 577 596 msgid "This attribute specifies which categories should be excluded." 578 597 msgstr "" 579 598 "Dieses Attribut definiert welche Kategorien ausgeschlossen werden sollen." 580 599 581 #: includes/shortcode-atts-helptexts.php:36600 #: shortcode/config-admin-data.php:88 582 601 #, php-format 583 602 msgid "This attribute is only considered if the attribute %1$s is not set." … … 586 605 "gesetzt ist." 587 606 588 #: includes/shortcode-atts-helptexts.php:37607 #: shortcode/config-admin-data.php:89 589 608 msgid "" 590 609 "If the category name has spaces, the name must be surrounded by quotes." … … 593 612 "Anführungszeichen gesetzt werden." 594 613 595 #: includes/shortcode-atts-helptexts.php:38614 #: shortcode/config-admin-data.php:90 596 615 #, php-format 597 616 msgid "" … … 602 621 "durch %1$s getrennt sind, angegeben werden." 603 622 604 #: includes/shortcode-atts-helptexts.php:39623 #: shortcode/config-admin-data.php:91 605 624 msgid "Example" 606 625 msgstr "Beispiel" 607 626 608 #: includes/shortcode-atts-helptexts.php:45 609 msgid "This attribute specifies if the category name is shown as a headline." 627 #: shortcode/config-admin-data.php:97 628 msgid "By default the links are grouped by category." 629 msgstr "Standardmäßig werden die Links nach Kategorie gruppiert." 630 631 #: shortcode/config-admin-data.php:98 632 msgid "To show all links in one list this option can be disabled." 633 msgstr "" 634 "Um alle Links in einer Liste anzuzeigen kann diese Einstellung deaktiviert " 635 "werden." 636 637 #: shortcode/config-admin-data.php:103 638 msgid "" 639 "This attribute specifies if the category name is shown as a headline if " 640 "category grouping is enabled." 610 641 msgstr "" 611 642 "Dieses Attribut definiert ob der Kategorie-Name als Überschrift angezeigt " 612 "wird." 613 614 #: includes/shortcode-atts-helptexts.php:51 615 msgid "" 616 "This attribute specifies if the number of links shall be displayed in " 617 "brackets next to the category name in the headline." 618 msgstr "" 619 "Dieses Attribute definiert ob die Anzahl der Links in Klammern neben dem " 620 "Kategorie-Namen in der Überschrift angezeigt werden sollen." 621 622 #: includes/shortcode-atts-helptexts.php:52 623 #, php-format 624 msgid "" 625 "The headline with the category name must be displayed (%1$s) to show the " 626 "number of links." 627 msgstr "" 628 "Die Überschrift mit dem Kategorie-Namen muss angezeigt werden (%1$s), um die" 629 " Anzahl der Links anzeigen zu können." 630 631 #: includes/shortcode-atts-helptexts.php:57 643 "wird, wenn die Kategorie-Gruppierung aktiviert ist." 644 645 #: shortcode/config-admin-data.php:109 646 msgid "" 647 "If enabled the number of links is displayed in brackets next to the category" 648 " name in the headline." 649 msgstr "" 650 "Wenn aktiviert, wird die Anzahl der Links in Klammern neben dem Kategorie-" 651 "Namen in der Überschrift angezeigt." 652 653 #: shortcode/config-admin-data.php:110 654 #, php-format 655 msgid "" 656 "The shortcode options %1$s and %2$s must be enabled to display the number." 657 msgstr "" 658 "Die Shortcode-Einstellungen %1$s und %2$s müssen für die Anzeige der Anzahl " 659 "aktiviert sein." 660 661 #: shortcode/config-admin-data.php:116 632 662 msgid "" 633 663 "This attribute specifies the sort parameter of the links for each category." … … 636 666 "Kategorie." 637 667 638 #: includes/shortcode-atts-helptexts.php:58668 #: shortcode/config-admin-data.php:117 639 669 msgid "By default the links are sorted according the link name." 640 670 msgstr "Standardmäßig werden die Links an dem Link-Name sortiert." 641 671 642 #: includes/shortcode-atts-helptexts.php:59672 #: shortcode/config-admin-data.php:118 643 673 #, php-format 644 674 msgid "A random order can be specify by %1$s." 645 675 msgstr "Eine zufällige Anordnung kann durch %1$s erreicht werden." 646 676 647 #: includes/shortcode-atts-helptexts.php:61677 #: shortcode/config-admin-data.php:120 648 678 #, php-format 649 679 msgid "" … … 654 684 "WordPress Codex %2$s zu finden." 655 685 656 #: includes/shortcode-atts-helptexts.php:65686 #: shortcode/config-admin-data.php:124 657 687 #, php-format 658 688 msgid "See also the attribute %1$s to specify the order direction." 659 689 msgstr "Siehe auch das Attribut %1$s, um die Sortierrichtung zu definieren." 660 690 661 #: includes/shortcode-atts-helptexts.php:70691 #: shortcode/config-admin-data.php:130 662 692 #, php-format 663 693 msgid "This attribute sets the order direction for the %1$s attribute." 664 694 msgstr "Dieses Attribut definiert die Sortierrichtung des Attributs %1$s." 665 695 666 #: includes/shortcode-atts-helptexts.php:71696 #: shortcode/config-admin-data.php:131 667 697 #, php-format 668 698 msgid "The available options are %1$s (default) and %2$s." 669 699 msgstr "Die verfügbaren Optionen sind %1$s (Standard) und %2$s." 670 700 671 #: includes/shortcode-atts-helptexts.php:77701 #: shortcode/config-admin-data.php:138 672 702 msgid "This attribute sets the number of displayed links for each category." 673 703 msgstr "" 674 704 "Dieses Attribute definiert die Anzahl der angezeigten Links pro Kategorie." 675 705 676 #: includes/shortcode-atts-helptexts.php:78706 #: shortcode/config-admin-data.php:139 677 707 msgid "A number smaller than 0 displays all links." 678 708 msgstr "Eine Nummer kleiner als 0 zeigt alle Links." 679 709 680 #: includes/shortcode-atts-helptexts.php:84710 #: shortcode/config-admin-data.php:145 681 711 msgid "" 682 712 "This attribute specifies if the image shall be displayed instead of the " … … 685 715 "Dieses Attribut definiert, ob das Bild anstelle des Namens angezeigt wird." 686 716 687 #: includes/shortcode-atts-helptexts.php:85717 #: shortcode/config-admin-data.php:146 688 718 msgid "This attribute is only considered for links where an image is set." 689 719 msgstr "" … … 691 721 "haben." 692 722 693 #: includes/shortcode-atts-helptexts.php:91723 #: shortcode/config-admin-data.php:153 694 724 msgid "With this attribute more complex display options can be defined." 695 725 msgstr "" … … 697 727 "werden." 698 728 699 #: includes/shortcode-atts-helptexts.php:92729 #: shortcode/config-admin-data.php:154 700 730 #, php-format 701 731 msgid "" … … 706 736 "Attribut %1$s) angezeigt." 707 737 708 #: includes/shortcode-atts-helptexts.php:93738 #: shortcode/config-admin-data.php:155 709 739 msgid "" 710 740 "By specifying the below described JSON structure complex display options can" … … 714 744 "Optionen definiert werden." 715 745 716 #: includes/shortcode-atts-helptexts.php:94746 #: shortcode/config-admin-data.php:156 717 747 msgid "" 718 748 "Please use single quotes for defining this attribute because the double " … … 723 753 "erforderlich sind." 724 754 725 #: includes/shortcode-atts-helptexts.php:96755 #: shortcode/config-admin-data.php:158 726 756 #, php-format 727 757 msgid "" … … 731 761 "Dieses Attribute kann auch als Shortcode-Inhalt definiert werden, z.B. %1$s." 732 762 733 #: includes/shortcode-atts-helptexts.php:97763 #: shortcode/config-admin-data.php:159 734 764 msgid "JSON data" 735 765 msgstr "JSON-Daten" 736 766 737 #: includes/shortcode-atts-helptexts.php:99767 #: shortcode/config-admin-data.php:161 738 768 msgid "Examples with all possible options" 739 769 msgstr "Beispiele mit allen möglichen Optionen" 740 770 741 #: includes/shortcode-atts-helptexts.php:101771 #: shortcode/config-admin-data.php:163 742 772 #, php-format 743 773 msgid "" … … 748 778 "Variante." 749 779 750 #: includes/shortcode-atts-helptexts.php:102780 #: shortcode/config-admin-data.php:164 751 781 #, php-format 752 782 msgid "" … … 757 787 "\"%1$s\"), der Wert definiert eine optionale Überschrift für den Eintrag." 758 788 759 #: includes/shortcode-atts-helptexts.php:103789 #: shortcode/config-admin-data.php:165 760 790 #, php-format 761 791 msgid "If no heading is required leave the value empty (%1$s)." … … 764 794 "(%1$s)." 765 795 766 #: includes/shortcode-atts-helptexts.php:104796 #: shortcode/config-admin-data.php:166 767 797 #, php-format 768 798 msgid "" … … 774 804 "Anführungszeichen eingefasst werden." 775 805 776 #: includes/shortcode-atts-helptexts.php:105806 #: shortcode/config-admin-data.php:167 777 807 #, php-format 778 808 msgid "" … … 783 813 "durch ein Komma (%2$s) getrennt." 784 814 785 #: includes/shortcode-atts-helptexts.php:107815 #: shortcode/config-admin-data.php:169 786 816 #, php-format 787 817 msgid "" … … 791 821 "ergänzen." 792 822 793 #: includes/shortcode-atts-helptexts.php:110823 #: shortcode/config-admin-data.php:172 794 824 #, php-format 795 825 msgid "" … … 802 832 "Klasse ergänzt wird (z.B. %1$s)." 803 833 804 #: includes/shortcode-atts-helptexts.php:117834 #: shortcode/config-admin-data.php:180 805 835 msgid "" 806 836 "With this attribute the display option for link images can be set, if no " … … 810 840 "werden, die kein Bild enthalten." 811 841 812 #: includes/shortcode-atts-helptexts.php:118842 #: shortcode/config-admin-data.php:181 813 843 #, php-format 814 844 msgid "This option is only considered if the %1$s item is used in %2$s." … … 817 847 "verwendet wird." 818 848 819 #: includes/shortcode-atts-helptexts.php:119849 #: shortcode/config-admin-data.php:182 820 850 #, php-format 821 851 msgid "With %1$s an %2$s tag is still added." 822 852 msgstr "Mit %1$s wir trotzdem ein %2$s Tag eingefügt." 823 853 824 #: includes/shortcode-atts-helptexts.php:120854 #: shortcode/config-admin-data.php:183 825 855 #, php-format 826 856 msgid "" … … 831 861 "angezeigt." 832 862 833 #: includes/shortcode-atts-helptexts.php:121863 #: shortcode/config-admin-data.php:184 834 864 #, php-format 835 865 msgid "With %1$s the complete link item will be removed." 836 866 msgstr "Mit %1$s wird der gesamte Link-Eintrag entfernt." 837 867 838 #: includes/shortcode-atts-helptexts.php:122868 #: shortcode/config-admin-data.php:185 839 869 #, php-format 840 870 msgid "" … … 845 875 " Text (Name oder Beschreibung des Links) angezeigt." 846 876 847 #: includes/shortcode-atts-helptexts.php:127877 #: shortcode/config-admin-data.php:190 848 878 msgid "" 849 879 "Set one of the available options to override the default value defined for " … … 853 883 "überschreiben." 854 884 855 #: includes/shortcode-atts-helptexts.php:132885 #: shortcode/config-admin-data.php:196 856 886 #, php-format 857 887 msgid "With this attribute the %1$s attribute for the HTML-links can be set." … … 860 890 "werden." 861 891 862 #: includes/shortcode-atts-helptexts.php:133892 #: shortcode/config-admin-data.php:197 863 893 #, php-format 864 894 msgid "see %1$sthis link%2$s for details" 865 895 msgstr "siehe %1$sdiesen Link%2$s für Details" 866 896 867 #: includes/shortcode-atts-helptexts.php:138897 #: shortcode/config-admin-data.php:202 shortcode/config-admin-data.php:210 868 898 msgid "String" 869 899 msgstr "String" 870 900 871 #: includes/shortcode-atts-helptexts.php:139 901 #: shortcode/config-admin-data.php:204 902 msgid "" 903 "With this attribute additional CSS classes can be specified. The classes are" 904 " added to the link-view wrapper div." 905 msgstr "" 906 "Mit diesem Attribut können zusätzliche CSS-Klassen definiert werden. Diese " 907 "Klassen werden zum link-view Wrapper-div hinzugefügt." 908 909 #: shortcode/config-admin-data.php:211 872 910 msgid "" 873 911 "With this attribute a css class suffix can be specified. This allows using " … … 878 916 "Link-Listen oder Slider auf der selben Seite." 879 917 880 #: includes/shortcode-atts-helptexts.php:144918 #: shortcode/config-admin-data.php:217 881 919 msgid "" 882 920 "This attribute specifies the vertical alignment of the links. Changing this " … … 887 925 "werden." 888 926 889 #: includes/shortcode-atts-helptexts.php:145927 #: shortcode/config-admin-data.php:218 890 928 msgid "" 891 929 "With this option e.g. the vertical alignment of the list symbol relativ to " … … 897 935 "Bildern mit unterschiedlicher Höhe in einem Slider geändert werden." 898 936 899 #: includes/shortcode-atts-helptexts.php:150937 #: shortcode/config-admin-data.php:224 900 938 msgid "This attribute sets the style type of the list symbol." 901 939 msgstr "Dieses Attribut definiert den CSS-Typ für das Auflistungs-Symbol." 902 940 903 #: includes/shortcode-atts-helptexts.php:151941 #: shortcode/config-admin-data.php:225 904 942 #, php-format 905 943 msgid "" … … 910 948 "verwendet." 911 949 912 #: includes/shortcode-atts-helptexts.php:152950 #: shortcode/config-admin-data.php:226 913 951 msgid "All other available options overide this standard." 914 952 msgstr "Alle anderen verfügbaren Optionen überschreiben diesen Standard." 915 953 916 #: includes/shortcode-atts-helptexts.php:153954 #: shortcode/config-admin-data.php:227 917 955 #, php-format 918 956 msgid "For example setting the value to %1$s will hide the list symbols." … … 921 959 "ausgeblendet." 922 960 923 #: includes/shortcode-atts-helptexts.php:159961 #: shortcode/config-admin-data.php:234 924 962 msgid "" 925 963 "This attribute specifies column layout for the categories in list view." … … 928 966 "Listenansicht." 929 967 930 #: includes/shortcode-atts-helptexts.php:160 931 #: includes/shortcode-atts-helptexts.php:171 968 #: shortcode/config-admin-data.php:235 shortcode/config-admin-data.php:247 932 969 msgid "There are 3 different types of multiple column layouts available." 933 970 msgstr "Es stehen 3 verschiedene Spalten-Layouts zur Verfügung." 934 971 935 #: includes/shortcode-atts-helptexts.php:162 936 #: includes/shortcode-atts-helptexts.php:173 972 #: shortcode/config-admin-data.php:237 shortcode/config-admin-data.php:249 937 973 #, php-format 938 974 msgid "" … … 942 978 "zu finden." 943 979 944 #: includes/shortcode-atts-helptexts.php:170980 #: shortcode/config-admin-data.php:246 945 981 msgid "This attribute specifies column layout for the links in list view." 946 982 msgstr "" … … 948 984 "Listenansicht." 949 985 950 #: includes/shortcode-atts-helptexts.php:181986 #: shortcode/config-admin-data.php:258 951 987 msgid "This attribute sets the fix width of the slider." 952 988 msgstr "Dieses Attribut definiert die fixe Breite des Sliders." 953 989 954 #: includes/shortcode-atts-helptexts.php:182990 #: shortcode/config-admin-data.php:259 955 991 #, php-format 956 992 msgid "" … … 961 997 "über die gegebene Bildergröße gesetzt." 962 998 963 #: includes/shortcode-atts-helptexts.php:183 964 #: includes/shortcode-atts-helptexts.php:191 965 #: includes/shortcode-atts-helptexts.php:199 966 #: includes/shortcode-atts-helptexts.php:206 999 #: shortcode/config-admin-data.php:260 shortcode/config-admin-data.php:269 1000 #: shortcode/config-admin-data.php:278 shortcode/config-admin-data.php:286 967 1001 #, php-format 968 1002 msgid "This attribute is only considered if the view type %1$s is selected." … … 971 1005 " ist." 972 1006 973 #: includes/shortcode-atts-helptexts.php:1891007 #: shortcode/config-admin-data.php:267 974 1008 msgid "This attribute sets the fix height of the slider." 975 1009 msgstr "Dieses Attribut definiert die fixe Höhe des Sliders." 976 1010 977 #: includes/shortcode-atts-helptexts.php:1901011 #: shortcode/config-admin-data.php:268 978 1012 #, php-format 979 1013 msgid "" … … 984 1018 " die gegebene Bildergröße gesetzt." 985 1019 986 #: includes/shortcode-atts-helptexts.php:1971020 #: shortcode/config-admin-data.php:276 987 1021 msgid "" 988 1022 "This attribute sets the duration between the the slides in milliseconds." … … 990 1024 "Dieses Attribut definiert die Dauer zwischen den Slides in Millisekunden." 991 1025 992 #: includes/shortcode-atts-helptexts.php:1981026 #: shortcode/config-admin-data.php:277 993 1027 msgid "" 994 1028 "The link stands still for this time and afterwards the sliding animation to " … … 998 1032 "zum nächsten Link gestartet." 999 1033 1000 #: includes/shortcode-atts-helptexts.php:2051034 #: shortcode/config-admin-data.php:285 1001 1035 msgid "" 1002 1036 "This attribute sets the duration of the animation for switching from one " … … 1006 1040 "Link zum nächsten in Millisekunden." 1007 1041 1008 #: includes/widget-helptexts.php:161042 #: widget/config-admin-data.php:44 1009 1043 msgid "Title" 1010 1044 msgstr "Titel" 1011 1045 1012 #: includes/widget-helptexts.php:171046 #: widget/config-admin-data.php:45 1013 1047 msgid "This option defines the displayed title for the widget." 1014 1048 msgstr "Diese Option legt den anzuzeugenden Titel für das Widget fest." 1015 1049 1016 #: includes/widget-helptexts.php:221050 #: widget/config-admin-data.php:50 1017 1051 msgid "Shortcode attributes" 1018 1052 msgstr "Shortcode Attribute" 1019 1053 1020 #: includes/widget-helptexts.php:231054 #: widget/config-admin-data.php:51 1021 1055 #, php-format 1022 1056 msgid "All attributes which are available for the %1$s shortcode can be used." … … 1025 1059 "werden." 1026 1060 1027 #: includes/widget.php:37 1061 #: widget/config.php:42 1062 msgid "Links" 1063 msgstr "Links" 1064 1065 #: widget/widget.php:41 1028 1066 #, php-format 1029 1067 msgid "" … … 1032 1070 "Mit diesem Widget kann ein %1$s Shortcode zu einem Sidebar- oder Widget-" 1033 1071 "Bereich hinzugefügt werden." 1034 1035 #: includes/widget.php:421036 msgid "Links"1037 msgstr "Links" -
link-view/trunk/languages/link-view.pot
r2286812 r2428225 7 7 msgstr "" 8 8 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/link-view/\n" 9 "POT-Creation-Date: 2020- 04-19 16:29+0200\n"9 "POT-Creation-Date: 2020-11-29 20:23+0100\n" 10 10 "Language: en\n" 11 11 "MIME-Version: 1.0\n" … … 13 13 "Content-Transfer-Encoding: 8bit\n" 14 14 15 #: admin/a dmin.php:77 admin/admin.php:78 admin/includes/admin-about.php:7615 #: admin/about.php:64 admin/admin.php:65 admin/admin.php:66 16 16 #, php-format 17 17 msgid "About %1$s" 18 18 msgstr "" 19 19 20 #: admin/admin.php:86 admin/includes/admin-about.php:156 21 #: admin/includes/admin-settings.php:75 20 #: admin/about.php:87 admin/about.php:207 21 msgid "General" 22 msgstr "" 23 24 #: admin/about.php:88 admin/about.php:203 25 msgid "Shortcode Attributes" 26 msgstr "" 27 28 #: admin/about.php:107 29 msgid "Help and Instructions" 30 msgstr "" 31 32 #: admin/about.php:108 33 msgid "Show links in posts or pages" 34 msgstr "" 35 36 #: admin/about.php:110 37 #, php-format 38 msgid "To show links in a post or page the shortcode %1$s must be added in the post or page content text." 39 msgstr "" 40 41 #: admin/about.php:111 42 msgid "The listed links and their styles can be modified with the available attributes for the shortcode." 43 msgstr "" 44 45 #: admin/about.php:112 46 msgid "You can combine as much attributes as you want." 47 msgstr "" 48 49 #: admin/about.php:113 50 #, php-format 51 msgid "E.g. the shortcode including the attributes %1$s and %2$s would look like this" 52 msgstr "" 53 54 #: admin/about.php:115 55 msgid "Below you can find tables with all supported attributes, their descriptions and available options." 56 msgstr "" 57 58 #: admin/about.php:117 59 msgid "Show links in sidebars and widget areas" 60 msgstr "" 61 62 #: admin/about.php:119 63 #, php-format 64 msgid "With the %1$s Widget you can add links in sidebars and widget areas." 65 msgstr "" 66 67 #: admin/about.php:122 68 #, php-format 69 msgid "Goto %1$s and drag the %2$s-Widget into one of the sidebar or widget areas." 70 msgstr "" 71 72 #: admin/about.php:131 73 #, php-format 74 msgid "Enter a title for the widget and add the required shortcode attributes in the appropriate field. All available shortcode attributes for the %1$s-shortcode can be used in the widget too." 75 msgstr "" 76 77 #: admin/about.php:134 78 #, php-format 79 msgid "Press %1$s to confirm the changes." 80 msgstr "" 81 82 #: admin/about.php:141 admin/admin.php:74 admin/settings.php:62 22 83 #, php-format 23 84 msgid "%1$s Settings" 24 85 msgstr "" 25 86 26 #: admin/includes/admin-about.php:99 admin/includes/admin-about.php:223 27 msgid "General" 28 msgstr "" 29 30 #: admin/includes/admin-about.php:100 admin/includes/admin-about.php:219 31 msgid "Shortcode Attributes" 32 msgstr "" 33 34 #: admin/includes/admin-about.php:119 35 msgid "Help and Instructions" 36 msgstr "" 37 38 #: admin/includes/admin-about.php:120 39 msgid "Show links in posts or pages" 40 msgstr "" 41 42 #: admin/includes/admin-about.php:122 43 #, php-format 44 msgid "To show links in a post or page the shortcode %1$s must be added in the post or page content text." 45 msgstr "" 46 47 #: admin/includes/admin-about.php:123 48 msgid "The listed links and their styles can be modified with the available attributes for the shortcode." 49 msgstr "" 50 51 #: admin/includes/admin-about.php:124 52 msgid "You can combine as much attributes as you want." 53 msgstr "" 54 55 #: admin/includes/admin-about.php:125 56 #, php-format 57 msgid "E.g. the shortcode including the attributes %1$s and %2$s would look like this" 58 msgstr "" 59 60 #: admin/includes/admin-about.php:127 61 msgid "Below you can find tables with all supported attributes, their descriptions and available options." 62 msgstr "" 63 64 #: admin/includes/admin-about.php:129 65 msgid "Show links in sidebars and widget areas" 66 msgstr "" 67 68 #: admin/includes/admin-about.php:131 69 #, php-format 70 msgid "With the %1$s Widget you can add links in sidebars and widget areas." 71 msgstr "" 72 73 #: admin/includes/admin-about.php:134 74 #, php-format 75 msgid "Goto %1$s and drag the %2$s-Widget into one of the sidebar or widget areas." 76 msgstr "" 77 78 #: admin/includes/admin-about.php:145 79 #, php-format 80 msgid "Enter a title for the widget and add the required shortcode attributes in the appropriate field. All available shortcode attributes for the %1$s-shortcode can be used in the widget too." 81 msgstr "" 82 83 #: admin/includes/admin-about.php:148 84 #, php-format 85 msgid "Press %1$s to confirm the changes." 86 msgstr "" 87 88 #: admin/includes/admin-about.php:160 87 #: admin/about.php:145 89 88 #, php-format 90 89 msgid "In the %1$s settings page, available under %2$s, you can find some options to modify the plugin." 91 90 msgstr "" 92 91 93 #: admin/ includes/admin-about.php:18092 #: admin/about.php:164 94 93 msgid "About the plugin author" 95 94 msgstr "" 96 95 97 #: admin/ includes/admin-about.php:18296 #: admin/about.php:166 98 97 #, php-format 99 98 msgid "This plugin is developed by %1$s, you can find more information about the plugin on the %2$s." 100 99 msgstr "" 101 100 102 #: admin/ includes/admin-about.php:182101 #: admin/about.php:166 103 102 msgid "WordPress plugin site" 104 103 msgstr "" 105 104 106 #: admin/ includes/admin-about.php:183105 #: admin/about.php:167 107 106 #, php-format 108 107 msgid "If you like the plugin please rate it on the %1$s." 109 108 msgstr "" 110 109 111 #: admin/ includes/admin-about.php:183110 #: admin/about.php:167 112 111 msgid "WordPress plugin review site" 113 112 msgstr "" 114 113 115 #: admin/ includes/admin-about.php:184114 #: admin/about.php:168 116 115 msgid "If you want to support the plugin I would be happy to get a small donation" 117 116 msgstr "" 118 117 119 #: admin/includes/admin-about.php:185 admin/includes/admin-about.php:186 120 #: admin/includes/admin-about.php:187 118 #: admin/about.php:169 admin/about.php:170 admin/about.php:171 121 119 #, php-format 122 120 msgid "Donate with %1$s" 123 121 msgstr "" 124 122 125 #: admin/ includes/admin-about.php:201123 #: admin/about.php:185 126 124 msgid "Translations" 127 125 msgstr "" 128 126 129 #: admin/ includes/admin-about.php:203127 #: admin/about.php:187 130 128 msgid "Please help translating this plugin into your language." 131 129 msgstr "" 132 130 133 #: admin/ includes/admin-about.php:204131 #: admin/about.php:188 134 132 #, php-format 135 133 msgid "You can submit your translations at %1$s." 136 134 msgstr "" 137 135 138 #: admin/ includes/admin-about.php:205136 #: admin/about.php:189 139 137 msgid "There the source strings will be kept in sync with the actual development version. And in each plugin release the available translation files will be updated." 140 138 msgstr "" 141 139 142 #: admin/ includes/admin-about.php:221140 #: admin/about.php:205 143 141 #, php-format 144 142 msgid "In the following tables you can find all available shortcode attributes for %1$s" 145 143 msgstr "" 146 144 147 #: admin/ includes/admin-about.php:225145 #: admin/about.php:209 148 146 msgid "Link List" 149 147 msgstr "" 150 148 151 #: admin/ includes/admin-about.php:227149 #: admin/about.php:211 152 150 msgid "Link Slider" 153 151 msgstr "" 154 152 155 #: admin/ includes/admin-about.php:231 includes/shortcode-atts-helptexts.php:163156 #: includes/shortcode-atts-helptexts.php:174153 #: admin/about.php:215 shortcode/config-admin-data.php:238 154 #: shortcode/config-admin-data.php:250 157 155 msgid "Multi-column layout types and options" 158 156 msgstr "" 159 157 160 #: admin/ includes/admin-about.php:232158 #: admin/about.php:216 161 159 msgid "There are 3 different types of multiple column layouts for category or link-lists available. Each type has some advantages but also some disadvantages compared to the others." 162 160 msgstr "" 163 161 164 #: admin/ includes/admin-about.php:233162 #: admin/about.php:217 165 163 msgid "Additionally the available layouts can be modified with their options" 166 164 msgstr "" 167 165 168 #: admin/ includes/admin-about.php:235166 #: admin/about.php:219 169 167 msgid "layout type" 170 168 msgstr "" 171 169 172 #: admin/ includes/admin-about.php:235170 #: admin/about.php:219 173 171 msgid "type description" 174 172 msgstr "" 175 173 176 #: admin/ includes/admin-about.php:236 includes/shortcode-atts-helptexts.php:76174 #: admin/about.php:220 shortcode/config-admin-data.php:136 177 175 msgid "Number" 178 176 msgstr "" 179 177 180 #: admin/ includes/admin-about.php:236178 #: admin/about.php:220 181 179 msgid "Use a single number to specify a static number of columns." 182 180 msgstr "" 183 181 184 #: admin/ includes/admin-about.php:237182 #: admin/about.php:221 185 183 msgid "This is a short form of the static layout type (see below)." 186 184 msgstr "" 187 185 188 #: admin/ includes/admin-about.php:238186 #: admin/about.php:222 189 187 msgid "Set a static number of columns. The categories or links will be arranged in rows." 190 188 msgstr "" 191 189 192 #: admin/includes/admin-about.php:239 admin/includes/admin-about.php:242 193 #: admin/includes/admin-about.php:246 190 #: admin/about.php:223 admin/about.php:226 admin/about.php:230 194 191 msgid "available options" 195 192 msgstr "" 196 193 197 #: admin/ includes/admin-about.php:240194 #: admin/about.php:224 198 195 msgid "Provide a single number which specifys the number of columns. If no value is given 3 columns will be displayed by default." 199 196 msgstr "" 200 197 201 #: admin/ includes/admin-about.php:241 admin/includes/admin-about.php:245198 #: admin/about.php:225 admin/about.php:229 202 199 #, php-format 203 200 msgid "This type uses the %1$s to arrange the columns." 204 201 msgstr "" 205 202 206 #: admin/ includes/admin-about.php:241203 #: admin/about.php:225 207 204 msgid "multi-column feature of CSS" 208 205 msgstr "" 209 206 210 #: admin/ includes/admin-about.php:243207 #: admin/about.php:227 211 208 #, php-format 212 209 msgid "You can use all available properties for CSS3 Multi-column Layout (see %1$s for detailed information)." 213 210 msgstr "" 214 211 215 #: admin/ includes/admin-about.php:243 admin/includes/admin-about.php:247212 #: admin/about.php:227 admin/about.php:231 216 213 msgid "this link" 217 214 msgstr "" 218 215 219 #: admin/ includes/admin-about.php:244216 #: admin/about.php:228 220 217 msgid "The given attributes will be added to the wrapper div element. Also the prefixed browser specific attributes will be added." 221 218 msgstr "" 222 219 223 #: admin/ includes/admin-about.php:245220 #: admin/about.php:229 224 221 #, php-format 225 222 msgid "%1$s grid layout javascript library" 226 223 msgstr "" 227 224 228 #: admin/ includes/admin-about.php:247229 #, php-format 230 msgid "You can use all Options which are available for the Masonry library (see %1$s for detailed information)."231 msgstr "" 232 233 #: admin/ includes/admin-about.php:248225 #: admin/about.php:231 226 #, php-format 227 msgid "You can use all options which are available for the Masonry library (see %1$s for detailed information)." 228 msgstr "" 229 230 #: admin/about.php:232 234 231 msgid "The given options will be forwarded to the javascript library." 235 232 msgstr "" 236 233 237 #: admin/ includes/admin-about.php:251234 #: admin/about.php:235 238 235 msgid "Usage" 239 236 msgstr "" 240 237 241 #: admin/ includes/admin-about.php:252238 #: admin/about.php:236 242 239 msgid "For the most types and options it is recommended to define a fixed width for the categories and/or links. This width must be set manually e.g. via the css entry:" 243 240 msgstr "" 244 241 245 #: admin/ includes/admin-about.php:253242 #: admin/about.php:237 246 243 msgid "Depending on the type and options there are probably more css modifications required for a correct multi-column layout." 247 244 msgstr "" 248 245 249 #: admin/ includes/admin-about.php:256246 #: admin/about.php:240 250 247 #, php-format 251 248 msgid "There are several ways to add the required css code. One method is the %1$s setting %2$s which can be found in %3$s." 252 249 msgstr "" 253 250 254 #: admin/ includes/admin-about.php:259 includes/options-helptexts.php:47251 #: admin/about.php:243 255 252 #, php-format 256 253 msgid "CSS-code for %1$s" 257 254 msgstr "" 258 255 259 #: admin/ includes/admin-about.php:265256 #: admin/about.php:249 260 257 #, php-format 261 258 msgid "The optional type options must be added in brackets in the format \"option_name=value\", multiple options can be added seperated by a pipe %1$s." 262 259 msgstr "" 263 260 264 #: admin/ includes/admin-about.php:266 includes/options-helptexts.php:53265 #: includes/shortcode-atts-helptexts.php:27261 #: admin/about.php:250 includes/config-admin-data.php:91 262 #: shortcode/config-admin-data.php:78 266 263 msgid "Examples" 267 264 msgstr "" 268 265 269 #: admin/ includes/admin-about.php:267266 #: admin/about.php:251 270 267 msgid "show the categories in 3 static columns" 271 268 msgstr "" 272 269 273 #: admin/ includes/admin-about.php:268270 #: admin/about.php:252 274 271 msgid "show the link-lists in 2 static columns" 275 272 msgstr "" 276 273 277 #: admin/ includes/admin-about.php:269274 #: admin/about.php:253 278 275 msgid "show the categories in columns with the css column properties with a fixed width per category" 279 276 msgstr "" 280 277 281 #: admin/ includes/admin-about.php:270278 #: admin/about.php:254 282 279 msgid "show the link-lists in 4 columns by using the CSS multi column properties" 283 280 msgstr "" 284 281 285 #: admin/ includes/admin-about.php:271282 #: admin/about.php:255 286 283 msgid "show the categories in columns by using the masonry script (with some specific masonry options)" 287 284 msgstr "" 288 285 289 #: admin/ includes/admin-about.php:289286 #: admin/about.php:273 290 287 msgid "Attribute name" 291 288 msgstr "" 292 289 293 #: admin/ includes/admin-about.php:290 includes/shortcode-atts-helptexts.php:102290 #: admin/about.php:274 shortcode/config-admin-data.php:164 294 291 msgid "Value options" 295 292 msgstr "" 296 293 297 #: admin/ includes/admin-about.php:291294 #: admin/about.php:275 298 295 msgid "Default value" 299 296 msgstr "" 300 297 301 #: admin/ includes/admin-about.php:292298 #: admin/about.php:276 302 299 msgid "Description" 303 300 msgstr "" 304 301 305 #: includes/ options-helptexts.php:16302 #: includes/config-admin-data.php:46 306 303 #, php-format 307 304 msgid "Required capabilities to show the %1$s page" 308 305 msgstr "" 309 306 310 #: includes/ options-helptexts.php:16 includes/options-helptexts.php:22311 #: includes/ options-helptexts.php:42307 #: includes/config-admin-data.php:46 includes/config-admin-data.php:53 308 #: includes/config-admin-data.php:71 312 309 msgid "About" 313 310 msgstr "" 314 311 315 #: includes/ options-helptexts.php:18 includes/options-helptexts.php:32312 #: includes/config-admin-data.php:48 includes/config-admin-data.php:62 316 313 msgid "Default" 317 314 msgstr "" 318 315 319 #: includes/ options-helptexts.php:22316 #: includes/config-admin-data.php:53 320 317 #, php-format 321 318 msgid "With this option you can specify the required capabilities to show the %1$s page." 322 319 msgstr "" 323 320 324 #: includes/ options-helptexts.php:23 includes/options-helptexts.php:41321 #: includes/config-admin-data.php:54 includes/config-admin-data.php:70 325 322 #, php-format 326 323 msgid "More information can be found in the %1$s." 327 324 msgstr "" 328 325 329 #: includes/ options-helptexts.php:28326 #: includes/config-admin-data.php:59 330 327 msgid "Required role to manage links" 331 328 msgstr "" 332 329 333 #: includes/ options-helptexts.php:40330 #: includes/config-admin-data.php:69 334 331 msgid "With this option minimum required role to manage links can be set" 335 332 msgstr "" 336 333 337 #: includes/ options-helptexts.php:40334 #: includes/config-admin-data.php:69 338 335 msgid "Capability" 339 336 msgstr "" 340 337 341 #: includes/ options-helptexts.php:42338 #: includes/config-admin-data.php:71 342 339 #, php-format 343 340 msgid "Please note that this option also affects the access to the %1$s page if the required capabilities are set to %2$s." 344 341 msgstr "" 345 342 346 #: includes/options-helptexts.php:48 347 #, php-format 348 msgid "With this option you can specify CSS-code for the links displayed by the %1$s shortcode." 349 msgstr "" 350 351 #: includes/options-helptexts.php:49 343 #: includes/config-admin-data.php:76 344 #, php-format 345 msgid "Custom CSS classes for %1$s" 346 msgstr "" 347 348 #: includes/config-admin-data.php:78 349 #, php-format 350 msgid "With this option you can specify custom CSS classes which will be added to the wrapper div of the %1$s shortcode." 351 msgstr "" 352 353 #: includes/config-admin-data.php:79 shortcode/config-admin-data.php:205 354 #, php-format 355 msgid "Use the %1$s to seperate multiple classes." 356 msgstr "" 357 358 #: includes/config-admin-data.php:84 359 #, php-format 360 msgid "Custom CSS for %1$s" 361 msgstr "" 362 363 #: includes/config-admin-data.php:86 364 #, php-format 365 msgid "With this option you can specify custom CSS for the links displayed by the %1$s shortcode." 366 msgstr "" 367 368 #: includes/config-admin-data.php:87 352 369 #, php-format 353 370 msgid "There are a lot of CSS classes available which are automatically added by the %1$s shortcode" 354 371 msgstr "" 355 372 356 #: includes/ options-helptexts.php:49 includes/options-helptexts.php:52373 #: includes/config-admin-data.php:87 includes/config-admin-data.php:90 357 374 msgid "e.g." 358 375 msgstr "" 359 376 360 #: includes/ options-helptexts.php:50377 #: includes/config-admin-data.php:88 361 378 msgid "All available classes can be found in the sourcecode of a post or page where the shortcode is included." 362 379 msgstr "" 363 380 364 #: includes/ options-helptexts.php:51381 #: includes/config-admin-data.php:89 365 382 #, php-format 366 383 msgid "To differ between different shortcodes you can set the attribute %1$s and add CSS-code for these special classes" 367 384 msgstr "" 368 385 369 #: includes/shortcode-atts-helptexts.php:16386 #: shortcode/config-admin-data.php:66 370 387 msgid "This attribute specifies how the links are displayed." 371 388 msgstr "" 372 389 373 #: includes/shortcode-atts-helptexts.php:17390 #: shortcode/config-admin-data.php:67 374 391 msgid "Showing the links in a list is the default, alternatively the links can be displayed in a slider." 375 392 msgstr "" 376 393 377 #: includes/shortcode-atts-helptexts.php:22394 #: shortcode/config-admin-data.php:72 378 395 msgid "category slugs" 379 396 msgstr "" 380 397 381 #: includes/shortcode-atts-helptexts.php:23398 #: shortcode/config-admin-data.php:74 382 399 msgid "This attribute specifies the displayed link categories. Default is an empty string to show all categories." 383 400 msgstr "" 384 401 385 #: includes/shortcode-atts-helptexts.php:24402 #: shortcode/config-admin-data.php:75 386 403 msgid "Links with categories that doesn´t match the filter will not be displayed." 387 404 msgstr "" 388 405 389 #: includes/shortcode-atts-helptexts.php:25406 #: shortcode/config-admin-data.php:76 390 407 msgid "The filter is specified via the given category slug. The simplest version is a single slug to only show links from this category." 391 408 msgstr "" 392 409 393 #: includes/shortcode-atts-helptexts.php:26410 #: shortcode/config-admin-data.php:77 394 411 #, php-format 395 412 msgid "To show multiple categories, multiple slugs can be provided seperated by %1$s or %2$s." 396 413 msgstr "" 397 414 398 #: includes/shortcode-atts-helptexts.php:28415 #: shortcode/config-admin-data.php:79 399 416 #, php-format 400 417 msgid "Show all links with category %1$s." 401 418 msgstr "" 402 419 403 #: includes/shortcode-atts-helptexts.php:29420 #: shortcode/config-admin-data.php:80 404 421 #, php-format 405 422 msgid "Show all links with category %1$s or %2$s." 406 423 msgstr "" 407 424 408 #: includes/shortcode-atts-helptexts.php:35425 #: shortcode/config-admin-data.php:87 409 426 msgid "This attribute specifies which categories should be excluded." 410 427 msgstr "" 411 428 412 #: includes/shortcode-atts-helptexts.php:36429 #: shortcode/config-admin-data.php:88 413 430 #, php-format 414 431 msgid "This attribute is only considered if the attribute %1$s is not set." 415 432 msgstr "" 416 433 417 #: includes/shortcode-atts-helptexts.php:37434 #: shortcode/config-admin-data.php:89 418 435 msgid "If the category name has spaces, the name must be surrounded by quotes." 419 436 msgstr "" 420 437 421 #: includes/shortcode-atts-helptexts.php:38438 #: shortcode/config-admin-data.php:90 422 439 #, php-format 423 440 msgid "To exclude multiple categories, multiple names can be provided seperated by %1$s." 424 441 msgstr "" 425 442 426 #: includes/shortcode-atts-helptexts.php:39443 #: shortcode/config-admin-data.php:91 427 444 msgid "Example" 428 445 msgstr "" 429 446 430 #: includes/shortcode-atts-helptexts.php:45 431 msgid "This attribute specifies if the category name is shown as a headline." 432 msgstr "" 433 434 #: includes/shortcode-atts-helptexts.php:51 435 msgid "This attribute specifies if the number of links shall be displayed in brackets next to the category name in the headline." 436 msgstr "" 437 438 #: includes/shortcode-atts-helptexts.php:52 439 #, php-format 440 msgid "The headline with the category name must be displayed (%1$s) to show the number of links." 441 msgstr "" 442 443 #: includes/shortcode-atts-helptexts.php:57 447 #: shortcode/config-admin-data.php:97 448 msgid "By default the links are grouped by category." 449 msgstr "" 450 451 #: shortcode/config-admin-data.php:98 452 msgid "To show all links in one list this option can be disabled." 453 msgstr "" 454 455 #: shortcode/config-admin-data.php:103 456 msgid "This attribute specifies if the category name is shown as a headline if category grouping is enabled." 457 msgstr "" 458 459 #: shortcode/config-admin-data.php:109 460 msgid "If enabled the number of links is displayed in brackets next to the category name in the headline." 461 msgstr "" 462 463 #: shortcode/config-admin-data.php:110 464 #, php-format 465 msgid "The shortcode options %1$s and %2$s must be enabled to display the number." 466 msgstr "" 467 468 #: shortcode/config-admin-data.php:116 444 469 msgid "This attribute specifies the sort parameter of the links for each category." 445 470 msgstr "" 446 471 447 #: includes/shortcode-atts-helptexts.php:58472 #: shortcode/config-admin-data.php:117 448 473 msgid "By default the links are sorted according the link name." 449 474 msgstr "" 450 475 451 #: includes/shortcode-atts-helptexts.php:59476 #: shortcode/config-admin-data.php:118 452 477 #, php-format 453 478 msgid "A random order can be specify by %1$s." 454 479 msgstr "" 455 480 456 #: includes/shortcode-atts-helptexts.php:61481 #: shortcode/config-admin-data.php:120 457 482 #, php-format 458 483 msgid "A detailed description of all available options is available in the %1$sWordPress codex%2$s." 459 484 msgstr "" 460 485 461 #: includes/shortcode-atts-helptexts.php:65486 #: shortcode/config-admin-data.php:124 462 487 #, php-format 463 488 msgid "See also the attribute %1$s to specify the order direction." 464 489 msgstr "" 465 490 466 #: includes/shortcode-atts-helptexts.php:70491 #: shortcode/config-admin-data.php:130 467 492 #, php-format 468 493 msgid "This attribute sets the order direction for the %1$s attribute." 469 494 msgstr "" 470 495 471 #: includes/shortcode-atts-helptexts.php:71496 #: shortcode/config-admin-data.php:131 472 497 #, php-format 473 498 msgid "The available options are %1$s (default) and %2$s." 474 499 msgstr "" 475 500 476 #: includes/shortcode-atts-helptexts.php:77501 #: shortcode/config-admin-data.php:138 477 502 msgid "This attribute sets the number of displayed links for each category." 478 503 msgstr "" 479 504 480 #: includes/shortcode-atts-helptexts.php:78505 #: shortcode/config-admin-data.php:139 481 506 msgid "A number smaller than 0 displays all links." 482 507 msgstr "" 483 508 484 #: includes/shortcode-atts-helptexts.php:84509 #: shortcode/config-admin-data.php:145 485 510 msgid "This attribute specifies if the image shall be displayed instead of the name." 486 511 msgstr "" 487 512 488 #: includes/shortcode-atts-helptexts.php:85513 #: shortcode/config-admin-data.php:146 489 514 msgid "This attribute is only considered for links where an image is set." 490 515 msgstr "" 491 516 492 #: includes/shortcode-atts-helptexts.php:91517 #: shortcode/config-admin-data.php:153 493 518 msgid "With this attribute more complex display options can be defined." 494 519 msgstr "" 495 520 496 #: includes/shortcode-atts-helptexts.php:92521 #: shortcode/config-admin-data.php:154 497 522 #, php-format 498 523 msgid "By default (empty string) only the link name or the link image (see attribute %1$s) is shown." 499 524 msgstr "" 500 525 501 #: includes/shortcode-atts-helptexts.php:93526 #: shortcode/config-admin-data.php:155 502 527 msgid "By specifying the below described JSON structure complex display options can be defined." 503 528 msgstr "" 504 529 505 #: includes/shortcode-atts-helptexts.php:94530 #: shortcode/config-admin-data.php:156 506 531 msgid "Please use single quotes for defining this attribute because the double quotes are required to define the JSON code." 507 532 msgstr "" 508 533 509 #: includes/shortcode-atts-helptexts.php:96534 #: shortcode/config-admin-data.php:158 510 535 #, php-format 511 536 msgid "This attribute can also be defined as the content of an enclosed shortcode e.g. %1$s." 512 537 msgstr "" 513 538 514 #: includes/shortcode-atts-helptexts.php:97539 #: shortcode/config-admin-data.php:159 515 540 msgid "JSON data" 516 541 msgstr "" 517 542 518 #: includes/shortcode-atts-helptexts.php:99543 #: shortcode/config-admin-data.php:161 519 544 msgid "Examples with all possible options" 520 545 msgstr "" 521 546 522 #: includes/shortcode-atts-helptexts.php:101547 #: shortcode/config-admin-data.php:163 523 548 #, php-format 524 549 msgid "Defining a list of JSON Objects (%1$s pairs) is the simplest version of usage." 525 550 msgstr "" 526 551 527 #: includes/shortcode-atts-helptexts.php:102552 #: shortcode/config-admin-data.php:164 528 553 #, php-format 529 554 msgid "The key defines one of the available items (see \"%1$s\"), the value defines an optional heading for the item." 530 555 msgstr "" 531 556 532 #: includes/shortcode-atts-helptexts.php:103557 #: shortcode/config-admin-data.php:165 533 558 #, php-format 534 559 msgid "If no heading is required leave the value empty (%1$s)." 535 560 msgstr "" 536 561 537 #: includes/shortcode-atts-helptexts.php:104562 #: shortcode/config-admin-data.php:166 538 563 #, php-format 539 564 msgid "The list must be enclosed in curly braces (%1$s) to have valid JSON data. Double quotes must be added around the key and the value." 540 565 msgstr "" 541 566 542 #: includes/shortcode-atts-helptexts.php:105567 #: shortcode/config-admin-data.php:167 543 568 #, php-format 544 569 msgid "The %1$s character separats the key and the value, multiple objects are separated via comma (%2$s)." 545 570 msgstr "" 546 571 547 #: includes/shortcode-atts-helptexts.php:107572 #: shortcode/config-admin-data.php:169 548 573 #, php-format 549 574 msgid "Add a %1$s at the end of the item name to include a link to the link target." 550 575 msgstr "" 551 576 552 #: includes/shortcode-atts-helptexts.php:110577 #: shortcode/config-admin-data.php:172 553 578 #, php-format 554 579 msgid "Multiple items can be grouped by using sub-object. The key of the sub-object defines the name of the group which also will be added as a css-class (e.g. %1$s)." 555 580 msgstr "" 556 581 557 #: includes/shortcode-atts-helptexts.php:117582 #: shortcode/config-admin-data.php:180 558 583 msgid "With this attribute the display option for link images can be set, if no link image is available." 559 584 msgstr "" 560 585 561 #: includes/shortcode-atts-helptexts.php:118586 #: shortcode/config-admin-data.php:181 562 587 #, php-format 563 588 msgid "This option is only considered if the %1$s item is used in %2$s." 564 589 msgstr "" 565 590 566 #: includes/shortcode-atts-helptexts.php:119591 #: shortcode/config-admin-data.php:182 567 592 #, php-format 568 593 msgid "With %1$s an %2$s tag is still added." 569 594 msgstr "" 570 595 571 #: includes/shortcode-atts-helptexts.php:120596 #: shortcode/config-admin-data.php:183 572 597 #, php-format 573 598 msgid "Due to the empty link address of the image the %1$s attribute will be displayed." 574 599 msgstr "" 575 600 576 #: includes/shortcode-atts-helptexts.php:121601 #: shortcode/config-admin-data.php:184 577 602 #, php-format 578 603 msgid "With %1$s the complete link item will be removed." 579 604 msgstr "" 580 605 581 #: includes/shortcode-atts-helptexts.php:122606 #: shortcode/config-admin-data.php:185 582 607 #, php-format 583 608 msgid "With the other options only the %1$s tag will be removed and an alternative text (link name or description) will be displayed." 584 609 msgstr "" 585 610 586 #: includes/shortcode-atts-helptexts.php:127611 #: shortcode/config-admin-data.php:190 587 612 msgid "Set one of the available options to override the default value defined for the link." 588 613 msgstr "" 589 614 590 #: includes/shortcode-atts-helptexts.php:132615 #: shortcode/config-admin-data.php:196 591 616 #, php-format 592 617 msgid "With this attribute the %1$s attribute for the HTML-links can be set." 593 618 msgstr "" 594 619 595 #: includes/shortcode-atts-helptexts.php:133620 #: shortcode/config-admin-data.php:197 596 621 #, php-format 597 622 msgid "see %1$sthis link%2$s for details" 598 623 msgstr "" 599 624 600 #: includes/shortcode-atts-helptexts.php:138625 #: shortcode/config-admin-data.php:202 shortcode/config-admin-data.php:210 601 626 msgid "String" 602 627 msgstr "" 603 628 604 #: includes/shortcode-atts-helptexts.php:139 629 #: shortcode/config-admin-data.php:204 630 msgid "With this attribute additional CSS classes can be specified. The classes are added to the link-view wrapper div." 631 msgstr "" 632 633 #: shortcode/config-admin-data.php:211 605 634 msgid "With this attribute a css class suffix can be specified. This allows using different css styles for different link lists or sliders on the same site." 606 635 msgstr "" 607 636 608 #: includes/shortcode-atts-helptexts.php:144637 #: shortcode/config-admin-data.php:217 609 638 msgid "This attribute specifies the vertical alignment of the links. Changing this attribute normally only make sense if the link-images are displayed." 610 639 msgstr "" 611 640 612 #: includes/shortcode-atts-helptexts.php:145641 #: shortcode/config-admin-data.php:218 613 642 msgid "With this option e.g. the vertical alignment of the list symbol relativ to the image or the vertical alignment of images with different height in a slider can be changed." 614 643 msgstr "" 615 644 616 #: includes/shortcode-atts-helptexts.php:150645 #: shortcode/config-admin-data.php:224 617 646 msgid "This attribute sets the style type of the list symbol." 618 647 msgstr "" 619 648 620 #: includes/shortcode-atts-helptexts.php:151649 #: shortcode/config-admin-data.php:225 621 650 #, php-format 622 651 msgid "With the default value %1$s the standard type which is set in your theme will be used." 623 652 msgstr "" 624 653 625 #: includes/shortcode-atts-helptexts.php:152654 #: shortcode/config-admin-data.php:226 626 655 msgid "All other available options overide this standard." 627 656 msgstr "" 628 657 629 #: includes/shortcode-atts-helptexts.php:153658 #: shortcode/config-admin-data.php:227 630 659 #, php-format 631 660 msgid "For example setting the value to %1$s will hide the list symbols." 632 661 msgstr "" 633 662 634 #: includes/shortcode-atts-helptexts.php:159663 #: shortcode/config-admin-data.php:234 635 664 msgid "This attribute specifies column layout for the categories in list view." 636 665 msgstr "" 637 666 638 #: includes/shortcode-atts-helptexts.php:160 639 #: includes/shortcode-atts-helptexts.php:171 667 #: shortcode/config-admin-data.php:235 shortcode/config-admin-data.php:247 640 668 msgid "There are 3 different types of multiple column layouts available." 641 669 msgstr "" 642 670 643 #: includes/shortcode-atts-helptexts.php:162 644 #: includes/shortcode-atts-helptexts.php:173 671 #: shortcode/config-admin-data.php:237 shortcode/config-admin-data.php:249 645 672 #, php-format 646 673 msgid "Find more information regarding the types and options in the chapter %1$s." 647 674 msgstr "" 648 675 649 #: includes/shortcode-atts-helptexts.php:170676 #: shortcode/config-admin-data.php:246 650 677 msgid "This attribute specifies column layout for the links in list view." 651 678 msgstr "" 652 679 653 #: includes/shortcode-atts-helptexts.php:181680 #: shortcode/config-admin-data.php:258 654 681 msgid "This attribute sets the fix width of the slider." 655 682 msgstr "" 656 683 657 #: includes/shortcode-atts-helptexts.php:182684 #: shortcode/config-admin-data.php:259 658 685 #, php-format 659 686 msgid "If the attribute is set to %1$s the width will be calculated automatically due to the given image sizes." 660 687 msgstr "" 661 688 662 #: includes/shortcode-atts-helptexts.php:183 663 #: includes/shortcode-atts-helptexts.php:191 664 #: includes/shortcode-atts-helptexts.php:199 665 #: includes/shortcode-atts-helptexts.php:206 689 #: shortcode/config-admin-data.php:260 shortcode/config-admin-data.php:269 690 #: shortcode/config-admin-data.php:278 shortcode/config-admin-data.php:286 666 691 #, php-format 667 692 msgid "This attribute is only considered if the view type %1$s is selected." 668 693 msgstr "" 669 694 670 #: includes/shortcode-atts-helptexts.php:189695 #: shortcode/config-admin-data.php:267 671 696 msgid "This attribute sets the fix height of the slider." 672 697 msgstr "" 673 698 674 #: includes/shortcode-atts-helptexts.php:190699 #: shortcode/config-admin-data.php:268 675 700 #, php-format 676 701 msgid "If the attribute is set to %1$s the height will be calculated automatically due to the given image sizes." 677 702 msgstr "" 678 703 679 #: includes/shortcode-atts-helptexts.php:197704 #: shortcode/config-admin-data.php:276 680 705 msgid "This attribute sets the duration between the the slides in milliseconds." 681 706 msgstr "" 682 707 683 #: includes/shortcode-atts-helptexts.php:198708 #: shortcode/config-admin-data.php:277 684 709 msgid "The link stands still for this time and afterwards the sliding animation to the next link starts." 685 710 msgstr "" 686 711 687 #: includes/shortcode-atts-helptexts.php:205712 #: shortcode/config-admin-data.php:285 688 713 msgid "This attribute sets the duration of the animation for switching from one link to the next in milliseconds." 689 714 msgstr "" 690 715 691 #: includes/widget-helptexts.php:16716 #: widget/config-admin-data.php:44 692 717 msgid "Title" 693 718 msgstr "" 694 719 695 #: includes/widget-helptexts.php:17720 #: widget/config-admin-data.php:45 696 721 msgid "This option defines the displayed title for the widget." 697 722 msgstr "" 698 723 699 #: includes/widget-helptexts.php:22724 #: widget/config-admin-data.php:50 700 725 msgid "Shortcode attributes" 701 726 msgstr "" 702 727 703 #: includes/widget-helptexts.php:23728 #: widget/config-admin-data.php:51 704 729 #, php-format 705 730 msgid "All attributes which are available for the %1$s shortcode can be used." 706 731 msgstr "" 707 732 708 #: includes/widget.php:37 733 #: widget/config.php:42 734 msgid "Links" 735 msgstr "" 736 737 #: widget/widget.php:41 709 738 #, php-format 710 739 msgid "With this widget a %1$s shortcode can be added to a sidebar or widget area." 711 740 msgstr "" 712 713 #: includes/widget.php:42714 msgid "Links"715 msgstr "" -
link-view/trunk/link-view.php
r2286812 r2428225 4 4 * Plugin URI: https://wordpress.org/plugins/link-view/ 5 5 * Description: Display a link-list or link-slider in a post or page by using a shortcode. 6 * Version: 0. 7.36 * Version: 0.8.0 7 7 * Author: mibuthu 8 8 * Author URI: https://wordpress.org/plugins/link-view/ … … 30 30 31 31 // declare( strict_types=1 ); Remove for now due to warnings in php <7.0! 32 33 namespace WordPress\Plugins\mibuthu\LinkView; 34 32 35 if ( ! defined( 'WPINC' ) ) { 33 36 exit(); … … 35 38 36 39 // General definitions. 37 define( ' LV_URL', plugin_dir_url( __FILE__ ) );38 define( ' LV_PATH', plugin_dir_path( __FILE__ ) );40 define( 'PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 41 define( 'PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 39 42 43 44 require_once PLUGIN_PATH . 'includes/config.php'; 40 45 41 46 /** … … 44 49 * This is the initial class for loading the plugin. 45 50 */ 46 class LV_LinkView { 51 class LinkView { 52 53 /** 54 * Config instance used for the whole plugin 55 * 56 * @var Config 57 */ 58 private $config; 59 60 /** 61 * ShortcodeFactory instance used for the whole plugin 62 * 63 * @var Shortcode\Factory 64 */ 65 private $shortcode_factory; 47 66 48 67 … … 55 74 public function __construct() { 56 75 // Always! 57 add_action( 'plugins_loaded', array( &$this, 'load_textdomain' ) ); 58 add_shortcode( 'linkview', array( &$this, 'shortcode_linkview' ) ); 59 add_action( 'widgets_init', array( &$this, 'widget_init' ) ); 76 // Create Config instance which is used for the whole plugin. 77 $this->config = new Config(); 78 // Shortcodes, actions and filters. 79 add_action( 'plugins_loaded', [ &$this, 'load_textdomain' ] ); 80 add_shortcode( 'linkview', [ &$this, 'shortcode_linkview' ] ); 81 add_action( 'widgets_init', [ &$this, 'widget_init' ] ); 60 82 // Enable WordPress link manager (disabled by default since version 3.5). 61 83 if ( false !== get_option( 'link_manager_enabled' ) ) { … … 65 87 // Depending on Page Type! 66 88 if ( is_admin() ) { // Admin page. 67 require_once LV_PATH . 'admin/admin.php'; 68 LV_Admin::get_instance()->init_admin_page(); 89 require_once PLUGIN_PATH . 'admin/admin.php'; 90 $admin = new Admin\Admin( $this->config ); 91 $admin->init(); 69 92 } else { // Front page. 70 add_action( 'wp_enqueue_scripts', array( &$this, 'register_scripts' ));93 add_action( 'wp_enqueue_scripts', [ &$this, 'register_scripts' ] ); 71 94 } 72 95 } … … 79 102 */ 80 103 public function load_textdomain() { 81 load_plugin_textdomain( 'link-view', false, basename( LV_PATH ) . '/languages' );104 load_plugin_textdomain( 'link-view', false, basename( PLUGIN_PATH ) . '/languages' ); 82 105 } 83 106 … … 91 114 */ 92 115 public function shortcode_linkview( $atts, $content = '' ) { 93 static $shortcodes; 94 if ( ! $shortcodes instanceof LV_Shortcodes ) { 95 require_once LV_PATH . 'includes/shortcodes.php'; 96 $shortcodes = LV_Shortcodes::get_instance(); 116 if ( ! $this->shortcode_factory instanceof Shortcode\Factory ) { 117 require_once PLUGIN_PATH . 'shortcode/factory.php'; 118 $this->shortcode_factory = new Shortcode\Factory( $this->config ); 97 119 } 98 return $ shortcodes->add( $atts, $content );120 return $this->shortcode_factory->add( $atts, $content ); 99 121 } 100 122 … … 106 128 */ 107 129 public function widget_init() { 108 require_once LV_PATH . 'includes/widget.php';109 register_widget( 'LV_Widget' );130 require_once PLUGIN_PATH . 'widget/widget.php'; 131 register_widget( __NAMESPACE__ . '\Widget\Widget' ); 110 132 } 111 133 … … 117 139 */ 118 140 public function register_scripts() { 119 wp_register_script( 'lv _easySlider', LV_URL . 'includes/js/easySlider.min.js', array( 'jquery' ), '1.7', true );120 wp_register_script( 'lv _masonry', LV_URL . 'includes/js/masonry.pkgd.min.js', array( 'jquery' ), '4.2.2', true );141 wp_register_script( 'lvw_easySlider', PLUGIN_URL . 'includes/js/easySlider.min.js', [ 'jquery' ], '1.7', true ); 142 wp_register_script( 'lvw_masonry', PLUGIN_URL . 'includes/js/masonry.pkgd.min.js', [ 'jquery' ], '4.2.2', true ); 121 143 } 122 144 … … 127 149 * LinkView Class instance 128 150 * 129 * @var L V_LinkView151 * @var LinkView 130 152 */ 131 $l v_linkview = new LV_LinkView();153 $linkview = new LinkView(); -
link-view/trunk/readme.txt
r2286812 r2428225 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4ZHXUPHG9SANY 4 4 Tags: link, links, blogroll, view, linkview, list, slider, slideshow, images, pictures, banner, integrated, page, category, categories, admin, setting, option, attribute, widget, sidebar, css, multi-column 5 Requires at least: 4. 56 Tested up to: 5. 47 Requires PHP: 5. 28 Stable tag: 0. 7.35 Requires at least: 4.9 6 Tested up to: 5.6 7 Requires PHP: 5.6 8 Stable tag: 0.8.0 9 9 Plugin URI: https://wordpress.org/extend/plugins/link-view 10 10 Licence: GPLv2 … … 68 68 == Changelog == 69 69 70 = 0.8.0 (2020-11-29) = 71 * raise minimum required PHP version to 5.6 72 * some internal code refactoring (namespaces, file structure, ...) 73 * added setting to add custom css classes 74 * added a shortcode attribute to add custom css classes 75 * added category css classes for each link 76 * change shortcode boolean attributes from '1' and '0' to 'true' and 'false' (numbers are still working) 77 * changed css class prefix from 'lv' to 'lvw'. Attention: If you use these class names in your CSS or the custom CSS option you have to update the CSS there! 78 70 79 = 0.7.3 (2020-04-19) = 71 80 * fixed warnings for PHP-versions < 7.0
Note: See TracChangeset
for help on using the changeset viewer.