Smart Slider 3 - Version 3.5.0.8

Version Description

    1. June 2021 = Warning: Smart Slider 3.5 is not backwards compatible! Before upgrading check the possible issues and their solutions you might see after updating to 3.5.
  • New: Speed improvements which help you make Smart Slider 3 pass Core Web Vitals.

  • Removed: jQuery dependency is removed. From now on Smart Slider only uses vanilla JavaScript.

  • Removed: px+ from padding and margin values. From now on everything will be fix px value.

  • Removed: Non adaptive font resizing is removed, and from now on everything will be adaptive. If you need the adaptive scaling at the layers you created before the update which previously used non-adaptive scaling, turn on "Legacy Font Scale" at Slider settings > Developer tab.

  • Feature: Async option for non-primary CSS files.

  • Feature: Horizontal mouse wheel control option.

  • Fix: Compatibility fix for Cachify plugin.

  • Fix: Compatibility fix for WooCommerce Blocks plugin.

  • Fix: Compatibility fix for A3 Lazy Loading plugin.

  • Fix: Compatibility fix for Woodmart theme.

  • Fix: Compatibility fix for Flatsome theme.

  • Fix: Compatibility fix for Newspaper theme's tagDiv Composer.

  • Fix: LiteSpeed cache plugin's Generate Critical CSS option.

  • Fix: Twenty Seventeen theme conflict with Scroll to Slider option.

  • Fix: Divi Builder plugin caused problems with the align and max width options.

  • Fix: Fixes for RTL display that affected the Inner align, force full width calculation and arrow control positioning.

Download this release

Release Info

Developer nextendweb
Plugin Icon 128x128 Smart Slider 3
Version 3.5.0.8
Comparing to
See all releases

Code changes from version 3.4.1.17 to 3.5.0.8

Files changed (90) hide show
  1. Nextend/Framework/Asset/AbstractAsset.php +30 -19
  2. Nextend/Framework/Asset/Css/Asset.php +46 -12
  3. Nextend/Framework/Asset/Css/Css.php +6 -2
  4. Nextend/Framework/Asset/Css/Less/LessParser.php +3 -3
  5. Nextend/Framework/Asset/Fonts/Google/Asset.php +18 -91
  6. Nextend/Framework/Asset/Js/Asset.php +6 -22
  7. Nextend/Framework/Asset/Js/Cache.php +2 -4
  8. Nextend/Framework/Asset/Js/Js.php +2 -21
  9. Nextend/Framework/Asset/Predefined.php +11 -23
  10. Nextend/Framework/Browse/Block/BrowseManager/BlockBrowseManager.php +1 -1
  11. Nextend/Framework/Cache/Combine.php +0 -61
  12. Nextend/Framework/Controller/Admin/AbstractAdminController.php +3 -2
  13. Nextend/Framework/FastImageSize/FastImageSize.php +256 -0
  14. Nextend/Framework/FastImageSize/Type/TypeBase.php +30 -0
  15. Nextend/Framework/FastImageSize/Type/TypeGif.php +44 -0
  16. Nextend/Framework/FastImageSize/Type/TypeInterface.php +31 -0
  17. Nextend/Framework/FastImageSize/Type/TypeJpeg.php +181 -0
  18. Nextend/Framework/FastImageSize/Type/TypePng.php +40 -0
  19. Nextend/Framework/FastImageSize/Type/TypeSvg.php +38 -0
  20. Nextend/Framework/FastImageSize/Type/TypeWebp.php +138 -0
  21. Nextend/Framework/Font/Block/FontManager/BlockFontManager.php +4 -4
  22. Nextend/Framework/Font/FontRenderer.php +0 -16
  23. Nextend/Framework/Font/Sources/GoogleFonts/GoogleFonts.php +1 -1
  24. Nextend/Framework/Form/AbstractField.php +1 -1
  25. Nextend/Framework/Form/Container/LayerWindow/ContainerDesign.php +1 -1
  26. Nextend/Framework/Form/Element/Breakpoint.php +1 -1
  27. Nextend/Framework/Form/Element/Button/ButtonMoreLess.php +1 -1
  28. Nextend/Framework/Form/Element/Button/ButtonRecordViewer.php +1 -1
  29. Nextend/Framework/Form/Element/CheckboxOnOff.php +1 -1
  30. Nextend/Framework/Form/Element/Decoration.php +1 -1
  31. Nextend/Framework/Form/Element/Devices.php +1 -1
  32. Nextend/Framework/Form/Element/FloatToPercent.php +0 -69
  33. Nextend/Framework/Form/Element/Font.php +1 -1
  34. Nextend/Framework/Form/Element/Hidden/HiddenFont.php +1 -1
  35. Nextend/Framework/Form/Element/Hidden/HiddenStyle.php +1 -1
  36. Nextend/Framework/Form/Element/IconTab.php +1 -1
  37. Nextend/Framework/Form/Element/LayerWindowFocus.php +1 -1
  38. Nextend/Framework/Form/Element/MarginPadding.php +1 -1
  39. Nextend/Framework/Form/Element/MixedField.php +1 -1
  40. Nextend/Framework/Form/Element/OnOff.php +1 -1
  41. Nextend/Framework/Form/Element/Radio.php +1 -1
  42. Nextend/Framework/Form/Element/Radio/ImageList.php +1 -1
  43. Nextend/Framework/Form/Element/RichTextarea.php +1 -1
  44. Nextend/Framework/Form/Element/Select.php +1 -1
  45. Nextend/Framework/Form/Element/Select/FillMode.php +1 -3
  46. Nextend/Framework/Form/Element/Select/Skin.php +1 -1
  47. Nextend/Framework/Form/Element/Select/SubFormIcon.php +1 -1
  48. Nextend/Framework/Form/Element/SelectIcon.php +1 -1
  49. Nextend/Framework/Form/Element/Style.php +1 -1
  50. Nextend/Framework/Form/Element/Tab.php +1 -1
  51. Nextend/Framework/Form/Element/Text.php +1 -1
  52. Nextend/Framework/Form/Element/Text/Color.php +3 -2
  53. Nextend/Framework/Form/Element/Text/Family.php +1 -1
  54. Nextend/Framework/Form/Element/Text/FieldImage.php +1 -1
  55. Nextend/Framework/Form/Element/Text/Folder.php +1 -1
  56. Nextend/Framework/Form/Element/Text/Number.php +1 -1
  57. Nextend/Framework/Form/Element/Text/NumberAutoComplete.php +1 -1
  58. Nextend/Framework/Form/Element/Text/NumberSlider.php +1 -1
  59. Nextend/Framework/Form/Element/Text/TextAutoComplete.php +1 -1
  60. Nextend/Framework/Form/Element/Text/TextMultiAutoComplete.php +1 -1
  61. Nextend/Framework/Form/Element/Text/Url.php +1 -1
  62. Nextend/Framework/Form/Element/Textarea.php +1 -1
  63. Nextend/Framework/Form/Element/Unit.php +1 -1
  64. Nextend/Framework/Form/Element/Upload.php +1 -1
  65. Nextend/Framework/Form/FormTabbed.php +1 -1
  66. Nextend/Framework/Image/Block/ImageManager/BlockImageManager.php +1 -2
  67. Nextend/Framework/Image/ControllerAjaxImage.php +0 -21
  68. Nextend/Framework/Image/Image.php +1 -1
  69. Nextend/Framework/Image/ImageEdit.php +230 -58
  70. Nextend/Framework/Image/ImageStorage.php +6 -19
  71. Nextend/Framework/Image/ModelImage.php +0 -2
  72. Nextend/Framework/Localization/Localization.php +1 -1
  73. Nextend/Framework/Misc/Str.php +3 -3
  74. Nextend/Framework/Misc/{String → StringPhp}/MultiByte.php +1 -1
  75. Nextend/Framework/Misc/{String → StringPhp}/SingleByte.php +1 -1
  76. Nextend/Framework/Misc/{String → StringPhp}/StringInterface.php +1 -1
  77. Nextend/Framework/Notification/Notification.php +3 -3
  78. Nextend/Framework/Parser/Link/ScrollTo.php +4 -4
  79. Nextend/Framework/Platform/AbstractPlatform.php +1 -1
  80. Nextend/Framework/ResourceTranslator/ResourceTranslator.php +8 -8
  81. Nextend/Framework/Settings.php +12 -15
  82. Nextend/Framework/Style/Block/StyleManager/BlockStyleManager.php +3 -3
  83. Nextend/Framework/View/Html.php +22 -15
  84. Nextend/Framework/WordPress/AssetInjector.php +29 -39
  85. Nextend/Languages/de_DE.mo +0 -0
  86. Nextend/Languages/de_DE.po +2033 -2300
  87. Nextend/Languages/es_ES.mo +0 -0
  88. Nextend/Languages/es_ES.po +2265 -2334
  89. Nextend/Languages/fi_FI.mo +0 -0
  90. Nextend/Languages/fi_FI.po +452 -561
Nextend/Framework/Asset/AbstractAsset.php CHANGED
@@ -17,6 +17,7 @@ class AbstractAsset {
17
  protected $globalInline = array();
18
  protected $firstCodes = array();
19
  protected $inline = array();
 
20
  protected $staticGroup = array();
21
 
22
  protected $groups = array();
@@ -28,11 +29,15 @@ class AbstractAsset {
28
 
29
  public function addFiles($path, $files, $group) {
30
  $this->addGroup($group);
31
- foreach ($files AS $file) {
32
  $this->files[$group][] = $path . DIRECTORY_SEPARATOR . $file;
33
  }
34
  }
35
 
 
 
 
 
36
  public function addStaticGroup($file, $group) {
37
  $this->staticGroup[$group] = $file;
38
  }
@@ -66,12 +71,16 @@ class AbstractAsset {
66
  }
67
  }
68
 
69
- public function addInline($code, $unshift = false) {
70
  if ($unshift) {
71
  array_unshift($this->inline, $code);
72
 
73
  } else {
74
- $this->inline[] = $code;
 
 
 
 
75
  }
76
  }
77
 
@@ -88,14 +97,14 @@ class AbstractAsset {
88
  }
89
 
90
  protected function uniqueFiles() {
91
- foreach ($this->files AS $group => &$files) {
92
  $this->files[$group] = array_values(array_unique($files));
93
  }
94
  $this->initGroups();
95
  }
96
 
97
  public function removeFiles($notNeededFiles) {
98
- foreach ($this->files AS $group => &$files) {
99
  $this->files[$group] = array_diff($files, $notNeededFiles);
100
  }
101
  }
@@ -122,20 +131,20 @@ class AbstractAsset {
122
  $files = array();
123
 
124
  if (AssetManager::$cacheAll) {
125
- foreach ($this->groups AS $group) {
126
  if (isset($this->staticGroup[$group])) continue;
127
  $files[$group] = $this->cache->getAssetFile($group, $this->files[$group], $this->codes[$group]);
128
  }
129
  } else {
130
- foreach ($this->groups AS $group) {
131
  if (isset($this->staticGroup[$group])) continue;
132
  if (in_array($group, AssetManager::$cachedGroups)) {
133
  $files[$group] = $this->cache->getAssetFile($group, $this->files[$group], $this->codes[$group]);
134
  } else {
135
- foreach ($this->files[$group] AS $file) {
136
  $files[] = $file;
137
  }
138
- foreach ($this->codes[$group] AS $code) {
139
  array_unshift($this->inline, $code);
140
  }
141
  }
@@ -151,20 +160,22 @@ class AbstractAsset {
151
 
152
  public function serialize() {
153
  return array(
154
- 'staticGroup' => $this->staticGroup,
155
- 'files' => $this->files,
156
- 'urls' => $this->urls,
157
- 'codes' => $this->codes,
158
- 'firstCodes' => $this->firstCodes,
159
- 'inline' => $this->inline,
160
- 'globalInline' => $this->globalInline
 
161
  );
162
  }
163
 
164
  public function unSerialize($array) {
165
- $this->staticGroup = array_merge($this->staticGroup, $array['staticGroup']);
 
166
 
167
- foreach ($array['files'] AS $group => $files) {
168
  if (!isset($this->files[$group])) {
169
  $this->files[$group] = $files;
170
  } else {
@@ -173,7 +184,7 @@ class AbstractAsset {
173
  }
174
  $this->urls = array_merge($this->urls, $array['urls']);
175
 
176
- foreach ($array['codes'] AS $group => $codes) {
177
  if (!isset($this->codes[$group])) {
178
  $this->codes[$group] = $codes;
179
  } else {
17
  protected $globalInline = array();
18
  protected $firstCodes = array();
19
  protected $inline = array();
20
+ protected $staticGroupPreload = array();
21
  protected $staticGroup = array();
22
 
23
  protected $groups = array();
29
 
30
  public function addFiles($path, $files, $group) {
31
  $this->addGroup($group);
32
+ foreach ($files as $file) {
33
  $this->files[$group][] = $path . DIRECTORY_SEPARATOR . $file;
34
  }
35
  }
36
 
37
+ public function addStaticGroupPreload($file, $group) {
38
+ $this->staticGroupPreload[$group] = $file;
39
+ }
40
+
41
  public function addStaticGroup($file, $group) {
42
  $this->staticGroup[$group] = $file;
43
  }
71
  }
72
  }
73
 
74
+ public function addInline($code, $name = null, $unshift = false) {
75
  if ($unshift) {
76
  array_unshift($this->inline, $code);
77
 
78
  } else {
79
+ if ($name) {
80
+ $this->inline[$name] = $code;
81
+ } else {
82
+ $this->inline[] = $code;
83
+ }
84
  }
85
  }
86
 
97
  }
98
 
99
  protected function uniqueFiles() {
100
+ foreach ($this->files as $group => &$files) {
101
  $this->files[$group] = array_values(array_unique($files));
102
  }
103
  $this->initGroups();
104
  }
105
 
106
  public function removeFiles($notNeededFiles) {
107
+ foreach ($this->files as $group => &$files) {
108
  $this->files[$group] = array_diff($files, $notNeededFiles);
109
  }
110
  }
131
  $files = array();
132
 
133
  if (AssetManager::$cacheAll) {
134
+ foreach ($this->groups as $group) {
135
  if (isset($this->staticGroup[$group])) continue;
136
  $files[$group] = $this->cache->getAssetFile($group, $this->files[$group], $this->codes[$group]);
137
  }
138
  } else {
139
+ foreach ($this->groups as $group) {
140
  if (isset($this->staticGroup[$group])) continue;
141
  if (in_array($group, AssetManager::$cachedGroups)) {
142
  $files[$group] = $this->cache->getAssetFile($group, $this->files[$group], $this->codes[$group]);
143
  } else {
144
+ foreach ($this->files[$group] as $file) {
145
  $files[] = $file;
146
  }
147
+ foreach ($this->codes[$group] as $code) {
148
  array_unshift($this->inline, $code);
149
  }
150
  }
160
 
161
  public function serialize() {
162
  return array(
163
+ 'staticGroupPreload' => $this->staticGroupPreload,
164
+ 'staticGroup' => $this->staticGroup,
165
+ 'files' => $this->files,
166
+ 'urls' => $this->urls,
167
+ 'codes' => $this->codes,
168
+ 'firstCodes' => $this->firstCodes,
169
+ 'inline' => $this->inline,
170
+ 'globalInline' => $this->globalInline
171
  );
172
  }
173
 
174
  public function unSerialize($array) {
175
+ $this->staticGroupPreload = array_merge($this->staticGroupPreload, $array['staticGroupPreload']);
176
+ $this->staticGroup = array_merge($this->staticGroup, $array['staticGroup']);
177
 
178
+ foreach ($array['files'] as $group => $files) {
179
  if (!isset($this->files[$group])) {
180
  $this->files[$group] = $files;
181
  } else {
184
  }
185
  $this->urls = array_merge($this->urls, $array['urls']);
186
 
187
+ foreach ($array['codes'] as $group => $codes) {
188
  if (!isset($this->codes[$group])) {
189
  $this->codes[$group] = $codes;
190
  } else {
Nextend/Framework/Asset/Css/Asset.php CHANGED
@@ -4,6 +4,7 @@ namespace Nextend\Framework\Asset\Css;
4
 
5
  use Nextend\Framework\Asset\AbstractAsset;
6
  use Nextend\Framework\Asset\Fonts\Google\Google;
 
7
  use Nextend\Framework\Plugin;
8
  use Nextend\Framework\Settings;
9
  use Nextend\Framework\Url\Url;
@@ -12,12 +13,17 @@ use Nextend\SmartSlider3\SmartSlider3Info;
12
 
13
  class Asset extends AbstractAsset {
14
 
 
15
  public function __construct() {
16
  $this->cache = new Cache();
17
  }
18
 
19
  public function getOutput() {
20
 
 
 
 
 
21
  Google::build();
22
 
23
  Less\Less::build();
@@ -26,29 +32,57 @@ class Asset extends AbstractAsset {
26
 
27
  $this->urls = array_unique($this->urls);
28
 
29
- foreach ($this->urls as $url) {
30
- $output .= Html::style($this->filterSrc($url), true, array(
 
 
31
  'media' => 'all'
32
  )) . "\n";
 
 
 
33
  }
34
 
35
- $needProtocol = !Settings::get('protocol-relative', '1');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
  foreach ($this->getFiles() as $file) {
38
  if (substr($file, 0, 2) == '//') {
39
- $output .= Html::style($this->filterSrc($file), true, array(
40
- 'media' => 'all'
41
- )) . "\n";
42
  } else {
43
- $output .= Html::style($this->filterSrc(Url::pathToUri($file, $needProtocol) . '?ver=' . SmartSlider3Info::$revisionShort), true, array(
44
- 'media' => 'all'
 
 
 
 
 
 
 
 
45
  )) . "\n";
 
 
46
  }
47
  }
48
 
49
- $inline = implode("\n", $this->inline);
50
- if (!empty($inline)) {
51
- $output .= Html::style($inline);
52
  }
53
 
54
  return $output;
@@ -64,7 +98,7 @@ class Asset extends AbstractAsset {
64
 
65
  return array(
66
  'url' => $this->urls,
67
- 'files' => $this->getFiles(),
68
  'inline' => implode("\n", $this->inline)
69
  );
70
  }
4
 
5
  use Nextend\Framework\Asset\AbstractAsset;
6
  use Nextend\Framework\Asset\Fonts\Google\Google;
7
+ use Nextend\Framework\Platform\Platform;
8
  use Nextend\Framework\Plugin;
9
  use Nextend\Framework\Settings;
10
  use Nextend\Framework\Url\Url;
13
 
14
  class Asset extends AbstractAsset {
15
 
16
+
17
  public function __construct() {
18
  $this->cache = new Cache();
19
  }
20
 
21
  public function getOutput() {
22
 
23
+ $headerPreload = !!Settings::get('header-preload', '0');
24
+
25
+ $needProtocol = !Settings::get('protocol-relative', '1');
26
+
27
  Google::build();
28
 
29
  Less\Less::build();
32
 
33
  $this->urls = array_unique($this->urls);
34
 
35
+
36
+ foreach ($this->staticGroupPreload as $file) {
37
+ $url = $this->filterSrc(Url::pathToUri($file, $needProtocol) . '?ver=' . SmartSlider3Info::$revisionShort);
38
+ $output .= Html::style($url, true, array(
39
  'media' => 'all'
40
  )) . "\n";
41
+ if ($headerPreload) {
42
+ header('Link: <' . $url . '>; rel=preload; as=style', false);
43
+ }
44
  }
45
 
46
+ $linkAttributes = array(
47
+ 'media' => 'all'
48
+ );
49
+
50
+ if (!Platform::isAdmin() && Settings::get('async-non-primary-css', 0)) {
51
+ $linkAttributes = array(
52
+ 'media' => 'print',
53
+ 'onload' => "this.media='all'"
54
+ );
55
+ }
56
+
57
+ foreach ($this->urls as $url) {
58
+
59
+ $url = $this->filterSrc($url);
60
+
61
+ $output .= Html::style($url, true, $linkAttributes) . "\n";
62
+ }
63
 
64
  foreach ($this->getFiles() as $file) {
65
  if (substr($file, 0, 2) == '//') {
66
+ $url = $this->filterSrc($file);
 
 
67
  } else {
68
+ $url = $this->filterSrc(Url::pathToUri($file, $needProtocol) . '?ver=' . SmartSlider3Info::$revisionShort);
69
+ }
70
+ $output .= Html::style($url, true, $linkAttributes) . "\n";
71
+ }
72
+
73
+ $inlineText = '';
74
+ foreach ($this->inline as $key => $value) {
75
+ if (!is_numeric($key)) {
76
+ $output .= Html::style($value, false, array(
77
+ 'data-related' => $key
78
  )) . "\n";
79
+ } else {
80
+ $inlineText .= $value;
81
  }
82
  }
83
 
84
+ if (!empty($inlineText)) {
85
+ $output .= Html::style($inlineText) . "\n";
 
86
  }
87
 
88
  return $output;
98
 
99
  return array(
100
  'url' => $this->urls,
101
+ 'files' => array_merge($this->staticGroupPreload, $this->getFiles()),
102
  'inline' => implode("\n", $this->inline)
103
  );
104
  }
Nextend/Framework/Asset/Css/Css.php CHANGED
@@ -14,6 +14,10 @@ class Css {
14
  AssetManager::$css->addFiles($path, $files, $group);
15
  }
16
 
 
 
 
 
17
  public static function addStaticGroup($file, $group) {
18
  AssetManager::$css->addStaticGroup($file, $group);
19
  }
@@ -26,7 +30,7 @@ class Css {
26
  AssetManager::$css->addUrl($url);
27
  }
28
 
29
- public static function addInline($code) {
30
- AssetManager::$css->addInline($code);
31
  }
32
  }
14
  AssetManager::$css->addFiles($path, $files, $group);
15
  }
16
 
17
+ public static function addStaticGroupPreload($file, $group) {
18
+ AssetManager::$css->addStaticGroupPreload($file, $group);
19
+ }
20
+
21
  public static function addStaticGroup($file, $group) {
22
  AssetManager::$css->addStaticGroup($file, $group);
23
  }
30
  AssetManager::$css->addUrl($url);
31
  }
32
 
33
+ public static function addInline($code, $name = null) {
34
+ AssetManager::$css->addInline($code, $name);
35
  }
36
  }
Nextend/Framework/Asset/Css/Less/LessParser.php CHANGED
@@ -396,7 +396,7 @@ class LessParser {
396
  $ss = $this->seek();
397
 
398
  while (true) {
399
- $whiteBefore = isset($this->buffer[$this->count - 1]) && ctype_space($this->buffer[$this->count - 1]);
400
 
401
  // If there is whitespace before the operator, then we require
402
  // whitespace after the operator for it to be an expression
@@ -413,7 +413,7 @@ class LessParser {
413
  }
414
 
415
 
416
- $whiteAfter = isset($this->buffer[$this->count - 1]) && ctype_space($this->buffer[$this->count - 1]);
417
 
418
  if (!$this->value($rhs)) break;
419
 
@@ -821,7 +821,7 @@ class LessParser {
821
  // speed shortcut
822
  if (isset($this->buffer[$this->count])) {
823
  $char = $this->buffer[$this->count];
824
- if (!ctype_digit($char) && $char != ".") return false;
825
  }
826
 
827
  if ($this->match('([0-9]+(?:\.[0-9]*)?|\.[0-9]+)([%a-zA-Z]+)?', $m)) {
396
  $ss = $this->seek();
397
 
398
  while (true) {
399
+ $whiteBefore = isset($this->buffer[$this->count - 1]) && preg_match('/^\\s+$/', $this->buffer[$this->count - 1]);
400
 
401
  // If there is whitespace before the operator, then we require
402
  // whitespace after the operator for it to be an expression
413
  }
414
 
415
 
416
+ $whiteAfter = isset($this->buffer[$this->count - 1]) && preg_match('/^\\s+$/', $this->buffer[$this->count - 1]);
417
 
418
  if (!$this->value($rhs)) break;
419
 
821
  // speed shortcut
822
  if (isset($this->buffer[$this->count])) {
823
  $char = $this->buffer[$this->count];
824
+ if (!preg_match('/^[0-9]+$/', $char) && $char != ".") return false;
825
  }
826
 
827
  if ($this->match('([0-9]+(?:\.[0-9]*)?|\.[0-9]+)([%a-zA-Z]+)?', $m)) {
Nextend/Framework/Asset/Fonts/Google/Asset.php CHANGED
@@ -5,13 +5,11 @@ namespace Nextend\Framework\Asset\Fonts\Google;
5
 
6
 
7
  use Nextend\Framework\Asset\AbstractAsset;
8
- use Nextend\Framework\Asset\Js\Js;
9
- use Nextend\SmartSlider3\Application\Frontend\ApplicationTypeFrontend;
10
 
11
  class Asset extends AbstractAsset {
12
 
13
- public static $hasWebFontLoader = false;
14
-
15
  public function getLoadedFamilies() {
16
  return array_keys($this->files);
17
  }
@@ -33,99 +31,28 @@ class Asset extends AbstractAsset {
33
  }
34
 
35
  public function loadFonts() {
36
- $familyQuery = array();
37
- $names = array();
38
- if (count($this->files)) {
39
- foreach ($this->files as $family => $styles) {
40
- if (count($styles) && !in_array($family, Google::$excludedFamilies)) {
41
- $familyQuery[] = $family . ':' . implode(',', $styles);
42
- foreach ($styles as $style) {
43
- $names[] = $family . ':' . (substr($style, -6) == 'italic' ? 'i' : 'n') . $style[0];
44
- }
45
  }
46
  }
47
- }
48
- if (empty($familyQuery)) {
49
- return false;
50
- }
51
- $subsets = array_unique($this->inline);
52
- $familyQuery[count($familyQuery) - 1] .= ':' . implode(',', $subsets);
53
-
54
- self::$hasWebFontLoader = true;
55
 
56
- Js::addStaticGroup(ApplicationTypeFrontend::getAssetsPath() . "/dist/nextend-webfontloader.min.js", "nextend-webfontloader");
 
 
 
 
 
57
 
58
- Js::addGlobalInline("
59
- nextend.fontsLoaded = false;
60
- nextend.fontsLoadedActive = function () {nextend.fontsLoaded = true;};
61
- var requiredFonts = " . json_encode($names) . ",
62
- fontData = {
63
- google: {
64
- families: " . json_encode($familyQuery) . "
65
- },
66
- active: function(){nextend.fontsLoadedActive()},
67
- inactive: function(){nextend.fontsLoadedActive()},
68
- fontactive: function(f,s){fontData.resolveFont(f+':'+s);},
69
- fontinactive: function(f,s){fontData.resolveFont(f+':'+s);},
70
- resolveFont: function(n){
71
- for(var i = requiredFonts.length - 1; i >= 0; i--) {
72
- if(requiredFonts[i] === n) {
73
- requiredFonts.splice(i, 1);
74
- break;
75
- }
76
- }
77
- if(!requiredFonts.length) nextend.fontsLoadedActive();
78
- }
79
- };
80
- if(typeof WebFontConfig !== 'undefined' && typeof WebFont === 'undefined'){
81
- var _WebFontConfig = WebFontConfig;
82
- for(var k in WebFontConfig){
83
- if(k == 'active'){
84
- fontData.active = function(){nextend.fontsLoadedActive();_WebFontConfig.active();}
85
- }else if(k == 'inactive'){
86
- fontData.inactive = function(){nextend.fontsLoadedActive();_WebFontConfig.inactive();}
87
- }else if(k == 'fontactive'){
88
- fontData.fontactive = function(f,s){fontData.resolveFont(f+':'+s);_WebFontConfig.fontactive.apply(this,arguments);}
89
- }else if(k == 'fontinactive'){
90
- fontData.fontinactive = function(f,s){fontData.resolveFont(f+':'+s);_WebFontConfig.fontinactive.apply(this,arguments);}
91
- }else if(k == 'google'){
92
- if(typeof WebFontConfig.google.families !== 'undefined'){
93
- for(var i = 0; i < WebFontConfig.google.families.length; i++){
94
- fontData.google.families.push(WebFontConfig.google.families[i]);
95
- }
96
- }
97
- }else{
98
- fontData[k] = WebFontConfig[k];
99
- }
100
  }
101
- }
102
- fontData.classes=true;
103
- fontData.events=true;
104
-
105
- if(typeof WebFont === 'undefined'){
106
- window.WebFontConfig = fontData;
107
- }else{
108
- WebFont.load(fontData);
109
- }");
110
 
111
- Js::addFirstCode("
112
- nextend.fontsDeferred = $.Deferred();
113
- if(nextend.fontsLoaded){
114
- nextend.fontsDeferred.resolve();
115
- }else{
116
- nextend.fontsLoadedActive = function () {
117
- nextend.fontsLoaded = true;
118
- nextend.fontsDeferred.resolve();
119
- };
120
- var intercalCounter = 0;
121
- nextend.fontInterval = setInterval(function(){
122
- if(intercalCounter > 3 || document.documentElement.className.indexOf('wf-active') !== -1){
123
- nextend.fontsLoadedActive();
124
- clearInterval(nextend.fontInterval);
125
- }
126
- intercalCounter++;
127
- }, 1000);
128
- }", true);
129
 
130
  return true;
131
  }
5
 
6
 
7
  use Nextend\Framework\Asset\AbstractAsset;
8
+ use Nextend\Framework\Asset\Css\Css;
9
+ use Nextend\Framework\Url\UrlHelper;
10
 
11
  class Asset extends AbstractAsset {
12
 
 
 
13
  public function getLoadedFamilies() {
14
  return array_keys($this->files);
15
  }
31
  }
32
 
33
  public function loadFonts() {
34
+
35
+ if (!empty($this->files)) {
36
+ //https://fonts.googleapis.com/css?display=swap&family=Montserrat:400%7CRoboto:100italic,300,400&subset=latin,greek-ext
37
+
38
+ $families = array();
39
+ foreach ($this->files as $name => $styles) {
40
+ if (count($styles) && !in_array($name, Google::$excludedFamilies)) {
41
+ $families[] = $name . ':' . implode(',', $styles);
 
42
  }
43
  }
 
 
 
 
 
 
 
 
44
 
45
+ if (count($families)) {
46
+ $params = array(
47
+ 'display' => 'swap',
48
+ 'family' => implode('|', $families),
49
+ 'subset' => implode(',', $this->inline)
50
+ );
51
 
52
+ Css::addUrl(UrlHelper::add_query_arg($params, 'https://fonts.googleapis.com/css'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  }
 
 
 
 
 
 
 
 
 
54
 
55
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
  return true;
58
  }
Nextend/Framework/Asset/Js/Asset.php CHANGED
@@ -4,7 +4,6 @@
4
  namespace Nextend\Framework\Asset\Js;
5
 
6
  use Nextend\Framework\Asset\AbstractAsset;
7
- use Nextend\Framework\Cache\Combine;
8
  use Nextend\Framework\Localization\Localization;
9
  use Nextend\Framework\Platform\Platform;
10
  use Nextend\Framework\Plugin;
@@ -30,7 +29,7 @@ class Asset extends AbstractAsset {
30
  $output .= Html::script(self::minify_js($globalInline . "\n"));
31
  }
32
 
33
- $async = !!Settings::get('async', '0') && !Platform::isAdmin();
34
  $scriptAttributes = array();
35
  if ($async) {
36
  $scriptAttributes['defer'] = 1;
@@ -41,29 +40,14 @@ class Asset extends AbstractAsset {
41
  $output .= Html::scriptFile($this->filterSrc($url), $scriptAttributes) . "\n";
42
  }
43
 
44
- if (!Platform::isAdmin() && Settings::get('combine-js', '0')) {
45
- $jsCombined = new Combine('js', false);
46
- foreach ($this->getFiles() as $file) {
47
- $jsCombined->add($file);
48
- }
49
- $combinedFile = $jsCombined->make();
50
-
51
- if (substr($combinedFile, 0, 2) == '//') {
52
- $output .= Html::scriptFile($this->filterSrc($combinedFile), $scriptAttributes) . "\n";
53
  } else {
54
- $output .= Html::scriptFile($this->filterSrc(Url::pathToUri($combinedFile, $needProtocol)), $scriptAttributes) . "\n";
55
- }
56
- } else {
57
- foreach ($this->getFiles() as $file) {
58
- if (substr($file, 0, 2) == '//') {
59
- $output .= Html::scriptFile($this->filterSrc($file), $scriptAttributes) . "\n";
60
- } else {
61
- $output .= Html::scriptFile($this->filterSrc(Url::pathToUri($file, $needProtocol) . '?ver=' . SmartSlider3Info::$revisionShort), $scriptAttributes) . "\n";
62
- }
63
  }
64
  }
65
 
66
-
67
  $output .= Html::script(self::minify_js(Localization::toJS() . "\n" . $this->getInlineScripts() . "\n"));
68
 
69
  return $output;
@@ -111,7 +95,7 @@ class Asset extends AbstractAsset {
111
  if (empty($script)) {
112
  return "";
113
  }
114
- $inline = "N2R('documentReady', function($){\n";
115
  $inline .= $script;
116
  $inline .= "});\n";
117
 
4
  namespace Nextend\Framework\Asset\Js;
5
 
6
  use Nextend\Framework\Asset\AbstractAsset;
 
7
  use Nextend\Framework\Localization\Localization;
8
  use Nextend\Framework\Platform\Platform;
9
  use Nextend\Framework\Plugin;
29
  $output .= Html::script(self::minify_js($globalInline . "\n"));
30
  }
31
 
32
+ $async = !Platform::isAdmin();
33
  $scriptAttributes = array();
34
  if ($async) {
35
  $scriptAttributes['defer'] = 1;
40
  $output .= Html::scriptFile($this->filterSrc($url), $scriptAttributes) . "\n";
41
  }
42
 
43
+ foreach ($this->getFiles() as $file) {
44
+ if (substr($file, 0, 2) == '//') {
45
+ $output .= Html::scriptFile($this->filterSrc($file), $scriptAttributes) . "\n";
 
 
 
 
 
 
46
  } else {
47
+ $output .= Html::scriptFile($this->filterSrc(Url::pathToUri($file, $needProtocol) . '?ver=' . SmartSlider3Info::$revisionShort), $scriptAttributes) . "\n";
 
 
 
 
 
 
 
 
48
  }
49
  }
50
 
 
51
  $output .= Html::script(self::minify_js(Localization::toJS() . "\n" . $this->getInlineScripts() . "\n"));
52
 
53
  return $output;
95
  if (empty($script)) {
96
  return "";
97
  }
98
+ $inline = "_N2.r('documentReady', function(){\n";
99
  $inline .= $script;
100
  $inline .= "});\n";
101
 
Nextend/Framework/Asset/Js/Cache.php CHANGED
@@ -9,8 +9,6 @@ class Cache extends AbstractCache {
9
 
10
  public $outputFileType = "js";
11
 
12
- protected $initialContent = '(function(){var N=this;N.N2_=N.N2_||{r:[],d:[]},N.N2R=N.N2R||function(){N.N2_.r.push(arguments)},N.N2D=N.N2D||function(){N.N2_.d.push(arguments)}}).call(window);';
13
-
14
  /**
15
  * @param Manifest $cache
16
  *
@@ -18,9 +16,9 @@ class Cache extends AbstractCache {
18
  */
19
  public function getCachedContent($cache) {
20
 
21
- $content = '(function(){var N=this;N.N2_=N.N2_||{r:[],d:[]},N.N2R=N.N2R||function(){N.N2_.r.push(arguments)},N.N2D=N.N2D||function(){N.N2_.d.push(arguments)}}).call(window);';
22
  $content .= parent::getCachedContent($cache);
23
- $content .= "N2D('" . $this->group . "');";
24
 
25
  return $content;
26
  }
9
 
10
  public $outputFileType = "js";
11
 
 
 
12
  /**
13
  * @param Manifest $cache
14
  *
16
  */
17
  public function getCachedContent($cache) {
18
 
19
+ $content = '(function(){this._N2=this._N2||{_r:[],_d:[],r:function(){this._r.push(arguments)},d:function(){this._d.push(arguments)}}}).call(window);';
20
  $content .= parent::getCachedContent($cache);
21
+ $content .= "_N2.d('" . $this->group . "');";
22
 
23
  return $content;
24
  }
Nextend/Framework/Asset/Js/Js.php CHANGED
@@ -35,7 +35,7 @@ class Js {
35
  }
36
 
37
  public static function addInline($code, $unshift = false) {
38
- AssetManager::$js->addInline($code, $unshift);
39
  }
40
 
41
  public static function addGlobalInline($code, $unshift = false) {
@@ -45,7 +45,7 @@ class Js {
45
  public static function addInlineFile($path, $unshift = false) {
46
  static $loaded = array();
47
  if (!isset($loaded[$path])) {
48
- AssetManager::$js->addInline(Filesystem::readFile($path), $unshift);
49
  $loaded[$path] = 1;
50
  }
51
  }
@@ -58,23 +58,4 @@ class Js {
58
  }
59
  }
60
 
61
- public static function jQuery($force = false, $overrideJQuerySetting = false) {
62
- $loadJQuery = Settings::get('jquery');
63
-
64
- if (!$loadJQuery) {
65
- wp_enqueue_script('jquery');
66
- }
67
- // WordPress FREE only
68
- if ($force) {
69
- if ($overrideJQuerySetting || $loadJQuery) {
70
- self::addStaticGroup(ApplicationTypeFrontend::getAssetsPath() . "/dist/n2-j.min.js", 'n2');
71
- } else {
72
- self::addStaticGroup(ApplicationTypeFrontend::getAssetsPath() . "/dist/n2.min.js", 'n2');
73
- }
74
- } else {
75
- self::addStaticGroup(ApplicationTypeFrontend::getAssetsPath() . "/dist/n2.min.js", 'n2');
76
- }
77
-
78
- }
79
-
80
  }
35
  }
36
 
37
  public static function addInline($code, $unshift = false) {
38
+ AssetManager::$js->addInline($code, null, $unshift);
39
  }
40
 
41
  public static function addGlobalInline($code, $unshift = false) {
45
  public static function addInlineFile($path, $unshift = false) {
46
  static $loaded = array();
47
  if (!isset($loaded[$path])) {
48
+ AssetManager::$js->addInline(Filesystem::readFile($path), null, $unshift);
49
  $loaded[$path] = 1;
50
  }
51
  }
58
  }
59
  }
60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
Nextend/Framework/Asset/Predefined.php CHANGED
@@ -3,17 +3,14 @@
3
  namespace Nextend\Framework\Asset;
4
 
5
 
6
- use Nextend\Framework\Asset\Builder\BuilderJs;
7
  use Nextend\Framework\Asset\Css\Css;
8
  use Nextend\Framework\Asset\Fonts\Google\Google;
9
  use Nextend\Framework\Asset\Js\Js;
10
- use Nextend\Framework\Filesystem\Filesystem;
11
  use Nextend\Framework\Font\FontSources;
12
  use Nextend\Framework\Form\Form;
13
  use Nextend\Framework\Platform\Platform;
14
  use Nextend\Framework\Plugin;
15
  use Nextend\Framework\ResourceTranslator\ResourceTranslator;
16
- use Nextend\Framework\Url\Url;
17
  use Nextend\SmartSlider3\Application\Frontend\ApplicationTypeFrontend;
18
  use Nextend\SmartSlider3\Settings;
19
 
@@ -24,14 +21,19 @@ class Predefined {
24
  if ($once != null && !$force) {
25
  return;
26
  }
27
- $once = true;
 
 
 
 
 
28
  $family = n2_x('Montserrat', 'Default Google font family for admin');
29
  foreach (explode(',', n2_x('latin', 'Default Google font charset for admin')) as $subset) {
30
  Google::addSubset($subset);
31
  }
32
  Google::addFont($family);
33
 
34
- Js::addFirstCode("N2R(['AjaxHelper'],function(){N2Classes.AjaxHelper.addAjaxArray(" . json_encode(Form::tokenizeUrl()) . ");});");
35
 
36
  Plugin::addAction('afterApplicationContent', array(
37
  FontSources::class,
@@ -51,28 +53,14 @@ class Predefined {
51
  Js::addGlobalInline('window.N2PLATFORM="' . Platform::getName() . '";');
52
  }
53
 
 
54
 
55
- Js::addGlobalInline('(function(){var N=this;N.N2_=N.N2_||{r:[],d:[]},N.N2R=N.N2R||function(){N.N2_.r.push(arguments)},N.N2D=N.N2D||function(){N.N2_.d.push(arguments)}}).call(window);');
56
- $jQueryFallback = site_url('wp-includes/js/jquery/jquery.js');
57
-
58
- Js::addGlobalInline('window.nextend={jQueryFallback:\'' . $jQueryFallback . '\',localization: {}, ready: function(cb){console.error(\'nextend.ready will be deprecated!\');N2R(\'documentReady\', function($){cb.call(window,$)})}};');
59
-
60
- Js::jQuery($force);
61
-
62
-
63
- self::animation($force);
64
 
65
  FontSources::onFontManagerLoad($force);
66
  }
67
 
68
- private static function animation($force = false) {
69
- static $once;
70
- if ($once != null && !$force) {
71
- return;
72
- }
73
- $once = true;
74
- }
75
-
76
  public static function loadLiteBox() {
77
  }
78
- }
 
3
  namespace Nextend\Framework\Asset;
4
 
5
 
 
6
  use Nextend\Framework\Asset\Css\Css;
7
  use Nextend\Framework\Asset\Fonts\Google\Google;
8
  use Nextend\Framework\Asset\Js\Js;
 
9
  use Nextend\Framework\Font\FontSources;
10
  use Nextend\Framework\Form\Form;
11
  use Nextend\Framework\Platform\Platform;
12
  use Nextend\Framework\Plugin;
13
  use Nextend\Framework\ResourceTranslator\ResourceTranslator;
 
14
  use Nextend\SmartSlider3\Application\Frontend\ApplicationTypeFrontend;
15
  use Nextend\SmartSlider3\Settings;
16
 
21
  if ($once != null && !$force) {
22
  return;
23
  }
24
+ $once = true;
25
+ wp_enqueue_script('jquery');
26
+ $jQueryFallback = site_url('wp-includes/js/jquery/jquery.js');
27
+
28
+ Js::addGlobalInline('_N2._jQueryFallback=\'' . $jQueryFallback . '\';');
29
+
30
  $family = n2_x('Montserrat', 'Default Google font family for admin');
31
  foreach (explode(',', n2_x('latin', 'Default Google font charset for admin')) as $subset) {
32
  Google::addSubset($subset);
33
  }
34
  Google::addFont($family);
35
 
36
+ Js::addFirstCode("_N2.r(['AjaxHelper'],function(){_N2.AjaxHelper.addAjaxArray(" . json_encode(Form::tokenizeUrl()) . ");});");
37
 
38
  Plugin::addAction('afterApplicationContent', array(
39
  FontSources::class,
53
  Js::addGlobalInline('window.N2PLATFORM="' . Platform::getName() . '";');
54
  }
55
 
56
+ Js::addGlobalInline('(function(){this._N2=this._N2||{_r:[],_d:[],r:function(){this._r.push(arguments)},d:function(){this._d.push(arguments)}}}).call(window);');
57
 
58
+ Js::addStaticGroup(ApplicationTypeFrontend::getAssetsPath() . "/dist/n2.min.js", 'n2');
 
 
 
 
 
 
 
 
59
 
60
  FontSources::onFontManagerLoad($force);
61
  }
62
 
 
 
 
 
 
 
 
 
63
  public static function loadLiteBox() {
64
  }
65
+ }
66
+
Nextend/Framework/Browse/Block/BrowseManager/BlockBrowseManager.php CHANGED
@@ -15,6 +15,6 @@ class BlockBrowseManager extends AbstractBlock {
15
 
16
  public function display() {
17
 
18
- Js::addFirstCode("new N2Classes.NextendBrowse('" . $this->getAjaxUrlBrowse() . "', " . (defined('N2_IMAGE_UPLOAD_DISABLE') ? 0 : 1) . ");");
19
  }
20
  }
15
 
16
  public function display() {
17
 
18
+ Js::addFirstCode("new _N2.NextendBrowse('" . $this->getAjaxUrlBrowse() . "', " . (defined('N2_IMAGE_UPLOAD_DISABLE') ? 0 : 1) . ");");
19
  }
20
  }
Nextend/Framework/Cache/Combine.php DELETED
@@ -1,61 +0,0 @@
1
- <?php
2
-
3
- namespace Nextend\Framework\Cache;
4
-
5
- class Combine extends AbstractCache {
6
-
7
- protected $files = array();
8
- protected $inline = '';
9
- protected $fileType = '';
10
- protected $minify;
11
- protected $options = array();
12
-
13
- public function __construct($fileType, $minify = null, $options = array()) {
14
- $this->fileType = $fileType;
15
- $this->minify = $minify;
16
- $this->options = $options;
17
- $this->options['minify'] = $this->minify;
18
- parent::__construct('combined', true);
19
- }
20
-
21
- public function add($file) {
22
- if (!in_array($file, $this->files)) {
23
- $this->files[] = $file;
24
- }
25
- }
26
-
27
- public function addInline($text) {
28
- $this->inline .= $text;
29
- }
30
-
31
- protected function getHash() {
32
- $hash = '';
33
- for ($i = 0; $i < count($this->files); $i++) {
34
- $hash .= $this->files[$i] . filemtime($this->files[$i]);
35
- }
36
- if (!empty($this->inline)) {
37
- $hash .= $this->inline;
38
- }
39
-
40
- return md5($hash . json_encode($this->options));
41
- }
42
-
43
- public function make() {
44
- $hash = $this->getHash();
45
- $fileName = $hash . '.' . $this->fileType;
46
- if (!$this->exists($fileName)) {
47
- $buffer = '';
48
- for ($i = 0; $i < count($this->files); $i++) {
49
- $buffer .= file_get_contents($this->files[$i]);
50
- }
51
- if (is_callable($this->minify)) {
52
- $buffer = call_user_func($this->minify, $buffer);
53
- }
54
- $buffer .= $this->inline;
55
-
56
- $this->set($fileName, $buffer);
57
- }
58
-
59
- return $this->getPath($fileName);
60
- }
61
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Nextend/Framework/Controller/Admin/AbstractAdminController.php CHANGED
@@ -4,10 +4,9 @@
4
  namespace Nextend\Framework\Controller\Admin;
5
 
6
 
7
- use Nextend\Framework\Asset\Css\Css;
8
  use Nextend\Framework\Asset\Predefined;
9
  use Nextend\Framework\Controller\AbstractController;
10
- use Nextend\Framework\Settings;
11
 
12
  abstract class AbstractAdminController extends AbstractController {
13
 
@@ -15,6 +14,8 @@ abstract class AbstractAdminController extends AbstractController {
15
  // Prevent browser from cache on backward button.
16
  header("Cache-Control: no-store");
17
 
 
 
18
  parent::initialize();
19
 
20
  Predefined::frontend();
4
  namespace Nextend\Framework\Controller\Admin;
5
 
6
 
7
+ use Nextend\Framework\Asset\Js\Js;
8
  use Nextend\Framework\Asset\Predefined;
9
  use Nextend\Framework\Controller\AbstractController;
 
10
 
11
  abstract class AbstractAdminController extends AbstractController {
12
 
14
  // Prevent browser from cache on backward button.
15
  header("Cache-Control: no-store");
16
 
17
+ Js::addGlobalInline('window.N2DISABLESCHEDULER=1;');
18
+
19
  parent::initialize();
20
 
21
  Predefined::frontend();
Nextend/Framework/FastImageSize/FastImageSize.php ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * fast-image-size base class
5
+ *
6
+ * @package fast-image-size
7
+ * @copyright (c) Marc Alexander <admin@m-a-styles.de>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Nextend\Framework\FastImageSize;
14
+
15
+ use Nextend\Framework\Pattern\SingletonTrait;
16
+ use Nextend\Framework\ResourceTranslator\ResourceTranslator;
17
+
18
+ class FastImageSize {
19
+
20
+ use SingletonTrait;
21
+
22
+ private static $cache = array();
23
+
24
+ /**
25
+ * @param string $image
26
+ * @param array $attributes
27
+ */
28
+ public static function initAttributes($image, &$attributes) {
29
+
30
+ $size = self::getSize($image);
31
+
32
+ if ($size) {
33
+ $attributes['width'] = $size['width'];
34
+ $attributes['height'] = $size['height'];
35
+ }
36
+ }
37
+
38
+ public static function getWidth($image) {
39
+
40
+ $size = self::getSize($image);
41
+
42
+ if ($size) {
43
+ return $size['width'];
44
+ }
45
+
46
+ return 0;
47
+ }
48
+
49
+ public static function getSize($image) {
50
+ $imagePath = ResourceTranslator::toPath($image);
51
+
52
+ if (!isset(self::$cache[$imagePath])) {
53
+ if (empty($imagePath)) {
54
+ self::$cache[$imagePath] = false;
55
+ } else {
56
+ self::$cache[$imagePath] = self::getInstance()
57
+ ->getImageSize($imagePath);
58
+ }
59
+ }
60
+
61
+ return self::$cache[$imagePath];
62
+ }
63
+
64
+ /** @var array Size info that is returned */
65
+ protected $size = array();
66
+
67
+ /** @var string Data retrieved from remote */
68
+ protected $data = '';
69
+
70
+ /** @var array List of supported image types and associated image types */
71
+ protected $supportedTypes = array(
72
+ 'png' => array('png'),
73
+ 'gif' => array('gif'),
74
+ 'jpeg' => array(
75
+ 'jpeg',
76
+ 'jpg'
77
+ ),
78
+ 'webp' => array(
79
+ 'webp',
80
+ ),
81
+ 'svg' => array(
82
+ 'svg',
83
+ )
84
+ );
85
+
86
+ /** @var array Class map that links image extensions/mime types to class */
87
+ protected $classMap;
88
+
89
+ /** @var array An array containing the classes of supported image types */
90
+ protected $type;
91
+
92
+ /**
93
+ * Get image dimensions of supplied image
94
+ *
95
+ * @param string $file Path to image that should be checked
96
+ * @param string $type Mimetype of image
97
+ *
98
+ * @return array|bool Array with image dimensions if successful, false if not
99
+ */
100
+ public function getImageSize($file, $type = '') {
101
+ // Reset values
102
+ $this->resetValues();
103
+
104
+ // Treat image type as unknown if extension or mime type is unknown
105
+ if (!preg_match('/\.([a-z0-9]+)$/i', $file, $match) && empty($type)) {
106
+ $this->getImagesizeUnknownType($file);
107
+ } else {
108
+ $extension = (empty($type) && isset($match[1])) ? $match[1] : preg_replace('/.+\/([a-z0-9-.]+)$/i', '$1', $type);
109
+
110
+ $this->getImageSizeByExtension($file, $extension);
111
+ }
112
+
113
+ return sizeof($this->size) > 1 ? $this->size : false;
114
+ }
115
+
116
+ /**
117
+ * Get dimensions of image if type is unknown
118
+ *
119
+ * @param string $filename Path to file
120
+ */
121
+ protected function getImagesizeUnknownType($filename) {
122
+ // Grab the maximum amount of bytes we might need
123
+ $data = $this->getImage($filename, 0, Type\TypeJpeg::JPEG_MAX_HEADER_SIZE, false);
124
+
125
+ if ($data !== false) {
126
+ $this->loadAllTypes();
127
+ foreach ($this->type as $imageType) {
128
+ $imageType->getSize($filename);
129
+
130
+ if (sizeof($this->size) > 1) {
131
+ break;
132
+ }
133
+ }
134
+ }
135
+ }
136
+
137
+ /**
138
+ * Get image size by file extension
139
+ *
140
+ * @param string $file Path to image that should be checked
141
+ * @param string $extension Extension/type of image
142
+ */
143
+ protected function getImageSizeByExtension($file, $extension) {
144
+ $extension = strtolower($extension);
145
+ $this->loadExtension($extension);
146
+ if (isset($this->classMap[$extension])) {
147
+ $this->classMap[$extension]->getSize($file);
148
+ }
149
+ }
150
+
151
+ /**
152
+ * Reset values to default
153
+ */
154
+ protected function resetValues() {
155
+ $this->size = array();
156
+ $this->data = '';
157
+ }
158
+
159
+ /**
160
+ * Set mime type based on supplied image
161
+ *
162
+ * @param int $type Type of image
163
+ */
164
+ public function setImageType($type) {
165
+ $this->size['type'] = $type;
166
+ }
167
+
168
+ /**
169
+ * Set size info
170
+ *
171
+ * @param array $size Array containing size info for image
172
+ */
173
+ public function setSize($size) {
174
+ $this->size = $size;
175
+ }
176
+
177
+ /**
178
+ * Get image from specified path/source
179
+ *
180
+ * @param string $filename Path to image
181
+ * @param int $offset Offset at which reading of the image should start
182
+ * @param int $length Maximum length that should be read
183
+ * @param bool $forceLength True if the length needs to be the specified
184
+ * length, false if not. Default: true
185
+ *
186
+ * @return false|string Image data or false if result was empty
187
+ */
188
+ public function getImage($filename, $offset, $length, $forceLength = true) {
189
+ if (empty($this->data)) {
190
+ $this->data = @file_get_contents($filename, null, null, $offset, $length);
191
+ }
192
+
193
+ // Force length to expected one. Return false if data length
194
+ // is smaller than expected length
195
+ if ($forceLength === true) {
196
+ return (strlen($this->data) < $length) ? false : substr($this->data, $offset, $length);
197
+ }
198
+
199
+ return empty($this->data) ? false : $this->data;
200
+ }
201
+
202
+ /**
203
+ * Get return data
204
+ *
205
+ * @return array|bool Size array if dimensions could be found, false if not
206
+ */
207
+ protected function getReturnData() {
208
+ return sizeof($this->size) > 1 ? $this->size : false;
209
+ }
210
+
211
+ /**
212
+ * Load all supported types
213
+ */
214
+ protected function loadAllTypes() {
215
+ foreach ($this->supportedTypes as $imageType => $extension) {
216
+ $this->loadType($imageType);
217
+ }
218
+ }
219
+
220
+ /**
221
+ * Load an image type by extension
222
+ *
223
+ * @param string $extension Extension of image
224
+ */
225
+ protected function loadExtension($extension) {
226
+ if (isset($this->classMap[$extension])) {
227
+ return;
228
+ }
229
+ foreach ($this->supportedTypes as $imageType => $extensions) {
230
+ if (in_array($extension, $extensions, true)) {
231
+ $this->loadType($imageType);
232
+ }
233
+ }
234
+ }
235
+
236
+ /**
237
+ * Load an image type
238
+ *
239
+ * @param string $imageType Mimetype
240
+ */
241
+ protected function loadType($imageType) {
242
+ if (isset($this->type[$imageType])) {
243
+ return;
244
+ }
245
+
246
+ $className = '\\' . __NAMESPACE__ . '\Type\Type' . ucfirst($imageType);
247
+
248
+ $this->type[$imageType] = new $className($this);
249
+
250
+ // Create class map
251
+ foreach ($this->supportedTypes[$imageType] as $ext) {
252
+ /** @var Type\TypeInterface */
253
+ $this->classMap[$ext] = $this->type[$imageType];
254
+ }
255
+ }
256
+ }
Nextend/Framework/FastImageSize/Type/TypeBase.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * fast-image-size image type base
5
+ *
6
+ * @package fast-image-size
7
+ * @copyright (c) Marc Alexander <admin@m-a-styles.de>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Nextend\Framework\FastImageSize\Type;
14
+
15
+ use Nextend\Framework\FastImageSize\FastImageSize;
16
+
17
+ abstract class TypeBase implements TypeInterface {
18
+
19
+ /** @var FastImageSize */
20
+ protected $fastImageSize;
21
+
22
+ /**
23
+ * Base constructor for image types
24
+ *
25
+ * @param FastImageSize $fastImageSize
26
+ */
27
+ public function __construct(FastImageSize $fastImageSize) {
28
+ $this->fastImageSize = $fastImageSize;
29
+ }
30
+ }
Nextend/Framework/FastImageSize/Type/TypeGif.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * fast-image-size image type gif
5
+ *
6
+ * @package fast-image-size
7
+ * @copyright (c) Marc Alexander <admin@m-a-styles.de>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Nextend\Framework\FastImageSize\Type;
14
+
15
+ class TypeGif extends TypeBase {
16
+
17
+ /** @var string GIF87a header */
18
+ const GIF87A_HEADER = "\x47\x49\x46\x38\x37\x61";
19
+
20
+ /** @var string GIF89a header */
21
+ const GIF89A_HEADER = "\x47\x49\x46\x38\x39\x61";
22
+
23
+ /** @var int GIF header size */
24
+ const GIF_HEADER_SIZE = 6;
25
+
26
+ /**
27
+ * {@inheritdoc}
28
+ */
29
+ public function getSize($filename) {
30
+ // Get data needed for reading image dimensions as outlined by GIF87a
31
+ // and GIF89a specifications
32
+ $data = $this->fastImageSize->getImage($filename, 0, self::GIF_HEADER_SIZE + self::SHORT_SIZE * 2);
33
+
34
+ $type = substr($data, 0, self::GIF_HEADER_SIZE);
35
+ if ($type !== self::GIF87A_HEADER && $type !== self::GIF89A_HEADER) {
36
+ return;
37
+ }
38
+
39
+ $size = unpack('vwidth/vheight', substr($data, self::GIF_HEADER_SIZE, self::SHORT_SIZE * 2));
40
+
41
+ $this->fastImageSize->setSize($size);
42
+ $this->fastImageSize->setImageType(IMAGETYPE_GIF);
43
+ }
44
+ }
Nextend/Framework/FastImageSize/Type/TypeInterface.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * fast-image-size image type interface
5
+ *
6
+ * @package fast-image-size
7
+ * @copyright (c) Marc Alexander <admin@m-a-styles.de>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Nextend\Framework\FastImageSize\Type;
14
+
15
+ interface TypeInterface {
16
+
17
+ /** @var int 4-byte long size */
18
+ const LONG_SIZE = 4;
19
+
20
+ /** @var int 2-byte short size */
21
+ const SHORT_SIZE = 2;
22
+
23
+ /**
24
+ * Get size of supplied image
25
+ *
26
+ * @param string $filename File name of image
27
+ *
28
+ * @return null
29
+ */
30
+ public function getSize($filename);
31
+ }
Nextend/Framework/FastImageSize/Type/TypeJpeg.php ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * fast-image-size image type jpeg
5
+ *
6
+ * @package fast-image-size
7
+ * @copyright (c) Marc Alexander <admin@m-a-styles.de>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Nextend\Framework\FastImageSize\Type;
14
+
15
+ class TypeJpeg extends TypeBase {
16
+
17
+ /** @var int JPEG max header size. Headers can be bigger, but we'll abort
18
+ * going through the header after this */
19
+ const JPEG_MAX_HEADER_SIZE = 786432; // = 768 kiB
20
+
21
+ /** @var string JPEG header */
22
+ const JPEG_HEADER = "\xFF\xD8";
23
+
24
+ /** @var string Start of frame marker */
25
+ const SOF_START_MARKER = "\xFF";
26
+
27
+ /** @var string End of image (EOI) marker */
28
+ const JPEG_EOI_MARKER = "\xD9";
29
+
30
+ /** @var array JPEG SOF markers */
31
+ protected $sofMarkers = array(
32
+ "\xC0",
33
+ "\xC1",
34
+ "\xC2",
35
+ "\xC3",
36
+ "\xC5",
37
+ "\xC6",
38
+ "\xC7",
39
+ "\xC9",
40
+ "\xCA",
41
+ "\xCB",
42
+ "\xCD",
43
+ "\xCE",
44
+ "\xCF"
45
+ );
46
+
47
+ /** @var string|bool JPEG data stream */
48
+ protected $data = '';
49
+
50
+ /** @var int Data length */
51
+ protected $dataLength = 0;
52
+
53
+ /**
54
+ * {@inheritdoc}
55
+ */
56
+ public function getSize($filename) {
57
+ // Do not force the data length
58
+ $this->data = $this->fastImageSize->getImage($filename, 0, self::JPEG_MAX_HEADER_SIZE, false);
59
+
60
+ // Check if file is jpeg
61
+ if ($this->data === false || substr($this->data, 0, self::SHORT_SIZE) !== self::JPEG_HEADER) {
62
+ return;
63
+ }
64
+
65
+ // Look through file for SOF marker
66
+ $size = $this->getSizeInfo();
67
+
68
+ $this->fastImageSize->setSize($size);
69
+ $this->fastImageSize->setImageType(IMAGETYPE_JPEG);
70
+ }
71
+
72
+ /**
73
+ * Get size info from image data
74
+ *
75
+ * @return array An array with the image's size info or an empty array if
76
+ * size info couldn't be found
77
+ */
78
+ protected function getSizeInfo() {
79
+ $size = array();
80
+ // since we check $i + 1 we need to stop one step earlier
81
+ $this->dataLength = strlen($this->data) - 1;
82
+
83
+ $sofStartRead = true;
84
+
85
+ // Look through file for SOF marker
86
+ for ($i = 2; $i < $this->dataLength; $i++) {
87
+ $marker = $this->getNextMarker($i, $sofStartRead);
88
+
89
+ if (in_array($marker, $this->sofMarkers)) {
90
+ // Extract size info from SOF marker
91
+ return $this->extractSizeInfo($i);
92
+ } else {
93
+ // Extract length only
94
+ $markerLength = $this->extractMarkerLength($i);
95
+
96
+ if ($markerLength < 2) {
97
+ return $size;
98
+ }
99
+
100
+ $i += $markerLength - 1;
101
+ continue;
102
+ }
103
+ }
104
+
105
+ return $size;
106
+ }
107
+
108
+ /**
109
+ * Extract marker length from data
110
+ *
111
+ * @param int $i Current index
112
+ *
113
+ * @return int Length of current marker
114
+ */
115
+ protected function extractMarkerLength($i) {
116
+ // Extract length only
117
+ list(, $unpacked) = unpack("H*", substr($this->data, $i, self::LONG_SIZE));
118
+
119
+ // Get width and height from unpacked size info
120
+ $markerLength = hexdec(substr($unpacked, 0, 4));
121
+
122
+ return $markerLength;
123
+ }
124
+
125
+ /**
126
+ * Extract size info from data
127
+ *
128
+ * @param int $i Current index
129
+ *
130
+ * @return array Size info of current marker
131
+ */
132
+ protected function extractSizeInfo($i) {
133
+ // Extract size info from SOF marker
134
+ list(, $unpacked) = unpack("H*", substr($this->data, $i - 1 + self::LONG_SIZE, self::LONG_SIZE));
135
+
136
+ // Get width and height from unpacked size info
137
+ $size = array(
138
+ 'width' => hexdec(substr($unpacked, 4, 4)),
139
+ 'height' => hexdec(substr($unpacked, 0, 4)),
140
+ );
141
+
142
+ return $size;
143
+ }
144
+
145
+ /**
146
+ * Get next JPEG marker in file
147
+ *
148
+ * @param int $i Current index
149
+ * @param bool $sofStartRead Flag whether SOF start padding was already read
150
+ *
151
+ * @return string Next JPEG marker in file
152
+ */
153
+ protected function getNextMarker(&$i, &$sofStartRead) {
154
+ $this->skipStartPadding($i, $sofStartRead);
155
+
156
+ do {
157
+ if ($i >= $this->dataLength) {
158
+ return self::JPEG_EOI_MARKER;
159
+ }
160
+ $marker = $this->data[$i];
161
+ $i++;
162
+ } while ($marker == self::SOF_START_MARKER);
163
+
164
+ return $marker;
165
+ }
166
+
167
+ /**
168
+ * Skip over any possible padding until we reach a byte without SOF start
169
+ * marker. Extraneous bytes might need to require proper treating.
170
+ *
171
+ * @param int $i Current index
172
+ * @param bool $sofStartRead Flag whether SOF start padding was already read
173
+ */
174
+ protected function skipStartPadding(&$i, &$sofStartRead) {
175
+ if (!$sofStartRead) {
176
+ while ($this->data[$i] !== self::SOF_START_MARKER) {
177
+ $i++;
178
+ }
179
+ }
180
+ }
181
+ }
Nextend/Framework/FastImageSize/Type/TypePng.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * fast-image-size image type png
5
+ *
6
+ * @package fast-image-size
7
+ * @copyright (c) Marc Alexander <admin@m-a-styles.de>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Nextend\Framework\FastImageSize\Type;
14
+
15
+ class TypePng extends TypeBase {
16
+
17
+ /** @var string PNG header */
18
+ const PNG_HEADER = "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a";
19
+
20
+ /** @var int PNG IHDR offset */
21
+ const PNG_IHDR_OFFSET = 12;
22
+
23
+ /**
24
+ * {@inheritdoc}
25
+ */
26
+ public function getSize($filename) {
27
+ // Retrieve image data including the header, the IHDR tag, and the
28
+ // following 2 chunks for the image width and height
29
+ $data = $this->fastImageSize->getImage($filename, 0, self::PNG_IHDR_OFFSET + 3 * self::LONG_SIZE);
30
+
31
+ // Check if header fits expected format specified by RFC 2083
32
+ if (substr($data, 0, self::PNG_IHDR_OFFSET - self::LONG_SIZE) !== self::PNG_HEADER || substr($data, self::PNG_IHDR_OFFSET, self::LONG_SIZE) !== 'IHDR') {
33
+ return;
34
+ }
35
+
36
+ $size = unpack('Nwidth/Nheight', substr($data, self::PNG_IHDR_OFFSET + self::LONG_SIZE, self::LONG_SIZE * 2));
37
+ $this->fastImageSize->setSize($size);
38
+ $this->fastImageSize->setImageType(IMAGETYPE_PNG);
39
+ }
40
+ }
Nextend/Framework/FastImageSize/Type/TypeSvg.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Nextend\Framework\FastImageSize\Type;
4
+
5
+ class TypeSvg extends TypeBase {
6
+
7
+ /**
8
+ * {@inheritdoc}
9
+ */
10
+ public function getSize($filename) {
11
+
12
+ $data = $this->fastImageSize->getImage($filename, 0, 100);
13
+
14
+ preg_match('/width="([0-9]+)"/', $data, $matches);
15
+ if ($matches && $matches[1] > 0) {
16
+ $size = array();
17
+ $size['width'] = $matches[1];
18
+
19
+ preg_match('/height="([0-9]+)"/', $data, $matches);
20
+ if ($matches && $matches[1] > 0) {
21
+ $size['height'] = $matches[1];
22
+ $this->fastImageSize->setSize($size);
23
+
24
+ return;
25
+ }
26
+ }
27
+
28
+ preg_match('/viewBox=["\']([0-9]+) ([0-9]+) ([0-9]+) ([0-9]+)["\']/i', $data, $matches);
29
+
30
+ if ($matches) {
31
+ $this->fastImageSize->setSize(array(
32
+ 'width' => $matches[3] - $matches[1],
33
+ 'height' => $matches[4] - $matches[2],
34
+ ));
35
+ }
36
+
37
+ }
38
+ }
Nextend/Framework/FastImageSize/Type/TypeWebp.php ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * fast-image-size image type webp
5
+ *
6
+ * @package fast-image-size
7
+ * @copyright (c) Marc Alexander <admin@m-a-styles.de>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Nextend\Framework\FastImageSize\Type;
14
+
15
+ use Nextend\Framework\FastImageSize\FastImageSize;
16
+
17
+ class TypeWebp extends TypeBase {
18
+
19
+ /** @var string RIFF header */
20
+ const WEBP_RIFF_HEADER = "RIFF";
21
+
22
+ /** @var string Webp header */
23
+ const WEBP_HEADER = "WEBP";
24
+
25
+ /** @var string VP8 chunk header */
26
+ const VP8_HEADER = "VP8";
27
+
28
+ /** @var string Simple(lossy) webp format */
29
+ const WEBP_FORMAT_SIMPLE = ' ';
30
+
31
+ /** @var string Lossless webp format */
32
+ const WEBP_FORMAT_LOSSLESS = 'L';
33
+
34
+ /** @var string Extended webp format */
35
+ const WEBP_FORMAT_EXTENDED = 'X';
36
+
37
+ /** @var int WEBP header size needed for retrieving image size */
38
+ const WEBP_HEADER_SIZE = 30;
39
+
40
+ /** @var array Size info array */
41
+ protected $size;
42
+
43
+ /**
44
+ * Constructor for webp image type. Adds missing constant if necessary.
45
+ *
46
+ * @param FastImageSize $fastImageSize
47
+ */
48
+ public function __construct(FastImageSize $fastImageSize) {
49
+ parent::__construct($fastImageSize);
50
+
51
+ if (!defined('IMAGETYPE_WEBP')) {
52
+ define('IMAGETYPE_WEBP', 18);
53
+ }
54
+ }
55
+
56
+ /**
57
+ * {@inheritdoc}
58
+ */
59
+ public function getSize($filename) {
60
+ // Do not force length of header
61
+ $data = $this->fastImageSize->getImage($filename, 0, self::WEBP_HEADER_SIZE);
62
+
63
+ $this->size = array();
64
+
65
+ $webpFormat = substr($data, 15, 1);
66
+
67
+ if (!$this->hasWebpHeader($data) || !$this->isValidFormat($webpFormat)) {
68
+ return;
69
+ }
70
+
71
+ $data = substr($data, 16, 14);
72
+
73
+ $this->getWebpSize($data, $webpFormat);
74
+
75
+ $this->fastImageSize->setSize($this->size);
76
+ $this->fastImageSize->setImageType(IMAGETYPE_WEBP);
77
+ }
78
+
79
+ /**
80
+ * Check if $data has valid WebP header
81
+ *
82
+ * @param string $data Image data
83
+ *
84
+ * @return bool True if $data has valid WebP header, false if not
85
+ */
86
+ protected function hasWebpHeader($data) {
87
+ $riffSignature = substr($data, 0, self::LONG_SIZE);
88
+ $webpSignature = substr($data, 8, self::LONG_SIZE);
89
+ $vp8Signature = substr($data, 12, self::SHORT_SIZE + 1);
90
+
91
+ return !empty($data) && $riffSignature === self::WEBP_RIFF_HEADER && $webpSignature === self::WEBP_HEADER && $vp8Signature === self::VP8_HEADER;
92
+ }
93
+
94
+ /**
95
+ * Check if $format is a valid WebP format
96
+ *
97
+ * @param string $format Format string
98
+ *
99
+ * @return bool True if format is valid WebP format, false if not
100
+ */
101
+ protected function isValidFormat($format) {
102
+ return in_array($format, array(
103
+ self::WEBP_FORMAT_SIMPLE,
104
+ self::WEBP_FORMAT_LOSSLESS,
105
+ self::WEBP_FORMAT_EXTENDED
106
+ ));
107
+ }
108
+
109
+ /**
110
+ * Get webp size info depending on format type and set size array values
111
+ *
112
+ * @param string $data Data string
113
+ * @param string $format Format string
114
+ */
115
+ protected function getWebpSize($data, $format) {
116
+ switch ($format) {
117
+ case self::WEBP_FORMAT_SIMPLE:
118
+ $this->size = unpack('vwidth/vheight', substr($data, 10, 4));
119
+ break;
120
+
121
+ case self::WEBP_FORMAT_LOSSLESS:
122
+ // Lossless uses 14-bit values so we'll have to use bitwise shifting
123
+ $this->size = array(
124
+ 'width' => ord($data[5]) + ((ord($data[6]) & 0x3F) << 8) + 1,
125
+ 'height' => (ord($data[6]) >> 6) + (ord($data[7]) << 2) + ((ord($data[8]) & 0xF) << 10) + 1,
126
+ );
127
+ break;
128
+
129
+ case self::WEBP_FORMAT_EXTENDED:
130
+ // Extended uses 24-bit values cause 14-bit for lossless wasn't weird enough
131
+ $this->size = array(
132
+ 'width' => ord($data[8]) + (ord($data[9]) << 8) + (ord($data[10]) << 16) + 1,
133
+ 'height' => ord($data[11]) + (ord($data[12]) << 8) + (ord($data[13]) << 16) + 1,
134
+ );
135
+ break;
136
+ }
137
+ }
138
+ }
Nextend/Framework/Font/Block/FontManager/BlockFontManager.php CHANGED
@@ -47,10 +47,10 @@ class BlockFontManager extends AbstractBlockVisual {
47
  $model = $this->getModel();
48
 
49
  Js::addFirstCode("
50
- N2Classes.CSSRendererFont.defaultFamily = " . json_encode(FontSettings::getDefaultFamily()) . ";
51
- N2Classes.CSSRendererFont.rendererModes = " . json_encode(FontRenderer::$mode) . ";
52
- N2Classes.CSSRendererFont.pre = " . json_encode(FontRenderer::$pre) . ";
53
- new N2Classes.NextendFontManager();
54
  ");
55
 
56
  $model->renderForm();
47
  $model = $this->getModel();
48
 
49
  Js::addFirstCode("
50
+ _N2.CSSRendererFont.defaultFamily = " . json_encode(FontSettings::getDefaultFamily()) . ";
51
+ _N2.CSSRendererFont.rendererModes = " . json_encode(FontRenderer::$mode) . ";
52
+ _N2.CSSRendererFont.pre = " . json_encode(FontRenderer::$pre) . ";
53
+ new _N2.NextendFontManager();
54
  ");
55
 
56
  $model->renderForm();
Nextend/Framework/Font/FontRenderer.php CHANGED
@@ -165,22 +165,6 @@ FontRenderer::$mode = array(
165
  '@pre@selector a:HOVER, @pre@selector a:ACTIVE' => '@tab1'
166
  )
167
  ),
168
- 'accordionslidetitle' => array(
169
- 'id' => 'accordionslidetitle',
170
- 'label' => n2_('Accordion slide title'),
171
- 'tabs' => array(
172
- n2_('Normal'),
173
- n2_('Active')
174
- ),
175
- 'renderOptions' => array(
176
- 'combined' => false
177
- ),
178
- 'preview' => '<div class="{fontClassName}">' . n2_('Slide title') . '</div>',
179
- 'selectors' => array(
180
- '@pre@selector' => '@tab0',
181
- '@pre.n2-ss-slide-active @selector, @pre@selector:HOVER' => '@tab1'
182
- )
183
- ),
184
  'paragraph' => array(
185
  'id' => 'paragraph',
186
  'label' => n2_('Paragraph'),
165
  '@pre@selector a:HOVER, @pre@selector a:ACTIVE' => '@tab1'
166
  )
167
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  'paragraph' => array(
169
  'id' => 'paragraph',
170
  'label' => n2_('Paragraph'),
Nextend/Framework/Font/Sources/GoogleFonts/GoogleFonts.php CHANGED
@@ -162,7 +162,7 @@ class GoogleFonts extends AbstractFontSource {
162
  $parameters->fillDefault(self::getDefaults());
163
 
164
  if ($parameters->get('google-enabled-backend', 1)) {
165
- Js::addInline('new N2Classes.NextendFontServiceGoogle("' . implode(',', self::$styles) . '","' . implode(',', self::$subsets) . '", ' . json_encode(self::$fonts) . ', ' . json_encode(AssetManager::$googleFonts->getLoadedFamilies()) . ');');
166
  }
167
  }
168
 
162
  $parameters->fillDefault(self::getDefaults());
163
 
164
  if ($parameters->get('google-enabled-backend', 1)) {
165
+ Js::addInline('new _N2.NextendFontServiceGoogle("' . implode(',', self::$styles) . '","' . implode(',', self::$subsets) . '", ' . json_encode(self::$fonts) . ', ' . json_encode(AssetManager::$googleFonts->getLoadedFamilies()) . ');');
166
  }
167
  }
168
 
Nextend/Framework/Form/AbstractField.php CHANGED
@@ -297,7 +297,7 @@ abstract class AbstractField implements ContainedInterface {
297
  'relatedFieldsOn' => $this->relatedFields,
298
  'relatedFieldsOff' => $this->relatedFieldsOff
299
  );
300
- Js::addInline('new N2Classes.FormRelatedFields("' . $this->fieldID . '", ' . json_encode($options) . ');');
301
  }
302
  }
303
 
297
  'relatedFieldsOn' => $this->relatedFields,
298
  'relatedFieldsOff' => $this->relatedFieldsOff
299
  );
300
+ Js::addInline('new _N2.FormRelatedFields("' . $this->fieldID . '", ' . json_encode($options) . ');');
301
  }
302
  }
303
 
Nextend/Framework/Form/Container/LayerWindow/ContainerDesign.php CHANGED
@@ -37,6 +37,6 @@ class ContainerDesign extends ContainerGeneral {
37
  ->createAjaxUrl('css/index')
38
  );
39
 
40
- Js::addInline('new N2Classes.BasicCSS(' . json_encode($id) . ', ' . json_encode($options) . ');');
41
  }
42
  }
37
  ->createAjaxUrl('css/index')
38
  );
39
 
40
+ Js::addInline('new _N2.BasicCSS(' . json_encode($id) . ', ' . json_encode($options) . ');');
41
  }
42
  }
Nextend/Framework/Form/Element/Breakpoint.php CHANGED
@@ -85,7 +85,7 @@ class Breakpoint extends AbstractField implements ContainerInterface {
85
  'global' => $this->global
86
  );
87
 
88
- Js::addInline('new N2Classes.FormElementBreakpoint("' . $this->fieldID . '", ' . json_encode($options) . ');');
89
 
90
 
91
  return '<div id="' . $this->getID() . '" class="n2_field_breakpoint"><div class="n2_field_breakpoint__pre_fields">' . $preHtml . '</div><div class="n2_field_breakpoint__breakpoint_container" data-orientation="portrait">' . $html . '</div></div>';
85
  'global' => $this->global
86
  );
87
 
88
+ Js::addInline('new _N2.FormElementBreakpoint("' . $this->fieldID . '", ' . json_encode($options) . ');');
89
 
90
 
91
  return '<div id="' . $this->getID() . '" class="n2_field_breakpoint"><div class="n2_field_breakpoint__pre_fields">' . $preHtml . '</div><div class="n2_field_breakpoint__breakpoint_container" data-orientation="portrait">' . $html . '</div></div>';
Nextend/Framework/Form/Element/Button/ButtonMoreLess.php CHANGED
@@ -24,7 +24,7 @@ class ButtonMoreLess extends Button {
24
  $options['relatedFields'] = $this->relatedFields;
25
  }
26
 
27
- Js::addInline('new N2Classes.FormElementButtonMoreLess("' . $this->fieldID . '", ' . json_encode($options) . ');');
28
 
29
  return parent::fetchElement();
30
  }
24
  $options['relatedFields'] = $this->relatedFields;
25
  }
26
 
27
+ Js::addInline('new _N2.FormElementButtonMoreLess("' . $this->fieldID . '", ' . json_encode($options) . ');');
28
 
29
  return parent::fetchElement();
30
  }
Nextend/Framework/Form/Element/Button/ButtonRecordViewer.php CHANGED
@@ -22,7 +22,7 @@ class ButtonRecordViewer extends Button {
22
  ->createAjaxUrl(array(
23
  'generator/recordstable'
24
  ));
25
- Js::addInline('new N2Classes.FieldRecordViewer(' . json_encode($this->fieldID) . ',' . json_encode($ajaxRecordUrl) . ');');
26
 
27
 
28
  return parent::fetchElement();
22
  ->createAjaxUrl(array(
23
  'generator/recordstable'
24
  ));
25
+ Js::addInline('new _N2.FieldRecordViewer(' . json_encode($this->fieldID) . ',' . json_encode($ajaxRecordUrl) . ');');
26
 
27
 
28
  return parent::fetchElement();
Nextend/Framework/Form/Element/CheckboxOnOff.php CHANGED
@@ -32,7 +32,7 @@ class CheckboxOnOff extends AbstractFieldHidden {
32
  'relatedFields' => $this->relatedFields
33
  );
34
 
35
- Js::addInline('new N2Classes.FormElementCheckboxOnOff("' . $this->fieldID . '", ' . json_encode($options) . ');');
36
 
37
  $attr = array(
38
  'class' => 'n2_field_checkbox_onoff' . ($this->isActive() ? ' n2_field_checkbox_onoff--active' : '')
32
  'relatedFields' => $this->relatedFields
33
  );
34
 
35
+ Js::addInline('new _N2.FormElementCheckboxOnOff("' . $this->fieldID . '", ' . json_encode($options) . ');');
36
 
37
  $attr = array(
38
  'class' => 'n2_field_checkbox_onoff' . ($this->isActive() ? ' n2_field_checkbox_onoff--active' : '')
Nextend/Framework/Form/Element/Decoration.php CHANGED
@@ -26,7 +26,7 @@ class Decoration extends AbstractFieldHidden {
26
  'style' => $this->style
27
  ), $this->renderOptions() . parent::fetchElement());
28
 
29
- Js::addInline('new N2Classes.FormElementDecoration("' . $this->fieldID . '", ' . json_encode(array_keys($this->options)) . ');');
30
 
31
  return $html;
32
  }
26
  'style' => $this->style
27
  ), $this->renderOptions() . parent::fetchElement());
28
 
29
+ Js::addInline('new _N2.FormElementDecoration("' . $this->fieldID . '", ' . json_encode(array_keys($this->options)) . ');');
30
 
31
  return $html;
32
  }
Nextend/Framework/Form/Element/Devices.php CHANGED
@@ -18,7 +18,7 @@ class Devices extends AbstractFieldHidden {
18
  'class' => 'n2_field_radio_icon'
19
  ), $this->generateOptions());
20
 
21
- Js::addInline('new N2Classes.FormElementDevices("' . $this->fieldID . '", ' . json_encode($this->values) . ');');
22
 
23
  return $html;
24
  }
18
  'class' => 'n2_field_radio_icon'
19
  ), $this->generateOptions());
20
 
21
+ Js::addInline('new _N2.FormElementDevices("' . $this->fieldID . '", ' . json_encode($this->values) . ');');
22
 
23
  return $html;
24
  }
Nextend/Framework/Form/Element/FloatToPercent.php DELETED
@@ -1,69 +0,0 @@
1
- <?php
2
-
3
- namespace Nextend\Framework\Form\Element;
4
-
5
- use Nextend\Framework\Asset\Js\Js;
6
- use Nextend\Framework\View\Html;
7
-
8
- class FloatToPercent extends AbstractFieldHidden {
9
-
10
- protected $class = 'n2_field_number ';
11
-
12
- protected $min = '';
13
-
14
- protected $max = '';
15
-
16
- protected $sublabel = '';
17
-
18
- protected $fieldType = 'text';
19
-
20
- protected $unit = '%';
21
-
22
- protected $style = 'width:32px;';
23
-
24
- protected function fetchElement() {
25
-
26
- if ($this->min == '') {
27
- $this->min = '-Number.MAX_VALUE';
28
- }
29
-
30
- if ($this->max == '') {
31
- $this->max = 'Number.MAX_VALUE';
32
- }
33
-
34
- Js::addInline('new N2Classes.FormElementFloatToPercent("' . $this->fieldID . '", ' . $this->min . ', ' . $this->max . ');');
35
-
36
- $html = Html::openTag('div', array(
37
- 'class' => 'n2_field_text ' . $this->getClass()
38
- ));
39
-
40
- $html .= Html::tag('input', array(
41
- 'type' => $this->fieldType,
42
- 'id' => $this->fieldID . '-input',
43
- 'value' => $this->getValue() * 100,
44
- 'style' => $this->getStyle(),
45
- 'autocomplete' => 'off'
46
- ), false, false);
47
-
48
- if ($this->unit) {
49
- $html .= Html::tag('div', array(
50
- 'class' => 'n2_field_number__unit'
51
- ), $this->unit);
52
- }
53
- $html .= parent::fetchElement();
54
- $html .= "</div>";
55
-
56
- return $html;
57
- }
58
-
59
- public function setMin($min) {
60
- $this->min = $min;
61
- }
62
-
63
- /**
64
- * @param int $max
65
- */
66
- public function setMax($max) {
67
- $this->max = $max;
68
- }
69
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Nextend/Framework/Form/Element/Font.php CHANGED
@@ -22,7 +22,7 @@ class Font extends AbstractFieldHidden {
22
 
23
  FontManager::enqueue($this->getForm());
24
 
25
- Js::addInline('new N2Classes.FormElementFont("' . $this->fieldID . '", {
26
  mode: "' . $this->mode . '",
27
  label: "' . $this->label . '",
28
  style: "' . $this->style . '",
22
 
23
  FontManager::enqueue($this->getForm());
24
 
25
+ Js::addInline('new _N2.FormElementFont("' . $this->fieldID . '", {
26
  mode: "' . $this->mode . '",
27
  label: "' . $this->label . '",
28
  style: "' . $this->style . '",
Nextend/Framework/Form/Element/Hidden/HiddenFont.php CHANGED
@@ -16,7 +16,7 @@ class HiddenFont extends AbstractFieldHidden {
16
 
17
  FontManager::enqueue($this->getForm());
18
 
19
- Js::addInline('new N2Classes.FormElementFontHidden("' . $this->fieldID . '", {
20
  mode: "' . $this->mode . '",
21
  label: "' . $this->label . '"
22
  });');
16
 
17
  FontManager::enqueue($this->getForm());
18
 
19
+ Js::addInline('new _N2.FormElementFontHidden("' . $this->fieldID . '", {
20
  mode: "' . $this->mode . '",
21
  label: "' . $this->label . '"
22
  });');
Nextend/Framework/Form/Element/Hidden/HiddenStyle.php CHANGED
@@ -16,7 +16,7 @@ class HiddenStyle extends AbstractFieldHidden {
16
 
17
  StyleManager::enqueue($this->getForm());
18
 
19
- Js::addInline('new N2Classes.FormElementStyleHidden("' . $this->fieldID . '", {
20
  mode: "' . $this->mode . '",
21
  label: "' . $this->label . '"
22
  });');
16
 
17
  StyleManager::enqueue($this->getForm());
18
 
19
+ Js::addInline('new _N2.FormElementStyleHidden("' . $this->fieldID . '", {
20
  mode: "' . $this->mode . '",
21
  label: "' . $this->label . '"
22
  });');
Nextend/Framework/Form/Element/IconTab.php CHANGED
@@ -45,7 +45,7 @@ class IconTab extends AbstractFieldHidden {
45
  $options['relatedValueFields'] = $this->relatedValueFields;
46
  }
47
 
48
- Js::addInline('new N2Classes.FormElementIconTab("' . $this->fieldID . '", ' . json_encode($options) . ');');
49
 
50
  return $html;
51
  }
45
  $options['relatedValueFields'] = $this->relatedValueFields;
46
  }
47
 
48
+ Js::addInline('new _N2.FormElementIconTab("' . $this->fieldID . '", ' . json_encode($options) . ');');
49
 
50
  return $html;
51
  }
Nextend/Framework/Form/Element/LayerWindowFocus.php CHANGED
@@ -52,7 +52,7 @@ class LayerWindowFocus extends AbstractField {
52
 
53
  protected function fetchElement() {
54
 
55
- Js::addInline('new N2Classes.FormElementLayerWindowFocus("' . $this->fieldID . '", ' . json_encode(array(
56
  'image' => $this->fieldImage->getID(),
57
  'focusX' => $this->fieldFocusX->getID(),
58
  'focusY' => $this->fieldFocusY->getID(),
52
 
53
  protected function fetchElement() {
54
 
55
+ Js::addInline('new _N2.FormElementLayerWindowFocus("' . $this->fieldID . '", ' . json_encode(array(
56
  'image' => $this->fieldImage->getID(),
57
  'focusX' => $this->fieldFocusX->getID(),
58
  'focusY' => $this->fieldFocusY->getID(),
Nextend/Framework/Form/Element/MarginPadding.php CHANGED
@@ -49,7 +49,7 @@ class MarginPadding extends AbstractFieldHidden implements ContainerInterface {
49
  $html .= parent::fetchElement();
50
  $html .= "</div>";
51
 
52
- Js::addInline('new N2Classes.FormElementMarginPadding("' . $this->fieldID . '", ' . json_encode($subElements) . ', "' . self::$separator . '");');
53
 
54
  $this->renderRelatedFields();
55
 
49
  $html .= parent::fetchElement();
50
  $html .= "</div>";
51
 
52
+ Js::addInline('new _N2.FormElementMarginPadding("' . $this->fieldID . '", ' . json_encode($subElements) . ', "' . self::$separator . '");');
53
 
54
  $this->renderRelatedFields();
55
 
Nextend/Framework/Form/Element/MixedField.php CHANGED
@@ -47,7 +47,7 @@ class MixedField extends AbstractFieldHidden implements ContainerInterface {
47
 
48
  $html .= parent::fetchElement();
49
 
50
- Js::addInline('new N2Classes.FormElementMixed("' . $this->fieldID . '", ' . json_encode($subElements) . ', "' . $this->separator . '");');
51
 
52
  return $this->decorate($html);
53
  }
47
 
48
  $html .= parent::fetchElement();
49
 
50
+ Js::addInline('new _N2.FormElementMixed("' . $this->fieldID . '", ' . json_encode($subElements) . ', "' . $this->separator . '");');
51
 
52
  return $this->decorate($html);
53
  }
Nextend/Framework/Form/Element/OnOff.php CHANGED
@@ -36,7 +36,7 @@ class OnOff extends AbstractFieldHidden {
36
  $options['relatedAttribute'] = $this->relatedAttribute;
37
  }
38
 
39
- Js::addInline('new N2Classes.FormElementOnoff("' . $this->fieldID . '", ' . json_encode($options) . ');');
40
 
41
  return $html;
42
  }
36
  $options['relatedAttribute'] = $this->relatedAttribute;
37
  }
38
 
39
+ Js::addInline('new _N2.FormElementOnoff("' . $this->fieldID . '", ' . json_encode($options) . ');');
40
 
41
  return $html;
42
  }
Nextend/Framework/Form/Element/Radio.php CHANGED
@@ -17,7 +17,7 @@ class Radio extends AbstractFieldHidden {
17
  protected $value;
18
 
19
  protected function addScript() {
20
- Js::addInline('new N2Classes.FormElementRadio("' . $this->fieldID . '", ' . json_encode(array_keys($this->options)) . ', ' . json_encode($this->relatedFields) . ');');
21
  }
22
 
23
  protected function fetchElement() {
17
  protected $value;
18
 
19
  protected function addScript() {
20
+ Js::addInline('new _N2.FormElementRadio("' . $this->fieldID . '", ' . json_encode(array_keys($this->options)) . ', ' . json_encode($this->relatedFields) . ');');
21
  }
22
 
23
  protected function fetchElement() {
Nextend/Framework/Form/Element/Radio/ImageList.php CHANGED
@@ -59,7 +59,7 @@ abstract class ImageList extends AbstractFieldHidden {
59
  $jsParameters['column'] = min($this->column, count($this->options) + ($this->hasDisabled ? 1 : 0));
60
  $jsParameters['options'] = $frontendOptions;
61
 
62
- Js::addInline('new N2Classes.FormElementImageList("' . $this->fieldID . '", ' . json_encode($jsParameters) . ', ' . json_encode($this->relatedFields) . ');');
63
 
64
  return $html;
65
  }
59
  $jsParameters['column'] = min($this->column, count($this->options) + ($this->hasDisabled ? 1 : 0));
60
  $jsParameters['options'] = $frontendOptions;
61
 
62
+ Js::addInline('new _N2.FormElementImageList("' . $this->fieldID . '", ' . json_encode($jsParameters) . ', ' . json_encode($this->relatedFields) . ');');
63
 
64
  return $html;
65
  }
Nextend/Framework/Form/Element/RichTextarea.php CHANGED
@@ -14,7 +14,7 @@ class RichTextarea extends AbstractField {
14
 
15
  protected function fetchElement() {
16
 
17
- Js::addInline('new N2Classes.FormElementRichText("' . $this->fieldID . '");');
18
 
19
  $tools = array(
20
  Html::tag('div', array(
14
 
15
  protected function fetchElement() {
16
 
17
+ Js::addInline('new _N2.FormElementRichText("' . $this->fieldID . '");');
18
 
19
  $tools = array(
20
  Html::tag('div', array(
Nextend/Framework/Form/Element/Select.php CHANGED
@@ -69,7 +69,7 @@ class Select extends AbstractFieldHidden {
69
  $options['relatedAttribute'] = $this->relatedAttribute;
70
  }
71
 
72
- Js::addInline('new N2Classes.FormElementList("' . $this->fieldID . '", ' . json_encode($options) . ');');
73
 
74
  return $html;
75
  }
69
  $options['relatedAttribute'] = $this->relatedAttribute;
70
  }
71
 
72
+ Js::addInline('new _N2.FormElementList("' . $this->fieldID . '", ' . json_encode($options) . ');');
73
 
74
  return $html;
75
  }
Nextend/Framework/Form/Element/Select/FillMode.php CHANGED
@@ -16,9 +16,7 @@ class FillMode extends Select {
16
  'blurfit' => n2_('Blur fit'),
17
  'fit' => n2_('Fit'),
18
  'stretch' => n2_('Stretch'),
19
- 'center' => n2_('Center'),
20
- 'tile' => n2_('Tile')
21
-
22
  );
23
 
24
  if ($this->useGlobal) {
16
  'blurfit' => n2_('Blur fit'),
17
  'fit' => n2_('Fit'),
18
  'stretch' => n2_('Stretch'),
19
+ 'center' => n2_('Center')
 
 
20
  );
21
 
22
  if ($this->useGlobal) {
Nextend/Framework/Form/Element/Select/Skin.php CHANGED
@@ -16,7 +16,7 @@ class Skin extends Select {
16
 
17
  $html = parent::fetchElement();
18
 
19
- Js::addInline('new N2Classes.FormElementSkin("' . $this->fieldID . '", "' . str_replace($this->name, '', $this->fieldID) . '", ' . json_encode($this->options) . ', ' . json_encode($this->fixed) . ');');
20
 
21
  return $html;
22
  }
16
 
17
  $html = parent::fetchElement();
18
 
19
+ Js::addInline('new _N2.FormElementSkin("' . $this->fieldID . '", "' . str_replace($this->name, '', $this->fieldID) . '", ' . json_encode($this->options) . ', ' . json_encode($this->fixed) . ');');
20
 
21
  return $html;
22
  }
Nextend/Framework/Form/Element/Select/SubFormIcon.php CHANGED
@@ -53,7 +53,7 @@ abstract class SubFormIcon extends AbstractFieldHidden {
53
  $currentValue = $this->getValue();
54
 
55
  Js::addInline('
56
- new N2Classes.FormElementSubformIcon(
57
  "' . $this->fieldID . '",
58
  "' . $this->ajaxUrl . '",
59
  "' . $this->containerSubform->getId() . '",
53
  $currentValue = $this->getValue();
54
 
55
  Js::addInline('
56
+ new _N2.FormElementSubformIcon(
57
  "' . $this->fieldID . '",
58
  "' . $this->ajaxUrl . '",
59
  "' . $this->containerSubform->getId() . '",
Nextend/Framework/Form/Element/SelectIcon.php CHANGED
@@ -50,7 +50,7 @@ class SelectIcon extends AbstractFieldHidden {
50
 
51
  $html .= parent::fetchElement();
52
 
53
- Js::addInline('new N2Classes.FormElementSelectIcon("' . $this->fieldID . '", ' . json_encode(array()) . ');');
54
 
55
  return $html;
56
  }
50
 
51
  $html .= parent::fetchElement();
52
 
53
+ Js::addInline('new _N2.FormElementSelectIcon("' . $this->fieldID . '", ' . json_encode(array()) . ');');
54
 
55
  return $html;
56
  }
Nextend/Framework/Form/Element/Style.php CHANGED
@@ -31,7 +31,7 @@ class Style extends AbstractFieldHidden {
31
  'fixPreviewImages'
32
  ), $this->preview);
33
 
34
- Js::addInline('new N2Classes.FormElementStyle("' . $this->fieldID . '", {
35
  mode: "' . $this->mode . '",
36
  label: "' . $this->label . '",
37
  font: "' . $this->font . '",
31
  'fixPreviewImages'
32
  ), $this->preview);
33
 
34
+ Js::addInline('new _N2.FormElementStyle("' . $this->fieldID . '", {
35
  mode: "' . $this->mode . '",
36
  label: "' . $this->label . '",
37
  font: "' . $this->font . '",
Nextend/Framework/Form/Element/Tab.php CHANGED
@@ -30,7 +30,7 @@ class Tab extends AbstractFieldHidden {
30
 
31
  $html .= parent::fetchElement();
32
 
33
- Js::addInline('new N2Classes.FormElementTab("' . $this->fieldID . '", ' . json_encode($this->relatedValueFields) . ');');
34
 
35
  return $html;
36
  }
30
 
31
  $html .= parent::fetchElement();
32
 
33
+ Js::addInline('new _N2.FormElementTab("' . $this->fieldID . '", ' . json_encode($this->relatedValueFields) . ');');
34
 
35
  return $html;
36
  }
Nextend/Framework/Form/Element/Text.php CHANGED
@@ -21,7 +21,7 @@ class Text extends AbstractField implements ContainerInterface {
21
  protected $unit = false;
22
 
23
  protected function addScript() {
24
- Js::addInline('new N2Classes.FormElementText("' . $this->fieldID . '");');
25
  }
26
 
27
  protected function fetchElement() {
21
  protected $unit = false;
22
 
23
  protected function addScript() {
24
+ Js::addInline('new _N2.FormElementText("' . $this->fieldID . '");');
25
  }
26
 
27
  protected function fetchElement() {
Nextend/Framework/Form/Element/Text/Color.php CHANGED
@@ -20,13 +20,14 @@ class Color extends Text {
20
  }
21
 
22
  $html = parent::fetchElement();
23
- Js::addInline('new N2Classes.FormElementColor("' . $this->fieldID . '", ' . intval($this->alpha) . ');');
24
 
25
  return $html;
26
  }
27
 
28
  protected function pre() {
29
- return '<div class="n2-sp-replacer"><div class="n2-sp-preview" style="background-color: rgb(62, 62, 62);"></div></div>';
 
30
  }
31
 
32
  protected function post() {
20
  }
21
 
22
  $html = parent::fetchElement();
23
+ Js::addInline('new _N2.FormElementColor("' . $this->fieldID . '", ' . intval($this->alpha) . ');');
24
 
25
  return $html;
26
  }
27
 
28
  protected function pre() {
29
+
30
+ return '<div class="n2-field-color-preview n2_checker_box"><div class="n2-field-color-preview-inner"></div></div>';
31
  }
32
 
33
  protected function post() {
Nextend/Framework/Form/Element/Text/Family.php CHANGED
@@ -16,6 +16,6 @@ class Family extends Text {
16
  parent::addScript();
17
 
18
  $families = FontSettings::getPresetFamilies();
19
- Js::addInline('N2Classes.AutocompleteSimple("' . $this->fieldID . '", ' . json_encode($families) . ');');
20
  }
21
  }
16
  parent::addScript();
17
 
18
  $families = FontSettings::getPresetFamilies();
19
+ Js::addInline('_N2.AutocompleteSimple("' . $this->fieldID . '", ' . json_encode($families) . ');');
20
  }
21
  }
Nextend/Framework/Form/Element/Text/FieldImage.php CHANGED
@@ -26,7 +26,7 @@ class FieldImage extends AbstractChooserText {
26
  $options['alt'] = $this->relatedAlt;
27
  }
28
 
29
- Js::addInline("new N2Classes.FormElementImage('" . $this->fieldID . "', " . json_encode($options) . " );");
30
  }
31
 
32
  protected function fetchElement() {
26
  $options['alt'] = $this->relatedAlt;
27
  }
28
 
29
+ Js::addInline("new _N2.FormElementImage('" . $this->fieldID . "', " . json_encode($options) . " );");
30
  }
31
 
32
  protected function fetchElement() {
Nextend/Framework/Form/Element/Text/Folder.php CHANGED
@@ -20,7 +20,7 @@ class Folder extends Text {
20
 
21
  Image::initLightbox();
22
 
23
- Js::addInline("new N2Classes.FormElementFolders('" . $this->fieldID . "' );");
24
  }
25
 
26
  protected function post() {
20
 
21
  Image::initLightbox();
22
 
23
+ Js::addInline("new _N2.FormElementFolders('" . $this->fieldID . "' );");
24
  }
25
 
26
  protected function post() {
Nextend/Framework/Form/Element/Text/Number.php CHANGED
@@ -65,7 +65,7 @@ class Number extends Text {
65
  }
66
 
67
  protected function addScript() {
68
- Js::addInline('new N2Classes.FormElementNumber("' . $this->fieldID . '", ' . $this->min . ', ' . $this->max . ', ' . json_encode($this->units) . ');');
69
  }
70
 
71
  public function setMin($min) {
65
  }
66
 
67
  protected function addScript() {
68
+ Js::addInline('new _N2.FormElementNumber("' . $this->fieldID . '", ' . $this->min . ', ' . $this->max . ', ' . json_encode($this->units) . ');');
69
  }
70
 
71
  public function setMin($min) {
Nextend/Framework/Form/Element/Text/NumberAutoComplete.php CHANGED
@@ -15,7 +15,7 @@ class NumberAutoComplete extends Number {
15
  protected function addScript() {
16
  parent::addScript();
17
 
18
- Js::addInline('N2Classes.AutocompleteSimple("' . $this->fieldID . '", ' . json_encode($this->values) . ');');
19
  }
20
 
21
  /**
15
  protected function addScript() {
16
  parent::addScript();
17
 
18
+ Js::addInline('_N2.AutocompleteSimple("' . $this->fieldID . '", ' . json_encode($this->values) . ');');
19
  }
20
 
21
  /**
Nextend/Framework/Form/Element/Text/NumberSlider.php CHANGED
@@ -15,7 +15,7 @@ class NumberSlider extends Number {
15
  protected function fetchElement() {
16
  $html = parent::fetchElement();
17
 
18
- Js::addInline('new N2Classes.FormElementNumberSlider("' . $this->fieldID . '", ' . json_encode(array(
19
  'min' => floatval($this->min),
20
  'max' => floatval($this->sliderMax),
21
  'step' => floatval($this->step),
15
  protected function fetchElement() {
16
  $html = parent::fetchElement();
17
 
18
+ Js::addInline('new _N2.FormElementNumberSlider("' . $this->fieldID . '", ' . json_encode(array(
19
  'min' => floatval($this->min),
20
  'max' => floatval($this->sliderMax),
21
  'step' => floatval($this->step),
Nextend/Framework/Form/Element/Text/TextAutoComplete.php CHANGED
@@ -16,7 +16,7 @@ class TextAutoComplete extends Text {
16
  protected function addScript() {
17
  parent::addScript();
18
 
19
- Js::addInline('N2Classes.AutocompleteSimple("' . $this->fieldID . '", ' . json_encode($this->values) . ');');
20
  }
21
 
22
  /**
16
  protected function addScript() {
17
  parent::addScript();
18
 
19
+ Js::addInline('_N2.AutocompleteSimple("' . $this->fieldID . '", ' . json_encode($this->values) . ');');
20
  }
21
 
22
  /**
Nextend/Framework/Form/Element/Text/TextMultiAutoComplete.php CHANGED
@@ -15,7 +15,7 @@ class TextMultiAutoComplete extends Text {
15
  protected $class = 'n2_field_autocomplete ';
16
 
17
  protected function addScript() {
18
- Js::addInline('new N2Classes.FormElementAutocomplete("' . $this->fieldID . '", ' . json_encode($this->options) . ');');
19
  }
20
 
21
  protected function post() {
15
  protected $class = 'n2_field_autocomplete ';
16
 
17
  protected function addScript() {
18
+ Js::addInline('new _N2.FormElementAutocomplete("' . $this->fieldID . '", ' . json_encode($this->options) . ');');
19
  }
20
 
21
  protected function post() {
Nextend/Framework/Form/Element/Text/Url.php CHANGED
@@ -13,7 +13,7 @@ use Nextend\Framework\Platform\Platform;
13
  class Url extends AbstractChooserText {
14
 
15
  protected function addScript() {
16
- Js::addInline("new N2Classes.FormElementUrl('" . $this->fieldID . "', " . $this->getElementUrlParameters($this->getForm()) . " );");
17
  }
18
 
19
  /**
13
  class Url extends AbstractChooserText {
14
 
15
  protected function addScript() {
16
+ Js::addInline("new _N2.FormElementUrl('" . $this->fieldID . "', " . $this->getElementUrlParameters($this->getForm()) . " );");
17
  }
18
 
19
  /**
Nextend/Framework/Form/Element/Textarea.php CHANGED
@@ -25,7 +25,7 @@ class Textarea extends AbstractField {
25
 
26
  protected function fetchElement() {
27
 
28
- Js::addInline('new N2Classes.FormElementText("' . $this->fieldID . '");');
29
 
30
  return Html::tag('div', array(
31
  'class' => implode(' ', $this->classes),
25
 
26
  protected function fetchElement() {
27
 
28
+ Js::addInline('new _N2.FormElementText("' . $this->fieldID . '");');
29
 
30
  return Html::tag('div', array(
31
  'class' => implode(' ', $this->classes),
Nextend/Framework/Form/Element/Unit.php CHANGED
@@ -47,7 +47,7 @@ class Unit extends AbstractFieldHidden {
47
 
48
  $html .= "</div>";
49
 
50
- Js::addInline('new N2Classes.FormElementUnits("' . $this->fieldID . '", ' . json_encode($values) . ');');
51
 
52
  return $html;
53
  }
47
 
48
  $html .= "</div>";
49
 
50
+ Js::addInline('new _N2.FormElementUnits("' . $this->fieldID . '", ' . json_encode($values) . ');');
51
 
52
  return $html;
53
  }
Nextend/Framework/Form/Element/Upload.php CHANGED
@@ -27,7 +27,7 @@ class Upload extends AbstractField {
27
  'autocomplete' => 'off'
28
  ), false, false);
29
 
30
- Js::addInline('new N2Classes.FormElementUpload("' . $this->fieldID . '");');
31
 
32
  return Html::tag('div', array(
33
  'class' => 'n2_field_chooser n2_field_upload '
27
  'autocomplete' => 'off'
28
  ), false, false);
29
 
30
+ Js::addInline('new _N2.FormElementUpload("' . $this->fieldID . '");');
31
 
32
  return Html::tag('div', array(
33
  'class' => 'n2_field_chooser n2_field_upload '
Nextend/Framework/Form/FormTabbed.php CHANGED
@@ -53,7 +53,7 @@ class FormTabbed extends Form {
53
  public function render() {
54
  parent::render();
55
 
56
- Js::addInline('new N2Classes.FormTabbed("' . $this->id . '", ' . json_encode(array(
57
  'toggleMode' => $this->toggleMode,
58
  'sessionID' => $this->sessionID
59
  )) . ');');
53
  public function render() {
54
  parent::render();
55
 
56
+ Js::addInline('new _N2.FormTabbed("' . $this->id . '", ' . json_encode(array(
57
  'toggleMode' => $this->toggleMode,
58
  'sessionID' => $this->sessionID
59
  )) . ');');
Nextend/Framework/Image/Block/ImageManager/BlockImageManager.php CHANGED
@@ -7,7 +7,6 @@ namespace Nextend\Framework\Image\Block\ImageManager;
7
  use Nextend\Framework\Asset\Js\Js;
8
  use Nextend\Framework\Image\ImageManager;
9
  use Nextend\Framework\Image\ModelImage;
10
- use Nextend\Framework\Localization\Localization;
11
  use Nextend\Framework\Visual\AbstractBlockVisual;
12
  use Nextend\SmartSlider3\Application\Admin\Layout\Block\Forms\Button\BlockButtonApply;
13
  use Nextend\SmartSlider3\Application\Admin\Layout\Block\Forms\Button\BlockButtonCancel;
@@ -47,7 +46,7 @@ class BlockImageManager extends AbstractBlockVisual {
47
 
48
  public function displayContent() {
49
  Js::addFirstCode("
50
- new N2Classes.NextendImageManager({
51
  visuals: " . json_encode(ImageManager::$loaded) . ",
52
  ajaxUrl: '" . $this->getAjaxUrlImage() . "'
53
  });
7
  use Nextend\Framework\Asset\Js\Js;
8
  use Nextend\Framework\Image\ImageManager;
9
  use Nextend\Framework\Image\ModelImage;
 
10
  use Nextend\Framework\Visual\AbstractBlockVisual;
11
  use Nextend\SmartSlider3\Application\Admin\Layout\Block\Forms\Button\BlockButtonApply;
12
  use Nextend\SmartSlider3\Application\Admin\Layout\Block\Forms\Button\BlockButtonCancel;
46
 
47
  public function displayContent() {
48
  Js::addFirstCode("
49
+ new _N2.NextendImageManager({
50
  visuals: " . json_encode(ImageManager::$loaded) . ",
51
  ajaxUrl: '" . $this->getAjaxUrlImage() . "'
52
  });
Nextend/Framework/Image/ControllerAjaxImage.php CHANGED
@@ -35,27 +35,6 @@ class ControllerAjaxImage extends AdminVisualManagerAjaxController {
35
  $this->response->error();
36
  }
37
 
38
- public function actionGenerateImage() {
39
- $this->validateToken();
40
-
41
- $device = Request::$REQUEST->getVar('device');
42
- $this->validateVariable($device == 'tablet' || $device == 'mobile', 'device');
43
-
44
- $image = Request::$REQUEST->getVar('image');
45
- $this->validateVariable(!empty($image), 'image');
46
-
47
- $scale = array(
48
- 'tablet' => 0.5,
49
- 'mobile' => 0.3
50
- );
51
-
52
- $newImage = ImageEdit::scaleImage('image', $image, $scale[$device], true);
53
-
54
- $this->response->respond(array(
55
- 'image' => ResourceTranslator::toUrl($newImage)
56
- ));
57
- }
58
-
59
  public function actionAddVisual() {
60
  $this->validateToken();
61
 
35
  $this->response->error();
36
  }
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  public function actionAddVisual() {
39
  $this->validateToken();
40
 
Nextend/Framework/Image/Image.php CHANGED
@@ -40,7 +40,7 @@ class Image {
40
  $parameters['placeholderImage'] = '$ss3-frontend$/images/placeholder/image.png';
41
  $parameters['placeholderRepeatedImage'] = '$ss3-frontend$/images/placeholder/image.png';
42
 
43
- Js::addFirstCode('new N2Classes.ImageHelper(' . json_encode($parameters) . ');');
44
  }
45
 
46
  public static function initLightbox() {
40
  $parameters['placeholderImage'] = '$ss3-frontend$/images/placeholder/image.png';
41
  $parameters['placeholderRepeatedImage'] = '$ss3-frontend$/images/placeholder/image.png';
42
 
43
+ Js::addFirstCode('new _N2.ImageHelper(' . json_encode($parameters) . ');');
44
  }
45
 
46
  public static function initLightbox() {
Nextend/Framework/Image/ImageEdit.php CHANGED
@@ -14,17 +14,18 @@ use Nextend\Framework\Url\Url;
14
 
15
  class ImageEdit {
16
 
17
- public static function resizeImage($group, $imageUrl, $targetWidth, $targetHeight, $lazy = false, $mode = 'cover', $backgroundColor = false, $resizeRemote = false, $quality = 100, $optimize = false, $x = 50, $y = 50) {
18
 
19
- if (strpos($imageUrl, Filesystem::getBasePath()) === 0) {
20
- $imageUrl = Url::pathToUri($imageUrl);
 
 
21
  }
22
 
23
  if ($targetWidth <= 0 || $targetHeight <= 0 || !function_exists('imagecreatefrompng')) {
24
- return Filesystem::pathToAbsoluteURL($imageUrl);
25
  }
26
 
27
-
28
  $quality = max(0, min(100, $quality));
29
  $originalImageUrl = $imageUrl;
30
 
@@ -32,12 +33,8 @@ class ImageEdit {
32
  $imageUrl = parse_url(Url::getFullUri(), PHP_URL_SCHEME) . ':' . $imageUrl;
33
  }
34
 
35
- if (strpos($imageUrl, Filesystem::getBasePath()) !== 0) {
36
- $imageUrl = Url::relativetoabsolute($imageUrl);
37
- $imagePath = Filesystem::absoluteURLToPath($imageUrl);
38
- } else {
39
- $imagePath = $imageUrl;
40
- }
41
 
42
  $cache = new CacheImage($group);
43
  if ($lazy) {
@@ -47,13 +44,13 @@ class ImageEdit {
47
  if ($imagePath == $imageUrl) {
48
  // The image is not local
49
  if (!$resizeRemote) {
50
- return Filesystem::pathToAbsoluteURL($originalImageUrl);
51
  }
52
 
53
  $pathInfo = pathinfo(parse_url($imageUrl, PHP_URL_PATH));
54
- $extension = self::validateExtension($pathInfo['extension']);
55
  if (!$extension) {
56
- return Filesystem::pathToAbsoluteURL($originalImageUrl);
57
  }
58
 
59
  $resizedPath = $cache->makeCache($extension, array(
@@ -77,7 +74,7 @@ class ImageEdit {
77
  }
78
 
79
  if ($resizedPath === $originalImageUrl) {
80
- return Filesystem::pathToAbsoluteURL($originalImageUrl);
81
  }
82
 
83
  return Filesystem::pathToAbsoluteURL($resizedPath);
@@ -90,11 +87,15 @@ class ImageEdit {
90
  $extension = 'jpg';
91
  break;
92
  case IMAGETYPE_PNG:
 
 
 
 
93
  $extension = 'png';
94
  break;
95
  }
96
  if (!$extension) {
97
- return Filesystem::pathToAbsoluteURL($originalImageUrl);
98
  }
99
 
100
  return Filesystem::pathToAbsoluteURL($cache->makeCache($extension, array(
@@ -144,12 +145,13 @@ class ImageEdit {
144
  $originalHeight = imagesy($image);
145
 
146
  if ($optimize) {
147
-
148
  if ($originalWidth <= $targetWidth || $originalHeight <= $targetHeight) {
149
  if (!Filesystem::existsFolder($targetDir)) {
150
  Filesystem::createFolder($targetDir);
151
  }
152
  if ($extension == 'png') {
 
 
153
  imagepng($image, $targetFile);
154
  } else if ($extension == 'jpg') {
155
  imagejpeg($image, $targetFile, $quality);
@@ -202,39 +204,40 @@ class ImageEdit {
202
  throw new Exception('Unable to resize image: ' . $imagePath);
203
  }
204
 
205
- public static function scaleImage($group, $imageUrl, $scale = 1, $resizeRemote = false, $quality = 100) {
 
 
 
 
 
 
 
206
 
207
  if ($scale <= 0 || !function_exists('imagecreatefrompng')) {
208
- return Filesystem::pathToAbsoluteURL($imageUrl);
209
  }
210
 
211
  $quality = max(0, min(100, $quality));
212
  $originalImageUrl = $imageUrl;
213
- $imageUrl = ResourceTranslator::toUrl($imageUrl);
214
-
215
 
216
  if (substr($imageUrl, 0, 2) == '//') {
217
  $imageUrl = parse_url(Url::getFullUri(), PHP_URL_SCHEME) . ':' . $imageUrl;
218
  }
219
 
220
- if (strpos($imageUrl, Filesystem::getBasePath()) !== 0) {
221
- $imageUrl = Url::relativetoabsolute($imageUrl);
222
- $imagePath = Filesystem::absoluteURLToPath($imageUrl);
223
- } else {
224
- $imagePath = $imageUrl;
225
- }
226
 
227
  $cache = new CacheImage($group);
228
  if ($imagePath == $imageUrl) {
229
  // The image is not local
230
  if (!$resizeRemote) {
231
- return Filesystem::pathToAbsoluteURL($originalImageUrl);
232
  }
233
 
234
  $pathInfo = pathinfo(parse_url($imageUrl, PHP_URL_PATH));
235
- $extension = self::validateExtension($pathInfo['extension']);
236
  if (!$extension) {
237
- return Filesystem::pathToAbsoluteURL($originalImageUrl);
238
  }
239
 
240
  return ResourceTranslator::urlToResource(Filesystem::pathToAbsoluteURL($cache->makeCache($extension, array(
@@ -255,19 +258,15 @@ class ImageEdit {
255
  $extension = 'jpg';
256
  break;
257
  case IMAGETYPE_PNG:
258
- $extension = 'png';
259
- $fp = fopen($imagePath, 'r');
260
- fseek($fp, 25);
261
- $data = fgets($fp, 2);
262
- fclose($fp);
263
- if (ord($data) == 3) {
264
  // GD cannot resize palette PNG so we return the original image
265
- return Filesystem::pathToAbsoluteURL($originalImageUrl);
266
  }
 
267
  break;
268
  }
269
  if (!$extension) {
270
- return Filesystem::pathToAbsoluteURL($originalImageUrl);
271
  }
272
 
273
  return ResourceTranslator::urlToResource(Filesystem::pathToAbsoluteURL($cache->makeCache($extension, array(
@@ -378,26 +377,15 @@ class ImageEdit {
378
  $src_h = $OriginalHeight;
379
  $horizontalRatio = $width / $originalWidth;
380
  $verticalRatio = $height / $OriginalHeight;
381
- if ($mode == 'cover') {
382
- if ($horizontalRatio > $verticalRatio) {
383
- $new_h = $horizontalRatio * $OriginalHeight;
384
- $dst_y = ($height - $new_h) / 2 * $y / 50;
385
- $dst_h = $new_h;
386
- } else {
387
- $new_w = $verticalRatio * $originalWidth;
388
- $dst_x = ($width - $new_w) / 2 * $x / 50;
389
- $dst_w = $new_w;
390
- }
391
- } else if ($mode == 'contain') {
392
- if ($horizontalRatio < $verticalRatio) {
393
- $new_h = $horizontalRatio * $OriginalHeight;
394
- $dst_y = ($height - $new_h) / 2 * $y / 50;
395
- $dst_h = $new_h;
396
- } else {
397
- $new_w = $verticalRatio * $originalWidth;
398
- $dst_x = ($width - $new_w) / 2 * $x / 50;
399
- $dst_w = $new_w;
400
- }
401
  }
402
 
403
  return array(
@@ -412,6 +400,22 @@ class ImageEdit {
412
  );
413
  }
414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
  private static function validateExtension($extension) {
416
  static $validExtensions = array(
417
  'png' => 'png',
@@ -454,4 +458,172 @@ class ImageEdit {
454
 
455
  return exif_imagetype($filename);
456
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  }
14
 
15
  class ImageEdit {
16
 
17
+ public static function resizeImage($group, $imageUrlOrPath, $targetWidth, $targetHeight, $lazy = false, $mode = 'cover', $backgroundColor = false, $resizeRemote = false, $quality = 100, $optimize = false, $x = 50, $y = 50) {
18
 
19
+ if (strpos($imageUrlOrPath, Filesystem::getBasePath()) === 0) {
20
+ $imageUrl = Url::pathToUri($imageUrlOrPath);
21
+ } else {
22
+ $imageUrl = ResourceTranslator::toUrl($imageUrlOrPath);
23
  }
24
 
25
  if ($targetWidth <= 0 || $targetHeight <= 0 || !function_exists('imagecreatefrompng')) {
26
+ return $imageUrl;
27
  }
28
 
 
29
  $quality = max(0, min(100, $quality));
30
  $originalImageUrl = $imageUrl;
31
 
33
  $imageUrl = parse_url(Url::getFullUri(), PHP_URL_SCHEME) . ':' . $imageUrl;
34
  }
35
 
36
+ $imageUrl = Url::relativetoabsolute($imageUrl);
37
+ $imagePath = Filesystem::absoluteURLToPath($imageUrl);
 
 
 
 
38
 
39
  $cache = new CacheImage($group);
40
  if ($lazy) {
44
  if ($imagePath == $imageUrl) {
45
  // The image is not local
46
  if (!$resizeRemote) {
47
+ return $originalImageUrl;
48
  }
49
 
50
  $pathInfo = pathinfo(parse_url($imageUrl, PHP_URL_PATH));
51
+ $extension = self::validateGDExtension($pathInfo['extension']);
52
  if (!$extension) {
53
+ return $originalImageUrl;
54
  }
55
 
56
  $resizedPath = $cache->makeCache($extension, array(
74
  }
75
 
76
  if ($resizedPath === $originalImageUrl) {
77
+ return $originalImageUrl;
78
  }
79
 
80
  return Filesystem::pathToAbsoluteURL($resizedPath);
87
  $extension = 'jpg';
88
  break;
89
  case IMAGETYPE_PNG:
90
+ if (self::isPNG8($imagePath)) {
91
+ // GD cannot resize palette PNG so we return the original image
92
+ return $originalImageUrl;
93
+ }
94
  $extension = 'png';
95
  break;
96
  }
97
  if (!$extension) {
98
+ return $originalImageUrl;
99
  }
100
 
101
  return Filesystem::pathToAbsoluteURL($cache->makeCache($extension, array(
145
  $originalHeight = imagesy($image);
146
 
147
  if ($optimize) {
 
148
  if ($originalWidth <= $targetWidth || $originalHeight <= $targetHeight) {
149
  if (!Filesystem::existsFolder($targetDir)) {
150
  Filesystem::createFolder($targetDir);
151
  }
152
  if ($extension == 'png') {
153
+ imagesavealpha($image, true);
154
+ imagealphablending($image, false);
155
  imagepng($image, $targetFile);
156
  } else if ($extension == 'jpg') {
157
  imagejpeg($image, $targetFile, $quality);
204
  throw new Exception('Unable to resize image: ' . $imagePath);
205
  }
206
 
207
+ public static function scaleImage($group, $imageUrlOrPath, $scale = 1, $resizeRemote = false, $quality = 100) {
208
+
209
+
210
+ if (strpos($imageUrlOrPath, Filesystem::getBasePath()) === 0) {
211
+ $imageUrl = Url::pathToUri($imageUrlOrPath);
212
+ } else {
213
+ $imageUrl = ResourceTranslator::toUrl($imageUrlOrPath);
214
+ }
215
 
216
  if ($scale <= 0 || !function_exists('imagecreatefrompng')) {
217
+ return $imageUrl;
218
  }
219
 
220
  $quality = max(0, min(100, $quality));
221
  $originalImageUrl = $imageUrl;
 
 
222
 
223
  if (substr($imageUrl, 0, 2) == '//') {
224
  $imageUrl = parse_url(Url::getFullUri(), PHP_URL_SCHEME) . ':' . $imageUrl;
225
  }
226
 
227
+ $imageUrl = Url::relativetoabsolute($imageUrl);
228
+ $imagePath = Filesystem::absoluteURLToPath($imageUrl);
 
 
 
 
229
 
230
  $cache = new CacheImage($group);
231
  if ($imagePath == $imageUrl) {
232
  // The image is not local
233
  if (!$resizeRemote) {
234
+ return $originalImageUrl;
235
  }
236
 
237
  $pathInfo = pathinfo(parse_url($imageUrl, PHP_URL_PATH));
238
+ $extension = self::validateGDExtension($pathInfo['extension']);
239
  if (!$extension) {
240
+ return $originalImageUrl;
241
  }
242
 
243
  return ResourceTranslator::urlToResource(Filesystem::pathToAbsoluteURL($cache->makeCache($extension, array(
258
  $extension = 'jpg';
259
  break;
260
  case IMAGETYPE_PNG:
261
+ if (self::isPNG8($imagePath)) {
 
 
 
 
 
262
  // GD cannot resize palette PNG so we return the original image
263
+ return $originalImageUrl;
264
  }
265
+ $extension = 'png';
266
  break;
267
  }
268
  if (!$extension) {
269
+ return $originalImageUrl;
270
  }
271
 
272
  return ResourceTranslator::urlToResource(Filesystem::pathToAbsoluteURL($cache->makeCache($extension, array(
377
  $src_h = $OriginalHeight;
378
  $horizontalRatio = $width / $originalWidth;
379
  $verticalRatio = $height / $OriginalHeight;
380
+
381
+ if ($horizontalRatio > $verticalRatio) {
382
+ $new_h = $horizontalRatio * $OriginalHeight;
383
+ $dst_y = ($height - $new_h) / 2 * $y / 50;
384
+ $dst_h = $new_h;
385
+ } else {
386
+ $new_w = $verticalRatio * $originalWidth;
387
+ $dst_x = ($width - $new_w) / 2 * $x / 50;
388
+ $dst_w = $new_w;
 
 
 
 
 
 
 
 
 
 
 
389
  }
390
 
391
  return array(
400
  );
401
  }
402
 
403
+ private static function validateGDExtension($extension) {
404
+ static $validExtensions = array(
405
+ 'png' => 'png',
406
+ 'jpg' => 'jpg',
407
+ 'jpeg' => 'jpg',
408
+ 'gif' => 'gif',
409
+ 'svg' => 'svg'
410
+ );
411
+ $extension = strtolower($extension);
412
+ if (isset($validExtensions[$extension])) {
413
+ return $validExtensions[$extension];
414
+ }
415
+
416
+ return false;
417
+ }
418
+
419
  private static function validateExtension($extension) {
420
  static $validExtensions = array(
421
  'png' => 'png',
458
 
459
  return exif_imagetype($filename);
460
  }
461
+
462
+ public static function isPNG8($path) {
463
+ $fp = fopen($path, 'r');
464
+ fseek($fp, 25);
465
+ $data = fgets($fp, 2);
466
+ fclose($fp);
467
+ if (ord($data) == 3) {
468
+ return true;
469
+ }
470
+
471
+ return false;
472
+ }
473
+
474
+ public static function scaleImageWebp($group, $imageUrlOrPath, $options) {
475
+
476
+ $options = array_merge(array(
477
+ 'mode' => 'scale',
478
+ 'scale' => 1,
479
+ 'quality' => 100,
480
+ 'remote' => false
481
+ ), $options);
482
+
483
+ if (strpos($imageUrlOrPath, Filesystem::getBasePath()) === 0) {
484
+ $imageUrl = Url::pathToUri($imageUrlOrPath);
485
+ } else {
486
+ $imageUrl = ResourceTranslator::toUrl($imageUrlOrPath);
487
+ }
488
+
489
+ if (!function_exists('imagecreatefrompng') || ($options['mode'] === 'scale' && $options['scale'] <= 0)) {
490
+ return Filesystem::pathToAbsoluteURL($imageUrl);
491
+ }
492
+
493
+ $options['quality'] = max(0, min(100, $options['quality']));
494
+ $originalImageUrl = $imageUrl;
495
+
496
+
497
+ if (substr($imageUrl, 0, 2) == '//') {
498
+ $imageUrl = parse_url(Url::getFullUri(), PHP_URL_SCHEME) . ':' . $imageUrl;
499
+ }
500
+
501
+ $imageUrl = Url::relativetoabsolute($imageUrl);
502
+ $imagePath = Filesystem::absoluteURLToPath($imageUrl);
503
+
504
+ $cache = new CacheImage($group);
505
+ if ($imagePath == $imageUrl) {
506
+ // The image is not local
507
+ if (!$options['remote']) {
508
+ return $originalImageUrl;
509
+ }
510
+
511
+ $pathInfo = pathinfo(parse_url($imageUrl, PHP_URL_PATH));
512
+ $extension = self::validateGDExtension($pathInfo['extension']);
513
+ if (!$extension) {
514
+ return $originalImageUrl;
515
+ }
516
+
517
+ return ResourceTranslator::urlToResource(Filesystem::pathToAbsoluteURL($cache->makeCache('webp', array(
518
+ self::class,
519
+ '_scaleRemoteImageWebp'
520
+ ), array(
521
+ $extension,
522
+ $imageUrl,
523
+ $options
524
+ ))));
525
+
526
+ } else {
527
+ $extension = false;
528
+ $imageType = @self::exif_imagetype($imagePath);
529
+ switch ($imageType) {
530
+ case IMAGETYPE_JPEG:
531
+ $extension = 'jpg';
532
+ break;
533
+ case IMAGETYPE_PNG:
534
+ $extension = 'png';
535
+ break;
536
+ }
537
+ if (!$extension) {
538
+ return $originalImageUrl;
539
+ }
540
+
541
+ return ResourceTranslator::urlToResource(Filesystem::pathToAbsoluteURL($cache->makeCache('webp', array(
542
+ self::class,
543
+ '_scaleImageWebp'
544
+ ), array(
545
+ $extension,
546
+ $imagePath,
547
+ $options
548
+ ))));
549
+ }
550
+ }
551
+
552
+ public static function _scaleRemoteImageWebp($targetFile, $extension, $imageUrl, $options) {
553
+ return self::_scaleImageWebp($targetFile, $extension, $imageUrl, $options);
554
+ }
555
+
556
+ public static function _scaleImageWebp($targetFile, $extension, $imagePath, $options) {
557
+
558
+ $options = array_merge(array(
559
+ 'focusX' => 50,
560
+ 'focusY' => 50,
561
+ ), $options);
562
+
563
+ $targetDir = dirname($targetFile);
564
+
565
+ $image = false;
566
+
567
+ if ($extension == 'png') {
568
+ $image = @imagecreatefrompng($imagePath);
569
+ if (!imageistruecolor($image)) {
570
+ imagepalettetotruecolor($image);
571
+ imagealphablending($image, true);
572
+ imagesavealpha($image, true);
573
+ }
574
+ } else if ($extension == 'jpg') {
575
+ $image = @imagecreatefromjpeg($imagePath);
576
+ if (function_exists("exif_read_data")) {
577
+ $exif = @exif_read_data($imagePath);
578
+
579
+ $rotated = self::getOrientation($exif, $image);
580
+ if ($rotated) {
581
+ imagedestroy($image);
582
+ $image = $rotated;
583
+ }
584
+ }
585
+ }
586
+
587
+ if ($image) {
588
+ $originalWidth = imagesx($image);
589
+ $originalHeight = imagesy($image);
590
+ switch ($options['mode']) {
591
+ case 'scale':
592
+ $targetWidth = $originalWidth * $options['scale'];
593
+ $targetHeight = $originalHeight * $options['scale'];
594
+ break;
595
+ case 'resize':
596
+ $targetWidth = $options['width'];
597
+ $targetHeight = $options['height'];
598
+ break;
599
+ }
600
+ if ((isset($rotated) && $rotated) || $originalWidth != $targetWidth || $originalHeight != $targetHeight) {
601
+ $newImage = imagecreatetruecolor($targetWidth, $targetHeight);
602
+ if ($extension == 'png') {
603
+ imagesavealpha($newImage, true);
604
+ imagealphablending($newImage, false);
605
+ $transparent = imagecolorallocatealpha($newImage, 255, 255, 255, 127);
606
+ imagefilledrectangle($image, 0, 0, $targetWidth, $targetHeight, $transparent);
607
+ }
608
+
609
+ list($dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h) = self::imageMode($targetWidth, $targetHeight, $originalWidth, $originalHeight, 'cover', $options['focusX'], $options['focusY']);
610
+ imagecopyresampled($newImage, $image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
611
+ imagedestroy($image);
612
+
613
+ } else {
614
+ $newImage = $image;
615
+ }
616
+
617
+ if (!Filesystem::existsFolder($targetDir)) {
618
+ Filesystem::createFolder($targetDir);
619
+ }
620
+
621
+ imagewebp($newImage, $targetFile, $options['quality']);
622
+ imagedestroy($newImage);
623
+
624
+ return true;
625
+ }
626
+
627
+ throw new Exception('Unable to scale image: ' . $imagePath);
628
+ }
629
  }
Nextend/Framework/Image/ImageStorage.php CHANGED
@@ -2,38 +2,25 @@
2
 
3
  namespace Nextend\Framework\Image;
4
 
5
- use Nextend\Framework\Database\Base\AbstractConnectorTable;
6
  use Nextend\Framework\Database\Database;
7
  use Nextend\Framework\Misc\Base64;
8
 
9
  class ImageStorage {
10
 
11
- /** @var AbstractConnectorTable */
 
 
12
  private $tableImageStorage;
13
 
14
  public static $emptyImage = array(
15
- 'desktop' => array(
16
- 'size' => '0|*|0'
17
- ),
18
  'desktop-retina' => array(
19
- 'image' => '',
20
- 'size' => '0|*|0'
21
  ),
22
  'tablet' => array(
23
- 'image' => '',
24
- 'size' => '0|*|0'
25
- ),
26
- 'tablet-retina' => array(
27
- 'image' => '',
28
- 'size' => '0|*|0'
29
  ),
30
  'mobile' => array(
31
- 'image' => '',
32
- 'size' => '0|*|0'
33
- ),
34
- 'mobile-retina' => array(
35
- 'image' => '',
36
- 'size' => '0|*|0'
37
  )
38
  );
39
 
2
 
3
  namespace Nextend\Framework\Image;
4
 
 
5
  use Nextend\Framework\Database\Database;
6
  use Nextend\Framework\Misc\Base64;
7
 
8
  class ImageStorage {
9
 
10
+ /**
11
+ * @var \Nextend\Framework\Database\AbstractPlatformConnectorTable
12
+ */
13
  private $tableImageStorage;
14
 
15
  public static $emptyImage = array(
 
 
 
16
  'desktop-retina' => array(
17
+ 'image' => ''
 
18
  ),
19
  'tablet' => array(
20
+ 'image' => ''
 
 
 
 
 
21
  ),
22
  'mobile' => array(
23
+ 'image' => ''
 
 
 
 
 
24
  )
25
  );
26
 
Nextend/Framework/Image/ModelImage.php CHANGED
@@ -36,9 +36,7 @@ class ModelImage extends ModelVisual {
36
 
37
  $this->renderDeviceTab($container, 'desktop-retina', n2_('Desktop retina'));
38
  $this->renderDeviceTab($container, 'tablet', n2_('Tablet'));
39
- $this->renderDeviceTab($container, 'tablet-retina', n2_('Tablet retina'));
40
  $this->renderDeviceTab($container, 'mobile', n2_('Mobile'));
41
- $this->renderDeviceTab($container, 'mobile-retina', n2_('Mobile retina'));
42
 
43
  $form->render();
44
  }
36
 
37
  $this->renderDeviceTab($container, 'desktop-retina', n2_('Desktop retina'));
38
  $this->renderDeviceTab($container, 'tablet', n2_('Tablet'));
 
39
  $this->renderDeviceTab($container, 'mobile', n2_('Mobile'));
 
40
 
41
  $form->render();
42
  }
Nextend/Framework/Localization/Localization.php CHANGED
@@ -73,7 +73,7 @@ class Localization {
73
 
74
  public static function toJS() {
75
  if (count(self::$js)) {
76
- return 'window.nextend.localization = ' . json_encode(self::$js) . ';';
77
  }
78
 
79
  return '';
73
 
74
  public static function toJS() {
75
  if (count(self::$js)) {
76
+ return '_N2._localization = ' . json_encode(self::$js) . ';';
77
  }
78
 
79
  return '';
Nextend/Framework/Misc/Str.php CHANGED
@@ -4,9 +4,9 @@
4
  namespace Nextend\Framework\Misc;
5
 
6
 
7
- use Nextend\Framework\Misc\String\MultiByte;
8
- use Nextend\Framework\Misc\String\SingleByte;
9
- use Nextend\Framework\Misc\String\StringInterface;
10
  use Nextend\Framework\Pattern\SingletonTrait;
11
 
12
  class Str {
4
  namespace Nextend\Framework\Misc;
5
 
6
 
7
+ use Nextend\Framework\Misc\StringPhp\MultiByte;
8
+ use Nextend\Framework\Misc\StringPhp\SingleByte;
9
+ use Nextend\Framework\Misc\StringPhp\StringInterface;
10
  use Nextend\Framework\Pattern\SingletonTrait;
11
 
12
  class Str {
Nextend/Framework/Misc/{String → StringPhp}/MultiByte.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- namespace Nextend\Framework\Misc\String;
4
 
5
  class MultiByte implements StringInterface {
6
 
1
  <?php
2
 
3
+ namespace Nextend\Framework\Misc\StringPhp;
4
 
5
  class MultiByte implements StringInterface {
6
 
Nextend/Framework/Misc/{String → StringPhp}/SingleByte.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- namespace Nextend\Framework\Misc\String;
4
 
5
  class SingleByte implements StringInterface {
6
 
1
  <?php
2
 
3
+ namespace Nextend\Framework\Misc\StringPhp;
4
 
5
  class SingleByte implements StringInterface {
6
 
Nextend/Framework/Misc/{String → StringPhp}/StringInterface.php RENAMED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
 
4
- namespace Nextend\Framework\Misc\String;
5
 
6
 
7
  interface StringInterface {
1
  <?php
2
 
3
 
4
+ namespace Nextend\Framework\Misc\StringPhp;
5
 
6
 
7
  interface StringInterface {
Nextend/Framework/Notification/Notification.php CHANGED
@@ -110,7 +110,7 @@ class Notification {
110
 
111
  if (is_array(self::$error) && count(self::$error)) {
112
  foreach (self::$error as $error) {
113
- Js::addInline("N2Classes.Notification.error(" . json_encode($error[0]) . ", " . json_encode($error[1]) . ");");
114
  }
115
  self::$error = array();
116
  }
@@ -120,7 +120,7 @@ class Notification {
120
  if (is_array(self::$success) && count(self::$success)) {
121
  foreach (self::$success as $success) {
122
 
123
- Js::addInline("N2Classes.Notification.success(" . json_encode($success[0]) . ", " . json_encode($success[1]) . ");");
124
  }
125
  self::$success = array();
126
  }
@@ -130,7 +130,7 @@ class Notification {
130
  if (is_array(self::$notice) && count(self::$notice)) {
131
  foreach (self::$notice as $notice) {
132
 
133
- Js::addInline("N2Classes.Notification.notice(" . json_encode($notice[0]) . ", " . json_encode($notice[1]) . ");");
134
  }
135
  self::$notice = array();
136
  }
110
 
111
  if (is_array(self::$error) && count(self::$error)) {
112
  foreach (self::$error as $error) {
113
+ Js::addInline("_N2.Notification.error(" . json_encode($error[0]) . ", " . json_encode($error[1]) . ");");
114
  }
115
  self::$error = array();
116
  }
120
  if (is_array(self::$success) && count(self::$success)) {
121
  foreach (self::$success as $success) {
122
 
123
+ Js::addInline("_N2.Notification.success(" . json_encode($success[0]) . ", " . json_encode($success[1]) . ");");
124
  }
125
  self::$success = array();
126
  }
130
  if (is_array(self::$notice) && count(self::$notice)) {
131
  foreach (self::$notice as $notice) {
132
 
133
+ Js::addInline("_N2.Notification.notice(" . json_encode($notice[0]) . ", " . json_encode($notice[1]) . ");");
134
  }
135
  self::$notice = array();
136
  }
Nextend/Framework/Parser/Link/ScrollTo.php CHANGED
@@ -22,16 +22,16 @@ class ScrollTo implements ParserInterface {
22
  $onclick = 'n2ss.scroll(event, "bottom");';
23
  break;
24
  case 'beforeSlider':
25
- $onclick = 'n2ss.scroll(event, "before", N2Classes.$(this).closest(".n2-ss-slider").addBack());';
26
  break;
27
  case 'afterSlider':
28
- $onclick = 'n2ss.scroll(event, "after", N2Classes.$(this).closest(".n2-ss-slider").addBack());';
29
  break;
30
  case 'nextSlider':
31
- $onclick = 'n2ss.scroll(event, "next", this, ".n2-ss-slider");';
32
  break;
33
  case 'previousSlider':
34
- $onclick = 'n2ss.scroll(event, "previous", this, ".n2-ss-slider");';
35
  break;
36
  default:
37
  if (is_numeric($argument)) {
22
  $onclick = 'n2ss.scroll(event, "bottom");';
23
  break;
24
  case 'beforeSlider':
25
+ $onclick = 'n2ss.scroll(event, "before", this.closest(".n2-ss-slider"));';
26
  break;
27
  case 'afterSlider':
28
+ $onclick = 'n2ss.scroll(event, "after", this.closest(".n2-ss-slider"));';
29
  break;
30
  case 'nextSlider':
31
+ $onclick = 'n2ss.scroll(event, "next", this, ".n2-section-smartslider");';
32
  break;
33
  case 'previousSlider':
34
+ $onclick = 'n2ss.scroll(event, "previous", this, ".n2-section-smartslider");';
35
  break;
36
  default:
37
  if (is_numeric($argument)) {
Nextend/Framework/Platform/AbstractPlatform.php CHANGED
@@ -19,7 +19,7 @@ abstract class AbstractPlatform {
19
  return $this->isAdmin;
20
  }
21
 
22
- public function setIsAdmin($isAdmin){
23
  $this->isAdmin = $isAdmin;
24
  }
25
 
19
  return $this->isAdmin;
20
  }
21
 
22
+ public function setIsAdmin($isAdmin) {
23
  $this->isAdmin = $isAdmin;
24
  }
25
 
Nextend/Framework/ResourceTranslator/ResourceTranslator.php CHANGED
@@ -51,7 +51,7 @@ class ResourceTranslator {
51
 
52
  public static function toUrl($resourcePath) {
53
 
54
- foreach (self::$resources AS $resourceIdentifier) {
55
 
56
  $keyword = $resourceIdentifier->getKeyword();
57
  if (strpos($resourcePath, $keyword) === 0) {
@@ -65,12 +65,12 @@ class ResourceTranslator {
65
 
66
  public static function toPath($resourcePath) {
67
 
68
- foreach (self::$resources AS $resourceIdentifier) {
69
 
70
  $keyword = $resourceIdentifier->getKeyword();
71
  if (strpos($resourcePath, $keyword) === 0) {
72
 
73
- return $resourceIdentifier->getPath() . substr($resourcePath, strlen($keyword));
74
  }
75
  }
76
 
@@ -81,7 +81,7 @@ class ResourceTranslator {
81
 
82
  $url = self::convertUrl($url);
83
 
84
- foreach (self::$resources AS $resourceIdentifier) {
85
 
86
  if (strpos($url, $resourceIdentifier->getUrl()) === 0) {
87
 
@@ -94,7 +94,7 @@ class ResourceTranslator {
94
 
95
  public static function pathToResource($path) {
96
 
97
- foreach (self::$resources AS $resourceIdentifier) {
98
 
99
  if (strpos($path, $resourceIdentifier->getPath()) === 0) {
100
 
@@ -119,7 +119,7 @@ class ResourceTranslator {
119
  public static function getResourceIdentifierKeywords() {
120
 
121
  $keywords = array();
122
- foreach (self::$resources AS $resourceIdentifier) {
123
 
124
  $keywords[] = $resourceIdentifier->getKeyword();
125
  }
@@ -130,7 +130,7 @@ class ResourceTranslator {
130
  public static function getResourceIdentifierUrls() {
131
 
132
  $urls = array();
133
- foreach (self::$resources AS $resourceIdentifier) {
134
 
135
  $urls[] = $resourceIdentifier->getUrl();
136
  }
@@ -142,7 +142,7 @@ class ResourceTranslator {
142
 
143
  $data = array();
144
 
145
- foreach (self::$resources AS $resourceIdentifier) {
146
 
147
  $data[$resourceIdentifier->getKeyword()] = $resourceIdentifier->getUrl();
148
  }
51
 
52
  public static function toUrl($resourcePath) {
53
 
54
+ foreach (self::$resources as $resourceIdentifier) {
55
 
56
  $keyword = $resourceIdentifier->getKeyword();
57
  if (strpos($resourcePath, $keyword) === 0) {
65
 
66
  public static function toPath($resourcePath) {
67
 
68
+ foreach (self::$resources as $resourceIdentifier) {
69
 
70
  $keyword = $resourceIdentifier->getKeyword();
71
  if (strpos($resourcePath, $keyword) === 0) {
72
 
73
+ return str_replace('/', DIRECTORY_SEPARATOR, $resourceIdentifier->getPath() . substr($resourcePath, strlen($keyword)));
74
  }
75
  }
76
 
81
 
82
  $url = self::convertUrl($url);
83
 
84
+ foreach (self::$resources as $resourceIdentifier) {
85
 
86
  if (strpos($url, $resourceIdentifier->getUrl()) === 0) {
87
 
94
 
95
  public static function pathToResource($path) {
96
 
97
+ foreach (self::$resources as $resourceIdentifier) {
98
 
99
  if (strpos($path, $resourceIdentifier->getPath()) === 0) {
100
 
119
  public static function getResourceIdentifierKeywords() {
120
 
121
  $keywords = array();
122
+ foreach (self::$resources as $resourceIdentifier) {
123
 
124
  $keywords[] = $resourceIdentifier->getKeyword();
125
  }
130
  public static function getResourceIdentifierUrls() {
131
 
132
  $urls = array();
133
+ foreach (self::$resources as $resourceIdentifier) {
134
 
135
  $urls[] = $resourceIdentifier->getUrl();
136
  }
142
 
143
  $data = array();
144
 
145
+ foreach (self::$resources as $resourceIdentifier) {
146
 
147
  $data[$resourceIdentifier->getKeyword()] = $resourceIdentifier->getUrl();
148
  }
Nextend/Framework/Settings.php CHANGED
@@ -13,20 +13,17 @@ class Settings {
13
  public function __construct() {
14
 
15
  $config = array(
16
- 'jquery' => 1,
17
- 'gsap' => 1,
18
- 'async' => 0,
19
- 'combine-js' => 0,
20
- 'minify-js' => 0,
21
- 'scriptattributes' => '',
22
- 'javascript-inline' => 'head',
23
- 'protocol-relative' => 1,
24
- 'force-english-backend' => 0,
25
- 'frontend-accessibility' => 1,
26
- 'curl' => 1,
27
- 'curl-clean-proxy' => 0,
28
- 'css-mode' => 'normal',
29
- 'icon-fa' => 1,
30
  );
31
  if (!defined('NEXTEND_INSTALL')) {
32
  global $wpdb;
@@ -37,7 +34,7 @@ class Settings {
37
 
38
 
39
  if (!defined('NEXTEND_INSTALL')) {
40
- foreach (Section::getAll('system', 'global') AS $data) {
41
  $config[$data['referencekey']] = $data['value'];
42
  }
43
  }
13
  public function __construct() {
14
 
15
  $config = array(
16
+ 'jquery' => 1,
17
+ 'scriptattributes' => '',
18
+ 'javascript-inline' => 'head',
19
+ 'protocol-relative' => 1,
20
+ 'force-english-backend' => 0,
21
+ 'frontend-accessibility' => 1,
22
+ 'curl' => 1,
23
+ 'curl-clean-proxy' => 0,
24
+ 'async-non-primary-css' => 0,
25
+ 'icon-fa' => 1,
26
+ 'header-preload' => 0
 
 
 
27
  );
28
  if (!defined('NEXTEND_INSTALL')) {
29
  global $wpdb;
34
 
35
 
36
  if (!defined('NEXTEND_INSTALL')) {
37
+ foreach (Section::getAll('system', 'global') as $data) {
38
  $config[$data['referencekey']] = $data['value'];
39
  }
40
  }
Nextend/Framework/Style/Block/StyleManager/BlockStyleManager.php CHANGED
@@ -46,9 +46,9 @@ class BlockStyleManager extends AbstractBlockVisual {
46
  $model = $this->getModel();
47
 
48
  Js::addFirstCode("
49
- N2Classes.CSSRendererStyle.rendererModes = " . json_encode(StyleRenderer::$mode) . ";
50
- N2Classes.CSSRendererStyle.pre = " . json_encode(StyleRenderer::$pre) . ";
51
- new N2Classes.NextendStyleManager();
52
  ");
53
 
54
  $model->renderForm();
46
  $model = $this->getModel();
47
 
48
  Js::addFirstCode("
49
+ _N2.CSSRendererStyle.rendererModes = " . json_encode(StyleRenderer::$mode) . ";
50
+ _N2.CSSRendererStyle.pre = " . json_encode(StyleRenderer::$pre) . ";
51
+ new _N2.NextendStyleManager();
52
  ");
53
 
54
  $model->renderForm();
Nextend/Framework/View/Html.php CHANGED
@@ -2,6 +2,7 @@
2
 
3
  namespace Nextend\Framework\View;
4
 
 
5
  use Nextend\Framework\Settings;
6
 
7
  class Html {
@@ -115,7 +116,13 @@ class Html {
115
  'async' => 1
116
  );
117
 
118
- if ($htmlOptions === array()) return '';
 
 
 
 
 
 
119
 
120
  $html = '';
121
  if (isset($htmlOptions['encode'])) {
@@ -196,25 +203,17 @@ class Html {
196
  return self::tag('link', $options, false, false);
197
  }
198
 
199
- return self::tag("style", $scriptOptions + array(
200
- "type" => "text/css"
201
- ), $script);
202
  }
203
 
204
  /**
205
  * Insert script
206
  *
207
  * @param string $script
208
- * @param bool $file
209
  *
210
  * @return string
211
  */
212
- public static function script($script, $file = false) {
213
- if ($file) {
214
- return self::tag('script', array(
215
- 'src' => $script
216
- ) + self::getScriptAttributes(), '');
217
- }
218
 
219
  return self::tag('script', array(
220
  'encode' => false
@@ -223,12 +222,17 @@ class Html {
223
 
224
  public static function scriptFile($script, $attributes = array()) {
225
  return self::tag('script', array(
226
- 'src' => $script
227
  ) + self::getScriptAttributes() + $attributes, '');
228
  }
229
 
230
  private static function getScriptAttributes() {
231
  static $attributes = null;
 
 
 
 
 
232
  if ($attributes === null) {
233
  if (class_exists('\\Nextend\\Framework\\Settings', false)) {
234
  $value = trim(html_entity_decode(strip_tags(Settings::get('scriptattributes', ''))));
@@ -276,8 +280,11 @@ class Html {
276
  unset($array['style']);
277
  }
278
  if (isset($array['class'])) {
279
- if (!isset($target['class'])) $target['class'] = '';
280
- $target['class'] .= ' ' . $array['class'];
 
 
 
281
  unset($array['class']);
282
  }
283
 
@@ -301,7 +308,7 @@ class Html {
301
  );
302
 
303
  if (defined('JETPACK__VERSION')) {
304
- $attrs['class'] = 'jetpack-lazy-image';
305
  }
306
  }
307
 
2
 
3
  namespace Nextend\Framework\View;
4
 
5
+ use Nextend\Framework\Platform\Platform;
6
  use Nextend\Framework\Settings;
7
 
8
  class Html {
116
  'async' => 1
117
  );
118
 
119
+ if (empty($htmlOptions)) {
120
+ return '';
121
+ }
122
+
123
+ if (isset($htmlOptions['style']) && empty($htmlOptions['style'])) {
124
+ unset($htmlOptions['style']);
125
+ }
126
 
127
  $html = '';
128
  if (isset($htmlOptions['encode'])) {
203
  return self::tag('link', $options, false, false);
204
  }
205
 
206
+ return self::tag("style", $scriptOptions, $script);
 
 
207
  }
208
 
209
  /**
210
  * Insert script
211
  *
212
  * @param string $script
 
213
  *
214
  * @return string
215
  */
216
+ public static function script($script) {
 
 
 
 
 
217
 
218
  return self::tag('script', array(
219
  'encode' => false
222
 
223
  public static function scriptFile($script, $attributes = array()) {
224
  return self::tag('script', array(
225
+ 'src' => $script
226
  ) + self::getScriptAttributes() + $attributes, '');
227
  }
228
 
229
  private static function getScriptAttributes() {
230
  static $attributes = null;
231
+
232
+ if (Platform::isAdmin()) {
233
+ return array();
234
+ }
235
+
236
  if ($attributes === null) {
237
  if (class_exists('\\Nextend\\Framework\\Settings', false)) {
238
  $value = trim(html_entity_decode(strip_tags(Settings::get('scriptattributes', ''))));
280
  unset($array['style']);
281
  }
282
  if (isset($array['class'])) {
283
+ if (empty($target['class'])) {
284
+ $target['class'] = $array['class'];
285
+ } else {
286
+ $target['class'] .= ' ' . $array['class'];
287
+ }
288
  unset($array['class']);
289
  }
290
 
308
  );
309
 
310
  if (defined('JETPACK__VERSION')) {
311
+ $attrs['class'] .= ' jetpack-lazy-image';
312
  }
313
  }
314
 
Nextend/Framework/WordPress/AssetInjector.php CHANGED
@@ -12,6 +12,8 @@ class AssetInjector {
12
 
13
  use SingletonTrait;
14
 
 
 
15
  protected $js = '';
16
  protected $css = '';
17
 
@@ -44,9 +46,9 @@ class AssetInjector {
44
  $this->finalizeCssJs();
45
 
46
  if (!empty($this->css)) {
47
- if (strpos($buffer, '<!--n2css-->') !== false) {
48
- $buffer = str_replace('<!--n2css-->', $this->css, $buffer);
49
-
50
  $this->css = '';
51
  } else {
52
  $parts = preg_split('/<\/head[\s]*>/i', $buffer, 2);
@@ -62,55 +64,43 @@ class AssetInjector {
62
  'tokenizeHead'
63
  ), $head);
64
 
65
-
66
  $head = preg_replace_callback('/<noscript>.*?<\/noscript>/s', array(
67
  $this,
68
  'tokenizeHead'
69
  ), $head);
70
 
71
- /**
72
- * Find the first <script> tag with src attribute
73
- */
74
- $pattern = '/<script[^>]+src=[\'"][^>"\']*[\'"]/si';
75
- if (preg_match($pattern, $head, $matches)) {
76
-
77
- $splitBy = $matches[0];
78
-
79
- $headParts = preg_split($pattern, $head, 2);
80
 
81
  /**
82
- * Find the last stylesheet before the first script
83
  */
84
- if (preg_match_all('/<link[^>]*rel=[\'"]stylesheet[\'"][^>]*>/si', $headParts[0], $matches, PREG_SET_ORDER)) {
 
 
85
  /**
86
- * If there is a match we insert our stylesheet after that.
87
  */
88
- $match = array_pop($matches);
89
- $lastStylesheet = $match[0];
90
-
91
- $headParts[0] = str_replace($lastStylesheet, $lastStylesheet . $this->css, $headParts[0]);
92
-
93
  $this->css = '';
94
- } else {
95
  /**
96
- * No stylesheet found, so we insert our stylesheet before the first <script>.
97
  */
98
- $headParts[0] .= $this->css;
 
 
 
99
 
100
- $this->css = '';
101
  }
102
 
103
- $head = implode($splitBy, $headParts);
104
-
105
- /**
106
- * Restore HTML comments
107
- */
108
- $head = preg_replace_callback('/<!--TOKEN([0-9]+)-->/', array(
109
- $this,
110
- 'restoreHeadTokens'
111
- ), $head);
112
-
113
- $buffer = $head . '</head>' . $body;
114
  }
115
  }
116
  }
@@ -156,7 +146,7 @@ class AssetInjector {
156
 
157
  public function addInjectCSSComment() {
158
 
159
- remove_action('wp_print_scripts', array(
160
  $this,
161
  'injectCSSComment'
162
  ));
@@ -164,7 +154,7 @@ class AssetInjector {
164
 
165
  public function removeInjectCSSComment() {
166
 
167
- add_action('wp_print_scripts', array(
168
  $this,
169
  'injectCSSComment'
170
  ));
@@ -173,7 +163,7 @@ class AssetInjector {
173
  public function injectCSSComment() {
174
  static $once;
175
  if (!$once) {
176
- echo "<!--n2css-->";
177
  $once = true;
178
  }
179
  }
12
 
13
  use SingletonTrait;
14
 
15
+ private static $cssComment = '<!--n2css-->';
16
+
17
  protected $js = '';
18
  protected $css = '';
19
 
46
  $this->finalizeCssJs();
47
 
48
  if (!empty($this->css)) {
49
+ $n2cssPos = strpos($buffer, self::$cssComment);
50
+ if ($n2cssPos !== false) {
51
+ $buffer = substr_replace($buffer, $this->css, $n2cssPos, strlen(self::$cssComment));
52
  $this->css = '';
53
  } else {
54
  $parts = preg_split('/<\/head[\s]*>/i', $buffer, 2);
64
  'tokenizeHead'
65
  ), $head);
66
 
 
67
  $head = preg_replace_callback('/<noscript>.*?<\/noscript>/s', array(
68
  $this,
69
  'tokenizeHead'
70
  ), $head);
71
 
72
+ $lastStylesheetPosition = strrpos($head, "<link rel='stylesheet'");
73
+ if ($lastStylesheetPosition === false) {
74
+ $lastStylesheetPosition = strrpos($head, "<link rel=\"stylesheet\"");
75
+ if ($lastStylesheetPosition === false) {
76
+ $lastStylesheetPosition = strrpos($head, "<link");
77
+ }
78
+ }
79
+ if ($lastStylesheetPosition !== false) {
 
80
 
81
  /**
82
+ * Find the end of the tag <link tag
83
  */
84
+ $lastStylesheetPositionEnd = strpos($head, ">", $lastStylesheetPosition);
85
+ if ($lastStylesheetPositionEnd !== false) {
86
+
87
  /**
88
+ * Insert CSS after the ending >
89
  */
90
+ $head = substr_replace($head, $this->css, $lastStylesheetPositionEnd + 1, 0);
 
 
 
 
91
  $this->css = '';
92
+
93
  /**
94
+ * Restore HTML comments
95
  */
96
+ $head = preg_replace_callback('/<!--TOKEN([0-9]+)-->/', array(
97
+ $this,
98
+ 'restoreHeadTokens'
99
+ ), $head);
100
 
101
+ $buffer = $head . '</head>' . $body;
102
  }
103
 
 
 
 
 
 
 
 
 
 
 
 
104
  }
105
  }
106
  }
146
 
147
  public function addInjectCSSComment() {
148
 
149
+ add_action('wp_print_scripts', array(
150
  $this,
151
  'injectCSSComment'
152
  ));
154
 
155
  public function removeInjectCSSComment() {
156
 
157
+ remove_action('wp_print_scripts', array(
158
  $this,
159
  'injectCSSComment'
160
  ));
163
  public function injectCSSComment() {
164
  static $once;
165
  if (!$once) {
166
+ echo self::$cssComment;
167
  $once = true;
168
  }
169
  }
Nextend/Languages/de_DE.mo CHANGED
Binary file
Nextend/Languages/de_DE.po CHANGED
@@ -1,44 +1,40 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Smart Slider 3 translation\n"
4
- "POT-Creation-Date: 2020-10-16 11:23+0200\n"
5
- "PO-Revision-Date: 2020-10-16 11:28+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: n2_;n2_e;n2_n:1,2;n2_en:1,2;n2_x:1,2c;n2_ex:1,2c\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: Framework/Asset/Builder/cache\n"
19
 
20
- #: Framework/Api.php:117 Framework/Misc/HttpClient.php:81
21
  msgid "Debug error"
22
  msgstr ""
23
 
24
- #: Framework/Api.php:136 Framework/Misc/HttpClient.php:106
25
  msgid "CURL disabled in your php.ini configuration. Please enable it!"
26
  msgstr ""
27
 
28
- #: Framework/Api.php:144 Framework/Misc/HttpClient.php:112
29
  msgid "Unable to contact with the licensing server, please try again later!"
30
  msgstr ""
31
 
32
- #: Framework/Asset/Js/Js.php:70
33
- msgid "jquery.framework"
34
- msgstr ""
35
-
36
- #: Framework/Asset/Predefined.php:28
37
  msgctxt "Default Google font family for admin"
38
  msgid "Montserrat"
39
  msgstr ""
40
 
41
- #: Framework/Asset/Predefined.php:29
42
  msgctxt "Default Google font charset for admin"
43
  msgid "latin"
44
  msgstr ""
@@ -51,7 +47,7 @@ msgstr ""
51
  msgid "Folder is missing!"
52
  msgstr ""
53
 
54
- #: Framework/Content/Joomla/JoomlaContent.php:131
55
  msgid "Menu item"
56
  msgstr ""
57
 
@@ -79,8 +75,8 @@ msgstr ""
79
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:96
80
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:176
81
  #: Framework/Image/ControllerAjaxImage.php:34
82
- #: Framework/Image/ControllerAjaxImage.php:73
83
- #: Framework/Image/ControllerAjaxImage.php:109
84
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:33
85
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:99
86
  msgid "Unexpected error"
@@ -97,7 +93,7 @@ msgstr ""
97
 
98
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:136
99
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:156
100
- #: Framework/Image/ControllerAjaxImage.php:91
101
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:53
102
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:76
103
  msgid "Not editable"
@@ -126,37 +122,37 @@ msgstr ""
126
  msgid "Font manager"
127
  msgstr ""
128
 
129
- #: Framework/Font/FontRenderer.php:103 Framework/Font/FontRenderer.php:105
130
- #: Framework/Font/FontRenderer.php:117 Framework/Font/FontRenderer.php:119
131
- #: Framework/Font/FontRenderer.php:133 Framework/Font/FontRenderer.php:152
132
- #: Framework/Font/FontRenderer.php:187 Framework/Font/FontRenderer.php:205
133
- #: Framework/Font/FontRenderer.php:221 Framework/Font/FontRenderer.php:237
134
- #: Framework/Font/FontRenderer.php:255 Framework/Style/StyleRenderer.php:80
135
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:28
136
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
137
- #: SmartSlider3/Renderable/Item/Text/Assets/text.js:20
138
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:53
139
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:134
140
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:248
141
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:149
142
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:142
143
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:64
144
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:51
145
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:58
146
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:58
147
  msgid "Text"
148
  msgstr "Text"
149
 
150
- #: Framework/Font/FontRenderer.php:131 Framework/Font/FontRenderer.php:134
151
- #: Framework/Font/FontRenderer.php:153 Framework/Font/FontRenderer.php:189
152
- #: Framework/Font/FontRenderer.php:206 Framework/Font/FontRenderer.php:239
153
- #: Framework/Font/FontRenderer.php:257 Framework/Style/StyleRenderer.php:109
154
- #: Framework/Style/StyleRenderer.php:125 Framework/Style/StyleRenderer.php:144
155
- #: Framework/Style/StyleRenderer.php:196
156
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:74
157
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:108
158
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:42
159
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:63
160
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:139
161
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:171
162
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:187
@@ -167,27 +163,27 @@ msgstr "Text"
167
  msgid "Hover"
168
  msgstr "Hover"
169
 
170
- #: Framework/Font/FontRenderer.php:139 Framework/Style/StyleRenderer.php:141
171
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:27
172
- #: SmartSlider3/Renderable/Item/Heading/Assets/heading.js:20
173
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:53
174
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
175
  #: SmartSlider3/Storage.php:65
176
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
177
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:306
178
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:100
179
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:249
180
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:264
181
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:203
182
  msgid "Heading"
183
  msgstr "Heading"
184
 
185
- #: Framework/Font/FontRenderer.php:150 Framework/Font/FontRenderer.php:188
186
- #: Framework/Font/FontRenderer.php:238
187
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:58
188
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:60
189
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:85
190
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:87
191
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:75
192
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:77
193
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:112
@@ -201,29 +197,29 @@ msgstr "Heading"
201
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:181
202
  #: SmartSlider3/Storage.php:877
203
  #: SmartSlider3Pro/Form/Element/ParticleSkin.php:18
 
204
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:169
205
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:170
206
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:188
207
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:189
208
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:180
209
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:181
210
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:218
211
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:219
212
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:114
213
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:115
214
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:136
215
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:137
216
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:280
217
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:281
 
218
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:138
219
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:139
220
  msgid "Link"
221
  msgstr "Link"
222
 
223
- #: Framework/Font/FontRenderer.php:158 Framework/Font/FontRenderer.php:262
224
- #: Framework/Style/StyleRenderer.php:122 Framework/Style/StyleRenderer.php:201
225
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:30
226
- #: SmartSlider3/Renderable/Item/Button/Assets/button.js:20
227
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:50
228
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
229
  #: SmartSlider3/Storage.php:290 SmartSlider3/Widget/Group/Autoplay.php:49
@@ -237,72 +233,11 @@ msgstr "Link"
237
  msgid "Button"
238
  msgstr "Button"
239
 
240
- #: Framework/Font/FontRenderer.php:169
241
- msgid "Accordion slide title"
242
- msgstr ""
243
-
244
- #: Framework/Font/FontRenderer.php:171
245
- #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:72
246
- #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:73
247
- #: Framework/Form/Element/Select/FontWeight.php:13
248
- #: Framework/Form/Element/Select/FontWeight.php:18
249
- #: Framework/Style/StyleRenderer.php:94 Framework/Style/StyleRenderer.php:108
250
- #: Framework/Style/StyleRenderer.php:124 Framework/Style/StyleRenderer.php:143
251
- #: Framework/Style/StyleRenderer.php:162 Framework/Style/StyleRenderer.php:178
252
- #: Framework/Style/StyleRenderer.php:194
253
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:148
254
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:62
255
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:149
256
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:61
257
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:72
258
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:173
259
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:184
260
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:153
261
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:186
262
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:197
263
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:377
264
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:411
265
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:427
266
- #: SmartSlider3Pro/SplitText/ModelSplitText.php:62
267
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:156
268
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:170
269
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:186
270
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:205
271
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:224
272
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:240
273
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:256
274
- msgid "Normal"
275
- msgstr "Normal"
276
-
277
- #: Framework/Font/FontRenderer.php:172 Framework/Font/FontRenderer.php:222
278
- #: Framework/Style/StyleRenderer.php:163 Framework/Style/StyleRenderer.php:179
279
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:353
280
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:396
281
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:441
282
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:477
283
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:513
284
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:554
285
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:596
286
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:638
287
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:225
288
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:241
289
- msgid "Active"
290
- msgstr "Aktiv"
291
-
292
- #: Framework/Font/FontRenderer.php:177
293
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
294
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:92
295
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:31
296
- #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:79
297
- #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/Assets/Admin/arrow.js:11
298
- msgid "Slide title"
299
- msgstr ""
300
-
301
- #: Framework/Font/FontRenderer.php:185
302
  msgid "Paragraph"
303
  msgstr ""
304
 
305
- #: Framework/Font/FontRenderer.php:219 Framework/Style/StyleRenderer.php:176
306
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:49
307
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:238
308
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:51
@@ -310,7 +245,22 @@ msgstr ""
310
  msgid "Dot"
311
  msgstr ""
312
 
313
- #: Framework/Font/FontRenderer.php:235 SmartSlider3/Storage.php:529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  #: SmartSlider3Pro/Renderable/Item/HtmlList/Assets/list.js:20
315
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:56
316
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:76
@@ -319,8 +269,8 @@ msgstr ""
319
  msgid "List"
320
  msgstr "Liste"
321
 
322
- #: Framework/Font/FontRenderer.php:253 Framework/Font/FontRenderer.php:256
323
- #: Framework/Style/StyleRenderer.php:192 Framework/Style/StyleRenderer.php:195
324
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:234
325
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:254
326
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:257
@@ -347,29 +297,30 @@ msgid "Family"
347
  msgstr ""
348
 
349
  #: Framework/Font/ModelFont.php:40
350
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:170
351
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:54
352
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:197
353
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:304
354
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:438
355
  #: SmartSlider3/Form/Element/BackgroundImage.php:31
356
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:222
357
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:71
358
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:105
 
359
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:53
360
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:83
361
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:119
362
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:105
363
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:164
364
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:112
365
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:158
366
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:137
367
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:245
368
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:94
369
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:242
370
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:138
371
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:40
372
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:54
373
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:43
374
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:57
375
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:59
@@ -380,31 +331,28 @@ msgid "Color"
380
  msgstr "Farbe"
381
 
382
  #: Framework/Font/ModelFont.php:44
383
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:413
384
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:416
385
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:418
 
386
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:52
387
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:192
388
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:84
389
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:216
390
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:166
391
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:58
392
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:59
393
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:182
394
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:150
395
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:88
396
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:217
397
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:129
398
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:132
399
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:149
400
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:202
401
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:204
402
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:174
403
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:143
404
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:101
405
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:234
406
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:191
407
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:92
408
  #: SmartSlider3Pro/Widget/Indicator/IndicatorPie/IndicatorPie.php:31
409
  msgid "Size"
410
  msgstr "Größe"
@@ -445,10 +393,11 @@ msgstr ""
445
  msgid "Transform"
446
  msgstr ""
447
 
448
- #: Framework/Font/ModelFont.php:86 Framework/Form/Element/Mixed/Border.php:39
449
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:163
 
450
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:116
451
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:190
452
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:91
453
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:46
454
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:105
@@ -456,16 +405,15 @@ msgstr ""
456
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:85
457
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:105
458
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:167
459
- #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:126
460
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:44
461
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:131
462
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:150
463
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:208
464
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:102
465
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:101
466
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:92
467
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:35
468
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:62
469
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:84
470
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:51
471
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:46
@@ -481,30 +429,21 @@ msgstr ""
481
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:54
482
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:55
483
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:38
484
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:52
485
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:118
486
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:86
487
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:69
488
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:51
489
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:78
490
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:69
491
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:56
492
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:56
493
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:28
494
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:63
495
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:62
496
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:63
497
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:51
498
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:45
499
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:56
500
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:84
501
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:66
502
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:56
503
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:38
504
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:36
505
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:151
506
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:137
507
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:223
508
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:39
509
  msgid "None"
510
  msgstr "Keine"
@@ -530,14 +469,14 @@ msgid "Text shadow"
530
  msgstr ""
531
 
532
  #: Framework/Font/ModelFont.php:100 Framework/Image/ModelImage.php:35
533
- #: Framework/Image/ModelImage.php:58 Framework/Style/ModelStyle.php:94
534
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:83
535
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:61
536
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:111
537
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:77
538
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:38
539
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:115
540
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:218
541
  #: SmartSlider3/BackgroundAnimation/ModelBackgroundAnimation.php:41
542
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:78
543
  #: SmartSlider3Pro/PostBackgroundAnimation/ModelPostBackgroundAnimation.php:45
@@ -565,8 +504,8 @@ msgstr ""
565
 
566
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:64
567
  #: Framework/Form/Element/Style.php:50
568
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:161
569
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:188
570
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabStyle.php:20
571
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:57
572
  #: SmartSlider3/Widget/Group/Bullet.php:95
@@ -591,6 +530,38 @@ msgctxt "Font style"
591
  msgid "Italic"
592
  msgstr ""
593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
594
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:86
595
  msgid "Character set"
596
  msgstr ""
@@ -660,52 +631,53 @@ msgid "Choose"
660
  msgstr "Wählen"
661
 
662
  #: Framework/Form/Element/Breakpoint.php:39
663
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
664
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:75
665
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:194
666
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:52
667
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:80
668
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:80
669
  msgid "Orientation"
670
  msgstr "Orientierung"
671
 
672
  #: Framework/Form/Element/Breakpoint.php:41
673
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
674
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:230
 
675
  msgid "Portrait"
676
  msgstr "Portrait"
677
 
678
  #: Framework/Form/Element/Breakpoint.php:42
679
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
680
  msgid "Landscape"
681
  msgstr "Landscape"
682
 
683
  #: Framework/Form/Element/Breakpoint.php:51
684
- #: Framework/Form/Element/Breakpoint.php:86 Framework/Image/ModelImage.php:40
685
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:86
686
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:228
687
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:20
688
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:161
689
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:162
690
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:181
 
691
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:112
692
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:97
693
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:229
694
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:302
695
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:523
696
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:156
697
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:167
698
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:157
699
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:161
700
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:97
701
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:150
 
702
  msgid "Mobile"
703
  msgstr "Mobil"
704
 
705
  #: Framework/Form/Element/Breakpoint.php:56
706
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:229
707
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:21
708
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:177
709
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:101
710
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:212
711
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:294
@@ -717,28 +689,29 @@ msgstr ""
717
 
718
  #: Framework/Form/Element/Breakpoint.php:61
719
  #: Framework/Form/Element/Breakpoint.php:91 Framework/Image/ModelImage.php:38
720
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:85
721
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:226
722
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:18
723
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:163
724
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:172
725
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:106
726
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:194
727
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:287
728
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:473
729
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:155
730
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:159
731
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:145
732
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:149
733
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:112
734
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:126
 
735
  msgid "Tablet"
736
  msgstr "Tablet"
737
 
738
  #: Framework/Form/Element/Breakpoint.php:66
739
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:227
740
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:19
741
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:168
742
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:110
743
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:178
744
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:279
@@ -750,23 +723,24 @@ msgstr ""
750
 
751
  #: Framework/Form/Element/Breakpoint.php:71
752
  #: Framework/Form/Element/Breakpoint.php:96 Framework/Image/ModelImage.php:31
753
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:84
754
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:224
755
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:16
756
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:163
757
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:115
758
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:159
759
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:151
760
- #: SmartSlider3/Application/Admin/Preview/Template/Index.php:29
761
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:127
762
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:102
 
763
  msgid "Desktop"
764
  msgstr "Desktop"
765
 
766
  #: Framework/Form/Element/Breakpoint.php:76
767
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:225
768
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:17
769
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:159
770
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:119
771
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:143
772
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:272
@@ -794,12 +768,11 @@ msgstr "Aufzeichnungen ansehen"
794
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
795
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
796
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
797
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:146
798
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:149
799
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
800
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
801
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:179
802
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:161
803
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:85
804
  msgid "Font"
805
  msgstr "Schriftart"
@@ -808,52 +781,52 @@ msgstr "Schriftart"
808
  msgid "Warning"
809
  msgstr ""
810
 
811
- #: Framework/Form/Element/Mixed/Border.php:40
812
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:166
813
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:193
814
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:154
815
  msgid "Dotted"
816
  msgstr ""
817
 
818
- #: Framework/Form/Element/Mixed/Border.php:41
819
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:165
820
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:192
821
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:153
822
  msgid "Dashed"
823
  msgstr ""
824
 
825
- #: Framework/Form/Element/Mixed/Border.php:42
826
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:164
827
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:191
828
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:152
829
  msgid "Solid"
830
  msgstr ""
831
 
832
- #: Framework/Form/Element/Mixed/Border.php:43
833
  msgid "Double"
834
  msgstr ""
835
 
836
- #: Framework/Form/Element/Mixed/Border.php:44
837
  msgid "Groove"
838
  msgstr ""
839
 
840
- #: Framework/Form/Element/Mixed/Border.php:45
841
  msgid "Ridge"
842
  msgstr ""
843
 
844
- #: Framework/Form/Element/Mixed/Border.php:46
845
  msgid "Inset"
846
  msgstr ""
847
 
848
- #: Framework/Form/Element/Mixed/Border.php:47
849
  msgid "Outset"
850
  msgstr ""
851
 
852
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:20
853
  msgid "Field"
854
  msgstr "Feld"
855
 
856
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:22
857
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:87
858
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:42
859
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:101
@@ -864,7 +837,6 @@ msgstr "Feld"
864
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:97
865
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:88
866
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:31
867
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:58
868
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:80
869
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:47
870
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:42
@@ -879,24 +851,15 @@ msgstr "Feld"
879
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:50
880
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:51
881
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:34
882
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:48
883
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:114
884
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:82
885
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:65
886
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:47
887
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:74
888
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:65
889
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:52
890
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:52
891
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:59
892
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:58
893
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:59
894
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:47
895
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:41
896
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:52
897
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:80
898
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:62
899
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:52
900
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:68
901
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:91
902
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:34
@@ -907,24 +870,24 @@ msgstr "Feld"
907
  msgid "Order"
908
  msgstr "Reihenfolge"
909
 
910
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:24
911
  msgid "Ascending"
912
  msgstr "Aufsteigend"
913
 
914
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:25
915
  msgid "Descending"
916
  msgstr "Absteigend"
917
 
918
  #: Framework/Form/Element/OnOff.php:22
919
  #: Framework/Form/Element/Select/Gradient.php:15
920
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:145
921
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:117
922
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:124
923
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:96
924
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:107
925
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:290
926
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:307
927
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:165
928
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:141
929
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:150
930
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:180
@@ -932,9 +895,9 @@ msgid "Off"
932
  msgstr "Aus"
933
 
934
  #: Framework/Form/Element/OnOff.php:22
935
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:146
936
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:308
937
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:166
938
  msgid "On"
939
  msgstr "An"
940
 
@@ -945,11 +908,10 @@ msgid ""
945
  msgstr ""
946
 
947
  #: Framework/Form/Element/Select/FillMode.php:15
948
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:239
949
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:107
950
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:240
951
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:130
952
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:208
953
  msgid "Fill"
954
  msgstr "Fülle"
955
 
@@ -958,45 +920,39 @@ msgid "Blur fit"
958
  msgstr ""
959
 
960
  #: Framework/Form/Element/Select/FillMode.php:17
961
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:240
962
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:108
963
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:241
964
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:131
965
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:209
966
  msgid "Fit"
967
  msgstr "Fit"
968
 
969
  #: Framework/Form/Element/Select/FillMode.php:18
970
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:79
971
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:80
 
972
  msgid "Stretch"
973
  msgstr "Strecken"
974
 
975
  #: Framework/Form/Element/Select/FillMode.php:19
976
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:81
977
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:102
978
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:150
979
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:241
980
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:109
981
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:242
982
  #: SmartSlider3/Storage.php:710
983
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:103
984
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:71
985
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:71
986
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:235
987
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:337
988
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:307
989
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:67
990
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:76
991
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:76
992
  msgid "Center"
993
  msgstr "Mitte"
994
 
995
- #: Framework/Form/Element/Select/FillMode.php:20
996
- msgid "Tile"
997
- msgstr ""
998
-
999
- #: Framework/Form/Element/Select/FillMode.php:26
1000
  msgid "Slider's default"
1001
  msgstr ""
1002
 
@@ -1010,7 +966,6 @@ msgstr ""
1010
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTags.php:17
1011
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTaxonomies.php:23
1012
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:39
1013
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Elements/CobaltCategories.php:39
1014
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsCategories.php:36
1015
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsLocations.php:36
1016
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsTypes.php:15
@@ -1036,27 +991,12 @@ msgstr ""
1036
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopTags.php:18
1037
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopWarehouses.php:18
1038
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Elements/IgnitegalleryCategories.php:33
1039
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Elements/JauctionCategories.php:35
1040
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Elements/JauctionLanguages.php:21
1041
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Elements/JcartCategories.php:33
1042
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Elements/JcartLanguages.php:22
1043
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCalendars.php:17
1044
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCategories.php:34
1045
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:72
1046
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Elements/JmarketCategories.php:35
1047
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Elements/JmarketLanguages.php:21
1048
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialCategories.php:31
1049
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialEvents.php:17
1050
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialGroupcategories.php:31
1051
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialGroups.php:17
1052
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialProfiles.php:17
1053
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialVideotype.php:17
1054
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:46
1055
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingCategories.php:42
1056
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:27
1057
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingManufacturers.php:27
1058
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Elements/JreviewsArticles.php:21
1059
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Elements/JreviewsCategories.php:36
1060
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Categories.php:29
1061
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Tags.php:18
1062
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Elements/MijoshopCategories.php:49
@@ -1072,8 +1012,6 @@ msgstr ""
1072
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Elements/RseventsproTags.php:17
1073
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartCategories.php:34
1074
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartManufacturers.php:21
1075
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Elements/ZooCategories.php:24
1076
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Elements/ZooTags.php:17
1077
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarCategories.php:34
1078
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarTags.php:35
1079
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Elements/EventsManagerCategories.php:34
@@ -1106,7 +1044,6 @@ msgid "Extra light"
1106
  msgstr ""
1107
 
1108
  #: Framework/Form/Element/Select/FontWeight.php:17
1109
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:77
1110
  msgid "Light"
1111
  msgstr "Hell"
1112
 
@@ -1127,34 +1064,34 @@ msgid "New"
1127
  msgstr ""
1128
 
1129
  #: Framework/Form/Element/Select/LinkTarget.php:15
1130
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1150
1131
  msgid "Parent"
1132
  msgstr ""
1133
 
1134
  #: Framework/Form/Element/Select/LinkTarget.php:16
1135
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:75
1136
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:78
1137
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:81
1138
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:84
1139
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:176
1140
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:468
1141
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
1142
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
1143
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
1144
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
1145
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
1146
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
1147
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:511
1148
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:238
 
1149
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:106
1150
  #: SmartSlider3/Storage.php:979
1151
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:138
1152
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:73
1153
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:199
1154
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:217
1155
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:234
1156
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:299
1157
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:336
1158
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:105
1159
  msgid "Top"
1160
  msgstr "Oben"
@@ -1179,25 +1116,25 @@ msgstr ""
1179
  #: Framework/Form/Joomla/Element/Select/MenuItems.php:18
1180
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:119
1181
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:61
1182
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:150
1183
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:132
1184
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:507
1185
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:107
1186
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:49
1187
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:190
1188
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:237
1189
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:196
1190
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:58
1191
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:69
1192
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:170
1193
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:181
1194
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:183
1195
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:194
1196
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:373
1197
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:408
1198
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:424
1199
  #: SmartSlider3/Storage.php:552 SmartSlider3/Storage.php:928
1200
- #: SmartSlider3/Storage.php:1165 SmartSlider3/Storage.php:3954
1201
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:39
1202
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCategoryLanguage.php:20
1203
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCurrency.php:20
@@ -1207,25 +1144,17 @@ msgstr ""
1207
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:95
1208
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:80
1209
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:86
1210
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:218
1211
  msgid "Default"
1212
  msgstr "Default"
1213
 
1214
- #: Framework/Image/Admin/Assets/js/editor.js:142
1215
- msgid "Generate"
1216
- msgstr ""
1217
-
1218
- #: Framework/Image/Admin/Assets/js/editor.js:148
1219
- msgid "Desktop image is empty!"
1220
- msgstr ""
1221
-
1222
- #: Framework/Image/Admin/Assets/js/manager.js:44
1223
  msgid "The image is empty"
1224
  msgstr ""
1225
 
1226
- #: Framework/Image/Admin/Assets/js/manager.js:65
1227
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:86
1228
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:107
1229
  msgid "Empty"
1230
  msgstr ""
1231
 
@@ -1233,44 +1162,29 @@ msgstr ""
1233
  msgid "Image manager"
1234
  msgstr ""
1235
 
1236
- #: Framework/Image/Joomla/JoomlaImage.php:12
1237
- msgid "behavior.modal"
1238
- msgstr ""
1239
-
1240
  #: Framework/Image/ModelImage.php:37
1241
  #, fuzzy
1242
  #| msgid "Desktop"
1243
  msgid "Desktop retina"
1244
  msgstr "Desktop"
1245
 
1246
- #: Framework/Image/ModelImage.php:39
1247
- #, fuzzy
1248
- #| msgid "Tablet text"
1249
- msgid "Tablet retina"
1250
- msgstr "Tablet-Text"
1251
-
1252
- #: Framework/Image/ModelImage.php:41
1253
- #, fuzzy
1254
- #| msgid "Mobile text"
1255
- msgid "Mobile retina"
1256
- msgstr "Mobil-Text"
1257
-
1258
- #: Framework/Image/ModelImage.php:55
1259
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:29
1260
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:19
1261
  #: SmartSlider3/Form/Element/BackgroundImage.php:29
1262
- #: SmartSlider3/Renderable/Item/Image/Assets/image.js:20
1263
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:43
1264
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:129
1265
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
1266
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:253
1267
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:262
1268
  #: SmartSlider3/Widget/Group/Bullet.php:64
1269
  #: SmartSlider3/Widget/Group/Thumbnail.php:63
1270
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:161
1271
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:110
1272
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:211
1273
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:216
 
1274
  msgid "Image"
1275
  msgstr "Bild"
1276
 
@@ -1295,12 +1209,11 @@ msgid "Style settings"
1295
  msgstr ""
1296
 
1297
  #: Framework/Style/ModelStyle.php:35
1298
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:165
1299
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:112
1300
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:97
1301
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:139
1302
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:139
1303
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:225
1304
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:113
1305
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:89
1306
  msgid "Background color"
@@ -1308,193 +1221,167 @@ msgstr "Hintergrundfarbe"
1308
 
1309
  #: Framework/Style/ModelStyle.php:39
1310
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:143
1311
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:223
1312
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:288
1313
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:196
1314
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:335
1315
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:131
1316
  msgid "Opacity"
1317
  msgstr "Durchsichtigkeit"
1318
 
1319
  #: Framework/Style/ModelStyle.php:50
1320
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:203
1321
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:120
1322
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:189
1323
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:221
1324
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:150
1325
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:262
1326
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:317
1327
  msgid "Padding"
1328
  msgstr "Randabstand"
1329
 
1330
  #: Framework/Style/ModelStyle.php:72
1331
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:135
1332
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:140
1333
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:165
1334
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:169
1335
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:161
1336
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:167
1337
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:125
1338
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:127
1339
  msgid "Border"
1340
  msgstr "Umrandung"
1341
 
1342
  #: Framework/Style/ModelStyle.php:74
1343
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:174
1344
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:171
1345
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:201
1346
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:280
 
1347
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:162
1348
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:117
1349
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:152
1350
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:153
1351
  msgid "Border radius"
1352
  msgstr "Border Radius"
1353
 
1354
  #: Framework/Style/ModelStyle.php:87
1355
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:126
1356
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:157
1357
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:153
1358
  msgid "Box shadow"
1359
  msgstr ""
1360
 
1361
- #: Framework/Style/StyleRenderer.php:78
1362
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:140
1363
  msgid "Single"
1364
  msgstr ""
1365
 
1366
- #: Framework/Style/StyleRenderer.php:92
1367
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:178
1368
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:38
1369
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:200
1370
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:154
1371
  msgid "Simple"
1372
  msgstr "Einfach"
1373
 
1374
- #: Framework/Style/StyleRenderer.php:106
1375
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:168
1376
  msgid "Box"
1377
  msgstr ""
1378
 
1379
- #: Framework/Style/StyleRenderer.php:160
1380
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:222
1381
  msgid "Heading active"
1382
  msgstr ""
1383
 
1384
  #: SmartSlider3/Application/Admin/ApplicationTypeAdmin.php:55
1385
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:301
1386
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:112
1387
- #: SmartSlider3/Application/Model/ModelSlidersXRef.php:150
1388
- #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:85
1389
  msgid "Dashboard"
1390
  msgstr "Dashboard"
1391
 
1392
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:79
1393
- msgid "Slide height probably too high"
1394
- msgstr ""
1395
-
1396
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:80
1397
- msgid ""
1398
- "The height of this slide is much higher than others so it will increase the "
1399
- "height of the other slides."
1400
- msgstr ""
1401
-
1402
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:84
1403
- msgid "Slide height increased"
1404
- msgstr ""
1405
-
1406
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:89
1407
- #, javascript-format
1408
- msgid ""
1409
- "The height of this slide increased because the following slides are much "
1410
- "higher: %s."
1411
- msgstr ""
1412
-
1413
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:12
1414
  msgid "Drop files here or"
1415
  msgstr ""
1416
 
1417
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:12
1418
  msgid "Upload"
1419
  msgstr ""
1420
 
1421
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:19
1422
  msgid "Parent directory"
1423
  msgstr ""
1424
 
1425
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:105
1426
  msgid "Current path"
1427
  msgstr ""
1428
 
1429
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:32
1430
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:59
1431
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:214
1432
  msgid "Preset"
1433
  msgstr "Voreingestellt"
1434
 
1435
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:32
1436
  msgid ""
1437
  "You can use presets to save style settings for later use. Clicking on any "
1438
  "preset will load its styling to your current layer, and the previous style "
1439
  "settings will be lost."
1440
  msgstr ""
1441
 
1442
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:34
1443
  msgid ""
1444
  "Layer design options affect every device. If you need to make responsive "
1445
  "adjustments, look for the options with the device icon."
1446
  msgstr ""
1447
 
1448
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:41
1449
  msgid "Reset style to default"
1450
  msgstr ""
1451
 
1452
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:47
1453
  msgid "Save style as new preset"
1454
  msgstr ""
1455
 
1456
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:58
1457
  msgid "Load style"
1458
  msgstr ""
1459
 
1460
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:87
1461
  msgid "You have not created any presets for this layer yet."
1462
  msgstr ""
1463
 
1464
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:159
1465
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:166
1466
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:217
1467
  msgid "Save as"
1468
  msgstr ""
1469
 
1470
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:164
1471
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:222
1472
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:207
1473
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
1474
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
1475
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
1476
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:85
1477
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialUsers.php:84
1478
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:57
1479
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:57
1480
  msgid "Name"
1481
  msgstr "Name"
1482
 
1483
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:174
1484
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:232
1485
  msgid "Please fill the name field!"
1486
  msgstr ""
1487
 
1488
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:199
1489
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:290
1490
  msgid "Preset saved."
1491
  msgstr ""
1492
 
1493
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:268
1494
  msgid "Overwrite preset"
1495
  msgstr ""
1496
 
1497
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:312
1498
  msgid "Preset deleted."
1499
  msgstr ""
1500
 
@@ -1503,13 +1390,13 @@ msgid "Choose folder"
1503
  msgstr ""
1504
 
1505
  #: SmartSlider3/Application/Admin/Assets/js/common/element/folders.js:46
1506
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:75
1507
  msgid "Select"
1508
  msgstr "Auswählen"
1509
 
1510
- #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:135
1511
- #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:198
1512
- #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:69
1513
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:51
1514
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:142
1515
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:145
@@ -1521,31 +1408,31 @@ msgstr "Auswählen"
1521
  msgid "Disabled"
1522
  msgstr "Deaktiviert"
1523
 
1524
- #: SmartSlider3/Application/Admin/Assets/js/common/element/imagemanager.js:32
1525
  msgid "Image field can not be empty!"
1526
  msgstr ""
1527
 
1528
- #: SmartSlider3/Application/Admin/Assets/js/common/element/skin.js:56
1529
  msgid "Done"
1530
  msgstr ""
1531
 
1532
- #: SmartSlider3/Application/Admin/Assets/js/common/element/upload.js:39
1533
  msgid "No file selected."
1534
  msgstr ""
1535
 
1536
- #: SmartSlider3/Application/Admin/Assets/js/common/form-tip-manager.js:109
1537
  msgid "Open docs"
1538
  msgstr ""
1539
 
1540
- #: SmartSlider3/Application/Admin/Assets/js/common/form.js:113
1541
  msgid "The changes you made will be lost if you navigate away from this page."
1542
  msgstr ""
1543
 
1544
- #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:77
1545
  msgid "Icons"
1546
  msgstr ""
1547
 
1548
- #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:90
1549
  #: SmartSlider3/Application/Admin/Help/Template/Index.php:72
1550
  #: SmartSlider3Pro/Generator/Common/Flickr/GeneratorGroupFlickr.php:36
1551
  #: SmartSlider3Pro/Generator/Common/YouTube/GeneratorGroupYouTube.php:31
@@ -1555,40 +1442,40 @@ msgstr ""
1555
  msgid "Search"
1556
  msgstr "Suchen"
1557
 
1558
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:18
1559
  msgid "Are you sure?"
1560
  msgstr ""
1561
 
1562
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:22
1563
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonCancel.php:12
1564
  msgid "Cancel"
1565
  msgstr "Abbrechen"
1566
 
1567
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:29
1568
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:99
1569
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:382
1570
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:181
1571
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1108
1572
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:112
1573
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:45
1574
  msgid "Delete"
1575
  msgstr "Löschen"
1576
 
1577
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalLightbox.js:36
1578
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:95
1579
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:47
1580
  msgid "Close"
1581
  msgstr ""
1582
 
1583
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:16
1584
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:23
1585
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:41
1586
  #, fuzzy
1587
  #| msgid "Create"
1588
  msgid "Create group"
1589
  msgstr "erstellen"
1590
 
1591
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:21
1592
  #, fuzzy
1593
  #| msgid "Product name"
1594
  msgid "Group name"
@@ -1598,91 +1485,88 @@ msgstr "Produktname"
1598
  msgid "Group created"
1599
  msgstr ""
1600
 
1601
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/generator-record-viewer.js:52
1602
  msgid "Records"
1603
  msgstr ""
1604
 
1605
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:11
1606
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:62
1607
  msgid "Keyboard shortcuts"
1608
  msgstr ""
1609
 
1610
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:40
1611
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:37
1612
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:91
1613
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:54
1614
  msgid "Got it"
1615
  msgstr ""
1616
 
1617
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:61
1618
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:46
1619
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:56
1620
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:68
1621
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:35
1622
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:33
1623
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:43
1624
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:56
1625
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:59
1626
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:139
1627
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:146
1628
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:127
1629
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:132
1630
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:109
1631
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:112
1632
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:204
1633
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:154
1634
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:113
1635
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:159
1636
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:204
1637
  #: SmartSlider3Pro/Renderable/Item/Html/ItemHtml.php:61
1638
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:125
1639
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:92
1640
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:64
1641
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:108
1642
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:181
1643
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:119
1644
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:114
1645
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:50
1646
  msgid "General"
1647
  msgstr "Allgemein"
1648
 
1649
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:62
1650
  #, fuzzy
1651
  #| msgid "Content"
1652
  msgid "Content tab"
1653
  msgstr "Inhalt"
1654
 
1655
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:63
1656
  #, fuzzy
1657
  #| msgid "Style"
1658
  msgid "Style tab"
1659
  msgstr "Stil"
1660
 
1661
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:69
1662
  #, fuzzy
1663
  #| msgid "Animation"
1664
  msgid "Animation tab"
1665
  msgstr "Animation"
1666
 
1667
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:73
1668
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:24
1669
  msgid "Add Layer"
1670
  msgstr ""
1671
 
1672
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:74
1673
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerWindow.js:79
1674
  msgid "Layer List"
1675
  msgstr ""
1676
 
1677
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:78
1678
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerNavigation.js:50
1679
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:50
1680
  msgid "Timeline"
1681
  msgstr ""
1682
 
1683
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:82
1684
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleProject.php:49
1685
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleShots.php:37
1686
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:101
1687
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoGallery.php:100
1688
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoStream.php:91
@@ -1692,115 +1576,115 @@ msgstr ""
1692
  msgid "View"
1693
  msgstr "Ansicht"
1694
 
1695
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:91
1696
  msgid "Adjust"
1697
  msgstr ""
1698
 
1699
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1700
  msgid "Move (Absolute)"
1701
  msgstr ""
1702
 
1703
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1704
  #: SmartSlider3/Widget/Group/Arrow.php:44
1705
  msgid "Arrows"
1706
  msgstr "Pfeile"
1707
 
1708
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1709
  msgid "Align (Absolute)"
1710
  msgstr ""
1711
 
1712
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1713
  msgid "Numeric keys"
1714
  msgstr ""
1715
 
1716
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:98
1717
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:16
1718
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:20
1719
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:39
1720
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:60
1721
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:42
1722
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:41
1723
  msgid "Action"
1724
  msgstr "Handlung"
1725
 
1726
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:100
1727
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:375
1728
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:174
1729
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1101
1730
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:79
1731
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:54
1732
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:43
1733
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:127
1734
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:148
1735
  msgid "Duplicate"
1736
  msgstr "Dupliziere"
1737
 
1738
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:101
1739
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1131
1740
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:60
1741
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:44
1742
- #: SmartSlider3/Application/Model/ModelSliders.php:573
1743
  msgid "Copy"
1744
  msgstr "Kopieren"
1745
 
1746
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:102
1747
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1140
1748
  msgid "Paste"
1749
  msgstr ""
1750
 
1751
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:103
1752
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:200
1753
  msgid "Undo"
1754
  msgstr ""
1755
 
1756
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:104
1757
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:191
1758
  msgid "Redo"
1759
  msgstr ""
1760
 
1761
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:105
1762
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonSave.php:12
1763
  msgid "Save"
1764
  msgstr "Speichern"
1765
 
1766
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:109
1767
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:42
1768
  #, fuzzy
1769
  #| msgid "Layer animations"
1770
  msgid "Play animations"
1771
  msgstr "Layer Animationen"
1772
 
1773
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:114
1774
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:86
1775
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:89
1776
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:106
1777
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:109
1778
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:272
1779
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:171
1780
  msgid "Clear device specific settings"
1781
  msgstr ""
1782
 
1783
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:115
1784
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:89
1785
  msgid "Current layer, current device"
1786
  msgstr ""
1787
 
1788
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:116
1789
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:86
1790
  msgid "Current layer, all devices"
1791
  msgstr ""
1792
 
1793
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:117
1794
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:109
1795
  msgid "All layers, current device"
1796
  msgstr ""
1797
 
1798
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:118
1799
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:106
1800
  msgid "All layers, all devices"
1801
  msgstr ""
1802
 
1803
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/safe-html.js:15
1804
  msgid "Unexpected response"
1805
  msgstr ""
1806
 
@@ -1822,10 +1706,18 @@ msgid "Go to slide ID"
1822
  msgstr ""
1823
 
1824
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:21
 
 
 
 
1825
  msgid "Previous slide"
1826
  msgstr ""
1827
 
1828
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:22
 
 
 
 
1829
  msgid "Next slide"
1830
  msgstr ""
1831
 
@@ -1870,18 +1762,17 @@ msgstr ""
1870
 
1871
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:189
1872
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:257
1873
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:215
1874
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:325
1875
  msgid "Direction"
1876
  msgstr "Richtung"
1877
 
1878
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:190
1879
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:258
1880
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:93
1881
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:164
1882
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:77
1883
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:196
1884
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:42
1885
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:76
1886
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:82
1887
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:82
@@ -1955,19 +1846,19 @@ msgstr ""
1955
  msgid "Autoplay duration"
1956
  msgstr ""
1957
 
1958
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:19
1959
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:18
1960
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:75
1961
  msgid "URL"
1962
  msgstr ""
1963
 
1964
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:24
1965
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:275
1966
  msgid "Search keyword"
1967
  msgstr ""
1968
 
1969
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:31
1970
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:283
1971
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:16
1972
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:30
1973
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/GeneratorGroupMultisitePost.php:29
@@ -1979,36 +1870,36 @@ msgid "Lightbox"
1979
  msgstr ""
1980
 
1981
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:34
1982
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:412
1983
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:15
1984
  msgid "Insert"
1985
  msgstr "Einfügen"
1986
 
1987
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:26
1988
  msgid "Oops, Something Went Wrong"
1989
  msgstr ""
1990
 
1991
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:50
1992
  msgid "Success"
1993
  msgstr ""
1994
 
1995
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:56
1996
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:413
1997
  msgid "Notice"
1998
  msgstr ""
1999
 
2000
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:33
2001
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:68
2002
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:124
2003
  msgid "Select image"
2004
  msgstr ""
2005
 
2006
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:35
2007
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:70
2008
  msgid "Use Joomla selector"
2009
  msgstr ""
2010
 
2011
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:126
2012
  msgid "Use default selector"
2013
  msgstr ""
2014
 
@@ -2016,55 +1907,55 @@ msgstr ""
2016
  msgid "Deleted."
2017
  msgstr ""
2018
 
2019
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:101
2020
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/setsandmore.js:91
2021
  #: SmartSlider3Pro/SplitText/Admin/Assets/js/manager.js:71
2022
  msgid "Static"
2023
  msgstr "Feststehend"
2024
 
2025
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:224
2026
  msgid "Save as New"
2027
  msgstr ""
2028
 
2029
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:235
2030
  msgid "Saved."
2031
  msgstr ""
2032
 
2033
- #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:71
2034
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:140
2035
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/splittextanimationmanagerelement.js:100
2036
  msgid "Enabled"
2037
  msgstr "Aktiviert"
2038
 
2039
- #: SmartSlider3/Application/Admin/Assets/js/element/columns-element.js:110
2040
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:70
2041
  msgid "Column"
2042
  msgstr ""
2043
 
2044
- #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:141
2045
  msgid "There is no layer available to be parent of the current layer!"
2046
  msgstr ""
2047
 
2048
- #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:151
2049
  msgid "Pick the parent layer!"
2050
  msgstr "Nehmen Sie die erste Schicht"
2051
 
2052
- #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:170
2053
  msgid "Pick the align point of the parent layer!"
2054
  msgstr ""
2055
 
2056
- #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:193
2057
  msgid "Pick the align point of the child layer!"
2058
  msgstr ""
2059
 
2060
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:71
2061
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:327
2062
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:104
2063
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:24
2064
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:204
2065
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:275
2066
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:180
2067
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:260
2068
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:203
2069
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:289
2070
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:89
@@ -2072,152 +1963,151 @@ msgstr ""
2072
  msgid "Advanced"
2073
  msgstr ""
2074
 
2075
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:75
2076
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:87
2077
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:96
2078
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:108
2079
  #, fuzzy, javascript-format
2080
  #| msgid "Outer"
2081
  msgid "Outer %s"
2082
  msgstr "Äußere"
2083
 
2084
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:78
2085
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:87
2086
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:90
2087
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:99
2088
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:149
2089
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:169
2090
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:471
2091
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:475
2092
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
2093
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
2094
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
2095
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
2096
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:491
2097
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:514
 
2098
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:88
2099
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:199
2100
  #: SmartSlider3/Storage.php:949
2101
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:102
2102
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:70
2103
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:181
2104
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:220
2105
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:300
2106
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:75
2107
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:75
2108
  msgid "Left"
2109
  msgstr "Links"
2110
 
2111
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:84
2112
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:93
2113
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:96
2114
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:105
2115
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:151
2116
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
2117
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
2118
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
2119
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
2120
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
2121
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
2122
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
2123
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:512
 
2124
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:89
2125
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:200
2126
  #: SmartSlider3/Storage.php:964
2127
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:104
2128
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:72
2129
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:190
2130
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:218
2131
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:301
2132
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:77
2133
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:77
2134
  msgid "Right"
2135
  msgstr "Rechts"
2136
 
2137
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:90
2138
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:93
2139
  msgid "Middle"
2140
  msgstr ""
2141
 
2142
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:99
2143
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:102
2144
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:105
2145
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:108
2146
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:470
2147
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:474
2148
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
2149
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
2150
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
2151
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
2152
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:490
2153
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:513
2154
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:242
 
2155
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:107
2156
  #: SmartSlider3/Storage.php:994
2157
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:140
2158
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:74
2159
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:208
2160
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:219
2161
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:236
2162
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:302
2163
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:338
2164
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:108
2165
  msgid "Bottom"
2166
  msgstr "Unten"
2167
 
2168
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1210
2169
  msgid "Layer(s)"
2170
  msgstr ""
2171
 
2172
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:270
2173
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:94
2174
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:252
2175
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:69
2176
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:94
2177
  msgid "Hide on"
2178
  msgstr ""
2179
 
2180
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:414
2181
  msgid "Rename"
2182
  msgstr ""
2183
 
2184
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:421
2185
  msgid "Show/Hide in editor"
2186
  msgstr ""
2187
 
2188
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:573
2189
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:594
2190
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:35
2191
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabGoPro.php:21
2192
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:156
2193
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:346
2194
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:129
2195
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:185
2196
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:195
2197
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:197
2198
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:179
2199
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:134
2200
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:259
2201
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:163
2202
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:130
2203
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:183
2204
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:45
2205
  msgid "Animation"
2206
  msgstr "Animation"
2207
 
2208
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/animations.js:106
2209
  msgid "Add animation"
2210
  msgstr "Animation hinzufügen"
2211
 
2212
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/animations.js:116
2213
  msgid "Remove animations"
2214
  msgstr "Animationen entfernen"
2215
 
2216
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/editor/Editor.js:50
2217
  msgid "Layer Animation - Basic"
2218
  msgstr ""
2219
 
2220
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/editor/Editor.js:105
2221
  msgid "Add keyframe"
2222
  msgstr ""
2223
 
@@ -2227,152 +2117,152 @@ msgstr ""
2227
  msgid "Loop"
2228
  msgstr "Wiederholend"
2229
 
2230
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/group/keyFrame/KeyFrame.js:188
2231
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:357
2232
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:358
 
2233
  msgid "Special Zero"
2234
  msgstr ""
2235
 
2236
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/group/keyFrame/KeyFrame.js:188
2237
  msgid "Keyframe"
2238
  msgstr ""
2239
 
2240
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/reveal/editor/Editor.js:41
2241
  msgid "Layer Animation - Reveal"
2242
  msgstr ""
2243
 
2244
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:170
2245
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/content.js:121
2246
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:362
2247
  msgid "Open/Close"
2248
  msgstr ""
2249
 
2250
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/content.js:11
2251
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:505
2252
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabContent.php:18
2253
  msgid "Content"
2254
  msgstr "Inhalt"
2255
 
2256
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/contentAbstract.js:439
2257
  msgid "Child layers"
2258
  msgstr ""
2259
 
2260
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/animatedHeading.js:68
2261
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/Assets/animatedHeading.js:20
2262
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:52
2263
  msgid "Animated heading"
2264
  msgstr ""
2265
 
2266
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/highlightedHeading.js:57
2267
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/Assets/highlightedHeading.js:22
2268
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:53
2269
  msgid "Highlighted heading"
2270
  msgstr ""
2271
 
2272
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/splittext-admin.js:87
2273
  #, fuzzy
2274
  #| msgid "No animation"
2275
  msgid "Text animation in"
2276
  msgstr "Keine Animation"
2277
 
2278
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/splittext-admin.js:100
2279
  #, fuzzy
2280
  #| msgid "No animation"
2281
  msgid "Text animation out"
2282
  msgstr "Keine Animation"
2283
 
2284
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:11
2285
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:194
2286
  msgid "Layer"
2287
  msgstr "Schicht"
2288
 
2289
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:14
2290
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:31
2291
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/BlockAddLayer.php:25
2292
  msgid "Row"
2293
  msgstr "Reihe"
2294
 
2295
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:13
2296
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:161
2297
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:662
2298
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:678
2299
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:56
2300
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
2301
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:82
2302
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:329
2303
  msgid "Slide"
2304
  msgstr "Slide"
2305
 
2306
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:176
2307
  msgid "Theme"
2308
  msgstr ""
2309
 
2310
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:256
2311
  #, javascript-format
2312
  msgid "%s or newer required for this feature."
2313
  msgstr ""
2314
 
2315
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:294
2316
  msgid "This section requires activated Pro version."
2317
  msgstr ""
2318
 
2319
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:297
2320
  #, javascript-format
2321
  msgid "This block is not available in the free version. %s"
2322
  msgstr ""
2323
 
2324
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:297
2325
  #: SmartSlider3/Application/Admin/GoPro/ViewGoProIndex.php:24
2326
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:37
2327
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:51
2328
  #: SmartSlider3/Application/Admin/Layout/Block/Core/FreeNeedMore/FreeNeedMore.php:23
2329
- #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:96
2330
  msgid "Go Pro"
2331
  msgstr ""
2332
 
2333
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:17
2334
  msgid "Editor settings"
2335
  msgstr ""
2336
 
2337
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:45
2338
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:53
2339
  msgid "Upgrade to Pro"
2340
  msgstr ""
2341
 
2342
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:55
2343
  msgid "Guide settings"
2344
  msgstr ""
2345
 
2346
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:124
2347
  msgid "Smart snap"
2348
  msgstr ""
2349
 
2350
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:131
2351
  msgid "Round to 5px"
2352
  msgstr "Runden auf 5px"
2353
 
2354
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:143
2355
  msgid "Ruler"
2356
  msgstr "Lineal"
2357
 
2358
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:147
2359
  #, fuzzy
2360
  #| msgid "Clear cache"
2361
  msgid "Clear guides"
2362
  msgstr "Cache leeren"
2363
 
2364
- #: SmartSlider3/Application/Admin/Assets/js/license.js:101
2365
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:14
2366
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:13
2367
  msgid "Activate Smart Slider 3 Pro"
2368
  msgstr ""
2369
 
2370
- #: SmartSlider3/Application/Admin/Assets/js/license.js:107
2371
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:15
2372
  msgid "Activation is required to unlock all features!"
2373
  msgstr ""
2374
 
2375
- #: SmartSlider3/Application/Admin/Assets/js/license.js:108
2376
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:15
2377
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:16
2378
  msgid ""
@@ -2380,73 +2270,62 @@ msgid ""
2380
  "templates and slide library."
2381
  msgstr ""
2382
 
2383
- #: SmartSlider3/Application/Admin/Assets/js/license.js:113
2384
  msgid "Skip"
2385
  msgstr "Überspringen"
2386
 
2387
- #: SmartSlider3/Application/Admin/Assets/js/license.js:124
2388
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:17
2389
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardInfo/DashboardInfo.php:85
2390
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:27
2391
  msgid "Activate"
2392
  msgstr ""
2393
 
2394
- #: SmartSlider3/Application/Admin/Assets/js/license.js:156
2395
- msgid ""
2396
- "Activation process is not supported in this browser. Please use Google "
2397
- "Chrome."
2398
- msgstr ""
2399
-
2400
- #: SmartSlider3/Application/Admin/Assets/js/license.js:230
2401
  msgid "Smart Slider 3 activated!"
2402
  msgstr "Smart Slider 3 ist aktiviert!"
2403
 
2404
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:164
2405
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:165
 
2406
  msgid "Laptop"
2407
  msgstr ""
2408
 
2409
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:191
2410
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:199
2411
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:210
2412
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:136
2413
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:134
2414
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:65
2415
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:429
2416
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:455
2417
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:480
2418
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:505
2419
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:530
2420
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:221
2421
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:152
2422
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:154
2423
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:148
2424
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:244
2425
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:149
2426
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:253
2427
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:89
2428
  #: SmartSlider3/Widget/Group/Bullet.php:73
2429
- #: SmartSlider3/Widget/Group/Thumbnail.php:66
2430
- #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:36
2431
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:113
2432
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:172
2433
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:175
2434
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:178
2435
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:248
2436
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:82
2437
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:221
2438
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:154
 
2439
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:34
2440
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:58
2441
  #: SmartSlider3Pro/Widget/Indicator/IndicatorStripe/IndicatorStripe.php:31
2442
  msgid "Width"
2443
  msgstr "Breite"
2444
 
2445
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:227
2446
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:235
2447
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:215
2448
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:146
2449
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:139
2450
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:78
2451
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:433
2452
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:459
@@ -2455,59 +2334,61 @@ msgstr "Breite"
2455
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:534
2456
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:99
2457
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:105
2458
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:228
2459
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:157
2460
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:159
2461
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:153
2462
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:248
2463
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:154
2464
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:257
2465
  #: SmartSlider3/Widget/Group/Bullet.php:84
2466
  #: SmartSlider3/Widget/Group/Thumbnail.php:77
2467
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:125
2468
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:184
 
 
2469
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:181
2470
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:184
2471
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:85
2472
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:159
 
2473
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:59
2474
  #: SmartSlider3Pro/Widget/Indicator/IndicatorStripe/IndicatorStripe.php:35
2475
  msgid "Height"
2476
  msgstr "Höhe"
2477
 
2478
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:413
2479
  #, javascript-format
2480
  msgid "Below %s pixels."
2481
  msgstr ""
2482
 
2483
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:416
2484
  #, javascript-format
2485
  msgid "Above %s pixels."
2486
  msgstr ""
2487
 
2488
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:418
2489
  #, javascript-format
2490
  msgid "Between %s and %s pixels."
2491
  msgstr ""
2492
 
2493
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:187
2494
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:171
2495
  #, javascript-format, php-format
2496
  msgid "This slide is hidden on the following devices: %s"
2497
  msgstr ""
2498
 
2499
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:34
2500
  msgid "Data"
2501
  msgstr ""
2502
 
2503
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:333
2504
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:44
2505
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:31
2506
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:29
2507
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsCustomPosts.php:54
2508
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:30
2509
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPostsByIDs.php:18
2510
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleProject.php:22
2511
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookAlbums.php:21
2512
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:23
2513
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:20
@@ -2527,7 +2408,6 @@ msgstr ""
2527
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:22
2528
  #: SmartSlider3Pro/Generator/Common/YouTube/Sources/YouTubeByPlaylist.php:29
2529
  #: SmartSlider3Pro/Generator/Common/YouTube/Sources/YouTubeBySearch.php:28
2530
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:44
2531
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:37
2532
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:34
2533
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:30
@@ -2543,24 +2423,15 @@ msgstr ""
2543
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:30
2544
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:25
2545
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:26
2546
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:32
2547
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:100
2548
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:38
2549
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:37
2550
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:32
2551
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:36
2552
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:33
2553
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:33
2554
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:33
2555
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:35
2556
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:35
2557
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:37
2558
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:31
2559
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:27
2560
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:31
2561
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:36
2562
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:44
2563
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:38
2564
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:28
2565
  #: SmartSlider3Pro/Generator/WordPress/BestWebSoft/Sources/BestWebSoftGallery.php:19
2566
  #: SmartSlider3Pro/Generator/WordPress/Custom/Sources/CustomCustom.php:26
@@ -2575,256 +2446,211 @@ msgstr ""
2575
  msgid "Filter"
2576
  msgstr "Filter"
2577
 
2578
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:334
2579
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:343
2580
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:117
2581
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:467
2582
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:55
2583
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:75
2584
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:240
2585
  msgid "No"
2586
  msgstr "Nein"
2587
 
2588
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:335
2589
  msgid "Clean HTML"
2590
  msgstr "HTML bereinigen"
2591
 
2592
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:336
2593
  msgid "Remove HTML"
2594
  msgstr "HTML entfernen"
2595
 
2596
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:342
2597
  msgid "Split by Chars"
2598
  msgstr ""
2599
 
2600
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:344
2601
  msgid "Strict"
2602
  msgstr "Exakt"
2603
 
2604
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:345
2605
  msgid "Respect words"
2606
  msgstr "Worte beachten"
2607
 
2608
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:370
2609
  msgid "Find image"
2610
  msgstr "Bild finden"
2611
 
2612
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:383
2613
  msgid "Find link"
2614
  msgstr "Link finden"
2615
 
2616
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:396
2617
  msgid "Remove links"
2618
  msgstr "Entferne Links"
2619
 
2620
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:401
2621
  msgid "Remove line breaks"
2622
  msgstr ""
2623
 
2624
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:409
2625
  msgid "Result"
2626
  msgstr "Ergebnis"
2627
 
2628
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:16
2629
- msgid "Most important changes in version 3.4"
2630
- msgstr ""
2631
-
2632
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:19
2633
- msgid ""
2634
- "To help you get started with the new version, we've put together the most "
2635
- "important changes."
2636
- msgstr ""
2637
-
2638
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:30
2639
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:261
2640
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:265
2641
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:100
2642
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:39
2643
- #, fuzzy
2644
- #| msgid "Tab background"
2645
- msgid "Slide background"
2646
- msgstr "Tab Hintergrund"
2647
-
2648
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:33
2649
- msgid ""
2650
- "You can find the Slide Background option in the Layer Window! Click on the "
2651
- "Slide Label at the top of the Canvas to find them."
2652
- msgstr ""
2653
-
2654
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:36
2655
- msgid "Watch video"
2656
- msgstr ""
2657
-
2658
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:45
2659
- #, fuzzy
2660
- #| msgid "Next position"
2661
- msgid "Absolute position"
2662
- msgstr "Nächste Position"
2663
-
2664
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:48
2665
- msgid ""
2666
- "Canvas layers are now called Absolute! In the Add Panel switch to Absolute "
2667
- "before you create the layer."
2668
- msgstr ""
2669
-
2670
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:51
2671
- msgid "Read docs"
2672
- msgstr ""
2673
-
2674
- #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:42
2675
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:169
2676
  msgid "Change slider type"
2677
  msgstr ""
2678
 
2679
- #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:47
2680
  msgid ""
2681
  "Changing your slider type is irreversible. After changing your slider type, "
2682
  "<b>you will lose all slider type related settings</b>."
2683
  msgstr ""
2684
 
2685
- #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:51
2686
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:175
2687
  msgid "Slider type"
2688
  msgstr ""
2689
 
2690
- #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:54
2691
  msgid "Convert"
2692
  msgstr ""
2693
 
2694
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:39
2695
  msgid "What do you want to create today?"
2696
  msgstr ""
2697
 
2698
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:42
2699
  msgid ""
2700
  "Use our powerful visual editor, or simply import one of our existing "
2701
  "template."
2702
  msgstr ""
2703
 
2704
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:69
2705
  msgid "Create a New Project"
2706
  msgstr ""
2707
 
2708
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:72
2709
  msgid ""
2710
  "Start a new project from scratch and build exactly what you’ve imagined. You "
2711
  "can easily customize every pixels and create anything with layers."
2712
  msgstr ""
2713
 
2714
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:93
2715
  msgid "Start with a Template"
2716
  msgstr ""
2717
 
2718
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:96
2719
  msgid ""
2720
  "Start with a template and make it your own with the innovative drag and drop "
2721
  "interface. You can choose from hundreds of premade templates."
2722
  msgstr ""
2723
 
2724
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:100
2725
  msgid "or import your own files"
2726
  msgstr ""
2727
 
2728
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:117
2729
  msgid "Create new project"
2730
  msgstr ""
2731
 
2732
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:123
2733
  msgid "Project type"
2734
  msgstr ""
2735
 
2736
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:126
2737
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
2738
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:81
2739
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
2740
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:53
2741
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:183
2742
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:114
2743
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:322
2744
  msgid "Slider"
2745
  msgstr "Slider"
2746
 
2747
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:130
2748
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:26
2749
  msgid "Block"
2750
  msgstr "Block"
2751
 
2752
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:162
2753
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:223
2754
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:231
2755
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:18
2756
  msgid "Full page"
2757
  msgstr "Seite vollständig"
2758
 
2759
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:182
2760
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:30
2761
  msgid "Carousel"
2762
  msgstr "Karussell"
2763
 
2764
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:186
2765
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:30
2766
  msgid "Showcase"
2767
  msgstr "Showcase"
2768
 
2769
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:199
2770
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:231
2771
  msgid "Pro"
2772
  msgstr ""
2773
 
2774
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:202
2775
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:47
2776
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:34
2777
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:57
 
2778
  msgid "Settings"
2779
  msgstr "Einstellungen"
2780
 
2781
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:207
2782
  msgid "My project"
2783
  msgstr ""
2784
 
2785
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:221
2786
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:15
2787
  msgid "Boxed"
2788
  msgstr ""
2789
 
2790
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:222
2791
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:78
2792
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:151
2793
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:164
2794
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:17
2795
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:91
2796
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:148
2797
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:246
2798
  msgid "Full width"
2799
  msgstr "volle Breite"
2800
 
2801
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:226
2802
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:376
2803
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:297
2804
  msgid "Layout"
2805
  msgstr ""
2806
 
2807
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:235
2808
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:47
2809
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:47
2810
  msgid "Slide width"
2811
  msgstr ""
2812
 
2813
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:241
2814
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:57
2815
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:57
2816
  msgid "Slide height"
2817
  msgstr ""
2818
 
2819
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:249
2820
  msgid "Create"
2821
  msgstr "erstellen"
2822
 
2823
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:375
2824
  msgid "Join The Smart Slider 3 Community"
2825
  msgstr ""
2826
 
2827
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:377
2828
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardNewsletter.php:22
2829
  msgid ""
2830
  "Join more than 120,000 subscribers and get access to the latest slider "
@@ -2832,116 +2658,113 @@ msgid ""
2832
  "inbox."
2833
  msgstr ""
2834
 
2835
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:391
2836
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardNewsletter.php:32
2837
  msgid "Subscribe"
2838
  msgstr ""
2839
 
2840
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:295
2841
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:70
2842
  #, fuzzy
2843
  #| msgid "Changelog"
2844
  msgid "Change group"
2845
  msgstr "Veränderungslogbuch"
2846
 
2847
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:308
2848
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/GeneratorGroupEasysocial.php:35
2849
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:29
2850
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialGroups.php:23
2851
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/GeneratorGroupJomsocial.php:35
2852
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:42
2853
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:39
2854
  msgid "Groups"
2855
  msgstr "Gruppen"
2856
 
2857
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:312
2858
  msgid "Set"
2859
  msgstr ""
2860
 
2861
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:66
2862
  msgid "Up"
2863
  msgstr ""
2864
 
2865
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:76
2866
  msgid "Insert group"
2867
  msgstr ""
2868
 
2869
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:93
2870
- #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:59
2871
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:134
2872
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
2873
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:42
2874
  msgid "Group"
2875
  msgstr "Gruppe"
2876
 
2877
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:86
2878
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:134
2879
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:207
2880
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:158
2881
  msgid "Move to trash"
2882
  msgstr ""
2883
 
2884
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:29
2885
  msgid "empty the trash"
2886
  msgstr ""
2887
 
2888
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:118
2889
  msgid "Delete permanently"
2890
  msgstr ""
2891
 
2892
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:164
2893
  #, fuzzy
2894
  #| msgid "Delete slider"
2895
  msgid "delete this slider"
2896
  msgstr "Slider löschen"
2897
 
2898
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:68
2899
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:61
2900
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:47
2901
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:199
2902
  msgid "Publish"
2903
  msgstr "Veröffentlichen"
2904
 
2905
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:75
2906
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:48
2907
  msgid "Unpublish"
2908
  msgstr "Sperren"
2909
 
2910
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:84
2911
  msgid "Edit generator"
2912
  msgstr "Generator editieren"
2913
 
2914
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:93
2915
  msgid "Set as first"
2916
  msgstr ""
2917
 
2918
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:104
2919
  #, fuzzy
2920
  #| msgid "Delete slider"
2921
  msgid "Convert to slide"
2922
  msgstr "Slider löschen"
2923
 
2924
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:253
2925
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:494
2926
  msgid "Copy slide to"
2927
  msgstr ""
2928
 
2929
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:270
2930
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:304
2931
  msgid "Add post"
2932
  msgstr ""
2933
 
2934
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:310
2935
  msgid "Please select a Post first!"
2936
  msgstr ""
2937
 
2938
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:456
2939
  #, fuzzy
2940
  #| msgid "Delete slider"
2941
  msgid "delete these slides"
2942
  msgstr "Slider löschen"
2943
 
2944
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:456
2945
  #, fuzzy
2946
  #| msgid "Delete slider"
2947
  msgid "delete this slide"
@@ -2956,8 +2779,8 @@ msgid "Effects"
2956
  msgstr ""
2957
 
2958
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:60
2959
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:28
2960
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:67
2961
  msgid "Shape divider"
2962
  msgstr ""
2963
 
@@ -3034,8 +2857,8 @@ msgstr ""
3034
 
3035
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:114
3036
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:43
3037
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:138
3038
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:196
3039
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:260
3040
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:35
3041
  msgid "Animate"
@@ -3043,16 +2866,15 @@ msgstr "Animieren"
3043
 
3044
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:115
3045
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:52
3046
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:198
3047
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:476
3048
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:86
3049
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:60
3050
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:133
3051
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:78
3052
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:197
3053
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:54
3054
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:241
3055
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:327
3056
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:83
3057
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:83
3058
  msgid "Horizontal"
@@ -3073,17 +2895,15 @@ msgstr ""
3073
 
3074
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:122
3075
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:53
3076
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:203
3077
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:477
3078
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:104
3079
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:61
3080
  #: SmartSlider3/Storage.php:2242
3081
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:134
3082
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:79
3083
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:198
3084
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:55
3085
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:242
3086
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:328
3087
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:84
3088
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:84
3089
  msgid "Vertical"
@@ -3091,9 +2911,9 @@ msgstr "Vertikal"
3091
 
3092
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:125
3093
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:126
3094
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:309
3095
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:148
3096
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:206
3097
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:72
3098
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:78
3099
  msgid "Scroll"
@@ -3121,27 +2941,27 @@ msgid "Both"
3121
  msgstr ""
3122
 
3123
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:140
3124
- #: SmartSlider3/Storage.php:4249
3125
  msgid "To bottom"
3126
  msgstr "nach Unten"
3127
 
3128
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:141
3129
- #: SmartSlider3/Storage.php:4229
3130
  msgid "To top"
3131
  msgstr "nach Oben"
3132
 
3133
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:48
3134
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:53
3135
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:164
3136
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:166
3137
  #: SmartSlider3/Widget/Group/Autoplay.php:35
3138
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:127
3139
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:170
3140
  msgid "Autoplay"
3141
  msgstr "Autoplay"
3142
 
3143
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:65
3144
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:116
3145
  msgid "Slide duration"
3146
  msgstr "Slidedauer"
3147
 
@@ -3203,9 +3023,9 @@ msgid "Resume on media"
3203
  msgstr ""
3204
 
3205
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:38
3206
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:224
3207
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:149
3208
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:213
3209
  msgid "Controls"
3210
  msgstr "Bedienelemente"
3211
 
@@ -3315,37 +3135,48 @@ msgstr ""
3315
 
3316
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:103
3317
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:104
 
 
 
 
 
 
 
 
 
 
 
3318
  msgid "Slider CSS classes"
3319
  msgstr ""
3320
 
3321
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:105
3322
  msgid "You can put custom CSS classes to the slider's container."
3323
  msgstr ""
3324
 
3325
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:116
3326
  msgid "JavaScript callbacks"
3327
  msgstr "JavaScribt Callbacks"
3328
 
3329
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:123
3330
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:124
3331
  msgid "Post IDs"
3332
  msgstr ""
3333
 
3334
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:123
3335
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:124
3336
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:43
3337
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:50
3338
  msgid "one per line"
3339
  msgstr ""
3340
 
3341
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:125
3342
  msgid "The cache of the posts with the given ID will be cleared upon save."
3343
  msgstr ""
3344
 
3345
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:76
3346
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:77
3347
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:64
3348
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:84
3349
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:216
3350
  msgid "Thumbnail"
3351
  msgstr "Thumbnail"
@@ -3356,6 +3187,12 @@ msgstr ""
3356
 
3357
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:81
3358
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:83
 
 
 
 
 
 
3359
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:53
3360
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:55
3361
  msgid "ARIA label"
@@ -3425,11 +3262,47 @@ msgstr ""
3425
  msgid "Slider design"
3426
  msgstr ""
3427
 
3428
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3429
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:69
3430
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:74
3431
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:155
3432
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:153
3433
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:100
3434
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:68
3435
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:73
@@ -3437,238 +3310,235 @@ msgstr ""
3437
  msgid "Align"
3438
  msgstr "Ausrichtung"
3439
 
3440
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:158
3441
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:160
3442
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:109
3443
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:113
3444
  msgid "Margin"
3445
  msgstr "Rand"
3446
 
3447
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:161
3448
  msgid "Puts a fix margin around your slider."
3449
  msgstr ""
3450
 
3451
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:171
3452
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:315
3453
  msgid "Perspective"
3454
  msgstr "Perspective"
3455
 
3456
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:47
3457
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:52
3458
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:217
 
 
 
 
 
 
 
3459
  msgid "Loading"
3460
  msgstr ""
3461
 
3462
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:58
3463
  msgid "Instant"
3464
  msgstr ""
3465
 
3466
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:59
3467
  msgid "After page loaded"
3468
  msgstr ""
3469
 
3470
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:60
3471
  msgid "After delay"
3472
  msgstr ""
3473
 
3474
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:74
 
 
 
 
 
 
 
 
 
 
 
 
3475
  msgid "Load delay"
3476
  msgstr ""
3477
 
3478
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:81
3479
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:85
3480
  msgid "Play when visible"
3481
  msgstr "Abspielen wenn sichtbar"
3482
 
3483
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:86
3484
  msgid ""
3485
  "Makes sure that the autoplay and layer animations only start when your "
3486
  "slider is visible."
3487
  msgstr ""
3488
 
3489
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:88
3490
  msgid "At"
3491
  msgstr ""
3492
 
3493
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:96
3494
- msgid "Fade on load"
3495
- msgstr ""
3496
-
3497
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:104
3498
- msgid "Fade on scroll"
3499
- msgstr ""
3500
-
3501
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:107
3502
- msgid "Delayed (for lightbox/tabs)"
3503
- msgstr "Verzögerung (für Tabs und Lightbox)"
3504
-
3505
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:111
3506
- msgid ""
3507
- "If you turn off <b>Fade On Load</b>, the slider loading will be visible as "
3508
- "the browser builds up the slider. In most cases this looks bad, so we don't "
3509
- "suggest turning <b>Fade On Load</b> off."
3510
- msgstr ""
3511
-
3512
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:118
3513
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:123
3514
- msgid "Loading animation"
3515
- msgstr "Animation laden"
3516
-
3517
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:122
3518
- msgid "Spinner"
3519
- msgstr ""
3520
-
3521
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:128
3522
- #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:38
3523
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:124
3524
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:125
3525
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:46
3526
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:76
3527
- #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:35
3528
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:158
3529
- #: SmartSlider3Pro/Form/Element/ParticleSkin.php:61
3530
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:129
3531
- #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:47
3532
- #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:69
3533
- msgid "Custom"
3534
- msgstr "Angepasst"
3535
-
3536
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:156
3537
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:157
3538
- msgid "Hide until complete load"
3539
- msgstr ""
3540
-
3541
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:158
3542
- msgid ""
3543
- "When an image is used as the loading spinner, it takes time to load. This "
3544
- "can be visible, as the image being built up by the browser and moves to the "
3545
- "slider's center. You can hide the spinner during this image loading part."
3546
- msgstr ""
3547
-
3548
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:164
3549
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:82
3550
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:83
3551
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:67
3552
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:69
3553
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:110
3554
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:111
3555
- msgid "Background image"
3556
- msgstr ""
3557
-
3558
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:48
3559
- #: SmartSlider3/Renderable/Item/Image/ItemImage.php:172
3560
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:247
3561
- #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:161
3562
- msgid "Optimize"
3563
- msgstr "Optimiere"
3564
-
3565
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:56
3566
- msgid "Lazy load"
3567
- msgstr ""
3568
 
3569
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:60
3570
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:76
3571
  msgid "Loading mode"
3572
  msgstr ""
3573
 
3574
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:63
3575
  msgid "Delayed loading"
3576
  msgstr ""
3577
 
3578
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:64
3579
  msgid "Lazy loading"
3580
  msgstr ""
3581
 
3582
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:77
3583
  msgid ""
3584
  "You can speed up your site's loading by delaying the slide background images."
3585
  msgstr ""
3586
 
3587
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:80
3588
  msgid "Load neighbor"
3589
  msgstr "Nächste laden"
3590
 
3591
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:81
3592
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:98
3593
  #: SmartSlider3/Application/Model/ModelGenerator.php:401
3594
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:174
3595
  msgctxt "Unit"
3596
  msgid "slides"
3597
  msgstr ""
3598
 
3599
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:88
3600
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:90
3601
- msgid "Optimize slide images"
 
 
3602
  msgstr ""
3603
 
3604
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:102
3605
- #, php-format
3606
- msgid "Your current memory limit is %s."
 
 
 
 
 
 
 
 
 
 
3607
  msgstr ""
3608
 
3609
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:105
3610
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:231
 
 
 
3611
  msgid "Quality"
3612
  msgstr ""
3613
 
3614
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:112
3615
- msgid ""
3616
- "This feature requires high memory limit. If you do not have enough memory "
3617
- "you will get a blank page on the frontend."
3618
- msgstr ""
 
 
3619
 
3620
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:116
3621
- msgid "Thumbnail width"
3622
- msgstr ""
 
 
 
 
3623
 
3624
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:121
3625
- msgid "Thumbnail height"
3626
- msgstr ""
 
 
 
3627
 
3628
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:128
3629
- msgid "Resize background"
3630
- msgstr ""
 
 
 
 
3631
 
3632
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:148
3633
- msgid "Optimize layer images"
 
 
 
 
 
 
 
 
3634
  msgstr ""
3635
 
3636
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:151
3637
- msgid "Resize"
 
 
 
 
 
 
 
 
 
 
 
 
3638
  msgstr ""
3639
 
3640
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:157
3641
- msgid "Tablet scale"
3642
- msgstr "Tablet Größe"
3643
 
3644
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:163
3645
- msgid "Mobile scale"
3646
- msgstr "Mobil Größe"
 
 
3647
 
3648
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:175
3649
  msgid "Base64 embed"
3650
  msgstr ""
3651
 
3652
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:176
3653
  msgid "Embeds the layer images to the page source, reducing the requests."
3654
  msgstr ""
3655
 
3656
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:178
3657
  msgid "Max file size"
3658
  msgstr ""
3659
 
3660
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:188
3661
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:196
3662
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:85
3663
  #: SmartSlider3/Storage.php:522
3664
  msgid "Other"
3665
  msgstr "Andere"
3666
 
3667
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:200
3668
  msgid "JetPack Photon image optimizer"
3669
  msgstr ""
3670
 
3671
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:205
3672
  msgid "Background video on mobile"
3673
  msgstr ""
3674
 
@@ -3696,12 +3566,12 @@ msgid "Max"
3696
  msgstr "Max"
3697
 
3698
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:248
3699
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:177
3700
  msgid "Breakpoints"
3701
  msgstr ""
3702
 
3703
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:311
3704
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:180
3705
  msgid ""
3706
  "Breakpoints define the browser width in pixel when the slider switches to a "
3707
  "different device."
@@ -3709,12 +3579,12 @@ msgstr ""
3709
 
3710
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:313
3711
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:400
 
3712
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFonts.php:46
3713
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:181
3714
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:229
3715
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:249
3716
  #: SmartSlider3/Application/Admin/Sliders/ViewSlidersImport.php:86
3717
- #: SmartSlider3Pro/Generator/Common/Dribbble/ConfigurationDribbble.php:99
3718
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:120
3719
  #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:104
3720
  #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:96
@@ -3749,8 +3619,8 @@ msgid ""
3749
  msgstr ""
3750
 
3751
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:41
3752
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:97
3753
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:156
3754
  #: SmartSlider3/Application/Model/ModelGenerator.php:400
3755
  msgid "Slides"
3756
  msgstr "Slides"
@@ -3774,113 +3644,119 @@ msgstr ""
3774
  msgid "Randomize"
3775
  msgstr "Zufällig"
3776
 
3777
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:76
 
 
 
 
 
 
3778
  msgid "Randomize first"
3779
  msgstr ""
3780
 
3781
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:77
3782
  msgid "Cache support"
3783
  msgstr ""
3784
 
3785
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:78
3786
  msgid "Cache variations"
3787
  msgstr ""
3788
 
3789
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:89
3790
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:90
3791
  msgid "Reverse"
3792
  msgstr ""
3793
 
3794
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:91
3795
  msgid "You can make your slides appear in the slider in a reversed order."
3796
  msgstr ""
3797
 
3798
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:94
3799
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:96
3800
  msgid "Max count"
3801
  msgstr ""
3802
 
3803
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:97
3804
  msgid ""
3805
  "You can limit how many slides you want to show from your slider. It's best "
3806
  "used with the Randomize feature, to improve the experience."
3807
  msgstr ""
3808
 
3809
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:100
3810
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:101
3811
  msgid "Maintain session"
3812
  msgstr ""
3813
 
3814
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:102
3815
  msgid ""
3816
  "The slider continues from the last viewed slide when the visitor comes back "
3817
  "to the page."
3818
  msgstr ""
3819
 
3820
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:107
3821
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:108
3822
  msgid "Backgrounds in lightbox"
3823
  msgstr ""
3824
 
3825
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:109
3826
  msgid ""
3827
  "Creates a lightbox from your slide background images. This feature only "
3828
  "works if all slides have background images."
3829
  msgstr ""
3830
 
3831
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:115
3832
  msgid "Show label"
3833
  msgstr ""
3834
 
3835
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:118
3836
  msgid "Only slide name"
3837
  msgstr ""
3838
 
3839
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:119
3840
  msgid "Slide name and description"
3841
  msgstr ""
3842
 
3843
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:136
3844
  msgid "Background parallax"
3845
  msgstr ""
3846
 
3847
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:145
3848
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:67
3849
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:179
3850
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:192
3851
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:422
3852
  msgid "Strength"
3853
  msgstr "Intensität"
3854
 
3855
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:147
3856
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:70
3857
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:182
3858
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:195
3859
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:425
3860
  msgid "Super soft"
3861
  msgstr "Superweich"
3862
 
3863
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:148
3864
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:71
3865
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:183
3866
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:196
3867
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:426
3868
  msgid "Soft"
3869
  msgstr "Weich"
3870
 
3871
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:150
3872
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:73
3873
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:185
3874
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:198
3875
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:428
3876
  msgid "Strong"
3877
  msgstr "Stark"
3878
 
3879
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:151
3880
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:74
3881
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:186
3882
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:199
3883
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:429
3884
  msgid "Super strong"
3885
  msgstr "Superstark"
3886
 
@@ -3905,15 +3781,15 @@ msgstr ""
3905
  msgid "No records found for the filter"
3906
  msgstr ""
3907
 
3908
- #: SmartSlider3/Application/Admin/Generator/ControllerGenerator.php:211
3909
  msgid "Authentication successful."
3910
  msgstr "Legitimation erfolgreich"
3911
 
3912
- #: SmartSlider3/Application/Admin/Generator/Template/CreateStep1Groups.php:61
3913
  msgid "Not installed"
3914
  msgstr "nicht installiert"
3915
 
3916
- #: SmartSlider3/Application/Admin/Generator/Template/CreateStep1Groups.php:69
3917
  msgid "Visit"
3918
  msgstr ""
3919
 
@@ -3938,8 +3814,8 @@ msgstr ""
3938
 
3939
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:58
3940
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:84
3941
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:96
3942
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:123
3943
  msgid "Generator"
3944
  msgstr "Generator"
3945
 
@@ -4090,7 +3966,7 @@ msgid ""
4090
  msgstr ""
4091
 
4092
  #: SmartSlider3/Application/Admin/Help/ViewHelpIndex.php:28
4093
- #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:90
4094
  #, fuzzy
4095
  #| msgid "Mouse enter"
4096
  msgid "Help center"
@@ -4180,27 +4056,27 @@ msgstr ""
4180
  msgid "Why upgrade to Smart Slider 3 Pro?"
4181
  msgstr ""
4182
 
4183
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:25
4184
- msgid "180+ slider templates"
4185
  msgstr ""
4186
 
4187
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:29
4188
- msgid "14 new layers"
4189
  msgstr ""
4190
 
4191
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:33
4192
- msgid "New animations & effects"
4193
  msgstr ""
4194
 
4195
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:39
4196
- msgid "Full slide library access"
4197
  msgstr ""
4198
 
4199
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:43
4200
- msgid "Extra advanced options"
4201
  msgstr ""
4202
 
4203
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:47
4204
  msgid "Lifetime update & support"
4205
  msgstr ""
4206
 
@@ -4227,7 +4103,7 @@ msgstr ""
4227
 
4228
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:129
4229
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:62
4230
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:151
4231
  msgid "Absolute"
4232
  msgstr ""
4233
 
@@ -4238,123 +4114,132 @@ msgctxt "Layer group"
4238
  msgid "Basic"
4239
  msgstr ""
4240
 
4241
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:41
4242
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:45
4243
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:37
4244
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:41
4245
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:45
4246
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:49
4247
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:333
4248
  msgid "Inner align"
4249
  msgstr "Innere Ausrichtung"
4250
 
4251
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:46
4252
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:42
4253
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:50
4254
  msgid "Positions the layers inside horizontally."
4255
  msgstr ""
4256
 
4257
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:49
4258
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:53
4259
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:161
4260
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:44
4261
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:48
4262
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:232
4263
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:238
4264
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:334
4265
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:340
4266
  msgid "Vertical align"
4267
  msgstr "Vertikal ausgerichtet"
4268
 
4269
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:54
4270
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:49
4271
  msgid "Positions the layers inside vertically."
4272
  msgstr ""
4273
 
4274
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:66
4275
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:93
4276
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:83
4277
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:113
4278
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:55
4279
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:165
4280
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:178
4281
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:143
4282
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:178
4283
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:196
4284
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:188
4285
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:227
4286
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:123
4287
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:144
4288
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:288
4289
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:171
4290
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:146
4291
  msgid "Target window"
4292
  msgstr ""
4293
 
4294
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:93
4295
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:94
 
 
 
 
 
 
 
 
 
4296
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:79
4297
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:80
4298
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:121
4299
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:122
4300
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:267
4301
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:121
4302
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:122
4303
  msgid "Focus"
4304
  msgstr "Focus"
4305
 
4306
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:95
4307
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:81
4308
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:123
4309
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:123
4310
  msgid ""
4311
  "You can set the starting position of a background image. This makes sure "
4312
  "that the selected part will always remain visible, so you should pick the "
4313
  "most important part."
4314
  msgstr ""
4315
 
4316
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:107
4317
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:137
4318
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:134
4319
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:178
4320
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:41
4321
  msgid "Background"
4322
  msgstr "Hintergrund"
4323
 
4324
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:116
4325
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:101
4326
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:143
4327
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:308
4328
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:116
4329
  msgid "Gradient"
4330
  msgstr ""
4331
 
4332
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:122
4333
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:107
4334
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:149
4335
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:314
4336
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:121
4337
  msgid "Color end"
4338
  msgstr ""
4339
 
4340
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:194
4341
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:90
4342
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:168
4343
  msgid "Max width"
4344
  msgstr ""
4345
 
4346
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:53
4347
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:59
4348
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:64
4349
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:142
4350
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:148
4351
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:151
4352
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:93
4353
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:111
4354
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:99
4355
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:41
4356
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:36
4357
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:57
4358
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:33
4359
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:40
4360
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:39
@@ -4381,90 +4266,79 @@ msgstr ""
4381
  msgid "With margins you can create distance between your layers."
4382
  msgstr ""
4383
 
4384
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:183
4385
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:235
4386
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:243
4387
  msgid "Responsive"
4388
  msgstr "Responsive"
4389
 
4390
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:188
4391
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:194
4392
  msgid "Linked to"
4393
  msgstr ""
4394
 
4395
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:195
4396
  msgid ""
4397
  "You can link your layer to another layer on the same level. This way your "
4398
  "layer won't be positioned to the slide, but the other layer."
4399
  msgstr ""
4400
 
4401
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:245
4402
  msgid "Hide when variable empty"
4403
  msgstr ""
4404
 
4405
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:254
4406
  msgid "Text scale"
4407
  msgstr ""
4408
 
4409
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:265
4410
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:266
4411
- msgid "Adaptive"
4412
- msgstr ""
4413
-
4414
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:267
4415
- msgid ""
4416
- "Keeps the same size for your text on each device for best legibility. It's "
4417
- "enabled by default on the Content layer."
4418
- msgstr ""
4419
-
4420
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:271
4421
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:170
4422
  msgid "Device specific settings"
4423
  msgstr ""
4424
 
4425
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:271
4426
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:170
4427
  msgid "Clear"
4428
  msgstr ""
4429
 
4430
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:273
4431
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:172
4432
  msgid "Erases all device specific changes you made on the current device."
4433
  msgstr ""
4434
 
4435
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:282
4436
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:70
4437
  msgid "Effect"
4438
  msgstr ""
4439
 
4440
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:285
4441
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:286
4442
  msgid "Parallax"
4443
  msgstr "Parallax"
4444
 
4445
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:287
4446
  msgid "More parallax options in slider settings -> Layer animations tab."
4447
  msgstr ""
4448
 
 
4449
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:305
4450
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:312
4451
  msgid "Crop"
4452
  msgstr "Stutzen"
4453
 
4454
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:310
4455
  msgid "Mask"
4456
  msgstr "Maske"
4457
 
4458
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:313
4459
  msgid "If your content is larger than the layer, you can crop it to fit."
4460
  msgstr ""
4461
 
4462
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:316
4463
  msgid "Rotation"
4464
  msgstr ""
4465
 
4466
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:333
4467
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:335
4468
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:205
4469
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:207
4470
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:281
@@ -4472,8 +4346,8 @@ msgstr ""
4472
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:182
4473
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
4474
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:190
4475
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:282
4476
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:284
4477
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:311
4478
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:313
4479
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:196
@@ -4481,7 +4355,7 @@ msgstr ""
4481
  msgid "CSS Class"
4482
  msgstr "CSS Klasse"
4483
 
4484
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:336
4485
  msgid "You can add a custom CSS class on the layer container."
4486
  msgstr ""
4487
 
@@ -4493,8 +4367,8 @@ msgstr "Tab Hintergrund"
4493
 
4494
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:118
4495
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:185
4496
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:219
4497
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:148
4498
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:190
4499
  msgid "Spacing"
4500
  msgstr ""
@@ -4513,197 +4387,187 @@ msgid ""
4513
  "Need to change the font size device specifically? Use the Text scale option."
4514
  msgstr ""
4515
 
4516
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:36
4517
  msgid "Columns"
4518
  msgstr ""
4519
 
4520
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:53
4521
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:62
4522
  msgid "Gutter"
4523
  msgstr ""
4524
 
4525
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:63
4526
  msgid "Creates space between the columns"
4527
  msgstr ""
4528
 
4529
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:66
4530
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:74
4531
  msgid "Wrap after"
4532
  msgstr ""
4533
 
4534
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:75
4535
  msgid "Breaks the columns to the given amount of rows."
4536
  msgstr ""
4537
 
4538
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:81
4539
  msgid "Makes the row fill the available vertical space"
4540
  msgstr ""
4541
 
 
 
 
 
 
 
 
 
4542
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:60
4543
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:96
4544
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:35
4545
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:67
4546
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:109
4547
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:78
4548
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:173
4549
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
4550
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:171
4551
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:268
4552
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:272
4553
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:50
4554
  msgid "Description"
4555
  msgstr "Beschreibung"
4556
 
4557
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:107
4558
  msgid "Custom lightbox image"
4559
  msgstr ""
4560
 
4561
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:112
4562
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/SlideBox.php:72
4563
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:56
4564
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:56
4565
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:73
4566
  msgid "Published"
4567
  msgstr "Veröffentlicht"
4568
 
4569
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:124
4570
  msgid "Publish on"
4571
  msgstr ""
4572
 
4573
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:125
4574
  msgid "Unpublish on"
4575
  msgstr ""
4576
 
4577
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:130
4578
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:135
4579
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:105
4580
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:47
4581
  msgid "Thumbnail type"
4582
  msgstr ""
4583
 
4584
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:133
4585
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:108
4586
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:50
4587
  #: SmartSlider3/Form/Element/BackgroundImage.php:30
4588
- #: SmartSlider3Pro/Renderable/Item/Video/Assets/video.js:22
4589
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:36
4590
  msgid "Video"
4591
  msgstr "Video"
4592
 
4593
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:136
4594
  msgid ""
4595
  "If you have a video on your slide, you can put a play icon on the thumbnail "
4596
  "image to indicate that."
4597
  msgstr ""
4598
 
4599
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:216
4600
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:162
4601
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:164
4602
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:168
4603
  #, php-format
4604
  msgid ""
4605
  "Video autoplaying has a lot of limitations made by browsers. %1$sLearn about "
4606
  "them.%2$s"
4607
  msgstr ""
4608
 
4609
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:218
4610
  #, fuzzy
4611
  #| msgid "Tab background"
4612
  msgid "Slide background video"
4613
  msgstr "Tab Hintergrund"
4614
 
4615
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:230
4616
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:103
4617
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:236
4618
- msgid "Muted"
4619
- msgstr "Ausgeschaltet"
4620
-
4621
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:231
4622
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:205
4623
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:210
4624
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:104
4625
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:237
4626
- #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:132
4627
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:183
4628
- msgctxt "Video/Audio play"
4629
- msgid "Loop"
4630
- msgstr ""
4631
-
4632
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:232
4633
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:233
4634
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:215
4635
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:216
4636
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:217
4637
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:218
4638
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:142
4639
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:143
4640
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:199
4641
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:200
4642
  msgid "Restart on slide change"
4643
  msgstr ""
4644
 
4645
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:234
4646
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:217
4647
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:219
4648
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:201
4649
  msgid "Starts the video from the beginning when the slide is viewed again."
4650
  msgstr ""
4651
 
4652
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:237
4653
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:284
4654
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:105
4655
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:238
4656
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:128
4657
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:206
4658
- msgid "Fill mode"
4659
- msgstr "Füllmodus"
4660
 
4661
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:262
4662
  msgid ""
4663
  "Select a background image for the slide. By clicking the small screen icon, "
4664
  "you can pick different images for different devices."
4665
  msgstr ""
4666
 
4667
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:282
4668
  #, php-format
4669
  msgid ""
4670
  "Please read %1$sour detailed guide%2$s about setting your own slide "
4671
  "background correctly."
4672
  msgstr ""
4673
 
4674
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:295
4675
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:202
4676
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:100
4677
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:1070
4678
  msgid "Blur"
4679
  msgstr ""
4680
 
4681
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:318
4682
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:319
4683
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:124
4684
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:87
4685
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:87
4686
  msgid "Overlay"
4687
  msgstr "Overlay"
4688
 
4689
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:320
4690
  msgid "Puts the color in front of the image."
4691
  msgstr ""
4692
 
4693
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:324
4694
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:163
4695
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:242
4696
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:153
4697
  msgid "SEO"
4698
  msgstr ""
4699
 
4700
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:325
4701
  #, fuzzy
4702
  #| msgid "Image"
4703
  msgid "Image alt"
4704
  msgstr "Bild"
4705
 
4706
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:328
4707
  #, fuzzy
4708
  #| msgid "Image mode"
4709
  msgid "Image title"
@@ -4724,60 +4588,60 @@ msgctxt "Layer animation"
4724
  msgid "Events"
4725
  msgstr ""
4726
 
4727
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:68
4728
  msgid "Plays in when"
4729
  msgstr ""
4730
 
4731
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:73
4732
  msgid "Plays out when"
4733
  msgstr ""
4734
 
4735
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:81
4736
  msgid "Plays loop when"
4737
  msgstr ""
4738
 
4739
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:86
4740
  msgid "Pauses loop when"
4741
  msgstr ""
4742
 
4743
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:91
4744
  msgid "Stops loop when"
4745
  msgstr ""
4746
 
4747
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:96
4748
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:101
4749
  msgid "Repeatable"
4750
  msgstr ""
4751
 
4752
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:102
4753
  msgid "Allows the layer animations to play more than once."
4754
  msgstr ""
4755
 
4756
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:105
4757
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:371
4758
  msgid "Start delay"
4759
  msgstr ""
4760
 
4761
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:119
4762
  msgid "End delay"
4763
  msgstr ""
4764
 
4765
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:132
4766
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:133
 
4767
  msgid "Repeat loop only"
4768
  msgstr ""
4769
 
4770
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:134
4771
  msgid "Allows the stopped loop to start again."
4772
  msgstr ""
4773
 
4774
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:137
4775
  msgid "Trigger custom event on"
4776
  msgstr ""
4777
 
4778
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:139
4779
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:41
4780
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:62
4781
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:148
4782
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:181
4783
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:44
@@ -4785,72 +4649,72 @@ msgstr ""
4785
  msgid "Click"
4786
  msgstr "Klick"
4787
 
4788
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:142
4789
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:182
4790
  msgid "Mouse enter"
4791
  msgstr "Mauseingabe"
4792
 
4793
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:145
4794
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:183
4795
  msgid "Mouse leave"
4796
  msgstr "Maus verlassen"
4797
 
4798
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:148
4799
  msgid "Media started"
4800
  msgstr "Media gestartet"
4801
 
4802
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:151
4803
  msgid "Media paused"
4804
  msgstr ""
4805
 
4806
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:154
4807
  msgid "Media stopped"
4808
  msgstr ""
4809
 
4810
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:168
4811
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:439
4812
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:86
4813
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:40
4814
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:271
4815
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:269
4816
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:302
4817
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:72
4818
  msgid "Duration"
4819
  msgstr "Dauer"
4820
 
4821
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:180
4822
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:451
4823
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:214
4824
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:240
4825
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:98
4826
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:241
4827
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:185
4828
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:140
4829
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:267
4830
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:169
4831
  msgid "Delay"
4832
  msgstr "Verzögerung"
4833
 
4834
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:193
4835
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:497
4836
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:503
4837
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:103
4838
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:198
4839
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:279
4840
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:313
4841
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:97
4842
  msgid "Easing"
4843
  msgstr "Lockerung"
4844
 
4845
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:209
4846
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:76
4847
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:153
 
 
4848
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:152
4849
  msgid "Offset"
4850
  msgstr "Offset"
4851
 
4852
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:257
4853
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
4854
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
4855
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
4856
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
@@ -4858,136 +4722,137 @@ msgstr "Offset"
4858
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
4859
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
4860
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
 
4861
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:49
4862
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:254
4863
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:536
4864
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:578
4865
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:620
4866
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:184
4867
  msgid "Rotate"
4868
  msgstr "Drehen"
4869
 
4870
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:295
4871
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:39
4872
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:223
4873
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:224
4874
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:377
4875
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:138
4876
  msgid "Scale"
4877
  msgstr "Rahmen"
4878
 
4879
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:322
4880
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
4881
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
4882
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:474
4883
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:475
 
4884
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:945
4885
  msgid "Skew"
4886
  msgstr "Verzerren"
4887
 
4888
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:329
4889
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:376
4890
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:406
4891
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:246
4892
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:99
4893
  msgid "Transform origin"
4894
  msgstr "Herkunfts-Veränderung"
4895
 
4896
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:359
4897
  msgid ""
4898
  "Makes the last keyframe to be the origin of the layer animation, instead of "
4899
  "its canvas position."
4900
  msgstr ""
4901
 
4902
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:365
4903
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:368
4904
  #, fuzzy
4905
  #| msgid "Rate count"
4906
  msgid "Repeat count"
4907
  msgstr "Anzahl Bewertungen"
4908
 
4909
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:367
4910
  msgid "loops"
4911
  msgstr "Wiederholungen"
4912
 
4913
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:369
4914
  msgid ""
4915
  "You can restrict the loop to play only a certain amount of loops, instead of "
4916
  "infinite."
4917
  msgstr ""
4918
 
4919
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:468
4920
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
4921
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:470
4922
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:471
 
4923
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:912
4924
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:192
4925
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:47
4926
  msgctxt "Animation"
4927
  msgid "Slide"
4928
  msgstr ""
4929
 
4930
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:476
4931
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:477
4932
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:478
4933
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:479
 
4934
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:246
4935
  msgid "Curtains"
4936
  msgstr ""
4937
 
4938
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:478
4939
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:479
 
4940
  msgid "Diagonal"
4941
  msgstr ""
4942
 
4943
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
4944
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
4945
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:490
4946
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:491
 
4947
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:262
4948
  msgid "Circle"
4949
  msgstr "Kreis"
4950
 
4951
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:494
4952
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:254
4953
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:256
4954
  msgid "From"
4955
  msgstr "von"
4956
 
4957
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:500
4958
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:259
4959
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:261
4960
  msgid "To"
4961
  msgstr "zu"
4962
 
4963
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:508
4964
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:58
4965
  #: SmartSlider3/Storage.php:935 SmartSlider3/Storage.php:1755
4966
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:132
4967
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:24
4968
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:73
4969
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:91
4970
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:1061
4971
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:189
4972
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:201
4973
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:132
4974
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:243
4975
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:48
4976
  msgid "Fade"
4977
  msgstr "Überblenden"
4978
 
4979
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:509
4980
  #: SmartSlider3/Storage.php:1009
4981
  msgid "Scale up"
4982
  msgstr "Vergrößern"
4983
 
4984
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:510
4985
  #: SmartSlider3/Storage.php:1024
4986
  msgid "Scale down"
4987
  msgstr "Verkleinern"
4988
 
4989
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/SlideBox.php:22
4990
- #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:40
4991
  msgid "Edit"
4992
  msgstr "Editieren"
4993
 
@@ -5035,7 +4900,7 @@ msgstr ""
5035
 
5036
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:36
5037
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:175
5038
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:121
5039
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:159
5040
  msgid "Post"
5041
  msgstr ""
@@ -5044,7 +4909,7 @@ msgstr ""
5044
  msgid "Dynamic slides"
5045
  msgstr ""
5046
 
5047
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:92
5048
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:21
5049
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:27
5050
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:63
@@ -5053,31 +4918,31 @@ msgstr ""
5053
  msgid "Add slide"
5054
  msgstr ""
5055
 
5056
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:105
5057
  msgid "Block must contain only one slide. Need more?"
5058
  msgstr ""
5059
 
5060
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:108
5061
  msgid "Convert to slider"
5062
  msgstr ""
5063
 
5064
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:136
5065
  #, fuzzy
5066
  #| msgid "Slide to left"
5067
  msgid "Slide one"
5068
  msgstr "Slide nach links"
5069
 
5070
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:143
5071
  #, fuzzy
5072
  #| msgid "Slide to top"
5073
  msgid "Slide two"
5074
  msgstr "Slide nach oben"
5075
 
5076
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:150
5077
  msgid "Drop images here"
5078
  msgstr ""
5079
 
5080
- #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:106
5081
  msgid "Edit slider"
5082
  msgstr ""
5083
 
@@ -5179,7 +5044,7 @@ msgstr ""
5179
  msgid "Trash is empty."
5180
  msgstr ""
5181
 
5182
- #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderTrash/SliderTrashBox.php:38
5183
  #: SmartSlider3/Application/Admin/Sliders/ViewSlidersImport.php:122
5184
  msgid "Restore"
5185
  msgstr ""
@@ -5196,11 +5061,11 @@ msgstr ""
5196
  msgid "Open preview in full"
5197
  msgstr ""
5198
 
5199
- #: SmartSlider3/Application/Admin/Preview/Template/Index.php:28
5200
  msgid "State"
5201
  msgstr ""
5202
 
5203
- #: SmartSlider3/Application/Admin/Preview/Template/Index.php:30
5204
  msgid "Reason"
5205
  msgstr ""
5206
 
@@ -5225,18 +5090,41 @@ msgstr ""
5225
  msgid "Generators"
5226
  msgstr ""
5227
 
5228
- #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:31
5229
- #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:47
5230
- #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:65
5231
- #: SmartSlider3/Application/Admin/Settings/ControllerSettings.php:36
5232
  msgid "Saved and slider cache invalidated."
5233
  msgstr ""
5234
 
5235
- #: SmartSlider3/Application/Admin/Settings/ControllerSettings.php:98
5236
  #: SmartSlider3/Application/Admin/Slider/ControllerSlider.php:43
5237
  msgid "Cache cleared."
5238
  msgstr "Cache geleert."
5239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5240
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFonts.php:41
5241
  msgid "Configuration"
5242
  msgstr "Konfiguration"
@@ -5276,243 +5164,219 @@ msgstr ""
5276
  msgid "Loads the URLs without a http or https protocol."
5277
  msgstr ""
5278
 
 
5279
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:48
5280
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:49
5281
- msgid "English UI"
5282
  msgstr ""
5283
 
5284
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:50
5285
  msgid ""
5286
- "You can keep using Smart Slider 3 in English, even if your backend isn't in "
5287
- "English."
5288
  msgstr ""
5289
 
5290
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:53
5291
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:54
5292
- msgid "Improved frontend accessibility"
5293
  msgstr ""
5294
 
5295
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:55
5296
  msgid ""
5297
- "Keeps the clicked element (like a button) in focus unless the focus is "
5298
- "changed by clicking away."
5299
- msgstr ""
5300
-
5301
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:63
5302
- msgid "Load jQuery on frontend"
5303
  msgstr ""
5304
 
5305
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:65
5306
- msgid "Load GSAP on frontend"
 
5307
  msgstr ""
5308
 
5309
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:67
5310
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:87
5311
- msgid "Async"
 
5312
  msgstr ""
5313
 
5314
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:68
5315
- msgid "Combine"
5316
- msgstr ""
5317
-
5318
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:69
5319
  msgid "Script attributes"
5320
  msgstr ""
5321
 
5322
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:71
5323
  msgid "Slider's inline JavaScript"
5324
  msgstr ""
5325
 
5326
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:73
5327
  msgid "Head"
5328
  msgstr ""
5329
 
5330
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:74
5331
  msgid "Into the slider"
5332
  msgstr ""
5333
 
5334
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:83
5335
- msgid "CSS mode"
5336
- msgstr ""
5337
-
5338
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:85
5339
- msgid "Inline"
5340
- msgstr ""
5341
-
5342
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:86
5343
- msgid "Inline at head"
5344
- msgstr ""
5345
-
5346
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:92
5347
  msgid "Load Font Awesome 4"
5348
  msgstr ""
5349
 
5350
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:95
5351
  msgid "API requests"
5352
  msgstr ""
5353
 
5354
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:99
5355
  #, php-format
5356
  msgctxt "Curl"
5357
  msgid "Use %s"
5358
  msgstr ""
5359
 
5360
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:101
5361
  #, fuzzy, php-format
5362
  #| msgid "Clean HTML"
5363
  msgctxt "curl proxy"
5364
  msgid "Clean %s"
5365
  msgstr "HTML bereinigen"
5366
 
5367
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:58
5368
- #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:175
5369
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:126
5370
- msgid "Clear cache"
5371
- msgstr "Cache leeren"
5372
-
5373
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:70
5374
  msgid "General settings"
5375
  msgstr "Grundsatz-Einstellungen"
5376
 
5377
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:80
5378
  msgid "Automatic update check"
5379
  msgstr "Automatischer Update-Check"
5380
 
 
5381
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:82
5382
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:83
5383
  msgid "Alternative save slide"
5384
  msgstr ""
5385
 
5386
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:84
5387
  msgid ""
5388
  "If you experience problems during the save this option might solve them."
5389
  msgstr ""
5390
 
5391
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:86
5392
  msgid "Preview in new window"
5393
  msgstr ""
5394
 
 
5395
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:91
5396
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:92
5397
  msgid "Lightbox videos in new tab on Mobile"
5398
  msgstr ""
5399
 
5400
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:93
5401
  msgid ""
5402
  "Opens the lightbox videos in the YouTube app to avoid the mobile disabling "
5403
  "the video."
5404
  msgstr ""
5405
 
5406
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:98
5407
  msgid "YouTube and Vimeo privacy enhanced mode"
5408
  msgstr ""
5409
 
5410
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:100
5411
  msgid "Smooth scroll speed"
5412
  msgstr ""
5413
 
5414
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:107
5415
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:109
5416
  msgid "Editor - additional CSS files"
5417
  msgstr ""
5418
 
5419
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:110
5420
  msgid ""
5421
  "You can call your own CSS files to our backend, for example, to be able to "
5422
  "use custom fonts. Write each URL to a new line."
5423
  msgstr ""
5424
 
5425
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:115
5426
  #, fuzzy
5427
  #| msgid "Generator settings"
5428
  msgid "WordPress settings"
5429
  msgstr "Generator Einstellungen"
5430
 
5431
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:118
5432
  msgid "Show editor icon"
5433
  msgstr ""
5434
 
5435
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:120
5436
  msgid "Show in admin bar"
5437
  msgstr ""
5438
 
5439
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:122
5440
  msgid "YOAST SEO sitemap - add images"
5441
  msgstr ""
5442
 
5443
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:124
5444
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:128
5445
  msgid "Create widget area"
5446
  msgstr ""
5447
 
5448
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:125
5449
  msgid "widget area(s)"
5450
  msgstr ""
5451
 
5452
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:129
5453
  msgid ""
5454
  "Creates new widget areas which you can place to your theme for easy "
5455
  "publishing."
5456
  msgstr ""
5457
 
 
5458
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:134
5459
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:135
5460
  msgid "Use iframe in AJAX calls"
5461
  msgstr ""
5462
 
5463
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:136
5464
  msgid ""
5465
  "Loads the slider using an iframe when the page is loaded via AJAX to avoid "
5466
  "problems."
5467
  msgstr ""
5468
 
5469
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:142
5470
  msgid "Joomla settings"
5471
  msgstr ""
5472
 
5473
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:145
5474
  msgid "Force RTL backend"
5475
  msgstr ""
5476
 
5477
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:164
5478
  msgid "Run content plugins on sliders"
5479
  msgstr ""
5480
 
5481
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:170
5482
  msgid "Exclude plugins"
5483
  msgstr ""
5484
 
5485
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:180
5486
  msgid ""
5487
  "At each slider you can override the global breakpoints with local values."
5488
  msgstr ""
5489
 
5490
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:227
5491
  msgid "Focus offset"
5492
  msgstr ""
5493
 
5494
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:229
5495
  msgid ""
5496
  "This option is used at the full page layout to decrease the slider height. "
5497
  "The \"Scroll to slider\" option also uses this option to determine where to "
5498
  "scroll the slider."
5499
  msgstr ""
5500
 
5501
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:247
5502
  msgid "Translate url"
5503
  msgstr "ULR übersetzen"
5504
 
5505
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:249
5506
  msgid ""
5507
  "You can change the frontend URL our assets are loading from. It can be "
5508
  "useful after moving to a new domain."
5509
  msgstr ""
5510
 
5511
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:257
5512
  msgid "The old URL you want to replace. E.g. https://oldsite.com/"
5513
  msgstr ""
5514
 
5515
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:262
5516
  msgid "The new URL you want to use. E.g. https://newsite.com"
5517
  msgstr ""
5518
 
@@ -5528,44 +5392,44 @@ msgstr "Slide erstellt."
5528
  msgid "Slider permanently deleted."
5529
  msgstr "Slider gelöscht."
5530
 
5531
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:145
5532
  msgid "Slider created."
5533
  msgstr "Slide erstellt."
5534
 
5535
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:162
5536
  msgid "Slider renamed."
5537
  msgstr ""
5538
 
5539
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:178
5540
  msgid "Slider saved."
5541
  msgstr "Slider gespeichert."
5542
 
5543
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:189
5544
  #, php-format
5545
  msgid "Import url is not valid: %s"
5546
  msgstr "Import-URL ist ungültig: %s"
5547
 
5548
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:196
5549
  msgid "License key required for premium features!"
5550
  msgstr "Für Premium-Merkmale ist ein Lizenzschlüssel notwendig!"
5551
 
5552
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:227
5553
  #: SmartSlider3/Application/Admin/Sliders/ControllerAjaxSliders.php:200
5554
  msgid "Slider imported."
5555
  msgstr "Slider importiert."
5556
 
5557
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:231
5558
  #: SmartSlider3/Application/Admin/Sliders/ControllerAjaxSliders.php:216
5559
  msgid "Import error!"
5560
  msgstr "Importfehler!"
5561
 
5562
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:254
5563
  #: SmartSlider3/Application/Admin/Slides/ControllerAjaxSlides.php:234
5564
  #: SmartSlider3/Application/Admin/Slides/ControllerSlides.php:80
5565
  msgid "Slide duplicated."
5566
  msgstr "Slide dupliziert."
5567
 
5568
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:275
5569
  #, php-format
5570
  msgid "%s slider type is not available."
5571
  msgstr ""
@@ -5602,14 +5466,12 @@ msgstr ""
5602
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:88
5603
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:96
5604
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:48
5605
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:65
5606
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:55
5607
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:49
5608
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:79
5609
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:59
5610
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:41
5611
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:120
5612
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:66
5613
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:68
5614
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:53
5615
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:48
@@ -5826,14 +5688,10 @@ msgstr "Slide erstellt."
5826
  msgid "Failed to create slides."
5827
  msgstr ""
5828
 
5829
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:178
5830
  msgid "Static save"
5831
  msgstr "Statisch speichern"
5832
 
5833
- #: SmartSlider3/Application/Admin/Update/ControllerUpdate.php:19
5834
- msgid "index.php?option=com_installer&view=update"
5835
- msgstr ""
5836
-
5837
  #: SmartSlider3/Application/Model/ModelGenerator.php:396
5838
  msgid "Generator settings"
5839
  msgstr "Generator Einstellungen"
@@ -5879,9 +5737,9 @@ msgstr ""
5879
 
5880
  #: SmartSlider3/BackgroundAnimation/Block/BackgroundAnimationManager/Index.php:14
5881
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:45
5882
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:136
5883
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:140
5884
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:353
5885
  #, fuzzy
5886
  #| msgid "No animation"
5887
  msgid "Background animation"
@@ -5993,6 +5851,12 @@ msgstr "Stapel"
5993
  msgid "No description."
5994
  msgstr ""
5995
 
 
 
 
 
 
 
5996
  #: SmartSlider3/Generator/Common/Test/GeneratorGroupTest.php:17
5997
  #: SmartSlider3/Generator/Common/Test/Sources/TestTest.php:12
5998
  msgid "Test generator."
@@ -6007,35 +5871,6 @@ msgstr ""
6007
  msgid "%1$s generator missing the following source: %2$s"
6008
  msgstr ""
6009
 
6010
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Elements/JoomlaContentCategories.php:43
6011
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Elements/CobaltCategories.php:37
6012
- #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsCategories.php:39
6013
- #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsLocations.php:39
6014
- #: SmartSlider3Pro/Generator/Joomla/Easyblog/Elements/EasyblogCategories.php:33
6015
- #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Elements/EasydiscussCategories.php:33
6016
- #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCategories.php:33
6017
- #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Elements/EventsbookingCategories.php:27
6018
- #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Elements/FlexicontentCategories.php:43
6019
- #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopBrands.php:30
6020
- #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopCategories.php:30
6021
- #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Elements/IgnitegalleryCategories.php:36
6022
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Elements/JauctionCategories.php:33
6023
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Elements/JcartCategories.php:36
6024
- #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCategories.php:32
6025
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Elements/JmarketCategories.php:33
6026
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialCategories.php:29
6027
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialGroupcategories.php:29
6028
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingCategories.php:41
6029
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Elements/JreviewsCategories.php:39
6030
- #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Categories.php:32
6031
- #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Elements/MijoshopCategories.php:47
6032
- #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Elements/PhocagalleryCategories.php:33
6033
- #: SmartSlider3Pro/Generator/Joomla/Redshop/Elements/RedshopCategories.php:35
6034
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Elements/RseventsproCategories.php:37
6035
- #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartCategories.php:37
6036
- msgid "menu.treerecurse"
6037
- msgstr ""
6038
-
6039
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:14
6040
  msgid "Joomla articles"
6041
  msgstr ""
@@ -6045,38 +5880,28 @@ msgid "Creates slides from your Joomla articles or categories."
6045
  msgstr ""
6046
 
6047
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:22
6048
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:41
6049
  msgid "Article"
6050
  msgstr ""
6051
 
6052
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:23
6053
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:47
6054
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:93
6055
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:34
6056
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:48
6057
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:33
6058
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:33
6059
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:30
6060
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:40
6061
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:36
6062
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:103
6063
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:41
6064
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:40
6065
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:35
6066
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:36
6067
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:36
6068
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:38
6069
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:65
6070
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:38
6071
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:40
6072
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:65
6073
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:34
6074
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:30
6075
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:34
6076
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:39
6077
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:47
6078
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:68
6079
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:41
6080
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:32
6081
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:32
6082
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:30
@@ -6103,8 +5928,6 @@ msgstr "Tags"
6103
 
6104
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:59
6105
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:95
6106
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:55
6107
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:64
6108
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:44
6109
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:38
6110
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:53
@@ -6116,12 +5939,10 @@ msgstr "Tags"
6116
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:57
6117
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:46
6118
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:58
6119
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:41
6120
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:41
6121
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:49
6122
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:67
6123
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:46
6124
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:56
6125
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:56
6126
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:48
6127
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:39
@@ -6129,25 +5950,17 @@ msgid "Featured"
6129
  msgstr "Hauptbeiträge"
6130
 
6131
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:60
6132
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:54
6133
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:42
6134
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:37
6135
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:64
6136
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:58
6137
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:50
6138
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:50
6139
  msgid "User ID"
6140
  msgstr ""
6141
 
6142
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:63
6143
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:40
6144
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:53
6145
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:47
6146
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:45
6147
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:111
6148
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:44
6149
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:51
6150
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:52
 
6151
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:51
6152
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:45
6153
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:39
@@ -6171,22 +5984,21 @@ msgstr ""
6171
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:70
6172
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:54
6173
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:51
6174
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:49
6175
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:56
6176
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:62
6177
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:76
6178
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:77
6179
  msgid "Date format"
6180
  msgstr "Datumsformat"
6181
 
6182
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:79
6183
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:291
6184
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:293
 
6185
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:70
6186
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:54
6187
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:51
6188
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:56
6189
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:62
6190
  msgid "m-d-Y"
6191
  msgstr ""
6192
 
@@ -6195,16 +6007,15 @@ msgstr ""
6195
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:71
6196
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:55
6197
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:52
6198
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:50
6199
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:57
6200
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:63
6201
  msgid "Time format"
6202
  msgstr "Zeitformat"
6203
 
6204
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:81
6205
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:40
6206
- #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:33
6207
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:64
6208
  msgid "Translate date and time"
6209
  msgstr ""
6210
 
@@ -6215,10 +6026,10 @@ msgstr ""
6215
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:88
6216
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:277
6217
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:167
6218
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:228
 
6219
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:53
6220
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:98
6221
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:63
6222
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:52
6223
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:47
6224
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:76
@@ -6230,12 +6041,9 @@ msgstr ""
6230
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:55
6231
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:91
6232
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:74
6233
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:70
6234
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:74
6235
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:57
6236
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:64
6237
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:46
6238
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:88
6239
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:77
6240
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:101
6241
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:41
@@ -6244,8 +6052,7 @@ msgstr ""
6244
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:74
6245
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:166
6246
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:169
6247
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:167
6248
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:177
6249
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:44
6250
  msgid "Title"
6251
  msgstr "Titel"
@@ -6257,7 +6064,6 @@ msgstr ""
6257
 
6258
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:97
6259
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:51
6260
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:66
6261
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:73
6262
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:80
6263
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:60
@@ -6265,23 +6071,17 @@ msgstr ""
6265
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:42
6266
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:92
6267
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:75
6268
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:75
6269
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:62
6270
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:59
6271
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:67
6272
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:68
6273
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:69
6274
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:49
6275
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:61
6276
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:89
6277
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:71
6278
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:58
6279
  msgid "Hits"
6280
  msgstr "Treffer"
6281
 
6282
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:98
6283
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:49
6284
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:67
6285
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:56
6286
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:50
6287
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:77
@@ -6293,22 +6093,13 @@ msgstr "Treffer"
6293
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:61
6294
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:62
6295
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:43
6296
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:54
6297
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:123
6298
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:89
6299
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:72
6300
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:53
6301
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:79
6302
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:71
6303
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:58
6304
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:58
6305
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:68
6306
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:63
6307
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:70
6308
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:56
6309
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:59
6310
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:72
6311
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:59
6312
  msgid "Creation time"
6313
  msgstr "Erstellungszeit"
6314
 
@@ -6319,19 +6110,13 @@ msgstr "Erstellungszeit"
6319
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:82
6320
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:62
6321
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:63
6322
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:55
6323
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:124
6324
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:90
6325
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:73
6326
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:54
6327
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:80
6328
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:69
6329
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:64
6330
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:71
6331
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:57
6332
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:60
6333
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:73
6334
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:60
6335
  msgid "Modification time"
6336
  msgstr "Veränderungszeit"
6337
 
@@ -6343,8 +6128,7 @@ msgstr ""
6343
  msgid "Featured article ordering"
6344
  msgstr ""
6345
 
6346
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:284
6347
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:164
6348
  msgid "View article"
6349
  msgstr ""
6350
 
@@ -6353,7 +6137,12 @@ msgid ""
6353
  "Creates slides from your Joomla categories. (Not the articles inside them.)"
6354
  msgstr ""
6355
 
6356
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:130
 
 
 
 
 
6357
  msgid "View category"
6358
  msgstr ""
6359
 
@@ -6365,9 +6154,6 @@ msgid "Nothing"
6365
  msgstr ""
6366
 
6367
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:20
6368
- #: SmartSlider3Pro/Generator/Common/Dribbble/GeneratorGroupDribbble.php:28
6369
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleProject.php:15
6370
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleShots.php:13
6371
  #: SmartSlider3Pro/Generator/Common/Facebook/GeneratorGroupFacebook.php:26
6372
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookAlbums.php:16
6373
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:18
@@ -6418,6 +6204,20 @@ msgstr "Posts nach Filter"
6418
  msgid "Posts by IDs"
6419
  msgstr "Posts nach IDs"
6420
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6421
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:41
6422
  msgid "All custom posts"
6423
  msgstr ""
@@ -6526,8 +6326,6 @@ msgstr "Datum der Veränderung"
6526
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:110
6527
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsCustomPosts.php:192
6528
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:90
6529
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:56
6530
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:55
6531
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:74
6532
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:43
6533
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:64
@@ -6798,10 +6596,6 @@ msgid ""
6798
  "Write one ID per line."
6799
  msgstr ""
6800
 
6801
- #: SmartSlider3/Platform/Joomla/AdministratorComponent.php:62
6802
- msgid "JERROR_ALERTNOAUTHOR"
6803
- msgstr ""
6804
-
6805
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:73
6806
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:75
6807
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:144
@@ -6825,7 +6619,7 @@ msgstr ""
6825
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:100
6826
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:190
6827
  #: SmartSlider3/Platform/WordPress/Integration/Unyson/smartslider/options/option-types.php:63
6828
- #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:155
6829
  msgid "OR"
6830
  msgstr ""
6831
 
@@ -6839,13 +6633,13 @@ msgid "MORE"
6839
  msgstr ""
6840
 
6841
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
6842
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:48
6843
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:118
6844
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:161
6845
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
6846
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:103
6847
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:124
6848
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:149
6849
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:157
6850
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:119
6851
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:146
@@ -6871,20 +6665,20 @@ msgstr ""
6871
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:181
6872
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:144
6873
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:146
6874
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:179
6875
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:181
6876
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:197
6877
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:199
6878
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:189
6879
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:191
6880
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:228
6881
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:230
6882
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:124
6883
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:126
6884
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:145
6885
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:147
6886
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:289
6887
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:291
 
6888
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:147
6889
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:149
6890
  msgid "Rel"
@@ -6893,13 +6687,13 @@ msgstr ""
6893
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:169
6894
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:182
6895
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:147
6896
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:182
6897
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:200
6898
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:192
6899
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:231
6900
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:127
6901
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:148
6902
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:292
6903
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:150
6904
  #, php-format
6905
  msgid ""
@@ -6910,18 +6704,18 @@ msgstr ""
6910
 
6911
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:173
6912
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:174
6913
- #: SmartSlider3Pro/Renderable/Item/Icon/Assets/icon2.js:20
6914
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:31
6915
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:93
6916
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:212
6917
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:231
6918
  msgid "Icon"
6919
  msgstr "Ikon"
6920
 
6921
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:197
6922
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:121
6923
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:164
6924
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:127
6925
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:149
6926
  msgid "Placement"
6927
  msgstr "Platzierung"
@@ -6969,22 +6763,26 @@ msgstr ""
6969
 
6970
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:164
6971
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:39
6972
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:243
6973
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:226
 
6974
  msgid "Alt tag"
6975
  msgstr ""
6976
 
6977
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:173
6978
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:174
6979
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:248
6980
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:249
 
 
6981
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:162
6982
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:163
6983
  msgid "Optimize image"
6984
  msgstr ""
6985
 
6986
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:175
6987
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:250
 
6988
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:164
6989
  msgid ""
6990
  "You can turn off the Layer image optimization for this image, to resize it "
@@ -7008,7 +6806,7 @@ msgstr ""
7008
  #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:45
7009
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:45
7010
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:41
7011
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:44
7012
  msgctxt "Layer group"
7013
  msgid "Media"
7014
  msgstr ""
@@ -7050,184 +6848,226 @@ msgstr ""
7050
  msgid "Mobile text"
7051
  msgstr "Mobil-Text"
7052
 
7053
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:111
7054
  msgid "Vimeo url or Video ID"
7055
  msgstr ""
7056
 
7057
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:115
7058
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:116
7059
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:120
7060
  msgid "Cover image"
7061
  msgstr "Titelbild"
7062
 
7063
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:119
7064
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:120
7065
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:124
7066
  msgid "Aspect ratio"
7067
  msgstr ""
7068
 
7069
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:125
7070
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:158
7071
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:126
7072
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:159
7073
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:130
7074
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:164
7075
  msgid "Fill layer height"
7076
  msgstr ""
7077
 
7078
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:158
7079
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:159
7080
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:164
7081
  msgid "Set on Style tab."
7082
  msgstr ""
7083
 
7084
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:160
7085
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:162
7086
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:166
7087
  msgid "Video settings"
7088
  msgstr ""
7089
 
7090
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:170
7091
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:172
7092
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:176
7093
  msgid "When ended"
7094
  msgstr ""
7095
 
7096
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:172
7097
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:174
7098
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:178
7099
  msgid "Do nothing"
7100
  msgstr ""
7101
 
7102
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:173
7103
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:175
7104
  msgid "Go to next slide"
7105
  msgstr ""
7106
 
7107
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:177
7108
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:179
7109
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:67
7110
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:72
7111
  msgid "Start time"
7112
  msgstr "Startzeit"
7113
 
7114
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:183
7115
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:189
7116
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:133
7117
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:152
7118
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:189
7119
  msgid "Volume"
7120
  msgstr "Lautstärke"
7121
 
7122
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:185
7123
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:191
7124
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:135
7125
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:191
7126
  msgid "Mute"
7127
  msgstr "Stumm"
7128
 
7129
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:194
7130
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:200
7131
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:200
7132
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:206
7133
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:227
7134
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:233
7135
  msgid "Pause on scroll"
7136
  msgstr ""
7137
 
7138
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:196
7139
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:202
7140
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:229
7141
  msgid "Never"
7142
  msgstr ""
7143
 
7144
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:197
7145
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:203
7146
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:230
7147
  msgid "When partly visible"
7148
  msgstr ""
7149
 
7150
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:198
7151
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:204
7152
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:231
7153
  msgid "When not visible"
7154
  msgstr ""
7155
 
7156
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:201
7157
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:207
7158
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:234
7159
  msgid "You can pause the video when the visitor scrolls away from the slider"
7160
  msgstr ""
7161
 
7162
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:212
 
7163
  msgid "Private video"
7164
  msgstr ""
7165
 
7166
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:221
7167
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:223
 
 
 
 
 
7168
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:147
7169
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:228
7170
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:136
7171
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:71
7172
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:295
7173
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:137
7174
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:204
7175
  msgid "Display"
7176
  msgstr "Display"
7177
 
7178
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:225
 
 
 
 
 
 
7179
  msgid "Remove controls"
7180
  msgstr ""
7181
 
7182
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:229
 
 
 
 
 
 
 
 
 
 
 
7183
  msgid "Users byline"
7184
  msgstr "Quellenangabe des Benutzers"
7185
 
7186
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:242
7187
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:243
7188
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:245
 
 
 
 
 
 
 
 
 
7189
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:246
 
 
 
7190
  msgid "Play button"
7191
  msgstr ""
7192
 
7193
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:113
 
 
 
 
 
 
 
 
 
 
7194
  msgid "YouTube URL or Video ID"
7195
  msgstr ""
7196
 
7197
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:184
7198
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:68
7199
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:73
7200
  msgid "End time"
7201
  msgstr "Endzeit"
7202
 
7203
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:226
7204
  msgid "Hide YouTube logo"
7205
  msgstr ""
7206
 
7207
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:228
7208
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:229
7209
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:215
7210
  msgid "Centered"
7211
  msgstr "zentriert"
7212
 
7213
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:230
7214
  msgid "Scales up and crops the video to cover the whole layer."
7215
  msgstr ""
7216
 
7217
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:234
7218
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:239
7219
  msgid "Show related videos"
7220
  msgstr ""
7221
 
7222
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:236
7223
  msgid "Anywhere"
7224
  msgstr ""
7225
 
7226
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:237
7227
  msgid "Same channel"
7228
  msgstr ""
7229
 
7230
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:240
7231
  msgid ""
7232
  "YouTube no longer allows hiding the related videos at the end of the video. "
7233
  "This setting defines whether the videos should come from the same channel as "
@@ -7244,7 +7084,7 @@ msgstr ""
7244
 
7245
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:26
7246
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:27
7247
- #: SmartSlider3/Storage.php:3961
7248
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:275
7249
  msgid "Downscale"
7250
  msgstr "Verkleinern"
@@ -7255,7 +7095,7 @@ msgstr ""
7255
 
7256
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:30
7257
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:31
7258
- #: SmartSlider3/Storage.php:4075
7259
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:286
7260
  msgid "Upscale"
7261
  msgstr "Vergrößern"
@@ -7316,211 +7156,177 @@ msgid ""
7316
  "full browser width."
7317
  msgstr ""
7318
 
7319
- #: SmartSlider3/Slider/Slide.php:752
7320
  msgid "Not found"
7321
  msgstr ""
7322
 
7323
- #: SmartSlider3/Slider/SliderType/AbstractSliderTypeCss.php:46
7324
  msgid "Slider size is too small!"
7325
  msgstr ""
7326
 
7327
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:49
7328
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:161
7329
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:174
7330
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:394
7331
  #: SmartSlider3Pro/PostBackgroundAnimation/Block/PostBackgroundAnimationManager/Index.php:15
7332
  msgid "Ken Burns effect"
7333
  msgstr "Ken Burns Effekt"
7334
 
7335
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:56
7336
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:168
7337
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:148
7338
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:181
7339
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:371
7340
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:406
7341
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:127
7342
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:139
7343
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:197
7344
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:246
7345
  msgid "Speed"
7346
  msgstr "Geschwindigkeit"
7347
 
7348
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:59
7349
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:171
7350
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:150
7351
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:151
7352
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:184
7353
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:374
7354
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:375
7355
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:409
7356
  msgid "Super slow"
7357
  msgstr "Sehr langsam"
7358
 
7359
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:60
7360
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:172
7361
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:152
7362
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:185
7363
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:376
7364
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:410
7365
  msgid "Slow"
7366
  msgstr "langsam"
7367
 
7368
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:62
7369
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:174
7370
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:154
7371
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:187
7372
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:378
7373
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:412
7374
  msgid "Fast"
7375
  msgstr "schnell"
7376
 
7377
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:63
7378
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:155
7379
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:188
7380
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:379
7381
  msgid "Super fast"
7382
  msgstr "Sehr schnell"
7383
 
7384
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:80
7385
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:209
7386
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:183
7387
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:84
7388
- msgid "Slider background image"
7389
  msgstr ""
7390
 
7391
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:87
7392
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:216
7393
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:190
7394
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:91
7395
- msgid "Fixed"
7396
- msgstr "feste"
7397
 
7398
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:175
7399
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:413
7400
  msgid "Super fast 4x"
7401
  msgstr ""
7402
 
7403
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:42
7404
  msgctxt "Slider type"
7405
  msgid "Simple slider"
7406
  msgstr ""
7407
 
7408
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:51
7409
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:55
7410
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:232
7411
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:238
7412
  #, fuzzy
7413
  #| msgid "Loading animation"
7414
  msgid "Main animation"
7415
  msgstr "Animation laden"
7416
 
7417
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:57
7418
  msgid "No animation"
7419
  msgstr "Keine Animation"
7420
 
7421
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:59
7422
  msgid "Crossfade"
7423
  msgstr ""
7424
 
7425
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:62
7426
  msgid "Horizontal - reversed"
7427
  msgstr ""
7428
 
7429
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:63
7430
  msgid "Vertical - reversed"
7431
  msgstr ""
7432
 
7433
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:115
7434
- msgid "Parallax overlap"
7435
- msgstr ""
7436
-
7437
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:126
7438
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:127
7439
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:200
7440
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:201
7441
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:284
7442
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:285
7443
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:663
7444
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:664
7445
  msgctxt "Feature"
7446
  msgid "Carousel"
7447
  msgstr ""
7448
 
7449
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:128
7450
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:202
7451
  msgid ""
7452
  "If you turn off this option, you can't switch to the first slide from the "
7453
  "last one."
7454
  msgstr ""
7455
 
7456
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:159
7457
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:160
7458
  msgid "Shifted"
7459
  msgstr "Verschoben"
7460
 
7461
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:161
7462
  msgid "The background and the main animation plays simultaneously or shifted."
7463
  msgstr ""
7464
 
7465
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:229
7466
- msgid "Background video"
7467
- msgstr ""
7468
-
7469
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:246
7470
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:247
7471
- msgid "Background image dynamic height"
7472
- msgstr ""
7473
-
7474
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:248
7475
- msgid ""
7476
- "The height of your slides changes according to the height of the background "
7477
- "image."
7478
- msgstr ""
7479
-
7480
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:252
7481
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:253
7482
  msgid "Loop single slide"
7483
  msgstr "einzelnen Slide wiederholen"
7484
 
7485
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:254
7486
  msgid "In case of one slide, it repeats the animation of the slide."
7487
  msgstr ""
7488
 
7489
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:272
7490
- msgid "Border width"
7491
- msgstr ""
7492
-
7493
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:277
7494
- msgid "Border color"
7495
- msgstr ""
7496
-
7497
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:287
7498
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:169
7499
  msgid "Slider CSS Preset"
7500
  msgstr ""
7501
 
7502
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:291
7503
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:147
7504
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:173
7505
  msgid "Light shadow"
7506
  msgstr "Heller Schatten"
7507
 
7508
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:297
7509
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:179
7510
  msgid "Dark shadow"
7511
  msgstr "Dunkler Schatten"
7512
 
7513
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:303
7514
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:185
7515
  msgid "Photo"
7516
  msgstr "Foto"
7517
 
7518
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:311
7519
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:193
7520
  msgid "Photo rounded"
7521
  msgstr "Photo gerundet"
7522
 
7523
- #: SmartSlider3/SmartSlider3Info.php:209
7524
  #, php-format
7525
  msgid "Demo slider is not available with the following ID: %s"
7526
  msgstr "Der Demo-Slider mit der ID: %s ist nicht verfügbar"
@@ -7870,329 +7676,330 @@ msgstr "nach Unten Parallax"
7870
  msgid "Flowing tiles vertical"
7871
  msgstr "vertikal fliegende Fliesen"
7872
 
7873
- #: SmartSlider3/Storage.php:2731
7874
  msgid "Slide to bottom"
7875
  msgstr "Slide nach unten"
7876
 
7877
- #: SmartSlider3/Storage.php:2766
7878
  msgid "Slide to top"
7879
  msgstr "Slide nach oben"
7880
 
7881
- #: SmartSlider3/Storage.php:2802
7882
  msgid "Curtain to bottom"
7883
  msgstr "Vorhang nach unten"
7884
 
7885
- #: SmartSlider3/Storage.php:2836
7886
  msgid "Curtain to top"
7887
  msgstr "Vorhang nach oben"
7888
 
7889
- #: SmartSlider3/Storage.php:2872
7890
  msgid "Switching to bottom"
7891
  msgstr "nach unten wechseln"
7892
 
7893
- #: SmartSlider3/Storage.php:2911
7894
  msgid "Switching to top"
7895
  msgstr "nach oben wechseln"
7896
 
7897
- #: SmartSlider3/Storage.php:2950
7898
  msgid "Horizontal spin to bottom"
7899
  msgstr "Schraube nach unten"
7900
 
7901
- #: SmartSlider3/Storage.php:2972
7902
  msgid "Horizontal spin to top"
7903
  msgstr "Schraube nach unten"
7904
 
7905
- #: SmartSlider3/Storage.php:2994
7906
  msgid "3D bricks to bottom"
7907
  msgstr "3D Steine nach unten"
7908
 
7909
- #: SmartSlider3/Storage.php:3040
7910
  msgid "3D bricks to top"
7911
  msgstr "3D Steine nach oben"
7912
 
7913
- #: SmartSlider3/Storage.php:3086
7914
  msgid "3D rows to bottom"
7915
  msgstr "3D Reihen nach unten"
7916
 
7917
- #: SmartSlider3/Storage.php:3132
7918
  msgid "3D rows to top"
7919
  msgstr "3D Reihen nach oben"
7920
 
7921
- #: SmartSlider3/Storage.php:3178
7922
  msgid "3D columns to bottom"
7923
  msgstr "3D Spalten nach unten"
7924
 
7925
- #: SmartSlider3/Storage.php:3208
7926
  msgid "3D columns to top"
7927
  msgstr "3D Spalten nach oben"
7928
 
7929
- #: SmartSlider3/Storage.php:3238
7930
  msgid "Spinning cuboid to bottom"
7931
  msgstr "schnell drehender Quader nach unten"
7932
 
7933
- #: SmartSlider3/Storage.php:3260
7934
  msgid "Spinning cuboid to top"
7935
  msgstr "schnell drehender Quader nach oben"
7936
 
7937
- #: SmartSlider3/Storage.php:3282
7938
  msgid "Turning cuboid to bottom"
7939
  msgstr "drehender Quader nach unten"
7940
 
7941
- #: SmartSlider3/Storage.php:3306
7942
  msgid "Turning cuboid to top"
7943
  msgstr "drehender Quader nach oben"
7944
 
7945
- #: SmartSlider3/Storage.php:3337
7946
  msgid "Scale to right"
7947
  msgstr "nach rechts skalieren"
7948
 
7949
- #: SmartSlider3/Storage.php:3377
7950
  msgid "Rotate to right"
7951
  msgstr "nach rechts drehen"
7952
 
7953
- #: SmartSlider3/Storage.php:3423
7954
  msgid "Fixed to right"
7955
  msgstr "Rechts angeheftet"
7956
 
7957
- #: SmartSlider3/Storage.php:3454
7958
  msgid "Parallax to right"
7959
  msgstr "nach Rechts Parallax"
7960
 
7961
- #: SmartSlider3/Storage.php:3490
7962
  msgid "Flow - reversed"
7963
  msgstr "umgekehrt fließen"
7964
 
7965
- #: SmartSlider3/Storage.php:3529
7966
  msgid "Slide to right"
7967
  msgstr "Slide nach rechts"
7968
 
7969
- #: SmartSlider3/Storage.php:3565
7970
  msgid "Curtain to right"
7971
  msgstr "Vorhang nach rechts"
7972
 
7973
- #: SmartSlider3/Storage.php:3600
7974
  msgid "Blocks to right"
7975
  msgstr "Block nach rechts"
7976
 
7977
- #: SmartSlider3/Storage.php:3638
7978
  msgid "Slices to right"
7979
  msgstr "nach rechts schieben"
7980
 
7981
- #: SmartSlider3/Storage.php:3676
7982
  msgid "Reversed slices to right"
7983
  msgstr "Reverse nach rechts"
7984
 
7985
- #: SmartSlider3/Storage.php:3714
7986
  msgid "Switching to right"
7987
  msgstr "nach rechts schalten"
7988
 
7989
- #: SmartSlider3/Storage.php:3753
7990
  msgid "Page turn to right"
7991
  msgstr "Seite nach rechts"
7992
 
7993
- #: SmartSlider3/Storage.php:3765
7994
  msgid "Vertical spin to right"
7995
  msgstr "vertikal nach rechts schrauben"
7996
 
7997
- #: SmartSlider3/Storage.php:3786
7998
  msgid "3D bricks to right"
7999
  msgstr "3D Steine nach rechts"
8000
 
8001
- #: SmartSlider3/Storage.php:3831
8002
  msgid "3D rows to right"
8003
  msgstr "3D Reihen nach rechts"
8004
 
8005
- #: SmartSlider3/Storage.php:3876
8006
  msgid "3D columns to right"
8007
  msgstr "3D Spalten nach rechts"
8008
 
8009
- #: SmartSlider3/Storage.php:3905
8010
  msgid "Spinning cuboid to right"
8011
  msgstr "schnell drehender Quader nach rechts"
8012
 
8013
- #: SmartSlider3/Storage.php:3927
8014
  msgid "Turning cuboid to right"
8015
  msgstr "drehender Quader nach rechts"
8016
 
8017
- #: SmartSlider3/Storage.php:3979
8018
  msgid "Downscale left"
8019
  msgstr "Links verkleinern"
8020
 
8021
- #: SmartSlider3/Storage.php:4003
8022
  msgid "Downscale right"
8023
  msgstr "Rechts verkleinern"
8024
 
8025
- #: SmartSlider3/Storage.php:4027
8026
  msgid "Downscale top"
8027
  msgstr "Oben verkleinern"
8028
 
8029
- #: SmartSlider3/Storage.php:4051
8030
  msgid "Downscale bottom"
8031
  msgstr "Unten verkleinern"
8032
 
8033
- #: SmartSlider3/Storage.php:4093
8034
  msgid "Upscale left"
8035
  msgstr "Links vergrößern"
8036
 
8037
- #: SmartSlider3/Storage.php:4117
8038
  msgid "Upscale right"
8039
  msgstr "Rechts vergrößern"
8040
 
8041
- #: SmartSlider3/Storage.php:4141
8042
  msgid "Upscale top"
8043
  msgstr "Oben vergrößern"
8044
 
8045
- #: SmartSlider3/Storage.php:4165
8046
  msgid "Upscale bottom"
8047
  msgstr "Unten vergrößern"
8048
 
8049
- #: SmartSlider3/Storage.php:4189
8050
  msgid "To left"
8051
  msgstr "nach Links"
8052
 
8053
- #: SmartSlider3/Storage.php:4209
8054
  msgid "To right"
8055
  msgstr "nach Rechts"
8056
 
8057
- #: SmartSlider3/Storage.php:4269
8058
  msgid "To top left"
8059
  msgstr ""
8060
 
8061
- #: SmartSlider3/Storage.php:4294
8062
  msgid "To top right"
8063
  msgstr "nach Oben Rechts"
8064
 
8065
- #: SmartSlider3/Storage.php:4319
8066
  msgid "To bottom left"
8067
  msgstr "nach Unten Links"
8068
 
8069
- #: SmartSlider3/Storage.php:4344
8070
  msgid "To bottom right"
8071
  msgstr "nach Unten Rechts"
8072
 
8073
- #: SmartSlider3/Storage.php:4371
8074
  msgid "My layouts"
8075
  msgstr "Meine Layouts"
8076
 
8077
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:54
8078
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:37
8079
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:40
8080
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:55
8081
  msgctxt "Arrow direction"
8082
  msgid "Previous"
8083
  msgstr ""
8084
 
8085
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:62
8086
  msgid "Previous image"
8087
  msgstr "Letztes Bild"
8088
 
8089
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:79
8090
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:113
8091
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:97
8092
  msgid "Hover color"
8093
  msgstr "Hover Farbe"
8094
 
8095
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:85
8096
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:64
8097
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:44
8098
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:47
8099
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:63
8100
  #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:58
8101
  msgid "Mirror"
8102
  msgstr "Spiegel"
8103
 
8104
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:93
8105
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:51
8106
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:54
8107
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:70
8108
  msgctxt "Arrow direction"
8109
  msgid "Next"
8110
  msgstr ""
8111
 
8112
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:97
8113
  msgid "Next image"
8114
  msgstr "Nächstes Bild"
8115
 
8116
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:120
8117
  #: SmartSlider3/Widget/Group/Arrow.php:59
8118
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:140
8119
  #: SmartSlider3Pro/Form/Element/Select/ShapeDividerSelect.php:16
8120
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:60
8121
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:45
8122
  msgid "Arrow"
8123
  msgstr "Pfeil"
8124
 
8125
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:125
8126
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:57
8127
  msgid "Previous position"
8128
  msgstr "Letzte Position"
8129
 
8130
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:126
8131
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:59
8132
  msgid "Next position"
8133
  msgstr "Nächste Position"
8134
 
8135
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:141
8136
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:157
8137
  msgid "Previous alt tag"
8138
  msgstr ""
8139
 
8140
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:142
8141
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:160
8142
  msgid "Next alt tag"
8143
  msgstr ""
8144
 
 
8145
  #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:143
8146
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:144
8147
  msgid "Base64"
8148
  msgstr ""
8149
 
8150
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:145
8151
  msgid ""
8152
  "Base64 encoded arrow images are loading faster and they are colorable. But "
8153
  "optimization plugins often have errors in their codes related to them, so if "
8154
  "your arrow won't load, turn this option off."
8155
  msgstr ""
8156
 
8157
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:157
8158
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:92
8159
  #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:92
8160
- #, fuzzy
8161
- #| msgid "Desktop"
8162
- msgid "Desktop size"
8163
- msgstr "Desktop"
8164
-
8165
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:159
8166
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:94
8167
- #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:94
8168
- #, fuzzy
8169
- #| msgid "Tablet scale"
8170
- msgid "Tablet size"
8171
- msgstr "Tablet Größe"
8172
 
8173
  #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:161
8174
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:96
8175
- #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:96
8176
  #, fuzzy
8177
- #| msgid "Mobile scale"
8178
- msgid "Mobile size"
8179
- msgstr "Mobil Größe"
8180
 
8181
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:40
8182
- msgid "Play"
8183
- msgstr "Play"
 
 
 
 
8184
 
8185
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:71
8186
  msgid "Pause"
8187
  msgstr "Pause"
8188
 
8189
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImageFrontend.php:130
 
 
 
 
 
 
 
8190
  msgid "Pause autoplay"
8191
  msgstr ""
8192
 
8193
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:45
8194
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:55
8195
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:78
8196
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:37
8197
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:65
8198
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:65
@@ -8234,7 +8041,7 @@ msgstr "Bar in voller Länge"
8234
  #: SmartSlider3/Widget/Group/Autoplay.php:65
8235
  #: SmartSlider3/Widget/Group/Bar.php:68
8236
  #: SmartSlider3/Widget/Group/Bullet.php:109
8237
- #: SmartSlider3/Widget/Group/Thumbnail.php:95
8238
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:64
8239
  #: SmartSlider3Pro/Widget/Group/Html.php:57
8240
  #: SmartSlider3Pro/Widget/Group/Indicator.php:56
@@ -8250,8 +8057,8 @@ msgstr ""
8250
  #: SmartSlider3/Widget/Group/Bullet.php:116
8251
  #: SmartSlider3/Widget/Group/Shadow.php:59
8252
  #: SmartSlider3/Widget/Group/Shadow.php:60
8253
- #: SmartSlider3/Widget/Group/Thumbnail.php:101
8254
- #: SmartSlider3/Widget/Group/Thumbnail.php:102
8255
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:68
8256
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:69
8257
  #: SmartSlider3Pro/Widget/Group/Html.php:61
@@ -8266,7 +8073,7 @@ msgstr "Auf Slides verbergen"
8266
  #: SmartSlider3/Widget/Group/Bar.php:76
8267
  #: SmartSlider3/Widget/Group/Bullet.php:117
8268
  #: SmartSlider3/Widget/Group/Shadow.php:61
8269
- #: SmartSlider3/Widget/Group/Thumbnail.php:103
8270
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:70
8271
  #: SmartSlider3Pro/Widget/Group/Html.php:63
8272
  #: SmartSlider3Pro/Widget/Group/Indicator.php:62
@@ -8295,40 +8102,40 @@ msgid "Side"
8295
  msgstr "Seite"
8296
 
8297
  #: SmartSlider3/Widget/Group/Bullet.php:102
8298
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:123
8299
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:166
8300
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:129
8301
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:151
8302
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:342
8303
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:384
8304
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:432
8305
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:468
8306
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:504
8307
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:543
8308
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:585
8309
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:627
 
8310
  msgid "Before"
8311
  msgstr "Bevor"
8312
 
8313
  #: SmartSlider3/Widget/Group/Bullet.php:103
8314
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:125
8315
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:169
8316
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:130
8317
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:153
8318
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:364
8319
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:408
8320
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:450
8321
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:486
8322
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:522
8323
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:565
8324
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:607
8325
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:649
 
8326
  msgid "After"
8327
  msgstr "Danach"
8328
 
8329
  #: SmartSlider3/Widget/Group/Shadow.php:31
8330
  #: SmartSlider3/Widget/Group/Shadow.php:40
8331
- #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:27
8332
  msgid "Shadow"
8333
  msgstr "Schatten"
8334
 
@@ -8337,93 +8144,85 @@ msgstr "Schatten"
8337
  msgid "Thumbnails"
8338
  msgstr "Thumbnails"
8339
 
8340
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8341
  msgid "Align thumbnails"
8342
  msgstr ""
8343
 
8344
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:70
8345
  msgid "Start"
8346
  msgstr "Start"
8347
 
8348
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:72
8349
  msgid "End"
8350
  msgstr ""
8351
 
8352
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:73
8353
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:305
8354
  msgid "Space between"
8355
  msgstr ""
8356
 
8357
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:74
8358
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:306
8359
  #, fuzzy
8360
  #| msgid "Background"
8361
  msgid "Space around"
8362
  msgstr "Hintergrund"
8363
 
8364
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:91
8365
- #: SmartSlider3Pro/Renderable/Item/Caption/Assets/caption.js:20
8366
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:54
8367
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:101
8368
  msgid "Caption"
8369
  msgstr "Überschrift"
8370
 
8371
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:133
8372
  msgid ""
8373
  "The height (horizontal orientation) or width (vertical orientation) of the "
8374
  "caption container."
8375
  msgstr ""
8376
 
8377
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:163
8378
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:164
8379
  msgid "Next arrow image"
8380
  msgstr ""
8381
 
8382
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:165
8383
  msgid "The previous arrow image will be mirrored."
8384
  msgstr ""
8385
 
8386
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:173
8387
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:176
8388
- msgid "Minimum thumbnail count"
8389
- msgstr ""
8390
-
8391
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:177
8392
- msgid ""
8393
- "If your thumbnail is vertical, it hides the thumbnails when the set number "
8394
- "of thumbnails can't fit."
8395
- msgstr ""
8396
-
8397
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:177
8398
- msgid ""
8399
- "If your thumbnail is horizontal, it starts resizing the thumbnails when the "
8400
- "set number of thumbnails can't fit."
8401
- msgstr ""
8402
-
8403
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:181
8404
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:184
8405
  msgid "Group by"
8406
  msgstr ""
8407
 
8408
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:182
8409
  msgctxt "Unit"
8410
  msgid "thumbnails"
8411
  msgstr ""
8412
 
8413
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:185
8414
  msgid "You can break your thumbnails into rows or columns."
8415
  msgstr ""
8416
 
8417
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:188
8418
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:189
8419
- msgid "Invert group direction"
8420
- msgstr ""
8421
-
8422
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:190
8423
- msgid "Makes the thumbnail order follow the set orientation."
8424
- msgstr ""
8425
-
8426
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:205
8427
  msgid ""
8428
  "The height (horizontal orientation) or width (vertical orientation) of the "
8429
  "thumbnail container in px or %."
@@ -8499,43 +8298,39 @@ msgstr ""
8499
  msgid "Hide on mobile"
8500
  msgstr ""
8501
 
8502
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:98
8503
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:157
8504
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:28
8505
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:37
8506
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:47
8507
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:45
8508
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialGroups.php:41
8509
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:47
8510
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:37
8511
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:50
8512
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:44
8513
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:48
8514
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:187
8515
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:236
8516
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:183
8517
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:54
8518
  msgid "Type"
8519
  msgstr "tippen"
8520
 
8521
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:109
8522
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:168
8523
  msgid "Secondary"
8524
  msgstr ""
8525
 
8526
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:137
8527
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:195
8528
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:44
8529
  msgid "Flip"
8530
  msgstr ""
8531
 
8532
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:151
8533
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:209
8534
  msgid "Grow"
8535
  msgstr "Wachsen"
8536
 
8537
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:152
8538
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:210
8539
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:901
8540
  msgid "Shrink"
8541
  msgstr "Schrumpfen"
@@ -8716,44 +8511,6 @@ msgstr ""
8716
  msgid "Ribbon"
8717
  msgstr ""
8718
 
8719
- #: SmartSlider3Pro/Generator/Common/Dribbble/ConfigurationDribbble.php:98
8720
- #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:119
8721
- #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:103
8722
- #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:95
8723
- #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:94
8724
- #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:134
8725
- #, php-format
8726
- msgid ""
8727
- "%2$s Check the documentation %3$s to learn how to configure your %1$s app."
8728
- msgstr ""
8729
-
8730
- #: SmartSlider3Pro/Generator/Common/Dribbble/ConfigurationDribbble.php:109
8731
- #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:140
8732
- #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:114
8733
- #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:105
8734
- #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:104
8735
- #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:144
8736
- msgid "Token"
8737
- msgstr "Zeichen"
8738
-
8739
- #: SmartSlider3Pro/Generator/Common/Dribbble/ConfigurationDribbble.php:112
8740
- #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:141
8741
- #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:115
8742
- #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:108
8743
- #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:105
8744
- #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:145
8745
- msgid "Callback url"
8746
- msgstr "Callback -URL"
8747
-
8748
- #: SmartSlider3Pro/Generator/Common/Dribbble/Elements/DribbbleToken.php:29
8749
- #: SmartSlider3Pro/Generator/Common/Facebook/Elements/FacebookToken.php:29
8750
- #: SmartSlider3Pro/Generator/Common/Flickr/Elements/FlickrToken.php:29
8751
- #: SmartSlider3Pro/Generator/Common/Twitter/Elements/TwitterToken.php:29
8752
- #: SmartSlider3Pro/Generator/Common/Vimeo/Elements/VimeoToken.php:28
8753
- #: SmartSlider3Pro/Generator/Common/YouTube/Elements/YouTubeToken.php:28
8754
- msgid "Request token"
8755
- msgstr "Merkmal anfragen"
8756
-
8757
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:83
8758
  msgid "The secret is empty. Please insert that value too!"
8759
  msgstr ""
@@ -8771,6 +8528,16 @@ msgid ""
8771
  "%3$s"
8772
  msgstr ""
8773
 
 
 
 
 
 
 
 
 
 
 
8774
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:131
8775
  msgctxt "Facebook app permission"
8776
  msgid "pages read engagement"
@@ -8803,10 +8570,34 @@ msgid ""
8803
  "own user."
8804
  msgstr ""
8805
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8806
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:164
8807
  msgid "The token expired. Please request new token! "
8808
  msgstr "Der Token ist abgelaufen, bitte fordere einen neuen Token an!"
8809
 
 
 
 
 
 
 
 
 
8810
  #: SmartSlider3Pro/Generator/Common/Facebook/GeneratorGroupFacebook.php:26
8811
  msgid "Facebook photos or posts on your page"
8812
  msgstr ""
@@ -8947,7 +8738,7 @@ msgstr "Dateiname"
8947
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:104
8948
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:103
8949
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:94
8950
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:87
8951
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:99
8952
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:87
8953
  msgid "Creation date"
@@ -8994,7 +8785,7 @@ msgid ""
8994
  msgstr ""
8995
 
8996
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:109
8997
- #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:119
8998
  #, php-format
8999
  msgid ""
9000
  "The given text is not valid XML! %1$sValidate your code%2$s to make sure it "
@@ -9002,7 +8793,7 @@ msgid ""
9002
  msgstr ""
9003
 
9004
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:111
9005
- #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:121
9006
  #, php-format
9007
  msgid ""
9008
  "The given text is not valid JSON! %1$sValidate your code%2$s to make sure it "
@@ -9010,7 +8801,7 @@ msgid ""
9010
  msgstr ""
9011
 
9012
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:152
9013
- #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:162
9014
  msgid ""
9015
  "Try to change the \"Level separation\" or \"Remove levels from result\" "
9016
  "setting."
@@ -9025,7 +8816,11 @@ msgstr ""
9025
  msgid "Images"
9026
  msgstr "Bilder"
9027
 
9028
- #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:60
 
 
 
 
9029
  msgid "The data in the given url is not valid XML."
9030
  msgstr ""
9031
 
@@ -9044,7 +8839,6 @@ msgid "View tweet"
9044
  msgstr "Tweet anzeigen"
9045
 
9046
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:37
9047
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/GeneratorGroupJreviews.php:31
9048
  msgid "Comments"
9049
  msgstr "Kommentare"
9050
 
@@ -9080,8 +8874,6 @@ msgstr ""
9080
  msgid "optional"
9081
  msgstr ""
9082
 
9083
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/GeneratorGroupCobalt.php:24
9084
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:35
9085
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/GeneratorGroupDjclassifieds.php:23
9086
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:28
9087
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/GeneratorGroupEasyblog.php:21
@@ -9104,22 +8896,9 @@ msgstr ""
9104
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/GeneratorGroupHikashop.php:22
9105
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/GeneratorGroupIgnitegallery.php:21
9106
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:20
9107
- #: SmartSlider3Pro/Generator/Joomla/Jauction/GeneratorGroupJauction.php:24
9108
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:23
9109
- #: SmartSlider3Pro/Generator/Joomla/Jcart/GeneratorGroupJcart.php:23
9110
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:91
9111
  #: SmartSlider3Pro/Generator/Joomla/Jevents/GeneratorGroupJevents.php:22
9112
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/GeneratorGroupJmarket.php:23
9113
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:23
9114
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/GeneratorGroupJomsocial.php:26
9115
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:27
9116
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:24
9117
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:24
9118
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:24
9119
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/GeneratorGroupJoomshopping.php:21
9120
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:29
9121
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/GeneratorGroupJreviews.php:23
9122
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:26
9123
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:21
9124
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:31
9125
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/GeneratorGroupMijoshop.php:21
@@ -9129,19 +8908,13 @@ msgstr ""
9129
  #: SmartSlider3Pro/Generator/Joomla/Redshop/GeneratorGroupRedshop.php:21
9130
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:25
9131
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/GeneratorGroupRseventspro.php:21
9132
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:30
9133
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/GeneratorGroupVirtuemart.php:21
9134
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:38
9135
- #: SmartSlider3Pro/Generator/Joomla/Zoo/GeneratorGroupZoo.php:26
9136
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:29
9137
  #, php-format
9138
  msgid "Creates slides from %1$s content."
9139
  msgstr ""
9140
 
9141
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:164
9142
- msgid "View record"
9143
- msgstr ""
9144
-
9145
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/GeneratorGroupDjclassifieds.php:31
9146
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:21
9147
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:29
@@ -9168,8 +8941,7 @@ msgstr "Abgelaufen"
9168
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:40
9169
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:54
9170
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:49
9171
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:47
9172
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:54
9173
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:39
9174
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:48
9175
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:46
@@ -9200,12 +8972,11 @@ msgstr ""
9200
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:72
9201
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:47
9202
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:36
9203
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:46
9204
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:69
9205
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:60
9206
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:45
9207
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:50
9208
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:52
 
9209
  msgid "Menu item (item ID)"
9210
  msgstr ""
9211
 
@@ -9220,7 +8991,7 @@ msgstr ""
9220
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:79
9221
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:87
9222
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:70
9223
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:85
9224
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:96
9225
  msgid "Start date"
9226
  msgstr "Startdatum"
@@ -9232,7 +9003,6 @@ msgstr ""
9232
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:88
9233
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:77
9234
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:83
9235
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:122
9236
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:55
9237
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:62
9238
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:92
@@ -9245,7 +9015,6 @@ msgid "Include subcategories"
9245
  msgstr ""
9246
 
9247
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:43
9248
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:50
9249
  msgid "Frontpage"
9250
  msgstr "Frontpage"
9251
 
@@ -9285,9 +9054,6 @@ msgstr ""
9285
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:36
9286
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:23
9287
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/GeneratorGroupEventsbooking.php:29
9288
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/GeneratorGroupJomsocial.php:34
9289
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:39
9290
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:36
9291
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/GeneratorGroupRseventspro.php:29
9292
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/GeneratorGroupAllInOneEventCalendar.php:25
9293
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/GeneratorGroupEventsManager.php:24
@@ -9302,7 +9068,6 @@ msgstr "Alben"
9302
 
9303
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/GeneratorGroupEasysocial.php:37
9304
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialVideos.php:19
9305
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/GeneratorGroupJomsocial.php:36
9306
  msgid "Videos"
9307
  msgstr "Videos"
9308
 
@@ -9348,8 +9113,7 @@ msgstr ""
9348
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:41
9349
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:55
9350
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:50
9351
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:48
9352
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:55
9353
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:40
9354
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:47
9355
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:47
@@ -9361,7 +9125,7 @@ msgid "All day"
9361
  msgstr "Jeden Tag"
9362
 
9363
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:43
9364
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:58
9365
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:38
9366
  msgid "Recurring events"
9367
  msgstr ""
@@ -9385,8 +9149,7 @@ msgstr ""
9385
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:54
9386
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:53
9387
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:50
9388
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:57
9389
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:45
9390
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:38
9391
  msgid "Location"
9392
  msgstr "Ort"
@@ -9408,13 +9171,10 @@ msgid "Do not pull posts from these users. Separate them by comma."
9408
  msgstr ""
9409
 
9410
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:50
9411
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:47
9412
  msgid "Public"
9413
  msgstr ""
9414
 
9415
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:51
9416
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:43
9417
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:48
9418
  msgid "Private"
9419
  msgstr ""
9420
 
@@ -9457,8 +9217,6 @@ msgstr ""
9457
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/GeneratorGroupHikashop.php:31
9458
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:24
9459
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:19
9460
- #: SmartSlider3Pro/Generator/Joomla/Jcart/GeneratorGroupJcart.php:31
9461
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/GeneratorGroupJmarket.php:31
9462
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/GeneratorGroupJoomshopping.php:29
9463
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/GeneratorGroupMijoshop.php:29
9464
  #: SmartSlider3Pro/Generator/Joomla/Redshop/GeneratorGroupRedshop.php:29
@@ -9467,7 +9225,7 @@ msgid "Products"
9467
  msgstr "Produkte"
9468
 
9469
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:52
9470
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:41
9471
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:37
9472
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:37
9473
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:50
@@ -9479,9 +9237,7 @@ msgid "On discount"
9479
  msgstr "Als Sonderpreis"
9480
 
9481
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:62
9482
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:108
9483
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:40
9484
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:47
9485
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:44
9486
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:57
9487
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:40
@@ -9506,10 +9262,7 @@ msgstr ""
9506
 
9507
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:78
9508
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:57
9509
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:53
9510
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:119
9511
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:52
9512
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:64
9513
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:52
9514
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:57
9515
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:67
@@ -9543,7 +9296,7 @@ msgstr ""
9543
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:80
9544
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:88
9545
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:71
9546
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:86
9547
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:97
9548
  msgid "End date"
9549
  msgstr "Enddatum"
@@ -9608,11 +9361,10 @@ msgstr ""
9608
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:39
9609
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:43
9610
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:33
9611
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:48
9612
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:45
9613
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:33
9614
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:34
9615
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:252
9616
  msgid "Tag"
9617
  msgstr "Tag"
9618
 
@@ -9647,27 +9399,6 @@ msgid ""
9647
  "to appear in the generator. One product ID per line."
9648
  msgstr ""
9649
 
9650
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:139
9651
- msgid "index.php?option=com_jauction&controller=catalog&task=show&eid="
9652
- msgstr ""
9653
-
9654
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:109
9655
- msgid "Available by date"
9656
- msgstr ""
9657
-
9658
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:110
9659
- msgid "Requires shipping"
9660
- msgstr ""
9661
-
9662
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:112
9663
- msgid "Min order quantity"
9664
- msgstr ""
9665
-
9666
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:121
9667
- #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:54
9668
- msgid "Viewed"
9669
- msgstr "Gesehen"
9670
-
9671
  #: SmartSlider3Pro/Generator/Joomla/Jevents/GeneratorGroupJevents.php:30
9672
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:32
9673
  msgid "One time events"
@@ -9686,16 +9417,16 @@ msgstr ""
9686
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:59
9687
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:64
9688
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:56
9689
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:69
9690
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:75
9691
  msgid "Offset value"
9692
  msgstr ""
9693
 
9694
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:60
9695
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:65
9696
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:57
9697
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:70
9698
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:76
9699
  msgid ""
9700
  "Timezone offset in hours. For example: +2 or -7. If you leave it empty, "
9701
  "Joomla's System -> Global Configuration -> Server -> Server Time Zone "
@@ -9710,38 +9441,18 @@ msgstr "Status"
9710
  msgid "Trashed"
9711
  msgstr ""
9712
 
9713
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:42
9714
- msgid "Approved"
9715
- msgstr ""
9716
-
9717
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:143
9718
- msgid "index.php?option=com_jmarket&controller=catalog&task=show&eid="
9719
- msgstr ""
9720
-
9721
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:61
9722
- msgid "Show hidden"
9723
- msgstr "Zeige versteckte"
9724
-
9725
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:212
9726
- msgid "index.php?option=com_community&view=events&task=viewevent&eventid="
9727
- msgstr ""
9728
-
9729
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:138
9730
- msgid "index.php?option=com_community&view=groups&task=viewgroup&groupid="
9731
- msgstr ""
9732
-
9733
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:139
9734
- msgid "View group"
9735
- msgstr ""
9736
-
9737
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:57
9738
  msgid "Ask down all product images"
9739
  msgstr ""
9740
 
9741
- #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:240
9742
  msgid "View item"
9743
  msgstr ""
9744
 
 
 
 
 
9745
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:117
9746
  msgid "View image"
9747
  msgstr "Bild anzeigen"
@@ -9758,7 +9469,7 @@ msgstr "zum Verkauf"
9758
  msgid "Discount price"
9759
  msgstr "Sonderpreis"
9760
 
9761
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:57
9762
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:72
9763
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:78
9764
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:84
@@ -9773,10 +9484,6 @@ msgstr ""
9773
  msgid "Show parent products only"
9774
  msgstr ""
9775
 
9776
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:61
9777
- msgid "Priority"
9778
- msgstr ""
9779
-
9780
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/GeneratorGroupAllInOneEventCalendar.php:20
9781
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:24
9782
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/GeneratorGroupEventsManager.php:19
@@ -9846,6 +9553,13 @@ msgstr ""
9846
  msgid "Creates slides by your custom settings."
9847
  msgstr ""
9848
 
 
 
 
 
 
 
 
9849
  #: SmartSlider3Pro/Generator/WordPress/Custom/Sources/CustomCustom.php:124
9850
  msgid "No options given"
9851
  msgstr ""
@@ -9983,10 +9697,6 @@ msgid ""
9983
  "inside them.)"
9984
  msgstr ""
9985
 
9986
- #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceCategory.php:25
9987
- msgid "Parent category"
9988
- msgstr "Ursprungsverzeichnis"
9989
-
9990
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceCategory.php:26
9991
  msgid "Submenu limit"
9992
  msgstr ""
@@ -10248,81 +9958,71 @@ msgstr "3D Pendel"
10248
  msgid "Vertical pendulum 3D"
10249
  msgstr "Vertikales 3D Pendel"
10250
 
10251
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:156
10252
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:206
10253
  msgid "Before text"
10254
  msgstr ""
10255
 
10256
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:160
10257
  msgid "Animated text"
10258
  msgstr ""
10259
 
10260
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:165
10261
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:214
10262
  msgid "After text"
10263
  msgstr ""
10264
 
10265
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:190
10266
  msgid "Rotating"
10267
  msgstr ""
10268
 
10269
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:191
10270
  msgid "Drop-in"
10271
  msgstr ""
10272
 
10273
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:193
10274
  msgid "Slide down"
10275
  msgstr ""
10276
 
10277
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:194
10278
- msgid "Typewriter 1"
10279
- msgstr ""
10280
-
10281
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:195
10282
- msgid "Typewriter 2"
10283
  msgstr ""
10284
 
10285
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:196
10286
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:55
10287
  msgid "Chars"
10288
  msgstr "Buchstaben"
10289
 
10290
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:197
10291
  msgid "Chars 2"
10292
  msgstr ""
10293
 
10294
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:233
10295
  msgid "Auto width"
10296
  msgstr ""
10297
 
10298
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:234
10299
  #, fuzzy
10300
  #| msgid "Hover color"
10301
  msgid "Cursor color"
10302
  msgstr "Hover Farbe"
10303
 
10304
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:237
10305
- #, fuzzy
10306
- #| msgid "Hover color"
10307
- msgid "Text color"
10308
- msgstr "Hover Farbe"
10309
-
10310
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:239
10311
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:279
10312
  msgctxt "Effect"
10313
  msgid "Loop"
10314
  msgstr ""
10315
 
10316
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:254
10317
  msgid "Show duration"
10318
  msgstr ""
10319
 
10320
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:285
10321
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:314
10322
  msgid "Class on the selected tag element."
10323
  msgstr ""
10324
 
10325
- #: SmartSlider3Pro/Renderable/Item/Area/Assets/area.js:23
10326
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:39
10327
  msgid "Area"
10328
  msgstr ""
@@ -10375,15 +10075,15 @@ msgstr ""
10375
  msgid "Full"
10376
  msgstr "Voll"
10377
 
10378
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:225
10379
  msgid "Scales up the image on hover"
10380
  msgstr ""
10381
 
10382
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:229
10383
  msgid "Overlay background"
10384
  msgstr ""
10385
 
10386
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:239
10387
  msgid "Positions the text inside the overlay."
10388
  msgstr ""
10389
 
@@ -10397,22 +10097,23 @@ msgstr ""
10397
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
10398
  #: SmartSlider3Pro/Renderable/Item/Counter/Assets/counter.js:20
10399
  #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:40
10400
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:99
10401
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:109
10402
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:146
10403
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:126
10404
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
10405
  msgid "Counter"
10406
  msgstr ""
10407
 
10408
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:126
10409
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:110
10410
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:127
 
10411
  msgid "Value"
10412
  msgstr ""
10413
 
10414
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:129
10415
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:113
10416
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:130
10417
  msgid "Start from"
10418
  msgstr ""
@@ -10432,7 +10133,7 @@ msgid "Stroke width"
10432
  msgstr ""
10433
 
10434
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:160
10435
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:117
10436
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:145
10437
  msgid "Labels"
10438
  msgstr ""
@@ -10446,15 +10147,14 @@ msgid "Inner after"
10446
  msgstr ""
10447
 
10448
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:172
10449
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:118
10450
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:156
10451
  msgid "Pre"
10452
  msgstr ""
10453
 
10454
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:180
10455
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:135
10456
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:164
10457
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:187
10458
  msgid "Animation duration"
10459
  msgstr ""
10460
 
@@ -10697,11 +10397,23 @@ msgctxt "List layer type"
10697
  msgid "Upper-roman"
10698
  msgstr ""
10699
 
10700
- #: SmartSlider3Pro/Renderable/Item/Icon/Assets/icon2.js:36
10701
  msgid "Icon not found"
10702
  msgstr "Icon nicht gefunden"
10703
 
10704
- #: SmartSlider3Pro/Renderable/Item/Iframe/Assets/iframe.js:23
 
 
 
 
 
 
 
 
 
 
 
 
10705
  msgid "Iframe"
10706
  msgstr ""
10707
 
@@ -10739,15 +10451,15 @@ msgstr "iFrame URL"
10739
  msgid "Image area"
10740
  msgstr ""
10741
 
10742
- #: SmartSlider3Pro/Renderable/Item/ImageBox/Assets/imagebox.js:21
10743
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:64
10744
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:175
10745
  #, fuzzy
10746
  #| msgid "Image mode"
10747
  msgid "Image box"
10748
  msgstr "Bildmodus"
10749
 
10750
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:341
10751
  msgid ""
10752
  "Positions the text inside the layer. Only works with left and right layout."
10753
  msgstr ""
@@ -10848,11 +10560,11 @@ msgstr ""
10848
  msgid "Back image alt tag"
10849
  msgstr ""
10850
 
10851
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:116
10852
  msgid "MP4 video"
10853
  msgstr ""
10854
 
10855
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:219
10856
  msgid "Preload"
10857
  msgstr "Vorspann"
10858
 
@@ -10868,12 +10580,11 @@ msgid ""
10868
  "so we only suggest using this layer if you are a developer!"
10869
  msgstr ""
10870
 
10871
- #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:62
10872
- #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:64
10873
  msgid "Position name or module ID"
10874
  msgstr ""
10875
 
10876
- #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:65
10877
  msgid ""
10878
  "The position name of your module (for Loadposition and Modulepos) or the "
10879
  "module's ID (Module)."
@@ -10934,250 +10645,195 @@ msgstr ""
10934
  msgid "CSS selector (sum of heights)"
10935
  msgstr ""
10936
 
10937
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:33
10938
- msgctxt "Slider type"
10939
- msgid "Accordion"
10940
- msgstr "Accordion"
10941
-
10942
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:37
10943
- msgctxt "Slider type"
10944
- msgid "Accordion slider"
10945
- msgstr ""
10946
-
10947
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:63
10948
- msgid "Dark"
10949
- msgstr "dunkel"
10950
-
10951
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:95
10952
- msgid "Border outer width"
10953
- msgstr ""
10954
-
10955
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:103
10956
- msgid "Outer color"
10957
- msgstr "Außenfarbe"
10958
-
10959
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:106
10960
- msgid "Border inner width"
10961
- msgstr ""
10962
-
10963
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:114
10964
- msgid "Inner color"
10965
- msgstr "Innenfarbe"
10966
-
10967
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:124
10968
- msgid "Tab background"
10969
- msgstr "Tab Hintergrund"
10970
-
10971
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:125
10972
- msgid "Tab background - Active"
10973
- msgstr ""
10974
-
10975
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:127
10976
- msgid "Slide margin"
10977
- msgstr ""
10978
-
10979
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:136
10980
- msgid "Title size"
10981
- msgstr ""
10982
-
10983
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:144
10984
- msgid "Title margin"
10985
- msgstr ""
10986
-
10987
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:167
10988
- msgid "Outer"
10989
- msgstr "Äußere"
10990
-
10991
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:172
10992
- msgid "Inner"
10993
- msgstr "Innere"
10994
-
10995
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:34
10996
  msgctxt "Slider type"
10997
  msgid "Carousel slider"
10998
  msgstr ""
10999
 
11000
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:43
11001
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:43
11002
  #, fuzzy
11003
  #| msgid "Slider size"
11004
  msgid "Slide size"
11005
  msgstr "Slider Größe"
11006
 
11007
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:70
11008
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:71
11009
  msgid "Max pane width"
11010
  msgstr ""
11011
 
11012
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:72
11013
  msgid ""
11014
  "You can use this option to limit how many slides can show up next to each "
11015
  "other."
11016
  msgstr ""
11017
 
11018
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:84
11019
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:85
11020
  msgid "Minimum slide distance"
11021
  msgstr ""
11022
 
11023
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:86
11024
  msgid "The minimum space between two slides."
11025
  msgstr ""
11026
 
11027
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:98
11028
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:110
11029
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:134
11030
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:158
 
 
 
 
11031
  msgid "Side spacing"
11032
  msgstr ""
11033
 
11034
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:106
 
11035
  msgid "Desktop side spacing"
11036
  msgstr ""
11037
 
11038
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:107
11039
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:131
11040
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:155
 
 
 
11041
  msgid ""
11042
  "You can create a fix distance between the slider and the slides where your "
11043
  "controls are which appear on this device. This way your controls won't cover "
11044
  "the slide content."
11045
  msgstr ""
11046
 
11047
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:130
 
11048
  msgid "Tablet side spacing"
11049
  msgstr ""
11050
 
11051
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:154
 
11052
  msgid "Mobile side spacing"
11053
  msgstr ""
11054
 
11055
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:177
11056
  #, fuzzy
11057
  #| msgid "Background color"
11058
  msgid "Slide background color"
11059
  msgstr "Hintergrundfarbe"
11060
 
11061
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:199
11062
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:100
11063
- #, fuzzy
11064
- #| msgid "Background color"
11065
- msgid "Slider background color"
11066
- msgstr "Hintergrundfarbe"
11067
-
11068
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:204
11069
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:109
11070
  #, fuzzy
11071
  #| msgid "Slide order saved."
11072
  msgid "Slide border width"
11073
  msgstr "Slide Anordnung gespeichert."
11074
 
11075
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:209
11076
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:114
11077
  #, fuzzy
11078
  #| msgid "Slide order saved."
11079
  msgid "Slide border color"
11080
  msgstr "Slide Anordnung gespeichert."
11081
 
11082
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:212
11083
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:117
11084
  #, fuzzy
11085
  #| msgid "Slide order saved."
11086
  msgid "Slide border radius"
11087
  msgstr "Slide Anordnung gespeichert."
11088
 
11089
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:219
11090
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:127
11091
  #, fuzzy
11092
  #| msgid "Slide order saved."
11093
  msgid "Slider border width"
11094
  msgstr "Slide Anordnung gespeichert."
11095
 
11096
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:224
11097
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:132
11098
  #, fuzzy
11099
  #| msgid "Slide order saved."
11100
  msgid "Slider border color"
11101
  msgstr "Slide Anordnung gespeichert."
11102
 
11103
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:227
11104
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:135
11105
  #, fuzzy
11106
  #| msgid "Slide order saved."
11107
  msgid "Slider border radius"
11108
  msgstr "Slide Anordnung gespeichert."
11109
 
11110
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:236
11111
  msgid "The Single Switch setting can only move the slides horizontally!"
11112
  msgstr ""
11113
 
11114
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:286
11115
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:665
11116
  msgid ""
11117
  "This option will create a complete round from your slides if you have enough "
11118
  "slides. If you don't have enough slides, you could consider duplicating all "
11119
  "the slides or just add more slides until you will get a carousel round."
11120
  msgstr ""
11121
 
11122
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:294
11123
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:295
11124
  msgid "Single switch"
11125
  msgstr ""
11126
 
11127
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:296
11128
  msgid "It switches one slide instead of moving all the visible slides."
11129
  msgstr ""
11130
 
11131
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:303
11132
  msgid "Justify slides"
11133
  msgstr ""
11134
 
11135
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:34
11136
  msgctxt "Slider type"
11137
  msgid "Showcase slider"
11138
  msgstr ""
11139
 
11140
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:70
11141
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:78
11142
  msgid "Slide distance"
11143
  msgstr "Slide Distanz"
11144
 
11145
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:79
11146
  msgid "Fix space between the slides."
11147
  msgstr ""
11148
 
11149
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:143
11150
  msgid "Slide CSS Preset"
11151
  msgstr ""
11152
 
11153
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:210
11154
  #, fuzzy
11155
  #| msgid "No animation"
11156
  msgid "Showcase animation"
11157
  msgstr "Keine Animation"
11158
 
11159
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:233
11160
  msgid "Horizontal showcase"
11161
  msgstr "Horizontaler Schaukasten"
11162
 
11163
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:249
11164
  msgid "Vertical showcase"
11165
  msgstr "Vertikaler Schaukasten"
11166
 
11167
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:265
11168
  msgid "Horizontal cover flow"
11169
  msgstr ""
11170
 
11171
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:281
11172
  msgid "Vertical cover flow"
11173
  msgstr ""
11174
 
11175
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:672
11176
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:673
11177
  msgid "Switch with next/previous slides"
11178
  msgstr ""
11179
 
11180
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:674
11181
  msgid ""
11182
  "Clicking on any slide that's not in the middle will make the slider switch "
11183
  "to that slide. With this option you can disable this behavior, for example, "
@@ -11254,6 +10910,14 @@ msgstr ""
11254
  msgid "Fullscreen"
11255
  msgstr ""
11256
 
 
 
 
 
 
 
 
 
11257
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:53
11258
  #, php-format
11259
  msgid ""
@@ -11281,5 +10945,74 @@ msgstr ""
11281
  msgid "Bar color"
11282
  msgstr ""
11283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11284
  #~ msgid "Ticket price"
11285
  #~ msgstr "Ticketpreis"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Smart Slider 3 translation\n"
4
+ "POT-Creation-Date: 2021-05-03 16:52+0200\n"
5
+ "PO-Revision-Date: 2021-05-03 16:52+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.4.3\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: ;n2_;n2_e;n2_n:1,2;n2_en:1,2;n2_x:1,2c;n2_ex:1,2c\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: Framework/Asset/Builder/cache\n"
19
 
20
+ #: Framework/Api.php:125 Framework/Misc/HttpClient.php:81
21
  msgid "Debug error"
22
  msgstr ""
23
 
24
+ #: Framework/Api.php:144 Framework/Misc/HttpClient.php:106
25
  msgid "CURL disabled in your php.ini configuration. Please enable it!"
26
  msgstr ""
27
 
28
+ #: Framework/Api.php:152 Framework/Misc/HttpClient.php:112
29
  msgid "Unable to contact with the licensing server, please try again later!"
30
  msgstr ""
31
 
32
+ #: Framework/Asset/Predefined.php:45
 
 
 
 
33
  msgctxt "Default Google font family for admin"
34
  msgid "Montserrat"
35
  msgstr ""
36
 
37
+ #: Framework/Asset/Predefined.php:46
38
  msgctxt "Default Google font charset for admin"
39
  msgid "latin"
40
  msgstr ""
47
  msgid "Folder is missing!"
48
  msgstr ""
49
 
50
+ #: Framework/Content/Joomla/JoomlaContent.php:145
51
  msgid "Menu item"
52
  msgstr ""
53
 
75
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:96
76
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:176
77
  #: Framework/Image/ControllerAjaxImage.php:34
78
+ #: Framework/Image/ControllerAjaxImage.php:52
79
+ #: Framework/Image/ControllerAjaxImage.php:88
80
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:33
81
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:99
82
  msgid "Unexpected error"
93
 
94
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:136
95
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:156
96
+ #: Framework/Image/ControllerAjaxImage.php:70
97
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:53
98
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:76
99
  msgid "Not editable"
122
  msgid "Font manager"
123
  msgstr ""
124
 
125
+ #: Framework/Font/FontRenderer.php:104 Framework/Font/FontRenderer.php:106
126
+ #: Framework/Font/FontRenderer.php:118 Framework/Font/FontRenderer.php:120
127
+ #: Framework/Font/FontRenderer.php:134 Framework/Font/FontRenderer.php:153
128
+ #: Framework/Font/FontRenderer.php:172 Framework/Font/FontRenderer.php:190
129
+ #: Framework/Font/FontRenderer.php:206 Framework/Font/FontRenderer.php:222
130
+ #: Framework/Font/FontRenderer.php:240 Framework/Style/StyleRenderer.php:81
131
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:28
132
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
133
+ #: SmartSlider3/Renderable/Item/Text/Assets/text.js:21
134
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:53
135
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:134
136
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:249
137
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:149
138
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:142
139
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:63
140
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:51
141
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:58
142
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:58
143
  msgid "Text"
144
  msgstr "Text"
145
 
146
+ #: Framework/Font/FontRenderer.php:132 Framework/Font/FontRenderer.php:135
147
+ #: Framework/Font/FontRenderer.php:154 Framework/Font/FontRenderer.php:174
148
+ #: Framework/Font/FontRenderer.php:191 Framework/Font/FontRenderer.php:224
149
+ #: Framework/Font/FontRenderer.php:242 Framework/Style/StyleRenderer.php:110
150
+ #: Framework/Style/StyleRenderer.php:126 Framework/Style/StyleRenderer.php:145
151
+ #: Framework/Style/StyleRenderer.php:197
152
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:73
153
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:107
154
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:42
155
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:61
156
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:139
157
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:171
158
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:187
163
  msgid "Hover"
164
  msgstr "Hover"
165
 
166
+ #: Framework/Font/FontRenderer.php:140 Framework/Style/StyleRenderer.php:142
167
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:27
168
+ #: SmartSlider3/Renderable/Item/Heading/Assets/heading.js:21
169
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:53
170
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
171
  #: SmartSlider3/Storage.php:65
172
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
173
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:306
174
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:100
175
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:250
176
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:265
177
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:203
178
  msgid "Heading"
179
  msgstr "Heading"
180
 
181
+ #: Framework/Font/FontRenderer.php:151 Framework/Font/FontRenderer.php:173
182
+ #: Framework/Font/FontRenderer.php:223
183
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:59
184
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:61
185
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:86
186
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:88
187
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:75
188
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:77
189
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:112
197
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:181
198
  #: SmartSlider3/Storage.php:877
199
  #: SmartSlider3Pro/Form/Element/ParticleSkin.php:18
200
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:168
201
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:169
 
202
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:188
203
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:189
204
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:180
205
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:181
206
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:218
207
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:219
 
208
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:115
209
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:116
210
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:141
211
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:142
212
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:281
213
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:282
214
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:138
215
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:139
216
  msgid "Link"
217
  msgstr "Link"
218
 
219
+ #: Framework/Font/FontRenderer.php:159 Framework/Font/FontRenderer.php:247
220
+ #: Framework/Style/StyleRenderer.php:123 Framework/Style/StyleRenderer.php:202
221
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:30
222
+ #: SmartSlider3/Renderable/Item/Button/Assets/button.js:21
223
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:50
224
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
225
  #: SmartSlider3/Storage.php:290 SmartSlider3/Widget/Group/Autoplay.php:49
233
  msgid "Button"
234
  msgstr "Button"
235
 
236
+ #: Framework/Font/FontRenderer.php:170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  msgid "Paragraph"
238
  msgstr ""
239
 
240
+ #: Framework/Font/FontRenderer.php:204 Framework/Style/StyleRenderer.php:177
241
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:49
242
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:238
243
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:51
245
  msgid "Dot"
246
  msgstr ""
247
 
248
+ #: Framework/Font/FontRenderer.php:207 Framework/Style/StyleRenderer.php:164
249
+ #: Framework/Style/StyleRenderer.php:180
250
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:389
251
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:432
252
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:477
253
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:513
254
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:549
255
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:590
256
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:632
257
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:674
258
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:225
259
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:241
260
+ msgid "Active"
261
+ msgstr "Aktiv"
262
+
263
+ #: Framework/Font/FontRenderer.php:220 SmartSlider3/Storage.php:529
264
  #: SmartSlider3Pro/Renderable/Item/HtmlList/Assets/list.js:20
265
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:56
266
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:76
269
  msgid "List"
270
  msgstr "Liste"
271
 
272
+ #: Framework/Font/FontRenderer.php:238 Framework/Font/FontRenderer.php:241
273
+ #: Framework/Style/StyleRenderer.php:193 Framework/Style/StyleRenderer.php:196
274
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:234
275
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:254
276
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:257
297
  msgstr ""
298
 
299
  #: Framework/Font/ModelFont.php:40
300
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:177
301
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:54
302
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:204
303
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:310
304
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:439
305
  #: SmartSlider3/Form/Element/BackgroundImage.php:31
306
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:228
307
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:229
308
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:70
309
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:104
310
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:53
311
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:83
312
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:119
313
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:108
314
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:167
315
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:112
316
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:158
317
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:137
318
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:245
319
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:95
320
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:243
321
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:138
322
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:39
323
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:53
324
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:43
325
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:57
326
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:59
331
  msgstr "Farbe"
332
 
333
  #: Framework/Font/ModelFont.php:44
334
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:414
335
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:417
336
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:419
337
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:154
338
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:52
339
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:199
340
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:84
341
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:215
342
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:165
343
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:58
344
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:59
345
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:182
346
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:150
347
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:127
348
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:130
349
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:147
350
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:184
351
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:186
 
 
352
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:174
353
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:143
354
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:102
355
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:235
 
 
356
  #: SmartSlider3Pro/Widget/Indicator/IndicatorPie/IndicatorPie.php:31
357
  msgid "Size"
358
  msgstr "Größe"
393
  msgid "Transform"
394
  msgstr ""
395
 
396
+ #: Framework/Font/ModelFont.php:86
397
+ #: Framework/Form/Element/MixedField/Border.php:39
398
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:170
399
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:116
400
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:197
401
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:91
402
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:46
403
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:105
405
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:85
406
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:105
407
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:167
408
+ #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:127
409
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:44
410
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:130
411
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:153
412
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:211
413
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:102
414
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:101
415
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:92
416
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:35
 
417
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:84
418
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:51
419
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:46
429
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:54
430
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:55
431
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:38
 
 
432
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:86
433
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:69
 
 
 
 
 
434
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:28
435
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:64
 
436
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:63
437
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:51
438
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:45
439
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:56
440
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:86
441
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:66
 
442
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:38
443
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:36
444
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:151
445
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:137
446
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:225
447
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:39
448
  msgid "None"
449
  msgstr "Keine"
469
  msgstr ""
470
 
471
  #: Framework/Font/ModelFont.php:100 Framework/Image/ModelImage.php:35
472
+ #: Framework/Image/ModelImage.php:56 Framework/Style/ModelStyle.php:94
473
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:84
474
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:62
475
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:112
476
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:77
477
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:38
478
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:115
479
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:216
480
  #: SmartSlider3/BackgroundAnimation/ModelBackgroundAnimation.php:41
481
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:78
482
  #: SmartSlider3Pro/PostBackgroundAnimation/ModelPostBackgroundAnimation.php:45
504
 
505
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:64
506
  #: Framework/Form/Element/Style.php:50
507
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:168
508
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:195
509
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabStyle.php:20
510
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:57
511
  #: SmartSlider3/Widget/Group/Bullet.php:95
530
  msgid "Italic"
531
  msgstr ""
532
 
533
+ #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:72
534
+ #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:73
535
+ #: Framework/Form/Element/Select/FontWeight.php:13
536
+ #: Framework/Form/Element/Select/FontWeight.php:18
537
+ #: Framework/Style/StyleRenderer.php:95 Framework/Style/StyleRenderer.php:109
538
+ #: Framework/Style/StyleRenderer.php:125 Framework/Style/StyleRenderer.php:144
539
+ #: Framework/Style/StyleRenderer.php:163 Framework/Style/StyleRenderer.php:179
540
+ #: Framework/Style/StyleRenderer.php:195
541
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:192
542
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:113
543
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:138
544
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:61
545
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:72
546
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:162
547
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:178
548
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:128
549
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:161
550
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:172
551
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:307
552
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:341
553
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:357
554
+ #: SmartSlider3Pro/SplitText/ModelSplitText.php:62
555
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:156
556
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:170
557
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:186
558
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:205
559
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:224
560
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:240
561
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:256
562
+ msgid "Normal"
563
+ msgstr "Normal"
564
+
565
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:86
566
  msgid "Character set"
567
  msgstr ""
631
  msgstr "Wählen"
632
 
633
  #: Framework/Form/Element/Breakpoint.php:39
634
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
635
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:75
636
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:176
 
637
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:80
638
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:80
639
  msgid "Orientation"
640
  msgstr "Orientierung"
641
 
642
  #: Framework/Form/Element/Breakpoint.php:41
643
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
644
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:248
645
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:249
646
  msgid "Portrait"
647
  msgstr "Portrait"
648
 
649
  #: Framework/Form/Element/Breakpoint.php:42
650
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
651
  msgid "Landscape"
652
  msgstr "Landscape"
653
 
654
  #: Framework/Form/Element/Breakpoint.php:51
655
+ #: Framework/Form/Element/Breakpoint.php:86 Framework/Image/ModelImage.php:39
656
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:87
657
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:228
658
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:21
 
659
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:162
660
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:163
661
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:183
662
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:112
663
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:97
664
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:229
665
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:302
666
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:523
667
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:145
668
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:167
669
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:157
670
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:161
671
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:97
672
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:148
673
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:169
674
  msgid "Mobile"
675
  msgstr "Mobil"
676
 
677
  #: Framework/Form/Element/Breakpoint.php:56
678
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:229
679
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:22
680
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:179
681
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:101
682
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:212
683
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:294
689
 
690
  #: Framework/Form/Element/Breakpoint.php:61
691
  #: Framework/Form/Element/Breakpoint.php:91 Framework/Image/ModelImage.php:38
692
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:86
693
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:226
694
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:19
695
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:164
696
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:174
697
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:106
698
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:194
699
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:287
700
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:473
701
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:144
702
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:159
703
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:145
704
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:149
705
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:112
706
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:124
707
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:145
708
  msgid "Tablet"
709
  msgstr "Tablet"
710
 
711
  #: Framework/Form/Element/Breakpoint.php:66
712
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:227
713
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:20
714
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:170
715
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:110
716
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:178
717
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:279
723
 
724
  #: Framework/Form/Element/Breakpoint.php:71
725
  #: Framework/Form/Element/Breakpoint.php:96 Framework/Image/ModelImage.php:31
726
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:85
727
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:224
728
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:17
729
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:165
730
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:115
731
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:159
732
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:151
733
+ #: SmartSlider3/Application/Admin/Preview/Template/Index.php:28
734
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:127
735
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:100
736
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:121
737
  msgid "Desktop"
738
  msgstr "Desktop"
739
 
740
  #: Framework/Form/Element/Breakpoint.php:76
741
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:225
742
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:18
743
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:161
744
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:119
745
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:143
746
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:272
768
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
769
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
770
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
771
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:148
772
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:151
773
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
774
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
775
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:179
 
776
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:85
777
  msgid "Font"
778
  msgstr "Schriftart"
781
  msgid "Warning"
782
  msgstr ""
783
 
784
+ #: Framework/Form/Element/MixedField/Border.php:40
785
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:173
786
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:200
787
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:154
788
  msgid "Dotted"
789
  msgstr ""
790
 
791
+ #: Framework/Form/Element/MixedField/Border.php:41
792
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:172
793
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:199
794
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:153
795
  msgid "Dashed"
796
  msgstr ""
797
 
798
+ #: Framework/Form/Element/MixedField/Border.php:42
799
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:171
800
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:198
801
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:152
802
  msgid "Solid"
803
  msgstr ""
804
 
805
+ #: Framework/Form/Element/MixedField/Border.php:43
806
  msgid "Double"
807
  msgstr ""
808
 
809
+ #: Framework/Form/Element/MixedField/Border.php:44
810
  msgid "Groove"
811
  msgstr ""
812
 
813
+ #: Framework/Form/Element/MixedField/Border.php:45
814
  msgid "Ridge"
815
  msgstr ""
816
 
817
+ #: Framework/Form/Element/MixedField/Border.php:46
818
  msgid "Inset"
819
  msgstr ""
820
 
821
+ #: Framework/Form/Element/MixedField/Border.php:47
822
  msgid "Outset"
823
  msgstr ""
824
 
825
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:20
826
  msgid "Field"
827
  msgstr "Feld"
828
 
829
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:22
830
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:87
831
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:42
832
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:101
837
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:97
838
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:88
839
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:31
 
840
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:80
841
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:47
842
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:42
851
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:50
852
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:51
853
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:34
 
 
854
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:82
855
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:65
856
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:60
 
 
 
 
 
 
857
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:59
858
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:47
859
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:41
860
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:52
861
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:82
862
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:62
 
863
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:68
864
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:91
865
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:34
870
  msgid "Order"
871
  msgstr "Reihenfolge"
872
 
873
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:24
874
  msgid "Ascending"
875
  msgstr "Aufsteigend"
876
 
877
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:25
878
  msgid "Descending"
879
  msgstr "Absteigend"
880
 
881
  #: Framework/Form/Element/OnOff.php:22
882
  #: Framework/Form/Element/Select/Gradient.php:15
883
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:146
884
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:117
885
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:124
886
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:96
887
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:107
888
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:283
889
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:300
890
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:140
891
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:141
892
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:150
893
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:180
895
  msgstr "Aus"
896
 
897
  #: Framework/Form/Element/OnOff.php:22
898
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:147
899
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:301
900
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:141
901
  msgid "On"
902
  msgstr "An"
903
 
908
  msgstr ""
909
 
910
  #: Framework/Form/Element/Select/FillMode.php:15
911
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:177
912
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:245
913
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:132
914
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:212
 
915
  msgid "Fill"
916
  msgstr "Fülle"
917
 
920
  msgstr ""
921
 
922
  #: Framework/Form/Element/Select/FillMode.php:17
923
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:178
924
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:246
925
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:133
926
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:213
 
927
  msgid "Fit"
928
  msgstr "Fit"
929
 
930
  #: Framework/Form/Element/Select/FillMode.php:18
 
931
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:80
932
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:81
933
  msgid "Stretch"
934
  msgstr "Strecken"
935
 
936
  #: Framework/Form/Element/Select/FillMode.php:19
937
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:82
938
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:103
939
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:179
940
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:194
941
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:247
 
942
  #: SmartSlider3/Storage.php:710
943
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:103
944
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:71
945
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:69
946
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:244
947
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:338
948
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:281
949
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:67
950
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:76
951
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:76
952
  msgid "Center"
953
  msgstr "Mitte"
954
 
955
+ #: Framework/Form/Element/Select/FillMode.php:24
 
 
 
 
956
  msgid "Slider's default"
957
  msgstr ""
958
 
966
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTags.php:17
967
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTaxonomies.php:23
968
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:39
 
969
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsCategories.php:36
970
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsLocations.php:36
971
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsTypes.php:15
991
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopTags.php:18
992
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopWarehouses.php:18
993
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Elements/IgnitegalleryCategories.php:33
 
 
 
 
994
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCalendars.php:17
995
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCategories.php:34
996
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:72
 
 
 
 
 
 
 
 
 
997
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingCategories.php:42
998
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:27
999
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingManufacturers.php:27
 
 
1000
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Categories.php:29
1001
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Tags.php:18
1002
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Elements/MijoshopCategories.php:49
1012
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Elements/RseventsproTags.php:17
1013
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartCategories.php:34
1014
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartManufacturers.php:21
 
 
1015
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarCategories.php:34
1016
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarTags.php:35
1017
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Elements/EventsManagerCategories.php:34
1044
  msgstr ""
1045
 
1046
  #: Framework/Form/Element/Select/FontWeight.php:17
 
1047
  msgid "Light"
1048
  msgstr "Hell"
1049
 
1064
  msgstr ""
1065
 
1066
  #: Framework/Form/Element/Select/LinkTarget.php:15
1067
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1152
1068
  msgid "Parent"
1069
  msgstr ""
1070
 
1071
  #: Framework/Form/Element/Select/LinkTarget.php:16
1072
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:76
1073
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:79
1074
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:82
1075
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:85
1076
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:175
1077
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
1078
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
 
1079
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
1080
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
1081
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
1082
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
1083
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
1084
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:512
1085
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:220
1086
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:106
1087
  #: SmartSlider3/Storage.php:979
1088
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:138
1089
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:76
1090
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:199
1091
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:226
1092
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:243
1093
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:300
1094
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:337
1095
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:105
1096
  msgid "Top"
1097
  msgstr "Oben"
1116
  #: Framework/Form/Joomla/Element/Select/MenuItems.php:18
1117
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:119
1118
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:61
1119
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:149
1120
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:138
1121
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:508
1122
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:107
1123
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:49
1124
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:194
1125
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:258
1126
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:199
1127
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:58
1128
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:69
1129
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:159
1130
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:175
1131
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:158
1132
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:169
1133
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:303
1134
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:338
1135
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:354
1136
  #: SmartSlider3/Storage.php:552 SmartSlider3/Storage.php:928
1137
+ #: SmartSlider3/Storage.php:1165 SmartSlider3/Storage.php:3952
1138
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:39
1139
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCategoryLanguage.php:20
1140
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCurrency.php:20
1144
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:95
1145
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:80
1146
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:86
1147
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:264
1148
  msgid "Default"
1149
  msgstr "Default"
1150
 
1151
+ #: Framework/Image/Admin/Assets/js/manager.js:45
 
 
 
 
 
 
 
 
1152
  msgid "The image is empty"
1153
  msgstr ""
1154
 
1155
+ #: Framework/Image/Admin/Assets/js/manager.js:66
1156
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:87
1157
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:108
1158
  msgid "Empty"
1159
  msgstr ""
1160
 
1162
  msgid "Image manager"
1163
  msgstr ""
1164
 
 
 
 
 
1165
  #: Framework/Image/ModelImage.php:37
1166
  #, fuzzy
1167
  #| msgid "Desktop"
1168
  msgid "Desktop retina"
1169
  msgstr "Desktop"
1170
 
1171
+ #: Framework/Image/ModelImage.php:53
 
 
 
 
 
 
 
 
 
 
 
 
1172
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:29
1173
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:19
1174
  #: SmartSlider3/Form/Element/BackgroundImage.php:29
1175
+ #: SmartSlider3/Renderable/Item/Image/Assets/image.js:21
1176
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:43
1177
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:129
1178
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
1179
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:276
1180
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:263
1181
  #: SmartSlider3/Widget/Group/Bullet.php:64
1182
  #: SmartSlider3/Widget/Group/Thumbnail.php:63
1183
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:161
1184
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:112
1185
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:212
1186
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:217
1187
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:256
1188
  msgid "Image"
1189
  msgstr "Bild"
1190
 
1209
  msgstr ""
1210
 
1211
  #: Framework/Style/ModelStyle.php:35
1212
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:162
1213
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:119
1214
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:97
1215
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:139
1216
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:146
 
1217
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:113
1218
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:89
1219
  msgid "Background color"
1221
 
1222
  #: Framework/Style/ModelStyle.php:39
1223
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:143
1224
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:229
1225
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:294
1226
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:197
1227
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:371
1228
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:131
1229
  msgid "Opacity"
1230
  msgstr "Durchsichtigkeit"
1231
 
1232
  #: Framework/Style/ModelStyle.php:50
1233
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:210
1234
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:120
1235
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:189
1236
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:228
1237
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:156
1238
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:188
1239
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:318
1240
  msgid "Padding"
1241
  msgstr "Randabstand"
1242
 
1243
  #: Framework/Style/ModelStyle.php:72
1244
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:142
1245
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:147
1246
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:165
1247
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:169
1248
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:168
1249
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:174
1250
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:125
1251
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:127
1252
  msgid "Border"
1253
  msgstr "Umrandung"
1254
 
1255
  #: Framework/Style/ModelStyle.php:74
1256
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:181
1257
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:171
1258
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:208
1259
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:90
1260
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:210
1261
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:162
 
 
 
1262
  msgid "Border radius"
1263
  msgstr "Border Radius"
1264
 
1265
  #: Framework/Style/ModelStyle.php:87
1266
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:133
1267
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:157
1268
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:160
1269
  msgid "Box shadow"
1270
  msgstr ""
1271
 
1272
+ #: Framework/Style/StyleRenderer.php:79
1273
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:140
1274
  msgid "Single"
1275
  msgstr ""
1276
 
1277
+ #: Framework/Style/StyleRenderer.php:93
1278
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:179
1279
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:35
1280
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:200
1281
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:154
1282
  msgid "Simple"
1283
  msgstr "Einfach"
1284
 
1285
+ #: Framework/Style/StyleRenderer.php:107
1286
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:168
1287
  msgid "Box"
1288
  msgstr ""
1289
 
1290
+ #: Framework/Style/StyleRenderer.php:161
1291
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:222
1292
  msgid "Heading active"
1293
  msgstr ""
1294
 
1295
  #: SmartSlider3/Application/Admin/ApplicationTypeAdmin.php:55
1296
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:302
1297
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:110
1298
+ #: SmartSlider3/Application/Model/ModelSlidersXRef.php:154
1299
+ #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:100
1300
  msgid "Dashboard"
1301
  msgstr "Dashboard"
1302
 
1303
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1304
  msgid "Drop files here or"
1305
  msgstr ""
1306
 
1307
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:13
1308
  msgid "Upload"
1309
  msgstr ""
1310
 
1311
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:20
1312
  msgid "Parent directory"
1313
  msgstr ""
1314
 
1315
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:106
1316
  msgid "Current path"
1317
  msgstr ""
1318
 
1319
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:33
1320
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:260
 
1321
  msgid "Preset"
1322
  msgstr "Voreingestellt"
1323
 
1324
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:33
1325
  msgid ""
1326
  "You can use presets to save style settings for later use. Clicking on any "
1327
  "preset will load its styling to your current layer, and the previous style "
1328
  "settings will be lost."
1329
  msgstr ""
1330
 
1331
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:35
1332
  msgid ""
1333
  "Layer design options affect every device. If you need to make responsive "
1334
  "adjustments, look for the options with the device icon."
1335
  msgstr ""
1336
 
1337
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:42
1338
  msgid "Reset style to default"
1339
  msgstr ""
1340
 
1341
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:48
1342
  msgid "Save style as new preset"
1343
  msgstr ""
1344
 
1345
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:59
1346
  msgid "Load style"
1347
  msgstr ""
1348
 
1349
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:88
1350
  msgid "You have not created any presets for this layer yet."
1351
  msgstr ""
1352
 
1353
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:160
1354
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:167
1355
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:218
1356
  msgid "Save as"
1357
  msgstr ""
1358
 
1359
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:165
1360
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:223
1361
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:208
1362
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
1363
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
1364
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
1365
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:85
1366
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialUsers.php:84
 
 
1367
  msgid "Name"
1368
  msgstr "Name"
1369
 
1370
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:175
1371
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:233
1372
  msgid "Please fill the name field!"
1373
  msgstr ""
1374
 
1375
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:200
1376
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:291
1377
  msgid "Preset saved."
1378
  msgstr ""
1379
 
1380
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:269
1381
  msgid "Overwrite preset"
1382
  msgstr ""
1383
 
1384
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:313
1385
  msgid "Preset deleted."
1386
  msgstr ""
1387
 
1390
  msgstr ""
1391
 
1392
  #: SmartSlider3/Application/Admin/Assets/js/common/element/folders.js:46
1393
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:79
1394
  msgid "Select"
1395
  msgstr "Auswählen"
1396
 
1397
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:136
1398
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:199
1399
+ #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:70
1400
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:51
1401
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:142
1402
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:145
1408
  msgid "Disabled"
1409
  msgstr "Deaktiviert"
1410
 
1411
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/imagemanager.js:33
1412
  msgid "Image field can not be empty!"
1413
  msgstr ""
1414
 
1415
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/skin.js:57
1416
  msgid "Done"
1417
  msgstr ""
1418
 
1419
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/upload.js:40
1420
  msgid "No file selected."
1421
  msgstr ""
1422
 
1423
+ #: SmartSlider3/Application/Admin/Assets/js/common/form-tip-manager.js:110
1424
  msgid "Open docs"
1425
  msgstr ""
1426
 
1427
+ #: SmartSlider3/Application/Admin/Assets/js/common/form.js:114
1428
  msgid "The changes you made will be lost if you navigate away from this page."
1429
  msgstr ""
1430
 
1431
+ #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:78
1432
  msgid "Icons"
1433
  msgstr ""
1434
 
1435
+ #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:91
1436
  #: SmartSlider3/Application/Admin/Help/Template/Index.php:72
1437
  #: SmartSlider3Pro/Generator/Common/Flickr/GeneratorGroupFlickr.php:36
1438
  #: SmartSlider3Pro/Generator/Common/YouTube/GeneratorGroupYouTube.php:31
1442
  msgid "Search"
1443
  msgstr "Suchen"
1444
 
1445
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:19
1446
  msgid "Are you sure?"
1447
  msgstr ""
1448
 
1449
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:23
1450
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonCancel.php:12
1451
  msgid "Cancel"
1452
  msgstr "Abbrechen"
1453
 
1454
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:30
1455
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:100
1456
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:376
1457
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:178
1458
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1052
1459
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:113
1460
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:45
1461
  msgid "Delete"
1462
  msgstr "Löschen"
1463
 
1464
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalLightbox.js:37
1465
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:96
1466
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:47
1467
  msgid "Close"
1468
  msgstr ""
1469
 
1470
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:17
1471
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:24
1472
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:41
1473
  #, fuzzy
1474
  #| msgid "Create"
1475
  msgid "Create group"
1476
  msgstr "erstellen"
1477
 
1478
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:22
1479
  #, fuzzy
1480
  #| msgid "Product name"
1481
  msgid "Group name"
1485
  msgid "Group created"
1486
  msgstr ""
1487
 
1488
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/generator-record-viewer.js:53
1489
  msgid "Records"
1490
  msgstr ""
1491
 
1492
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:12
1493
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:63
1494
  msgid "Keyboard shortcuts"
1495
  msgstr ""
1496
 
1497
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:41
1498
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:38
1499
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:92
 
1500
  msgid "Got it"
1501
  msgstr ""
1502
 
1503
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:62
1504
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:46
1505
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:56
1506
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:68
1507
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:36
1508
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:33
1509
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:44
1510
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:56
1511
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:59
1512
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:139
1513
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:146
1514
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:127
1515
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:132
1516
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:113
1517
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:115
1518
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:204
1519
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:153
1520
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:113
1521
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:159
1522
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:204
1523
  #: SmartSlider3Pro/Renderable/Item/Html/ItemHtml.php:61
1524
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:125
1525
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:93
1526
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:64
1527
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:110
1528
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:182
1529
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:119
1530
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:119
1531
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:50
1532
  msgid "General"
1533
  msgstr "Allgemein"
1534
 
1535
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:63
1536
  #, fuzzy
1537
  #| msgid "Content"
1538
  msgid "Content tab"
1539
  msgstr "Inhalt"
1540
 
1541
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:64
1542
  #, fuzzy
1543
  #| msgid "Style"
1544
  msgid "Style tab"
1545
  msgstr "Stil"
1546
 
1547
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:70
1548
  #, fuzzy
1549
  #| msgid "Animation"
1550
  msgid "Animation tab"
1551
  msgstr "Animation"
1552
 
1553
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:74
1554
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:24
1555
  msgid "Add Layer"
1556
  msgstr ""
1557
 
1558
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:75
1559
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerWindow.js:80
1560
  msgid "Layer List"
1561
  msgstr ""
1562
 
1563
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:79
1564
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerNavigation.js:51
1565
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:50
1566
  msgid "Timeline"
1567
  msgstr ""
1568
 
1569
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:83
 
 
1570
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:101
1571
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoGallery.php:100
1572
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoStream.php:91
1576
  msgid "View"
1577
  msgstr "Ansicht"
1578
 
1579
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1580
  msgid "Adjust"
1581
  msgstr ""
1582
 
1583
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1584
  msgid "Move (Absolute)"
1585
  msgstr ""
1586
 
1587
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1588
  #: SmartSlider3/Widget/Group/Arrow.php:44
1589
  msgid "Arrows"
1590
  msgstr "Pfeile"
1591
 
1592
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:94
1593
  msgid "Align (Absolute)"
1594
  msgstr ""
1595
 
1596
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:94
1597
  msgid "Numeric keys"
1598
  msgstr ""
1599
 
1600
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:99
1601
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:16
1602
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:20
1603
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:39
1604
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:58
1605
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:42
1606
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:41
1607
  msgid "Action"
1608
  msgstr "Handlung"
1609
 
1610
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:101
1611
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:369
1612
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:171
1613
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1045
1614
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:80
1615
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:55
1616
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:43
1617
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:127
1618
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:148
1619
  msgid "Duplicate"
1620
  msgstr "Dupliziere"
1621
 
1622
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:102
1623
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1133
1624
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:61
1625
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:44
1626
+ #: SmartSlider3/Application/Model/ModelSliders.php:579
1627
  msgid "Copy"
1628
  msgstr "Kopieren"
1629
 
1630
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:103
1631
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1142
1632
  msgid "Paste"
1633
  msgstr ""
1634
 
1635
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:104
1636
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:198
1637
  msgid "Undo"
1638
  msgstr ""
1639
 
1640
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:105
1641
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:189
1642
  msgid "Redo"
1643
  msgstr ""
1644
 
1645
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:106
1646
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonSave.php:12
1647
  msgid "Save"
1648
  msgstr "Speichern"
1649
 
1650
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:110
1651
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:42
1652
  #, fuzzy
1653
  #| msgid "Layer animations"
1654
  msgid "Play animations"
1655
  msgstr "Layer Animationen"
1656
 
1657
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:115
1658
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:87
1659
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:90
1660
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:107
1661
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:110
1662
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:265
1663
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:177
1664
  msgid "Clear device specific settings"
1665
  msgstr ""
1666
 
1667
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:116
1668
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:90
1669
  msgid "Current layer, current device"
1670
  msgstr ""
1671
 
1672
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:117
1673
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:87
1674
  msgid "Current layer, all devices"
1675
  msgstr ""
1676
 
1677
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:118
1678
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:110
1679
  msgid "All layers, current device"
1680
  msgstr ""
1681
 
1682
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:119
1683
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:107
1684
  msgid "All layers, all devices"
1685
  msgstr ""
1686
 
1687
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/safe-html.js:16
1688
  msgid "Unexpected response"
1689
  msgstr ""
1690
 
1706
  msgstr ""
1707
 
1708
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:21
1709
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrowFrontend.php:177
1710
+ #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBarFrontend.php:171
1711
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowRevealFrontend.php:186
1712
+ #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowTextFrontend.php:115
1713
  msgid "Previous slide"
1714
  msgstr ""
1715
 
1716
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:22
1717
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrowFrontend.php:180
1718
+ #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBarFrontend.php:174
1719
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowRevealFrontend.php:189
1720
+ #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowTextFrontend.php:118
1721
  msgid "Next slide"
1722
  msgstr ""
1723
 
1762
 
1763
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:189
1764
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:257
1765
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:224
1766
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:361
1767
  msgid "Direction"
1768
  msgstr "Richtung"
1769
 
1770
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:190
1771
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:258
1772
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:93
1773
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:139
1774
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:77
1775
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:178
 
1776
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:76
1777
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:82
1778
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:82
1846
  msgid "Autoplay duration"
1847
  msgstr ""
1848
 
1849
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:20
1850
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:18
1851
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:75
1852
  msgid "URL"
1853
  msgstr ""
1854
 
1855
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:25
1856
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:276
1857
  msgid "Search keyword"
1858
  msgstr ""
1859
 
1860
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:32
1861
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:284
1862
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:16
1863
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:30
1864
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/GeneratorGroupMultisitePost.php:29
1870
  msgstr ""
1871
 
1872
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:34
1873
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:413
1874
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:16
1875
  msgid "Insert"
1876
  msgstr "Einfügen"
1877
 
1878
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:27
1879
  msgid "Oops, Something Went Wrong"
1880
  msgstr ""
1881
 
1882
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:51
1883
  msgid "Success"
1884
  msgstr ""
1885
 
1886
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:57
1887
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:414
1888
  msgid "Notice"
1889
  msgstr ""
1890
 
1891
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:34
1892
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:70
1893
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:130
1894
  msgid "Select image"
1895
  msgstr ""
1896
 
1897
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:37
1898
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:73
1899
  msgid "Use Joomla selector"
1900
  msgstr ""
1901
 
1902
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:132
1903
  msgid "Use default selector"
1904
  msgstr ""
1905
 
1907
  msgid "Deleted."
1908
  msgstr ""
1909
 
1910
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:102
1911
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/setsandmore.js:93
1912
  #: SmartSlider3Pro/SplitText/Admin/Assets/js/manager.js:71
1913
  msgid "Static"
1914
  msgstr "Feststehend"
1915
 
1916
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:225
1917
  msgid "Save as New"
1918
  msgstr ""
1919
 
1920
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:236
1921
  msgid "Saved."
1922
  msgstr ""
1923
 
1924
+ #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:72
1925
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:140
1926
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/splittextanimationmanagerelement.js:100
1927
  msgid "Enabled"
1928
  msgstr "Aktiviert"
1929
 
1930
+ #: SmartSlider3/Application/Admin/Assets/js/element/columns-element.js:111
1931
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:71
1932
  msgid "Column"
1933
  msgstr ""
1934
 
1935
+ #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:174
1936
  msgid "There is no layer available to be parent of the current layer!"
1937
  msgstr ""
1938
 
1939
+ #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:184
1940
  msgid "Pick the parent layer!"
1941
  msgstr "Nehmen Sie die erste Schicht"
1942
 
1943
+ #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:203
1944
  msgid "Pick the align point of the parent layer!"
1945
  msgstr ""
1946
 
1947
+ #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:226
1948
  msgid "Pick the align point of the child layer!"
1949
  msgstr ""
1950
 
1951
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:72
1952
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:320
1953
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:110
1954
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:24
1955
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:204
1956
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:275
1957
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:180
1958
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:248
1959
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:203
1960
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:289
1961
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:89
1963
  msgid "Advanced"
1964
  msgstr ""
1965
 
1966
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:76
1967
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:88
1968
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:97
1969
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:109
1970
  #, fuzzy, javascript-format
1971
  #| msgid "Outer"
1972
  msgid "Outer %s"
1973
  msgstr "Äußere"
1974
 
1975
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:79
1976
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:88
1977
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:91
1978
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:100
1979
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:193
1980
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:168
1981
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
1982
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:476
 
1983
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
1984
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
1985
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
1986
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
1987
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:492
1988
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:515
1989
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:88
1990
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:199
1991
  #: SmartSlider3/Storage.php:949
1992
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:102
1993
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:70
1994
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:181
1995
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:229
1996
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:301
1997
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:75
1998
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:75
1999
  msgid "Left"
2000
  msgstr "Links"
2001
 
2002
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:85
2003
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:94
2004
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:97
2005
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:106
2006
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:195
2007
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:470
2008
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:474
 
2009
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
2010
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
2011
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
2012
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
2013
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:490
2014
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:513
2015
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:89
2016
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:200
2017
  #: SmartSlider3/Storage.php:964
2018
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:104
2019
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:72
2020
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:190
2021
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:227
2022
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:302
2023
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:77
2024
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:77
2025
  msgid "Right"
2026
  msgstr "Rechts"
2027
 
2028
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:91
2029
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:94
2030
  msgid "Middle"
2031
  msgstr ""
2032
 
2033
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:100
2034
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:103
2035
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:106
2036
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:109
2037
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:471
2038
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:475
 
2039
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
2040
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
2041
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
2042
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
2043
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:491
2044
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:514
2045
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:224
2046
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:107
2047
  #: SmartSlider3/Storage.php:994
2048
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:140
2049
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:77
2050
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:208
2051
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:228
2052
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:245
2053
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:303
2054
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:339
2055
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:108
2056
  msgid "Bottom"
2057
  msgstr "Unten"
2058
 
2059
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1212
2060
  msgid "Layer(s)"
2061
  msgstr ""
2062
 
2063
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:270
2064
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:94
2065
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:251
2066
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:69
2067
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:94
2068
  msgid "Hide on"
2069
  msgstr ""
2070
 
2071
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:413
2072
  msgid "Rename"
2073
  msgstr ""
2074
 
2075
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:420
2076
  msgid "Show/Hide in editor"
2077
  msgstr ""
2078
 
2079
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:550
2080
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:571
2081
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:35
2082
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabGoPro.php:21
2083
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:140
2084
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:276
2085
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:128
2086
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:184
2087
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:195
2088
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:197
2089
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:179
2090
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:136
2091
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:259
2092
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:163
2093
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:130
 
2094
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:45
2095
  msgid "Animation"
2096
  msgstr "Animation"
2097
 
2098
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/animations.js:107
2099
  msgid "Add animation"
2100
  msgstr "Animation hinzufügen"
2101
 
2102
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/animations.js:117
2103
  msgid "Remove animations"
2104
  msgstr "Animationen entfernen"
2105
 
2106
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/editor/Editor.js:51
2107
  msgid "Layer Animation - Basic"
2108
  msgstr ""
2109
 
2110
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/editor/Editor.js:106
2111
  msgid "Add keyframe"
2112
  msgstr ""
2113
 
2117
  msgid "Loop"
2118
  msgstr "Wiederholend"
2119
 
2120
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/group/keyFrame/KeyFrame.js:189
 
2121
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:358
2122
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:359
2123
  msgid "Special Zero"
2124
  msgstr ""
2125
 
2126
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/group/keyFrame/KeyFrame.js:189
2127
  msgid "Keyframe"
2128
  msgstr ""
2129
 
2130
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/reveal/editor/Editor.js:42
2131
  msgid "Layer Animation - Reveal"
2132
  msgstr ""
2133
 
2134
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:160
2135
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/content.js:120
2136
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:355
2137
  msgid "Open/Close"
2138
  msgstr ""
2139
 
2140
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/content.js:12
2141
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:506
2142
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabContent.php:18
2143
  msgid "Content"
2144
  msgstr "Inhalt"
2145
 
2146
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/contentAbstract.js:410
2147
  msgid "Child layers"
2148
  msgstr ""
2149
 
2150
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/animatedHeading.js:69
2151
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/Assets/animatedHeading.js:21
2152
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:52
2153
  msgid "Animated heading"
2154
  msgstr ""
2155
 
2156
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/highlightedHeading.js:61
2157
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/Assets/highlightedHeading.js:22
2158
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:53
2159
  msgid "Highlighted heading"
2160
  msgstr ""
2161
 
2162
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/splittext-admin.js:105
2163
  #, fuzzy
2164
  #| msgid "No animation"
2165
  msgid "Text animation in"
2166
  msgstr "Keine Animation"
2167
 
2168
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/splittext-admin.js:118
2169
  #, fuzzy
2170
  #| msgid "No animation"
2171
  msgid "Text animation out"
2172
  msgstr "Keine Animation"
2173
 
2174
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:12
2175
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:191
2176
  msgid "Layer"
2177
  msgstr "Schicht"
2178
 
2179
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:15
2180
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:31
2181
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/BlockAddLayer.php:25
2182
  msgid "Row"
2183
  msgstr "Reihe"
2184
 
2185
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:14
2186
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:161
2187
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:655
2188
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:671
2189
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:56
2190
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
2191
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:82
2192
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:259
2193
  msgid "Slide"
2194
  msgstr "Slide"
2195
 
2196
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:177
2197
  msgid "Theme"
2198
  msgstr ""
2199
 
2200
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:257
2201
  #, javascript-format
2202
  msgid "%s or newer required for this feature."
2203
  msgstr ""
2204
 
2205
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:295
2206
  msgid "This section requires activated Pro version."
2207
  msgstr ""
2208
 
2209
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:298
2210
  #, javascript-format
2211
  msgid "This block is not available in the free version. %s"
2212
  msgstr ""
2213
 
2214
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:298
2215
  #: SmartSlider3/Application/Admin/GoPro/ViewGoProIndex.php:24
2216
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:37
2217
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:51
2218
  #: SmartSlider3/Application/Admin/Layout/Block/Core/FreeNeedMore/FreeNeedMore.php:23
2219
+ #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:111
2220
  msgid "Go Pro"
2221
  msgstr ""
2222
 
2223
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:18
2224
  msgid "Editor settings"
2225
  msgstr ""
2226
 
2227
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:46
2228
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:49
2229
  msgid "Upgrade to Pro"
2230
  msgstr ""
2231
 
2232
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:56
2233
  msgid "Guide settings"
2234
  msgstr ""
2235
 
2236
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:125
2237
  msgid "Smart snap"
2238
  msgstr ""
2239
 
2240
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:132
2241
  msgid "Round to 5px"
2242
  msgstr "Runden auf 5px"
2243
 
2244
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:144
2245
  msgid "Ruler"
2246
  msgstr "Lineal"
2247
 
2248
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:148
2249
  #, fuzzy
2250
  #| msgid "Clear cache"
2251
  msgid "Clear guides"
2252
  msgstr "Cache leeren"
2253
 
2254
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:102
2255
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:14
2256
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:13
2257
  msgid "Activate Smart Slider 3 Pro"
2258
  msgstr ""
2259
 
2260
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:108
2261
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:15
2262
  msgid "Activation is required to unlock all features!"
2263
  msgstr ""
2264
 
2265
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:109
2266
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:15
2267
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:16
2268
  msgid ""
2270
  "templates and slide library."
2271
  msgstr ""
2272
 
2273
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:114
2274
  msgid "Skip"
2275
  msgstr "Überspringen"
2276
 
2277
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:125
2278
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:17
2279
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardInfo/DashboardInfo.php:85
2280
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:27
2281
  msgid "Activate"
2282
  msgstr ""
2283
 
2284
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:225
 
 
 
 
 
 
2285
  msgid "Smart Slider 3 activated!"
2286
  msgstr "Smart Slider 3 ist aktiviert!"
2287
 
 
2288
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:165
2289
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:166
2290
  msgid "Laptop"
2291
  msgstr ""
2292
 
2293
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:190
2294
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:198
2295
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:211
 
 
2296
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:65
2297
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:429
2298
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:455
2299
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:480
2300
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:505
2301
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:530
2302
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:220
2303
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:152
2304
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:154
2305
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:152
2306
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:267
2307
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:152
2308
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:254
2309
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:89
2310
  #: SmartSlider3/Widget/Group/Bullet.php:73
2311
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:116
2312
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:175
 
 
2313
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:175
2314
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:178
2315
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:248
2316
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:82
2317
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:222
2318
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:158
2319
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:247
2320
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:34
2321
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:58
2322
  #: SmartSlider3Pro/Widget/Indicator/IndicatorStripe/IndicatorStripe.php:31
2323
  msgid "Width"
2324
  msgstr "Breite"
2325
 
2326
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:226
2327
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:234
2328
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:216
 
 
2329
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:78
2330
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:433
2331
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:459
2334
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:534
2335
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:99
2336
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:105
2337
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:227
2338
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:157
2339
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:159
2340
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:157
2341
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:271
2342
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:157
2343
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:258
2344
  #: SmartSlider3/Widget/Group/Bullet.php:84
2345
  #: SmartSlider3/Widget/Group/Thumbnail.php:77
2346
+ #: SmartSlider3/Widget/Group/Thumbnail.php:99
2347
+ #: SmartSlider3/Widget/Group/Thumbnail.php:121
2348
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:128
2349
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:187
2350
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:181
2351
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:184
2352
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:85
2353
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:163
2354
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:251
2355
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:59
2356
  #: SmartSlider3Pro/Widget/Indicator/IndicatorStripe/IndicatorStripe.php:35
2357
  msgid "Height"
2358
  msgstr "Höhe"
2359
 
2360
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:414
2361
  #, javascript-format
2362
  msgid "Below %s pixels."
2363
  msgstr ""
2364
 
2365
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:417
2366
  #, javascript-format
2367
  msgid "Above %s pixels."
2368
  msgstr ""
2369
 
2370
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:419
2371
  #, javascript-format
2372
  msgid "Between %s and %s pixels."
2373
  msgstr ""
2374
 
2375
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:189
2376
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:171
2377
  #, javascript-format, php-format
2378
  msgid "This slide is hidden on the following devices: %s"
2379
  msgstr ""
2380
 
2381
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:35
2382
  msgid "Data"
2383
  msgstr ""
2384
 
2385
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:334
2386
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:44
2387
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:31
2388
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:29
2389
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsCustomPosts.php:54
2390
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:30
2391
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPostsByIDs.php:18
 
2392
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookAlbums.php:21
2393
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:23
2394
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:20
2408
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:22
2409
  #: SmartSlider3Pro/Generator/Common/YouTube/Sources/YouTubeByPlaylist.php:29
2410
  #: SmartSlider3Pro/Generator/Common/YouTube/Sources/YouTubeBySearch.php:28
 
2411
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:37
2412
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:34
2413
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:30
2423
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:30
2424
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:25
2425
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:26
 
 
2426
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:38
2427
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:37
2428
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:36
 
 
 
 
 
 
2429
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:37
2430
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:31
2431
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:27
2432
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:31
2433
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:37
2434
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:44
 
2435
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:28
2436
  #: SmartSlider3Pro/Generator/WordPress/BestWebSoft/Sources/BestWebSoftGallery.php:19
2437
  #: SmartSlider3Pro/Generator/WordPress/Custom/Sources/CustomCustom.php:26
2446
  msgid "Filter"
2447
  msgstr "Filter"
2448
 
2449
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:335
2450
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:344
2451
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:112
2452
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:468
2453
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:55
2454
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:75
2455
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:216
2456
  msgid "No"
2457
  msgstr "Nein"
2458
 
2459
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:336
2460
  msgid "Clean HTML"
2461
  msgstr "HTML bereinigen"
2462
 
2463
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:337
2464
  msgid "Remove HTML"
2465
  msgstr "HTML entfernen"
2466
 
2467
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:343
2468
  msgid "Split by Chars"
2469
  msgstr ""
2470
 
2471
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:345
2472
  msgid "Strict"
2473
  msgstr "Exakt"
2474
 
2475
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:346
2476
  msgid "Respect words"
2477
  msgstr "Worte beachten"
2478
 
2479
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:371
2480
  msgid "Find image"
2481
  msgstr "Bild finden"
2482
 
2483
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:384
2484
  msgid "Find link"
2485
  msgstr "Link finden"
2486
 
2487
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:397
2488
  msgid "Remove links"
2489
  msgstr "Entferne Links"
2490
 
2491
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:402
2492
  msgid "Remove line breaks"
2493
  msgstr ""
2494
 
2495
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:410
2496
  msgid "Result"
2497
  msgstr "Ergebnis"
2498
 
2499
+ #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2500
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:169
2501
  msgid "Change slider type"
2502
  msgstr ""
2503
 
2504
+ #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:48
2505
  msgid ""
2506
  "Changing your slider type is irreversible. After changing your slider type, "
2507
  "<b>you will lose all slider type related settings</b>."
2508
  msgstr ""
2509
 
2510
+ #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:52
2511
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:176
2512
  msgid "Slider type"
2513
  msgstr ""
2514
 
2515
+ #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:55
2516
  msgid "Convert"
2517
  msgstr ""
2518
 
2519
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:40
2520
  msgid "What do you want to create today?"
2521
  msgstr ""
2522
 
2523
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:43
2524
  msgid ""
2525
  "Use our powerful visual editor, or simply import one of our existing "
2526
  "template."
2527
  msgstr ""
2528
 
2529
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:70
2530
  msgid "Create a New Project"
2531
  msgstr ""
2532
 
2533
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:73
2534
  msgid ""
2535
  "Start a new project from scratch and build exactly what you’ve imagined. You "
2536
  "can easily customize every pixels and create anything with layers."
2537
  msgstr ""
2538
 
2539
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:94
2540
  msgid "Start with a Template"
2541
  msgstr ""
2542
 
2543
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:97
2544
  msgid ""
2545
  "Start with a template and make it your own with the innovative drag and drop "
2546
  "interface. You can choose from hundreds of premade templates."
2547
  msgstr ""
2548
 
2549
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:101
2550
  msgid "or import your own files"
2551
  msgstr ""
2552
 
2553
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:118
2554
  msgid "Create new project"
2555
  msgstr ""
2556
 
2557
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:124
2558
  msgid "Project type"
2559
  msgstr ""
2560
 
2561
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:127
2562
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
2563
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:81
2564
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
2565
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:53
2566
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:183
2567
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:96
2568
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:252
2569
  msgid "Slider"
2570
  msgstr "Slider"
2571
 
2572
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:131
2573
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:26
2574
  msgid "Block"
2575
  msgstr "Block"
2576
 
2577
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:163
2578
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:224
2579
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:232
2580
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:18
2581
  msgid "Full page"
2582
  msgstr "Seite vollständig"
2583
 
2584
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:183
2585
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:28
2586
  msgid "Carousel"
2587
  msgstr "Karussell"
2588
 
2589
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:187
2590
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:29
2591
  msgid "Showcase"
2592
  msgstr "Showcase"
2593
 
2594
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:200
2595
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:232
2596
  msgid "Pro"
2597
  msgstr ""
2598
 
2599
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:203
2600
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:47
2601
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:34
2602
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:57
2603
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:33
2604
  msgid "Settings"
2605
  msgstr "Einstellungen"
2606
 
2607
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:208
2608
  msgid "My project"
2609
  msgstr ""
2610
 
2611
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:222
2612
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:15
2613
  msgid "Boxed"
2614
  msgstr ""
2615
 
2616
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:223
2617
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:79
2618
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:151
2619
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:164
2620
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:17
2621
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:91
2622
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:148
2623
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:247
2624
  msgid "Full width"
2625
  msgstr "volle Breite"
2626
 
2627
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:227
2628
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:376
2629
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:298
2630
  msgid "Layout"
2631
  msgstr ""
2632
 
2633
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:236
2634
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:45
2635
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:46
2636
  msgid "Slide width"
2637
  msgstr ""
2638
 
2639
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:242
2640
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:55
2641
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:56
2642
  msgid "Slide height"
2643
  msgstr ""
2644
 
2645
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:250
2646
  msgid "Create"
2647
  msgstr "erstellen"
2648
 
2649
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:376
2650
  msgid "Join The Smart Slider 3 Community"
2651
  msgstr ""
2652
 
2653
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:378
2654
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardNewsletter.php:22
2655
  msgid ""
2656
  "Join more than 120,000 subscribers and get access to the latest slider "
2658
  "inbox."
2659
  msgstr ""
2660
 
2661
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:392
2662
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardNewsletter.php:32
2663
  msgid "Subscribe"
2664
  msgstr ""
2665
 
2666
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:296
2667
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:71
2668
  #, fuzzy
2669
  #| msgid "Changelog"
2670
  msgid "Change group"
2671
  msgstr "Veränderungslogbuch"
2672
 
2673
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:309
2674
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/GeneratorGroupEasysocial.php:35
2675
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:29
2676
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialGroups.php:23
 
 
 
2677
  msgid "Groups"
2678
  msgstr "Gruppen"
2679
 
2680
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:313
2681
  msgid "Set"
2682
  msgstr ""
2683
 
2684
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:67
2685
  msgid "Up"
2686
  msgstr ""
2687
 
2688
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:77
2689
  msgid "Insert group"
2690
  msgstr ""
2691
 
2692
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:94
2693
+ #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:67
2694
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:134
2695
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
2696
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:43
2697
  msgid "Group"
2698
  msgstr "Gruppe"
2699
 
2700
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:87
2701
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:134
2702
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:207
2703
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:158
2704
  msgid "Move to trash"
2705
  msgstr ""
2706
 
2707
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:30
2708
  msgid "empty the trash"
2709
  msgstr ""
2710
 
2711
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:119
2712
  msgid "Delete permanently"
2713
  msgstr ""
2714
 
2715
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:165
2716
  #, fuzzy
2717
  #| msgid "Delete slider"
2718
  msgid "delete this slider"
2719
  msgstr "Slider löschen"
2720
 
2721
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:69
2722
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:61
2723
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:47
2724
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:199
2725
  msgid "Publish"
2726
  msgstr "Veröffentlichen"
2727
 
2728
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:76
2729
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:48
2730
  msgid "Unpublish"
2731
  msgstr "Sperren"
2732
 
2733
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:85
2734
  msgid "Edit generator"
2735
  msgstr "Generator editieren"
2736
 
2737
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:94
2738
  msgid "Set as first"
2739
  msgstr ""
2740
 
2741
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:105
2742
  #, fuzzy
2743
  #| msgid "Delete slider"
2744
  msgid "Convert to slide"
2745
  msgstr "Slider löschen"
2746
 
2747
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:254
2748
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:495
2749
  msgid "Copy slide to"
2750
  msgstr ""
2751
 
2752
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:271
2753
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:305
2754
  msgid "Add post"
2755
  msgstr ""
2756
 
2757
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:311
2758
  msgid "Please select a Post first!"
2759
  msgstr ""
2760
 
2761
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:457
2762
  #, fuzzy
2763
  #| msgid "Delete slider"
2764
  msgid "delete these slides"
2765
  msgstr "Slider löschen"
2766
 
2767
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:457
2768
  #, fuzzy
2769
  #| msgid "Delete slider"
2770
  msgid "delete this slide"
2779
  msgstr ""
2780
 
2781
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:60
2782
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:31
2783
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:70
2784
  msgid "Shape divider"
2785
  msgstr ""
2786
 
2857
 
2858
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:114
2859
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:43
2860
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:141
2861
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:199
2862
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:260
2863
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:35
2864
  msgid "Animate"
2866
 
2867
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:115
2868
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:52
2869
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:197
2870
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:477
2871
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:86
2872
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:57
2873
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:132
2874
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:78
2875
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:179
2876
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:217
2877
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:363
 
2878
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:83
2879
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:83
2880
  msgid "Horizontal"
2895
 
2896
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:122
2897
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:53
2898
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:202
2899
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:478
2900
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:104
2901
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:58
2902
  #: SmartSlider3/Storage.php:2242
2903
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:133
2904
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:79
2905
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:180
2906
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:364
 
 
2907
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:84
2908
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:84
2909
  msgid "Vertical"
2911
 
2912
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:125
2913
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:126
2914
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:302
2915
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:151
2916
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:209
2917
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:72
2918
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:78
2919
  msgid "Scroll"
2941
  msgstr ""
2942
 
2943
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:140
2944
+ #: SmartSlider3/Storage.php:4247
2945
  msgid "To bottom"
2946
  msgstr "nach Unten"
2947
 
2948
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:141
2949
+ #: SmartSlider3/Storage.php:4227
2950
  msgid "To top"
2951
  msgstr "nach Oben"
2952
 
2953
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:48
2954
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:53
2955
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:168
2956
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:169
2957
  #: SmartSlider3/Widget/Group/Autoplay.php:35
2958
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:127
2959
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:174
2960
  msgid "Autoplay"
2961
  msgstr "Autoplay"
2962
 
2963
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:65
2964
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:122
2965
  msgid "Slide duration"
2966
  msgstr "Slidedauer"
2967
 
3023
  msgstr ""
3024
 
3025
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:38
3026
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:225
3027
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:149
3028
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:217
3029
  msgid "Controls"
3030
  msgstr "Bedienelemente"
3031
 
3135
 
3136
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:103
3137
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:104
3138
+ msgid "Delayed (for lightbox/tabs)"
3139
+ msgstr "Verzögerung (für Tabs und Lightbox)"
3140
+
3141
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:105
3142
+ msgid ""
3143
+ "Delays the loading of the slider until its container gets visible. Useful "
3144
+ "when you display the slider in a lightbox or tab."
3145
+ msgstr ""
3146
+
3147
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:111
3148
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:112
3149
  msgid "Slider CSS classes"
3150
  msgstr ""
3151
 
3152
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:113
3153
  msgid "You can put custom CSS classes to the slider's container."
3154
  msgstr ""
3155
 
3156
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:124
3157
  msgid "JavaScript callbacks"
3158
  msgstr "JavaScribt Callbacks"
3159
 
3160
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:131
3161
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:132
3162
  msgid "Post IDs"
3163
  msgstr ""
3164
 
3165
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:131
3166
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:132
3167
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:43
3168
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:50
3169
  msgid "one per line"
3170
  msgstr ""
3171
 
3172
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:133
3173
  msgid "The cache of the posts with the given ID will be cleared upon save."
3174
  msgstr ""
3175
 
3176
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:76
3177
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:77
3178
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:64
3179
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:82
3180
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:216
3181
  msgid "Thumbnail"
3182
  msgstr "Thumbnail"
3187
 
3188
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:81
3189
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:83
3190
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:70
3191
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:72
3192
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:97
3193
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:99
3194
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:86
3195
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:88
3196
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:53
3197
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:55
3198
  msgid "ARIA label"
3262
  msgid "Slider design"
3263
  msgstr ""
3264
 
3265
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:145
3266
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:322
3267
+ msgid "Slider background image"
3268
+ msgstr ""
3269
+
3270
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:153
3271
+ msgid "Fixed"
3272
+ msgstr "feste"
3273
+
3274
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:166
3275
+ msgid "Background video"
3276
+ msgstr ""
3277
+
3278
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:173
3279
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:236
3280
+ msgid "Muted"
3281
+ msgstr "Ausgeschaltet"
3282
+
3283
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:174
3284
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:237
3285
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:209
3286
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:213
3287
+ #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:132
3288
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:187
3289
+ msgctxt "Video/Audio play"
3290
+ msgid "Loop"
3291
+ msgstr ""
3292
+
3293
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:175
3294
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:243
3295
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:290
3296
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:130
3297
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:210
3298
+ msgid "Fill mode"
3299
+ msgstr "Füllmodus"
3300
+
3301
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:190
3302
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:69
3303
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:74
3304
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:154
3305
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:152
3306
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:100
3307
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:68
3308
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:73
3310
  msgid "Align"
3311
  msgstr "Ausrichtung"
3312
 
3313
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:202
3314
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:204
3315
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:109
3316
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:113
3317
  msgid "Margin"
3318
  msgstr "Rand"
3319
 
3320
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:205
3321
  msgid "Puts a fix margin around your slider."
3322
  msgstr ""
3323
 
3324
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:215
 
3325
  msgid "Perspective"
3326
  msgstr "Perspective"
3327
 
3328
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:51
3329
+ #: SmartSlider3/Renderable/Item/Image/ItemImage.php:172
3330
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:256
3331
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:346
3332
+ #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:161
3333
+ msgid "Optimize"
3334
+ msgstr "Optimiere"
3335
+
3336
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:56
3337
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:219
3338
  msgid "Loading"
3339
  msgstr ""
3340
 
3341
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:62
3342
  msgid "Instant"
3343
  msgstr ""
3344
 
3345
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:63
3346
  msgid "After page loaded"
3347
  msgstr ""
3348
 
3349
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:64
3350
  msgid "After delay"
3351
  msgstr ""
3352
 
3353
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:76
3354
+ #, fuzzy
3355
+ #| msgid "List type"
3356
+ msgid "Loading type"
3357
+ msgstr "Listentyp"
3358
+
3359
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:77
3360
+ msgid ""
3361
+ "If your slider is above the fold, you can load it immediately. Otherwise, "
3362
+ "you can load it only after the page has loaded."
3363
+ msgstr ""
3364
+
3365
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:81
3366
  msgid "Load delay"
3367
  msgstr ""
3368
 
3369
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:86
3370
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:90
3371
  msgid "Play when visible"
3372
  msgstr "Abspielen wenn sichtbar"
3373
 
3374
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:91
3375
  msgid ""
3376
  "Makes sure that the autoplay and layer animations only start when your "
3377
  "slider is visible."
3378
  msgstr ""
3379
 
3380
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:93
3381
  msgid "At"
3382
  msgstr ""
3383
 
3384
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:101
3385
+ #, fuzzy
3386
+ #| msgid "Tab background"
3387
+ msgid "Slide background images"
3388
+ msgstr "Tab Hintergrund"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3389
 
3390
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:111
3391
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:127
3392
  msgid "Loading mode"
3393
  msgstr ""
3394
 
3395
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:114
3396
  msgid "Delayed loading"
3397
  msgstr ""
3398
 
3399
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:115
3400
  msgid "Lazy loading"
3401
  msgstr ""
3402
 
3403
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:128
3404
  msgid ""
3405
  "You can speed up your site's loading by delaying the slide background images."
3406
  msgstr ""
3407
 
3408
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:135
3409
  msgid "Load neighbor"
3410
  msgstr "Nächste laden"
3411
 
3412
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:136
3413
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:104
3414
  #: SmartSlider3/Application/Model/ModelGenerator.php:401
 
3415
  msgctxt "Unit"
3416
  msgid "slides"
3417
  msgstr ""
3418
 
3419
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:151
3420
+ #, php-format
3421
+ msgid ""
3422
+ "Convert to WebP and image resizing require a lot of memory. Lift the memory "
3423
+ "limit%s if you get a blank page."
3424
  msgstr ""
3425
 
3426
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:157
3427
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:264
3428
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:327
3429
+ #, fuzzy
3430
+ #| msgid "Delete slider"
3431
+ msgid "Convert to WebP"
3432
+ msgstr "Slider löschen"
3433
+
3434
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:168
3435
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:186
3436
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:280
3437
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:345
3438
+ msgid "Resize"
3439
  msgstr ""
3440
 
3441
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:176
3442
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:272
3443
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:336
3444
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:252
3445
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:260
3446
  msgid "Quality"
3447
  msgstr ""
3448
 
3449
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:198
3450
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:289
3451
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:355
3452
+ #, fuzzy
3453
+ #| msgid "Default"
3454
+ msgid "Default width"
3455
+ msgstr "Default"
3456
 
3457
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:204
3458
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:293
3459
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:361
3460
+ #, fuzzy
3461
+ #| msgid "Medium Light"
3462
+ msgid "Medium width"
3463
+ msgstr "Mittel Hell"
3464
 
3465
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:209
3466
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:366
3467
+ #, fuzzy
3468
+ #| msgid "Medium Light"
3469
+ msgid "Medium height"
3470
+ msgstr "Mittel Hell"
3471
 
3472
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:214
3473
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:297
3474
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:371
3475
+ #, fuzzy
3476
+ #| msgid "Full width"
3477
+ msgid "Small width"
3478
+ msgstr "volle Breite"
3479
 
3480
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:219
3481
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:376
3482
+ #, fuzzy
3483
+ #| msgid "Small Light"
3484
+ msgid "Small height"
3485
+ msgstr "Klein Hell"
3486
+
3487
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:224
3488
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:301
3489
+ msgid "Retina"
3490
  msgstr ""
3491
 
3492
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:229
3493
+ #, fuzzy
3494
+ #| msgid "Thumbnail"
3495
+ msgid "Resize Thumbnail"
3496
+ msgstr "Thumbnail"
3497
+
3498
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:237
3499
+ #, fuzzy
3500
+ #| msgid "Thumbnail"
3501
+ msgid "Thumbnail Quality"
3502
+ msgstr "Thumbnail"
3503
+
3504
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:245
3505
+ msgid "Thumbnail width"
3506
  msgstr ""
3507
 
3508
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:250
3509
+ msgid "Thumbnail height"
3510
+ msgstr ""
3511
 
3512
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:261
3513
+ #, fuzzy
3514
+ #| msgid "Layer animations"
3515
+ msgid "Layer images"
3516
+ msgstr "Layer Animationen"
3517
 
3518
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:308
3519
  msgid "Base64 embed"
3520
  msgstr ""
3521
 
3522
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:309
3523
  msgid "Embeds the layer images to the page source, reducing the requests."
3524
  msgstr ""
3525
 
3526
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:311
3527
  msgid "Max file size"
3528
  msgstr ""
3529
 
3530
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:387
3531
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:395
3532
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:80
3533
  #: SmartSlider3/Storage.php:522
3534
  msgid "Other"
3535
  msgstr "Andere"
3536
 
3537
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:399
3538
  msgid "JetPack Photon image optimizer"
3539
  msgstr ""
3540
 
3541
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:404
3542
  msgid "Background video on mobile"
3543
  msgstr ""
3544
 
3566
  msgstr "Max"
3567
 
3568
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:248
3569
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:159
3570
  msgid "Breakpoints"
3571
  msgstr ""
3572
 
3573
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:311
3574
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:162
3575
  msgid ""
3576
  "Breakpoints define the browser width in pixel when the slider switches to a "
3577
  "different device."
3579
 
3580
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:313
3581
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:400
3582
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:84
3583
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFonts.php:46
3584
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:163
3585
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:211
3586
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:231
3587
  #: SmartSlider3/Application/Admin/Sliders/ViewSlidersImport.php:86
 
3588
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:120
3589
  #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:104
3590
  #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:96
3619
  msgstr ""
3620
 
3621
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:41
3622
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:103
3623
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:154
3624
  #: SmartSlider3/Application/Model/ModelGenerator.php:400
3625
  msgid "Slides"
3626
  msgstr "Slides"
3644
  msgid "Randomize"
3645
  msgstr "Zufällig"
3646
 
3647
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:70
3648
+ #, fuzzy
3649
+ #| msgid "Randomize"
3650
+ msgid "Randomize slides"
3651
+ msgstr "Zufällig"
3652
+
3653
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:71
3654
  msgid "Randomize first"
3655
  msgstr ""
3656
 
3657
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:72
3658
  msgid "Cache support"
3659
  msgstr ""
3660
 
3661
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:73
3662
  msgid "Cache variations"
3663
  msgstr ""
3664
 
3665
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:84
3666
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:85
3667
  msgid "Reverse"
3668
  msgstr ""
3669
 
3670
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:86
3671
  msgid "You can make your slides appear in the slider in a reversed order."
3672
  msgstr ""
3673
 
3674
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:89
3675
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:91
3676
  msgid "Max count"
3677
  msgstr ""
3678
 
3679
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:92
3680
  msgid ""
3681
  "You can limit how many slides you want to show from your slider. It's best "
3682
  "used with the Randomize feature, to improve the experience."
3683
  msgstr ""
3684
 
3685
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:95
3686
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:96
3687
  msgid "Maintain session"
3688
  msgstr ""
3689
 
3690
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:97
3691
  msgid ""
3692
  "The slider continues from the last viewed slide when the visitor comes back "
3693
  "to the page."
3694
  msgstr ""
3695
 
3696
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:102
3697
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:103
3698
  msgid "Backgrounds in lightbox"
3699
  msgstr ""
3700
 
3701
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:104
3702
  msgid ""
3703
  "Creates a lightbox from your slide background images. This feature only "
3704
  "works if all slides have background images."
3705
  msgstr ""
3706
 
3707
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:110
3708
  msgid "Show label"
3709
  msgstr ""
3710
 
3711
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:113
3712
  msgid "Only slide name"
3713
  msgstr ""
3714
 
3715
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:114
3716
  msgid "Slide name and description"
3717
  msgstr ""
3718
 
3719
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:125
3720
  msgid "Background parallax"
3721
  msgstr ""
3722
 
3723
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:134
3724
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:67
3725
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:173
3726
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:167
3727
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:352
3728
  msgid "Strength"
3729
  msgstr "Intensität"
3730
 
3731
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:136
3732
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:70
3733
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:176
3734
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:170
3735
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:355
3736
  msgid "Super soft"
3737
  msgstr "Superweich"
3738
 
3739
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:137
3740
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:71
3741
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:177
3742
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:171
3743
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:356
3744
  msgid "Soft"
3745
  msgstr "Weich"
3746
 
3747
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:139
3748
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:73
3749
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:179
3750
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:173
3751
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:358
3752
  msgid "Strong"
3753
  msgstr "Stark"
3754
 
3755
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:140
3756
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:74
3757
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:180
3758
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:174
3759
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:359
3760
  msgid "Super strong"
3761
  msgstr "Superstark"
3762
 
3781
  msgid "No records found for the filter"
3782
  msgstr ""
3783
 
3784
+ #: SmartSlider3/Application/Admin/Generator/ControllerGenerator.php:212
3785
  msgid "Authentication successful."
3786
  msgstr "Legitimation erfolgreich"
3787
 
3788
+ #: SmartSlider3/Application/Admin/Generator/Template/CreateStep1Groups.php:62
3789
  msgid "Not installed"
3790
  msgstr "nicht installiert"
3791
 
3792
+ #: SmartSlider3/Application/Admin/Generator/Template/CreateStep1Groups.php:70
3793
  msgid "Visit"
3794
  msgstr ""
3795
 
3814
 
3815
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:58
3816
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:84
3817
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:102
3818
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:121
3819
  msgid "Generator"
3820
  msgstr "Generator"
3821
 
3966
  msgstr ""
3967
 
3968
  #: SmartSlider3/Application/Admin/Help/ViewHelpIndex.php:28
3969
+ #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:105
3970
  #, fuzzy
3971
  #| msgid "Mouse enter"
3972
  msgid "Help center"
4056
  msgid "Why upgrade to Smart Slider 3 Pro?"
4057
  msgstr ""
4058
 
4059
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:24
4060
+ msgid "120+ slider templates"
4061
  msgstr ""
4062
 
4063
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:28
4064
+ msgid "Full slide library access"
4065
  msgstr ""
4066
 
4067
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:32
4068
+ msgid "20 new layers"
4069
  msgstr ""
4070
 
4071
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:36
4072
+ msgid "Extra advanced options"
4073
  msgstr ""
4074
 
4075
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:40
4076
+ msgid "New animations & effects"
4077
  msgstr ""
4078
 
4079
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:44
4080
  msgid "Lifetime update & support"
4081
  msgstr ""
4082
 
4103
 
4104
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:129
4105
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:62
4106
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:150
4107
  msgid "Absolute"
4108
  msgstr ""
4109
 
4114
  msgid "Basic"
4115
  msgstr ""
4116
 
4117
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:42
4118
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:46
4119
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:37
4120
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:41
4121
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:46
4122
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:50
4123
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:334
4124
  msgid "Inner align"
4125
  msgstr "Innere Ausrichtung"
4126
 
4127
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:47
4128
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:42
4129
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:51
4130
  msgid "Positions the layers inside horizontally."
4131
  msgstr ""
4132
 
4133
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:50
4134
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:54
4135
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:160
4136
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:44
4137
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:48
4138
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:241
4139
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:247
4140
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:335
4141
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:341
4142
  msgid "Vertical align"
4143
  msgstr "Vertikal ausgerichtet"
4144
 
4145
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:55
4146
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:49
4147
  msgid "Positions the layers inside vertically."
4148
  msgstr ""
4149
 
4150
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:68
4151
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:95
4152
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:84
4153
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:113
4154
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:55
4155
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:165
4156
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:178
4157
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:143
4158
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:177
4159
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:196
4160
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:188
4161
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:227
4162
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:125
4163
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:149
4164
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:289
4165
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:171
4166
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:146
4167
  msgid "Target window"
4168
  msgstr ""
4169
 
4170
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:89
4171
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:90
4172
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:67
4173
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:69
4174
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:117
4175
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:118
4176
+ msgid "Background image"
4177
+ msgstr ""
4178
+
4179
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:100
4180
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:101
4181
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:79
4182
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:80
4183
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:128
4184
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:129
4185
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:273
4186
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:123
4187
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:124
4188
  msgid "Focus"
4189
  msgstr "Focus"
4190
 
4191
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:102
4192
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:81
4193
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:130
4194
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:125
4195
  msgid ""
4196
  "You can set the starting position of a background image. This makes sure "
4197
  "that the selected part will always remain visible, so you should pick the "
4198
  "most important part."
4199
  msgstr ""
4200
 
4201
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:114
4202
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:137
4203
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:141
4204
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:184
4205
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:41
4206
  msgid "Background"
4207
  msgstr "Hintergrund"
4208
 
4209
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:123
4210
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:101
4211
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:150
4212
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:314
4213
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:116
4214
  msgid "Gradient"
4215
  msgstr ""
4216
 
4217
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:129
4218
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:107
4219
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:156
4220
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:320
4221
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:121
4222
  msgid "Color end"
4223
  msgstr ""
4224
 
4225
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:201
4226
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:90
4227
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:167
4228
  msgid "Max width"
4229
  msgstr ""
4230
 
4231
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:53
4232
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:59
4233
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:64
4234
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:141
4235
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:147
4236
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:150
4237
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:93
4238
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:111
4239
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:110
4240
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:41
4241
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:36
4242
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:55
4243
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:33
4244
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:40
4245
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:39
4266
  msgid "With margins you can create distance between your layers."
4267
  msgstr ""
4268
 
4269
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:182
4270
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:234
4271
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:242
4272
  msgid "Responsive"
4273
  msgstr "Responsive"
4274
 
4275
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:187
4276
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:193
4277
  msgid "Linked to"
4278
  msgstr ""
4279
 
4280
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:194
4281
  msgid ""
4282
  "You can link your layer to another layer on the same level. This way your "
4283
  "layer won't be positioned to the slide, but the other layer."
4284
  msgstr ""
4285
 
4286
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:244
4287
  msgid "Hide when variable empty"
4288
  msgstr ""
4289
 
4290
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:253
4291
  msgid "Text scale"
4292
  msgstr ""
4293
 
4294
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:264
4295
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:176
 
 
 
 
 
 
 
 
 
 
 
4296
  msgid "Device specific settings"
4297
  msgstr ""
4298
 
4299
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:264
4300
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:176
4301
  msgid "Clear"
4302
  msgstr ""
4303
 
4304
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:266
4305
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:178
4306
  msgid "Erases all device specific changes you made on the current device."
4307
  msgstr ""
4308
 
4309
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:275
4310
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:70
4311
  msgid "Effect"
4312
  msgstr ""
4313
 
4314
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:278
4315
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:279
4316
  msgid "Parallax"
4317
  msgstr "Parallax"
4318
 
4319
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:280
4320
  msgid "More parallax options in slider settings -> Layer animations tab."
4321
  msgstr ""
4322
 
4323
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:298
4324
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:305
 
4325
  msgid "Crop"
4326
  msgstr "Stutzen"
4327
 
4328
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:303
4329
  msgid "Mask"
4330
  msgstr "Maske"
4331
 
4332
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:306
4333
  msgid "If your content is larger than the layer, you can crop it to fit."
4334
  msgstr ""
4335
 
4336
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:309
4337
  msgid "Rotation"
4338
  msgstr ""
4339
 
4340
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:326
4341
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:328
4342
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:205
4343
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:207
4344
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:281
4346
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:182
4347
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
4348
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:190
4349
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:270
4350
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:272
4351
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:311
4352
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:313
4353
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:196
4355
  msgid "CSS Class"
4356
  msgstr "CSS Klasse"
4357
 
4358
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:329
4359
  msgid "You can add a custom CSS class on the layer container."
4360
  msgstr ""
4361
 
4367
 
4368
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:118
4369
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:185
4370
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:226
4371
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:154
4372
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:190
4373
  msgid "Spacing"
4374
  msgstr ""
4387
  "Need to change the font size device specifically? Use the Text scale option."
4388
  msgstr ""
4389
 
4390
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:37
4391
  msgid "Columns"
4392
  msgstr ""
4393
 
4394
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:54
4395
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:63
4396
  msgid "Gutter"
4397
  msgstr ""
4398
 
4399
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:64
4400
  msgid "Creates space between the columns"
4401
  msgstr ""
4402
 
4403
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:67
4404
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:75
4405
  msgid "Wrap after"
4406
  msgstr ""
4407
 
4408
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:76
4409
  msgid "Breaks the columns to the given amount of rows."
4410
  msgstr ""
4411
 
4412
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:82
4413
  msgid "Makes the row fill the available vertical space"
4414
  msgstr ""
4415
 
4416
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
4417
+ #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:92
4418
+ #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:31
4419
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:79
4420
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/Assets/Admin/arrow.js:12
4421
+ msgid "Slide title"
4422
+ msgstr ""
4423
+
4424
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:60
4425
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:96
4426
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:35
4427
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:67
4428
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:107
4429
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:78
4430
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:173
4431
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
4432
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:172
4433
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:269
4434
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:273
4435
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:50
4436
  msgid "Description"
4437
  msgstr "Beschreibung"
4438
 
4439
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:113
4440
  msgid "Custom lightbox image"
4441
  msgstr ""
4442
 
4443
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:118
4444
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/SlideBox.php:72
 
4445
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:56
4446
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:73
4447
  msgid "Published"
4448
  msgstr "Veröffentlicht"
4449
 
4450
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:130
4451
  msgid "Publish on"
4452
  msgstr ""
4453
 
4454
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:131
4455
  msgid "Unpublish on"
4456
  msgstr ""
4457
 
4458
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:136
4459
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:141
4460
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:105
4461
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:47
4462
  msgid "Thumbnail type"
4463
  msgstr ""
4464
 
4465
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:139
4466
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:108
4467
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:50
4468
  #: SmartSlider3/Form/Element/BackgroundImage.php:30
4469
+ #: SmartSlider3Pro/Renderable/Item/Video/Assets/video.js:21
4470
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:37
4471
  msgid "Video"
4472
  msgstr "Video"
4473
 
4474
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:142
4475
  msgid ""
4476
  "If you have a video on your slide, you can put a play icon on the thumbnail "
4477
  "image to indicate that."
4478
  msgstr ""
4479
 
4480
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:222
4481
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:166
4482
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:167
4483
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:172
4484
  #, php-format
4485
  msgid ""
4486
  "Video autoplaying has a lot of limitations made by browsers. %1$sLearn about "
4487
  "them.%2$s"
4488
  msgstr ""
4489
 
4490
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:224
4491
  #, fuzzy
4492
  #| msgid "Tab background"
4493
  msgid "Slide background video"
4494
  msgstr "Tab Hintergrund"
4495
 
4496
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:238
4497
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:239
4498
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:222
4499
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:223
4500
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:219
4501
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4502
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:142
4503
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:143
4504
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:203
4505
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:204
4506
  msgid "Restart on slide change"
4507
  msgstr ""
4508
 
4509
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:240
4510
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:224
4511
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:221
4512
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:205
4513
  msgid "Starts the video from the beginning when the slide is viewed again."
4514
  msgstr ""
4515
 
4516
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:267
4517
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:271
4518
+ #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:100
4519
+ #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:39
4520
+ #, fuzzy
4521
+ #| msgid "Tab background"
4522
+ msgid "Slide background"
4523
+ msgstr "Tab Hintergrund"
4524
 
4525
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:268
4526
  msgid ""
4527
  "Select a background image for the slide. By clicking the small screen icon, "
4528
  "you can pick different images for different devices."
4529
  msgstr ""
4530
 
4531
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:288
4532
  #, php-format
4533
  msgid ""
4534
  "Please read %1$sour detailed guide%2$s about setting your own slide "
4535
  "background correctly."
4536
  msgstr ""
4537
 
4538
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:301
4539
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:203
4540
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:100
4541
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:1070
4542
  msgid "Blur"
4543
  msgstr ""
4544
 
4545
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:324
4546
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:325
4547
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:122
4548
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:87
4549
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:87
4550
  msgid "Overlay"
4551
  msgstr "Overlay"
4552
 
4553
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:326
4554
  msgid "Puts the color in front of the image."
4555
  msgstr ""
4556
 
4557
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:330
4558
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:163
4559
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:251
4560
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:153
4561
  msgid "SEO"
4562
  msgstr ""
4563
 
4564
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:331
4565
  #, fuzzy
4566
  #| msgid "Image"
4567
  msgid "Image alt"
4568
  msgstr "Bild"
4569
 
4570
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:334
4571
  #, fuzzy
4572
  #| msgid "Image mode"
4573
  msgid "Image title"
4588
  msgid "Events"
4589
  msgstr ""
4590
 
4591
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:69
4592
  msgid "Plays in when"
4593
  msgstr ""
4594
 
4595
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:74
4596
  msgid "Plays out when"
4597
  msgstr ""
4598
 
4599
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:82
4600
  msgid "Plays loop when"
4601
  msgstr ""
4602
 
4603
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:87
4604
  msgid "Pauses loop when"
4605
  msgstr ""
4606
 
4607
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:92
4608
  msgid "Stops loop when"
4609
  msgstr ""
4610
 
4611
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:97
4612
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:102
4613
  msgid "Repeatable"
4614
  msgstr ""
4615
 
4616
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:103
4617
  msgid "Allows the layer animations to play more than once."
4618
  msgstr ""
4619
 
4620
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:106
4621
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:372
4622
  msgid "Start delay"
4623
  msgstr ""
4624
 
4625
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:120
4626
  msgid "End delay"
4627
  msgstr ""
4628
 
 
4629
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:133
4630
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:134
4631
  msgid "Repeat loop only"
4632
  msgstr ""
4633
 
4634
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:135
4635
  msgid "Allows the stopped loop to start again."
4636
  msgstr ""
4637
 
4638
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:138
4639
  msgid "Trigger custom event on"
4640
  msgstr ""
4641
 
4642
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:140
4643
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:41
4644
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:60
4645
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:148
4646
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:181
4647
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:44
4649
  msgid "Click"
4650
  msgstr "Klick"
4651
 
4652
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:143
4653
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:182
4654
  msgid "Mouse enter"
4655
  msgstr "Mauseingabe"
4656
 
4657
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:146
4658
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:183
4659
  msgid "Mouse leave"
4660
  msgstr "Maus verlassen"
4661
 
4662
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:149
4663
  msgid "Media started"
4664
  msgstr "Media gestartet"
4665
 
4666
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:152
4667
  msgid "Media paused"
4668
  msgstr ""
4669
 
4670
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:155
4671
  msgid "Media stopped"
4672
  msgstr ""
4673
 
4674
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:169
4675
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:440
4676
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:82
4677
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:40
4678
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:271
4679
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:243
4680
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:348
4681
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:72
4682
  msgid "Duration"
4683
  msgstr "Dauer"
4684
 
4685
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:181
4686
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:452
4687
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:214
4688
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:240
4689
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:94
4690
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:229
4691
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:185
4692
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:142
4693
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:267
4694
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:169
4695
  msgid "Delay"
4696
  msgstr "Verzögerung"
4697
 
4698
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:194
4699
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:498
4700
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:504
4701
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:99
4702
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:253
4703
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:359
 
4704
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:97
4705
  msgid "Easing"
4706
  msgstr "Lockerung"
4707
 
4708
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:210
4709
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:76
4710
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:151
4711
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:33
4712
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:34
4713
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:152
4714
  msgid "Offset"
4715
  msgstr "Offset"
4716
 
4717
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:258
 
4718
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
4719
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
4720
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
4722
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
4723
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
4724
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
4725
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
4726
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:49
4727
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:254
4728
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:572
4729
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:614
4730
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:656
4731
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:184
4732
  msgid "Rotate"
4733
  msgstr "Drehen"
4734
 
4735
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:296
4736
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:39
4737
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:232
4738
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:233
4739
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:413
4740
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:138
4741
  msgid "Scale"
4742
  msgstr "Rahmen"
4743
 
4744
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:323
 
4745
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
4746
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:474
4747
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:475
4748
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:476
4749
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:945
4750
  msgid "Skew"
4751
  msgstr "Verzerren"
4752
 
4753
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:330
4754
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:377
4755
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:407
4756
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:246
4757
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:99
4758
  msgid "Transform origin"
4759
  msgstr "Herkunfts-Veränderung"
4760
 
4761
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:360
4762
  msgid ""
4763
  "Makes the last keyframe to be the origin of the layer animation, instead of "
4764
  "its canvas position."
4765
  msgstr ""
4766
 
4767
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:366
4768
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:369
4769
  #, fuzzy
4770
  #| msgid "Rate count"
4771
  msgid "Repeat count"
4772
  msgstr "Anzahl Bewertungen"
4773
 
4774
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:368
4775
  msgid "loops"
4776
  msgstr "Wiederholungen"
4777
 
4778
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:370
4779
  msgid ""
4780
  "You can restrict the loop to play only a certain amount of loops, instead of "
4781
  "infinite."
4782
  msgstr ""
4783
 
 
4784
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
4785
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:470
4786
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:471
4787
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
4788
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:912
4789
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:191
4790
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:47
4791
  msgctxt "Animation"
4792
  msgid "Slide"
4793
  msgstr ""
4794
 
 
4795
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:477
4796
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:478
4797
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:479
4798
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
4799
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:246
4800
  msgid "Curtains"
4801
  msgstr ""
4802
 
 
4803
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:479
4804
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
4805
  msgid "Diagonal"
4806
  msgstr ""
4807
 
 
4808
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
4809
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:490
4810
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:491
4811
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:492
4812
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:262
4813
  msgid "Circle"
4814
  msgstr "Kreis"
4815
 
4816
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:495
4817
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:236
4818
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:238
4819
  msgid "From"
4820
  msgstr "von"
4821
 
4822
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:501
4823
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:241
4824
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:243
4825
  msgid "To"
4826
  msgstr "zu"
4827
 
4828
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:509
4829
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:55
4830
  #: SmartSlider3/Storage.php:935 SmartSlider3/Storage.php:1755
4831
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:131
4832
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:24
4833
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:73
4834
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:91
4835
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:1061
4836
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:188
4837
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:201
4838
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:132
4839
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:218
4840
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:48
4841
  msgid "Fade"
4842
  msgstr "Überblenden"
4843
 
4844
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:510
4845
  #: SmartSlider3/Storage.php:1009
4846
  msgid "Scale up"
4847
  msgstr "Vergrößern"
4848
 
4849
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:511
4850
  #: SmartSlider3/Storage.php:1024
4851
  msgid "Scale down"
4852
  msgstr "Verkleinern"
4853
 
4854
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/SlideBox.php:22
4855
+ #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:48
4856
  msgid "Edit"
4857
  msgstr "Editieren"
4858
 
4900
 
4901
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:36
4902
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:175
4903
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:123
4904
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:159
4905
  msgid "Post"
4906
  msgstr ""
4909
  msgid "Dynamic slides"
4910
  msgstr ""
4911
 
4912
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:93
4913
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:21
4914
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:27
4915
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:63
4918
  msgid "Add slide"
4919
  msgstr ""
4920
 
4921
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:106
4922
  msgid "Block must contain only one slide. Need more?"
4923
  msgstr ""
4924
 
4925
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:109
4926
  msgid "Convert to slider"
4927
  msgstr ""
4928
 
4929
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:137
4930
  #, fuzzy
4931
  #| msgid "Slide to left"
4932
  msgid "Slide one"
4933
  msgstr "Slide nach links"
4934
 
4935
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:144
4936
  #, fuzzy
4937
  #| msgid "Slide to top"
4938
  msgid "Slide two"
4939
  msgstr "Slide nach oben"
4940
 
4941
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:151
4942
  msgid "Drop images here"
4943
  msgstr ""
4944
 
4945
+ #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:114
4946
  msgid "Edit slider"
4947
  msgstr ""
4948
 
5044
  msgid "Trash is empty."
5045
  msgstr ""
5046
 
5047
+ #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderTrash/SliderTrashBox.php:46
5048
  #: SmartSlider3/Application/Admin/Sliders/ViewSlidersImport.php:122
5049
  msgid "Restore"
5050
  msgstr ""
5061
  msgid "Open preview in full"
5062
  msgstr ""
5063
 
5064
+ #: SmartSlider3/Application/Admin/Preview/Template/Index.php:27
5065
  msgid "State"
5066
  msgstr ""
5067
 
5068
+ #: SmartSlider3/Application/Admin/Preview/Template/Index.php:29
5069
  msgid "Reason"
5070
  msgstr ""
5071
 
5090
  msgid "Generators"
5091
  msgstr ""
5092
 
5093
+ #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:35
5094
+ #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:51
5095
+ #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:69
5096
+ #: SmartSlider3/Application/Admin/Settings/ControllerSettings.php:35
5097
  msgid "Saved and slider cache invalidated."
5098
  msgstr ""
5099
 
5100
+ #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:174
5101
  #: SmartSlider3/Application/Admin/Slider/ControllerSlider.php:43
5102
  msgid "Cache cleared."
5103
  msgstr "Cache geleert."
5104
 
5105
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:35
5106
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:51
5107
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:57
5108
+ #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:175
5109
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:126
5110
+ msgid "Clear cache"
5111
+ msgstr "Cache leeren"
5112
+
5113
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:75
5114
+ #, fuzzy
5115
+ #| msgid "Clear cache"
5116
+ msgid "Clear cache options"
5117
+ msgstr "Cache leeren"
5118
+
5119
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:80
5120
+ msgid "Delete resized image cache"
5121
+ msgstr ""
5122
+
5123
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:82
5124
+ #, php-format
5125
+ msgid "If enabled the following folder will be <b>permanently deleted</b>: %s"
5126
+ msgstr ""
5127
+
5128
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFonts.php:41
5129
  msgid "Configuration"
5130
  msgstr "Konfiguration"
5164
  msgid "Loads the URLs without a http or https protocol."
5165
  msgstr ""
5166
 
5167
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:47
5168
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:48
5169
+ msgid "Header preload"
 
5170
  msgstr ""
5171
 
5172
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:49
5173
  msgid ""
5174
+ "If the slider is an important part of your site, tell the browser to preload "
5175
+ "its files."
5176
  msgstr ""
5177
 
5178
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:53
5179
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:54
5180
+ msgid "English UI"
5181
  msgstr ""
5182
 
5183
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:55
5184
  msgid ""
5185
+ "You can keep using Smart Slider 3 in English, even if your backend isn't in "
5186
+ "English."
 
 
 
 
5187
  msgstr ""
5188
 
5189
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:58
5190
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:59
5191
+ msgid "Improved frontend accessibility"
5192
  msgstr ""
5193
 
5194
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:60
5195
+ msgid ""
5196
+ "Keeps the clicked element (like a button) in focus unless the focus is "
5197
+ "changed by clicking away."
5198
  msgstr ""
5199
 
5200
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:68
 
 
 
 
5201
  msgid "Script attributes"
5202
  msgstr ""
5203
 
5204
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:70
5205
  msgid "Slider's inline JavaScript"
5206
  msgstr ""
5207
 
5208
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:72
5209
  msgid "Head"
5210
  msgstr ""
5211
 
5212
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:73
5213
  msgid "Into the slider"
5214
  msgstr ""
5215
 
5216
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:83
 
 
 
 
 
 
 
 
 
 
 
 
5217
  msgid "Load Font Awesome 4"
5218
  msgstr ""
5219
 
5220
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:86
5221
  msgid "API requests"
5222
  msgstr ""
5223
 
5224
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:90
5225
  #, php-format
5226
  msgctxt "Curl"
5227
  msgid "Use %s"
5228
  msgstr ""
5229
 
5230
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:92
5231
  #, fuzzy, php-format
5232
  #| msgid "Clean HTML"
5233
  msgctxt "curl proxy"
5234
  msgid "Clean %s"
5235
  msgstr "HTML bereinigen"
5236
 
5237
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:69
 
 
 
 
 
 
5238
  msgid "General settings"
5239
  msgstr "Grundsatz-Einstellungen"
5240
 
5241
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:79
5242
  msgid "Automatic update check"
5243
  msgstr "Automatischer Update-Check"
5244
 
5245
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:81
5246
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:82
 
5247
  msgid "Alternative save slide"
5248
  msgstr ""
5249
 
5250
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:83
5251
  msgid ""
5252
  "If you experience problems during the save this option might solve them."
5253
  msgstr ""
5254
 
5255
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:85
5256
  msgid "Preview in new window"
5257
  msgstr ""
5258
 
5259
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:90
5260
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:91
 
5261
  msgid "Lightbox videos in new tab on Mobile"
5262
  msgstr ""
5263
 
5264
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:92
5265
  msgid ""
5266
  "Opens the lightbox videos in the YouTube app to avoid the mobile disabling "
5267
  "the video."
5268
  msgstr ""
5269
 
5270
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:97
5271
  msgid "YouTube and Vimeo privacy enhanced mode"
5272
  msgstr ""
5273
 
5274
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:99
5275
  msgid "Smooth scroll speed"
5276
  msgstr ""
5277
 
5278
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:106
5279
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:108
5280
  msgid "Editor - additional CSS files"
5281
  msgstr ""
5282
 
5283
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:109
5284
  msgid ""
5285
  "You can call your own CSS files to our backend, for example, to be able to "
5286
  "use custom fonts. Write each URL to a new line."
5287
  msgstr ""
5288
 
5289
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:114
5290
  #, fuzzy
5291
  #| msgid "Generator settings"
5292
  msgid "WordPress settings"
5293
  msgstr "Generator Einstellungen"
5294
 
5295
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:117
5296
  msgid "Show editor icon"
5297
  msgstr ""
5298
 
5299
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:119
5300
  msgid "Show in admin bar"
5301
  msgstr ""
5302
 
5303
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:121
5304
  msgid "YOAST SEO sitemap - add images"
5305
  msgstr ""
5306
 
5307
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:123
5308
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:127
5309
  msgid "Create widget area"
5310
  msgstr ""
5311
 
5312
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:124
5313
  msgid "widget area(s)"
5314
  msgstr ""
5315
 
5316
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:128
5317
  msgid ""
5318
  "Creates new widget areas which you can place to your theme for easy "
5319
  "publishing."
5320
  msgstr ""
5321
 
5322
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:133
5323
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:134
 
5324
  msgid "Use iframe in AJAX calls"
5325
  msgstr ""
5326
 
5327
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:135
5328
  msgid ""
5329
  "Loads the slider using an iframe when the page is loaded via AJAX to avoid "
5330
  "problems."
5331
  msgstr ""
5332
 
5333
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:141
5334
  msgid "Joomla settings"
5335
  msgstr ""
5336
 
5337
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:144
5338
  msgid "Force RTL backend"
5339
  msgstr ""
5340
 
5341
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:146
5342
  msgid "Run content plugins on sliders"
5343
  msgstr ""
5344
 
5345
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:152
5346
  msgid "Exclude plugins"
5347
  msgstr ""
5348
 
5349
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:162
5350
  msgid ""
5351
  "At each slider you can override the global breakpoints with local values."
5352
  msgstr ""
5353
 
5354
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:209
5355
  msgid "Focus offset"
5356
  msgstr ""
5357
 
5358
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:211
5359
  msgid ""
5360
  "This option is used at the full page layout to decrease the slider height. "
5361
  "The \"Scroll to slider\" option also uses this option to determine where to "
5362
  "scroll the slider."
5363
  msgstr ""
5364
 
5365
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:229
5366
  msgid "Translate url"
5367
  msgstr "ULR übersetzen"
5368
 
5369
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:231
5370
  msgid ""
5371
  "You can change the frontend URL our assets are loading from. It can be "
5372
  "useful after moving to a new domain."
5373
  msgstr ""
5374
 
5375
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:239
5376
  msgid "The old URL you want to replace. E.g. https://oldsite.com/"
5377
  msgstr ""
5378
 
5379
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:244
5380
  msgid "The new URL you want to use. E.g. https://newsite.com"
5381
  msgstr ""
5382
 
5392
  msgid "Slider permanently deleted."
5393
  msgstr "Slider gelöscht."
5394
 
5395
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:138
5396
  msgid "Slider created."
5397
  msgstr "Slide erstellt."
5398
 
5399
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:155
5400
  msgid "Slider renamed."
5401
  msgstr ""
5402
 
5403
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:171
5404
  msgid "Slider saved."
5405
  msgstr "Slider gespeichert."
5406
 
5407
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:182
5408
  #, php-format
5409
  msgid "Import url is not valid: %s"
5410
  msgstr "Import-URL ist ungültig: %s"
5411
 
5412
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:189
5413
  msgid "License key required for premium features!"
5414
  msgstr "Für Premium-Merkmale ist ein Lizenzschlüssel notwendig!"
5415
 
5416
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:220
5417
  #: SmartSlider3/Application/Admin/Sliders/ControllerAjaxSliders.php:200
5418
  msgid "Slider imported."
5419
  msgstr "Slider importiert."
5420
 
5421
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:224
5422
  #: SmartSlider3/Application/Admin/Sliders/ControllerAjaxSliders.php:216
5423
  msgid "Import error!"
5424
  msgstr "Importfehler!"
5425
 
5426
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:247
5427
  #: SmartSlider3/Application/Admin/Slides/ControllerAjaxSlides.php:234
5428
  #: SmartSlider3/Application/Admin/Slides/ControllerSlides.php:80
5429
  msgid "Slide duplicated."
5430
  msgstr "Slide dupliziert."
5431
 
5432
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:268
5433
  #, php-format
5434
  msgid "%s slider type is not available."
5435
  msgstr ""
5466
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:88
5467
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:96
5468
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:48
 
5469
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:55
5470
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:49
5471
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:79
5472
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:59
5473
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:41
5474
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:67
 
5475
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:68
5476
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:53
5477
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:48
5688
  msgid "Failed to create slides."
5689
  msgstr ""
5690
 
5691
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:176
5692
  msgid "Static save"
5693
  msgstr "Statisch speichern"
5694
 
 
 
 
 
5695
  #: SmartSlider3/Application/Model/ModelGenerator.php:396
5696
  msgid "Generator settings"
5697
  msgstr "Generator Einstellungen"
5737
 
5738
  #: SmartSlider3/BackgroundAnimation/Block/BackgroundAnimationManager/Index.php:14
5739
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:45
5740
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:111
5741
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:115
5742
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:283
5743
  #, fuzzy
5744
  #| msgid "No animation"
5745
  msgid "Background animation"
5851
  msgid "No description."
5852
  msgstr ""
5853
 
5854
+ #: SmartSlider3/Generator/AbstractGeneratorGroup.php:110
5855
+ #, fuzzy
5856
+ #| msgid "Icon not found"
5857
+ msgid "Generator not found"
5858
+ msgstr "Icon nicht gefunden"
5859
+
5860
  #: SmartSlider3/Generator/Common/Test/GeneratorGroupTest.php:17
5861
  #: SmartSlider3/Generator/Common/Test/Sources/TestTest.php:12
5862
  msgid "Test generator."
5871
  msgid "%1$s generator missing the following source: %2$s"
5872
  msgstr ""
5873
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5874
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:14
5875
  msgid "Joomla articles"
5876
  msgstr ""
5880
  msgstr ""
5881
 
5882
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:22
 
5883
  msgid "Article"
5884
  msgstr ""
5885
 
5886
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:23
5887
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:47
5888
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:93
 
 
5889
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:33
5890
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:33
5891
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:30
5892
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:40
 
 
5893
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:41
5894
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:40
5895
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:39
5896
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:66
 
 
 
 
5897
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:40
5898
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:65
5899
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:34
5900
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:30
5901
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:34
5902
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:40
5903
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:47
5904
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:68
 
5905
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:32
5906
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:32
5907
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:30
5928
 
5929
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:59
5930
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:95
 
 
5931
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:44
5932
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:38
5933
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:53
5939
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:57
5940
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:46
5941
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:58
 
 
5942
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:49
5943
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:67
5944
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:46
5945
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:57
5946
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:56
5947
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:48
5948
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:39
5950
  msgstr "Hauptbeiträge"
5951
 
5952
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:60
 
5953
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:42
5954
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:37
 
 
 
5955
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:50
5956
  msgid "User ID"
5957
  msgstr ""
5958
 
5959
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:63
5960
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:40
 
5961
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:47
 
 
 
 
5962
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:52
5963
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:53
5964
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:51
5965
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:45
5966
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:39
5984
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:70
5985
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:54
5986
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:51
 
5987
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:56
5988
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:64
5989
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:76
5990
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:77
5991
  msgid "Date format"
5992
  msgstr "Datumsformat"
5993
 
5994
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:79
 
5995
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:293
5996
+ #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:295
5997
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:70
5998
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:54
5999
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:51
6000
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:56
6001
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:64
6002
  msgid "m-d-Y"
6003
  msgstr ""
6004
 
6007
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:71
6008
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:55
6009
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:52
 
6010
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:57
6011
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:65
6012
  msgid "Time format"
6013
  msgstr "Zeitformat"
6014
 
6015
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:81
6016
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:40
6017
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:37
6018
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:66
6019
  msgid "Translate date and time"
6020
  msgstr ""
6021
 
6026
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:88
6027
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:277
6028
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:167
6029
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:240
6030
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:241
6031
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:53
6032
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:96
 
6033
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:52
6034
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:47
6035
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:76
6041
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:55
6042
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:91
6043
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:74
 
 
 
6044
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:64
6045
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:46
6046
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:90
6047
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:77
6048
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:101
6049
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:41
6052
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:74
6053
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:166
6054
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:169
6055
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:168
 
6056
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:44
6057
  msgid "Title"
6058
  msgstr "Titel"
6064
 
6065
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:97
6066
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:51
 
6067
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:73
6068
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:80
6069
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:60
6071
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:42
6072
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:92
6073
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:75
6074
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:68
 
 
 
 
6075
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:69
6076
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:49
6077
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:61
6078
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:91
6079
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:71
 
6080
  msgid "Hits"
6081
  msgstr "Treffer"
6082
 
6083
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:98
6084
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:49
 
6085
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:56
6086
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:50
6087
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:77
6093
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:61
6094
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:62
6095
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:43
 
 
6096
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:89
6097
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:72
6098
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:69
 
 
 
 
 
 
6099
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:70
6100
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:56
6101
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:59
6102
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:72
 
6103
  msgid "Creation time"
6104
  msgstr "Erstellungszeit"
6105
 
6110
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:82
6111
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:62
6112
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:63
 
 
6113
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:90
6114
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:73
6115
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:70
 
 
 
6116
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:71
6117
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:57
6118
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:60
6119
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:73
 
6120
  msgid "Modification time"
6121
  msgstr "Veränderungszeit"
6122
 
6128
  msgid "Featured article ordering"
6129
  msgstr ""
6130
 
6131
+ #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:285
 
6132
  msgid "View article"
6133
  msgstr ""
6134
 
6137
  "Creates slides from your Joomla categories. (Not the articles inside them.)"
6138
  msgstr ""
6139
 
6140
+ #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:34
6141
+ #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceCategory.php:25
6142
+ msgid "Parent category"
6143
+ msgstr "Ursprungsverzeichnis"
6144
+
6145
+ #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:134
6146
  msgid "View category"
6147
  msgstr ""
6148
 
6154
  msgstr ""
6155
 
6156
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:20
 
 
 
6157
  #: SmartSlider3Pro/Generator/Common/Facebook/GeneratorGroupFacebook.php:26
6158
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookAlbums.php:16
6159
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:18
6204
  msgid "Posts by IDs"
6205
  msgstr "Posts nach IDs"
6206
 
6207
+ #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:38
6208
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:128
6209
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:128
6210
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:46
6211
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:76
6212
+ #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:34
6213
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:158
6214
+ #: SmartSlider3Pro/Form/Element/ParticleSkin.php:61
6215
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:134
6216
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:47
6217
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:69
6218
+ msgid "Custom"
6219
+ msgstr "Angepasst"
6220
+
6221
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:41
6222
  msgid "All custom posts"
6223
  msgstr ""
6326
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:110
6327
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsCustomPosts.php:192
6328
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:90
 
 
6329
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:74
6330
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:43
6331
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:64
6596
  "Write one ID per line."
6597
  msgstr ""
6598
 
 
 
 
 
6599
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:73
6600
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:75
6601
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:144
6619
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:100
6620
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:190
6621
  #: SmartSlider3/Platform/WordPress/Integration/Unyson/smartslider/options/option-types.php:63
6622
+ #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:167
6623
  msgid "OR"
6624
  msgstr ""
6625
 
6633
  msgstr ""
6634
 
6635
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
6636
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:49
6637
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:118
6638
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:161
6639
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
6640
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:105
6641
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:126
6642
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:151
6643
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:157
6644
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:119
6645
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:146
6665
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:181
6666
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:144
6667
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:146
6668
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:178
6669
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:180
6670
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:197
6671
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:199
6672
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:189
6673
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:191
6674
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:228
6675
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:230
 
6676
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:126
6677
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:128
6678
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:150
6679
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:152
6680
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:290
6681
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:292
6682
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:147
6683
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:149
6684
  msgid "Rel"
6687
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:169
6688
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:182
6689
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:147
6690
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:181
6691
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:200
6692
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:192
6693
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:231
6694
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:129
6695
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:153
6696
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:293
6697
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:150
6698
  #, php-format
6699
  msgid ""
6704
 
6705
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:173
6706
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:174
6707
+ #: SmartSlider3Pro/Renderable/Item/Icon/Assets/icon2.js:21
6708
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:31
6709
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:94
6710
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:213
6711
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:232
6712
  msgid "Icon"
6713
  msgstr "Ikon"
6714
 
6715
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:197
6716
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:119
6717
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:164
6718
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:129
6719
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:149
6720
  msgid "Placement"
6721
  msgstr "Platzierung"
6763
 
6764
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:164
6765
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:39
6766
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:252
6767
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:136
6768
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:227
6769
  msgid "Alt tag"
6770
  msgstr ""
6771
 
6772
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:173
6773
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:174
6774
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:257
6775
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:258
6776
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:347
6777
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:348
6778
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:162
6779
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:163
6780
  msgid "Optimize image"
6781
  msgstr ""
6782
 
6783
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:175
6784
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:259
6785
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:349
6786
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:164
6787
  msgid ""
6788
  "You can turn off the Layer image optimization for this image, to resize it "
6806
  #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:45
6807
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:45
6808
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:41
6809
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:45
6810
  msgctxt "Layer group"
6811
  msgid "Media"
6812
  msgstr ""
6848
  msgid "Mobile text"
6849
  msgstr "Mobil-Text"
6850
 
6851
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:115
6852
  msgid "Vimeo url or Video ID"
6853
  msgstr ""
6854
 
6855
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:119
6856
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:119
6857
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:125
6858
  msgid "Cover image"
6859
  msgstr "Titelbild"
6860
 
6861
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:123
6862
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:123
6863
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:129
6864
  msgid "Aspect ratio"
6865
  msgstr ""
6866
 
6867
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:129
6868
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:162
6869
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:129
6870
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:162
6871
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:135
6872
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:168
6873
  msgid "Fill layer height"
6874
  msgstr ""
6875
 
6876
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:162
6877
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:162
6878
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:168
6879
  msgid "Set on Style tab."
6880
  msgstr ""
6881
 
6882
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:164
6883
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:165
6884
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:170
6885
  msgid "Video settings"
6886
  msgstr ""
6887
 
6888
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:174
6889
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:175
6890
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:180
6891
  msgid "When ended"
6892
  msgstr ""
6893
 
6894
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:176
6895
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:177
6896
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:182
6897
  msgid "Do nothing"
6898
  msgstr ""
6899
 
6900
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:177
6901
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:178
6902
  msgid "Go to next slide"
6903
  msgstr ""
6904
 
6905
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:181
6906
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:182
6907
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:67
 
6908
  msgid "Start time"
6909
  msgstr "Startzeit"
6910
 
6911
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:187
6912
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:192
6913
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:133
6914
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:152
6915
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:193
6916
  msgid "Volume"
6917
  msgstr "Lautstärke"
6918
 
6919
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:189
6920
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:194
6921
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:135
6922
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:195
6923
  msgid "Mute"
6924
  msgstr "Stumm"
6925
 
6926
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:198
6927
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:204
6928
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:203
6929
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:209
6930
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:229
6931
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:235
6932
  msgid "Pause on scroll"
6933
  msgstr ""
6934
 
6935
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:200
6936
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:205
6937
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:231
6938
  msgid "Never"
6939
  msgstr ""
6940
 
6941
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:201
6942
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:206
6943
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:232
6944
  msgid "When partly visible"
6945
  msgstr ""
6946
 
6947
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:202
6948
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:207
6949
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:233
6950
  msgid "When not visible"
6951
  msgstr ""
6952
 
6953
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:205
6954
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:210
6955
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:236
6956
  msgid "You can pause the video when the visitor scrolls away from the slider"
6957
  msgstr ""
6958
 
6959
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:216
6960
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:217
6961
  msgid "Private video"
6962
  msgstr ""
6963
 
6964
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:218
6965
+ msgid ""
6966
+ "Turn it on to remove the admin warning that your video is not accessible."
6967
+ msgstr ""
6968
+
6969
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:227
6970
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:224
6971
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:147
6972
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:237
6973
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:136
6974
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:71
6975
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:296
6976
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:137
6977
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:208
6978
  msgid "Display"
6979
  msgstr "Display"
6980
 
6981
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:230
6982
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:261
6983
+ msgid "Only works on videos of Vimeo Pro users."
6984
+ msgstr ""
6985
+
6986
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:234
6987
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:235
6988
  msgid "Remove controls"
6989
  msgstr ""
6990
 
6991
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:236
6992
+ msgid ""
6993
+ "Removes the controls of the video, but it only works on videos of Vimeo Pro "
6994
+ "users."
6995
+ msgstr ""
6996
+
6997
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:242
6998
+ msgid "Hides the title of the video, but only if video owner allows it."
6999
+ msgstr ""
7000
+
7001
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:244
7002
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:245
7003
  msgid "Users byline"
7004
  msgstr "Quellenangabe des Benutzers"
7005
 
7006
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:246
7007
+ msgid ""
7008
+ "Hides the user's byline of the video, but only if video owner allows it."
7009
+ msgstr ""
7010
+
7011
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:250
7012
+ msgid ""
7013
+ "Hides the profile image of the author, but only if video owner allows it. "
7014
+ msgstr ""
7015
+
7016
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:265
7017
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:266
7018
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:246
7019
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:247
7020
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:239
7021
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:240
7022
  msgid "Play button"
7023
  msgstr ""
7024
 
7025
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeoFrontend.php:36
7026
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeoFrontend.php:127
7027
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTubeFrontend.php:68
7028
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTubeFrontend.php:164
7029
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:40
7030
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideoFrontend.php:29
7031
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideoFrontend.php:115
7032
+ msgid "Play"
7033
+ msgstr "Play"
7034
+
7035
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:116
7036
  msgid "YouTube URL or Video ID"
7037
  msgstr ""
7038
 
7039
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:187
7040
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:68
 
7041
  msgid "End time"
7042
  msgstr "Endzeit"
7043
 
7044
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:227
7045
  msgid "Hide YouTube logo"
7046
  msgstr ""
7047
 
 
7048
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:229
7049
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:230
7050
  msgid "Centered"
7051
  msgstr "zentriert"
7052
 
7053
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:231
7054
  msgid "Scales up and crops the video to cover the whole layer."
7055
  msgstr ""
7056
 
7057
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:235
7058
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:240
7059
  msgid "Show related videos"
7060
  msgstr ""
7061
 
7062
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:237
7063
  msgid "Anywhere"
7064
  msgstr ""
7065
 
7066
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:238
7067
  msgid "Same channel"
7068
  msgstr ""
7069
 
7070
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:241
7071
  msgid ""
7072
  "YouTube no longer allows hiding the related videos at the end of the video. "
7073
  "This setting defines whether the videos should come from the same channel as "
7084
 
7085
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:26
7086
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:27
7087
+ #: SmartSlider3/Storage.php:3959
7088
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:275
7089
  msgid "Downscale"
7090
  msgstr "Verkleinern"
7095
 
7096
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:30
7097
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:31
7098
+ #: SmartSlider3/Storage.php:4073
7099
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:286
7100
  msgid "Upscale"
7101
  msgstr "Vergrößern"
7156
  "full browser width."
7157
  msgstr ""
7158
 
7159
+ #: SmartSlider3/Slider/Slide.php:789
7160
  msgid "Not found"
7161
  msgstr ""
7162
 
7163
+ #: SmartSlider3/Slider/SliderType/AbstractSliderTypeCss.php:49
7164
  msgid "Slider size is too small!"
7165
  msgstr ""
7166
 
7167
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:49
7168
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:145
7169
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:149
7170
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:324
7171
  #: SmartSlider3Pro/PostBackgroundAnimation/Block/PostBackgroundAnimationManager/Index.php:15
7172
  msgid "Ken Burns effect"
7173
  msgstr "Ken Burns Effekt"
7174
 
7175
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:56
7176
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:157
7177
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:123
7178
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:156
7179
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:301
7180
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:336
7181
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:127
7182
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:142
7183
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:200
7184
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:234
7185
  msgid "Speed"
7186
  msgstr "Geschwindigkeit"
7187
 
7188
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:59
7189
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:160
7190
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:125
7191
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:126
7192
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:159
7193
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:304
7194
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:305
7195
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:339
7196
  msgid "Super slow"
7197
  msgstr "Sehr langsam"
7198
 
7199
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:60
7200
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:161
7201
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:127
7202
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:160
7203
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:306
7204
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:340
7205
  msgid "Slow"
7206
  msgstr "langsam"
7207
 
7208
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:62
7209
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:163
7210
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:129
7211
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:162
7212
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:308
7213
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:342
7214
  msgid "Fast"
7215
  msgstr "schnell"
7216
 
7217
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:63
7218
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:130
7219
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:163
7220
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:309
7221
  msgid "Super fast"
7222
  msgstr "Sehr schnell"
7223
 
7224
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:82
7225
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:202
7226
+ msgid "Border width"
 
 
7227
  msgstr ""
7228
 
7229
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:87
7230
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:207
7231
+ msgid "Border color"
7232
+ msgstr ""
 
 
7233
 
7234
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:164
7235
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:343
7236
  msgid "Super fast 4x"
7237
  msgstr ""
7238
 
7239
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:39
7240
  msgctxt "Slider type"
7241
  msgid "Simple slider"
7242
  msgstr ""
7243
 
7244
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:48
7245
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:52
7246
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:208
7247
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:214
7248
  #, fuzzy
7249
  #| msgid "Loading animation"
7250
  msgid "Main animation"
7251
  msgstr "Animation laden"
7252
 
7253
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:54
7254
  msgid "No animation"
7255
  msgstr "Keine Animation"
7256
 
7257
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:56
7258
  msgid "Crossfade"
7259
  msgstr ""
7260
 
7261
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:59
7262
  msgid "Horizontal - reversed"
7263
  msgstr ""
7264
 
7265
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:60
7266
  msgid "Vertical - reversed"
7267
  msgstr ""
7268
 
7269
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:101
7270
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:102
7271
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:258
7272
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:259
7273
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:699
7274
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:700
 
 
 
 
 
 
7275
  msgctxt "Feature"
7276
  msgid "Carousel"
7277
  msgstr ""
7278
 
7279
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:103
 
7280
  msgid ""
7281
  "If you turn off this option, you can't switch to the first slide from the "
7282
  "last one."
7283
  msgstr ""
7284
 
7285
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:134
7286
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:135
7287
  msgid "Shifted"
7288
  msgstr "Verschoben"
7289
 
7290
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:136
7291
  msgid "The background and the main animation plays simultaneously or shifted."
7292
  msgstr ""
7293
 
7294
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:182
7295
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7296
  msgid "Loop single slide"
7297
  msgstr "einzelnen Slide wiederholen"
7298
 
7299
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:184
7300
  msgid "In case of one slide, it repeats the animation of the slide."
7301
  msgstr ""
7302
 
7303
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:217
7304
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:215
 
 
 
 
 
 
 
 
7305
  msgid "Slider CSS Preset"
7306
  msgstr ""
7307
 
7308
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:221
7309
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:198
7310
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:219
7311
  msgid "Light shadow"
7312
  msgstr "Heller Schatten"
7313
 
7314
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:227
7315
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:225
7316
  msgid "Dark shadow"
7317
  msgstr "Dunkler Schatten"
7318
 
7319
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:233
7320
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:231
7321
  msgid "Photo"
7322
  msgstr "Foto"
7323
 
7324
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:241
7325
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:239
7326
  msgid "Photo rounded"
7327
  msgstr "Photo gerundet"
7328
 
7329
+ #: SmartSlider3/SmartSlider3Info.php:197
7330
  #, php-format
7331
  msgid "Demo slider is not available with the following ID: %s"
7332
  msgstr "Der Demo-Slider mit der ID: %s ist nicht verfügbar"
7676
  msgid "Flowing tiles vertical"
7677
  msgstr "vertikal fliegende Fliesen"
7678
 
7679
+ #: SmartSlider3/Storage.php:2729
7680
  msgid "Slide to bottom"
7681
  msgstr "Slide nach unten"
7682
 
7683
+ #: SmartSlider3/Storage.php:2764
7684
  msgid "Slide to top"
7685
  msgstr "Slide nach oben"
7686
 
7687
+ #: SmartSlider3/Storage.php:2800
7688
  msgid "Curtain to bottom"
7689
  msgstr "Vorhang nach unten"
7690
 
7691
+ #: SmartSlider3/Storage.php:2834
7692
  msgid "Curtain to top"
7693
  msgstr "Vorhang nach oben"
7694
 
7695
+ #: SmartSlider3/Storage.php:2870
7696
  msgid "Switching to bottom"
7697
  msgstr "nach unten wechseln"
7698
 
7699
+ #: SmartSlider3/Storage.php:2909
7700
  msgid "Switching to top"
7701
  msgstr "nach oben wechseln"
7702
 
7703
+ #: SmartSlider3/Storage.php:2948
7704
  msgid "Horizontal spin to bottom"
7705
  msgstr "Schraube nach unten"
7706
 
7707
+ #: SmartSlider3/Storage.php:2970
7708
  msgid "Horizontal spin to top"
7709
  msgstr "Schraube nach unten"
7710
 
7711
+ #: SmartSlider3/Storage.php:2992
7712
  msgid "3D bricks to bottom"
7713
  msgstr "3D Steine nach unten"
7714
 
7715
+ #: SmartSlider3/Storage.php:3038
7716
  msgid "3D bricks to top"
7717
  msgstr "3D Steine nach oben"
7718
 
7719
+ #: SmartSlider3/Storage.php:3084
7720
  msgid "3D rows to bottom"
7721
  msgstr "3D Reihen nach unten"
7722
 
7723
+ #: SmartSlider3/Storage.php:3130
7724
  msgid "3D rows to top"
7725
  msgstr "3D Reihen nach oben"
7726
 
7727
+ #: SmartSlider3/Storage.php:3176
7728
  msgid "3D columns to bottom"
7729
  msgstr "3D Spalten nach unten"
7730
 
7731
+ #: SmartSlider3/Storage.php:3206
7732
  msgid "3D columns to top"
7733
  msgstr "3D Spalten nach oben"
7734
 
7735
+ #: SmartSlider3/Storage.php:3236
7736
  msgid "Spinning cuboid to bottom"
7737
  msgstr "schnell drehender Quader nach unten"
7738
 
7739
+ #: SmartSlider3/Storage.php:3258
7740
  msgid "Spinning cuboid to top"
7741
  msgstr "schnell drehender Quader nach oben"
7742
 
7743
+ #: SmartSlider3/Storage.php:3280
7744
  msgid "Turning cuboid to bottom"
7745
  msgstr "drehender Quader nach unten"
7746
 
7747
+ #: SmartSlider3/Storage.php:3304
7748
  msgid "Turning cuboid to top"
7749
  msgstr "drehender Quader nach oben"
7750
 
7751
+ #: SmartSlider3/Storage.php:3335
7752
  msgid "Scale to right"
7753
  msgstr "nach rechts skalieren"
7754
 
7755
+ #: SmartSlider3/Storage.php:3375
7756
  msgid "Rotate to right"
7757
  msgstr "nach rechts drehen"
7758
 
7759
+ #: SmartSlider3/Storage.php:3421
7760
  msgid "Fixed to right"
7761
  msgstr "Rechts angeheftet"
7762
 
7763
+ #: SmartSlider3/Storage.php:3452
7764
  msgid "Parallax to right"
7765
  msgstr "nach Rechts Parallax"
7766
 
7767
+ #: SmartSlider3/Storage.php:3488
7768
  msgid "Flow - reversed"
7769
  msgstr "umgekehrt fließen"
7770
 
7771
+ #: SmartSlider3/Storage.php:3527
7772
  msgid "Slide to right"
7773
  msgstr "Slide nach rechts"
7774
 
7775
+ #: SmartSlider3/Storage.php:3563
7776
  msgid "Curtain to right"
7777
  msgstr "Vorhang nach rechts"
7778
 
7779
+ #: SmartSlider3/Storage.php:3598
7780
  msgid "Blocks to right"
7781
  msgstr "Block nach rechts"
7782
 
7783
+ #: SmartSlider3/Storage.php:3636
7784
  msgid "Slices to right"
7785
  msgstr "nach rechts schieben"
7786
 
7787
+ #: SmartSlider3/Storage.php:3674
7788
  msgid "Reversed slices to right"
7789
  msgstr "Reverse nach rechts"
7790
 
7791
+ #: SmartSlider3/Storage.php:3712
7792
  msgid "Switching to right"
7793
  msgstr "nach rechts schalten"
7794
 
7795
+ #: SmartSlider3/Storage.php:3751
7796
  msgid "Page turn to right"
7797
  msgstr "Seite nach rechts"
7798
 
7799
+ #: SmartSlider3/Storage.php:3763
7800
  msgid "Vertical spin to right"
7801
  msgstr "vertikal nach rechts schrauben"
7802
 
7803
+ #: SmartSlider3/Storage.php:3784
7804
  msgid "3D bricks to right"
7805
  msgstr "3D Steine nach rechts"
7806
 
7807
+ #: SmartSlider3/Storage.php:3829
7808
  msgid "3D rows to right"
7809
  msgstr "3D Reihen nach rechts"
7810
 
7811
+ #: SmartSlider3/Storage.php:3874
7812
  msgid "3D columns to right"
7813
  msgstr "3D Spalten nach rechts"
7814
 
7815
+ #: SmartSlider3/Storage.php:3903
7816
  msgid "Spinning cuboid to right"
7817
  msgstr "schnell drehender Quader nach rechts"
7818
 
7819
+ #: SmartSlider3/Storage.php:3925
7820
  msgid "Turning cuboid to right"
7821
  msgstr "drehender Quader nach rechts"
7822
 
7823
+ #: SmartSlider3/Storage.php:3977
7824
  msgid "Downscale left"
7825
  msgstr "Links verkleinern"
7826
 
7827
+ #: SmartSlider3/Storage.php:4001
7828
  msgid "Downscale right"
7829
  msgstr "Rechts verkleinern"
7830
 
7831
+ #: SmartSlider3/Storage.php:4025
7832
  msgid "Downscale top"
7833
  msgstr "Oben verkleinern"
7834
 
7835
+ #: SmartSlider3/Storage.php:4049
7836
  msgid "Downscale bottom"
7837
  msgstr "Unten verkleinern"
7838
 
7839
+ #: SmartSlider3/Storage.php:4091
7840
  msgid "Upscale left"
7841
  msgstr "Links vergrößern"
7842
 
7843
+ #: SmartSlider3/Storage.php:4115
7844
  msgid "Upscale right"
7845
  msgstr "Rechts vergrößern"
7846
 
7847
+ #: SmartSlider3/Storage.php:4139
7848
  msgid "Upscale top"
7849
  msgstr "Oben vergrößern"
7850
 
7851
+ #: SmartSlider3/Storage.php:4163
7852
  msgid "Upscale bottom"
7853
  msgstr "Unten vergrößern"
7854
 
7855
+ #: SmartSlider3/Storage.php:4187
7856
  msgid "To left"
7857
  msgstr "nach Links"
7858
 
7859
+ #: SmartSlider3/Storage.php:4207
7860
  msgid "To right"
7861
  msgstr "nach Rechts"
7862
 
7863
+ #: SmartSlider3/Storage.php:4267
7864
  msgid "To top left"
7865
  msgstr ""
7866
 
7867
+ #: SmartSlider3/Storage.php:4292
7868
  msgid "To top right"
7869
  msgstr "nach Oben Rechts"
7870
 
7871
+ #: SmartSlider3/Storage.php:4317
7872
  msgid "To bottom left"
7873
  msgstr "nach Unten Links"
7874
 
7875
+ #: SmartSlider3/Storage.php:4342
7876
  msgid "To bottom right"
7877
  msgstr "nach Unten Rechts"
7878
 
7879
+ #: SmartSlider3/Storage.php:4369
7880
  msgid "My layouts"
7881
  msgstr "Meine Layouts"
7882
 
7883
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:53
7884
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:36
7885
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:40
7886
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:55
7887
  msgctxt "Arrow direction"
7888
  msgid "Previous"
7889
  msgstr ""
7890
 
7891
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:61
7892
  msgid "Previous image"
7893
  msgstr "Letztes Bild"
7894
 
7895
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:78
7896
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:112
7897
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:98
7898
  msgid "Hover color"
7899
  msgstr "Hover Farbe"
7900
 
7901
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:84
7902
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:64
7903
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:43
7904
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:47
7905
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:63
7906
  #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:58
7907
  msgid "Mirror"
7908
  msgstr "Spiegel"
7909
 
7910
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:92
7911
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:50
7912
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:54
7913
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:70
7914
  msgctxt "Arrow direction"
7915
  msgid "Next"
7916
  msgstr ""
7917
 
7918
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:96
7919
  msgid "Next image"
7920
  msgstr "Nächstes Bild"
7921
 
7922
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:119
7923
  #: SmartSlider3/Widget/Group/Arrow.php:59
7924
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:138
7925
  #: SmartSlider3Pro/Form/Element/Select/ShapeDividerSelect.php:16
7926
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:59
7927
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:45
7928
  msgid "Arrow"
7929
  msgstr "Pfeil"
7930
 
7931
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:124
7932
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:57
7933
  msgid "Previous position"
7934
  msgstr "Letzte Position"
7935
 
7936
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:125
7937
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:59
7938
  msgid "Next position"
7939
  msgstr "Nächste Position"
7940
 
7941
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:140
7942
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:155
7943
  msgid "Previous alt tag"
7944
  msgstr ""
7945
 
7946
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:141
7947
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:158
7948
  msgid "Next alt tag"
7949
  msgstr ""
7950
 
7951
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:142
7952
  #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:143
 
7953
  msgid "Base64"
7954
  msgstr ""
7955
 
7956
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:144
7957
  msgid ""
7958
  "Base64 encoded arrow images are loading faster and they are colorable. But "
7959
  "optimization plugins often have errors in their codes related to them, so if "
7960
  "your arrow won't load, turn this option off."
7961
  msgstr ""
7962
 
7963
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:156
7964
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:93
7965
  #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:92
7966
+ msgid "Image width - Desktop"
7967
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
7968
 
7969
  #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:161
7970
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:98
7971
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:97
7972
  #, fuzzy
7973
+ #| msgid "Image mode"
7974
+ msgid "Image width - Tablet"
7975
+ msgstr "Bildmodus"
7976
 
7977
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:166
7978
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:103
7979
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:102
7980
+ #, fuzzy
7981
+ #| msgid "Image mode"
7982
+ msgid "Image width - Mobile"
7983
+ msgstr "Bildmodus"
7984
 
7985
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:71
7986
  msgid "Pause"
7987
  msgstr "Pause"
7988
 
7989
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImageFrontend.php:146
7990
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImageFrontend.php:148
7991
+ #, fuzzy
7992
+ #| msgid "Autoplay"
7993
+ msgid "Play autoplay"
7994
+ msgstr "Autoplay"
7995
+
7996
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImageFrontend.php:147
7997
  msgid "Pause autoplay"
7998
  msgstr ""
7999
 
8000
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:45
8001
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:55
8002
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:76
8003
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:37
8004
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:65
8005
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:65
8041
  #: SmartSlider3/Widget/Group/Autoplay.php:65
8042
  #: SmartSlider3/Widget/Group/Bar.php:68
8043
  #: SmartSlider3/Widget/Group/Bullet.php:109
8044
+ #: SmartSlider3/Widget/Group/Thumbnail.php:139
8045
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:64
8046
  #: SmartSlider3Pro/Widget/Group/Html.php:57
8047
  #: SmartSlider3Pro/Widget/Group/Indicator.php:56
8057
  #: SmartSlider3/Widget/Group/Bullet.php:116
8058
  #: SmartSlider3/Widget/Group/Shadow.php:59
8059
  #: SmartSlider3/Widget/Group/Shadow.php:60
8060
+ #: SmartSlider3/Widget/Group/Thumbnail.php:145
8061
+ #: SmartSlider3/Widget/Group/Thumbnail.php:146
8062
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:68
8063
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:69
8064
  #: SmartSlider3Pro/Widget/Group/Html.php:61
8073
  #: SmartSlider3/Widget/Group/Bar.php:76
8074
  #: SmartSlider3/Widget/Group/Bullet.php:117
8075
  #: SmartSlider3/Widget/Group/Shadow.php:61
8076
+ #: SmartSlider3/Widget/Group/Thumbnail.php:147
8077
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:70
8078
  #: SmartSlider3Pro/Widget/Group/Html.php:63
8079
  #: SmartSlider3Pro/Widget/Group/Indicator.php:62
8102
  msgstr "Seite"
8103
 
8104
  #: SmartSlider3/Widget/Group/Bullet.php:102
8105
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:121
8106
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:166
8107
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:131
8108
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:151
8109
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:378
8110
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:420
 
8111
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:468
8112
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:504
8113
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:540
8114
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:579
8115
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:621
8116
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:663
8117
  msgid "Before"
8118
  msgstr "Bevor"
8119
 
8120
  #: SmartSlider3/Widget/Group/Bullet.php:103
8121
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:123
8122
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:169
8123
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:132
8124
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:153
8125
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:400
8126
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:444
 
8127
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:486
8128
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:522
8129
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:558
8130
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:601
8131
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:643
8132
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:685
8133
  msgid "After"
8134
  msgstr "Danach"
8135
 
8136
  #: SmartSlider3/Widget/Group/Shadow.php:31
8137
  #: SmartSlider3/Widget/Group/Shadow.php:40
8138
+ #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:26
8139
  msgid "Shadow"
8140
  msgstr "Schatten"
8141
 
8144
  msgid "Thumbnails"
8145
  msgstr "Thumbnails"
8146
 
8147
+ #: SmartSlider3/Widget/Group/Thumbnail.php:66
8148
+ #, fuzzy
8149
+ #| msgid "Desktop"
8150
+ msgid "Desktop width"
8151
+ msgstr "Desktop"
8152
+
8153
+ #: SmartSlider3/Widget/Group/Thumbnail.php:88
8154
+ #, fuzzy
8155
+ #| msgid "Tablet text"
8156
+ msgid "Tablet width"
8157
+ msgstr "Tablet-Text"
8158
+
8159
+ #: SmartSlider3/Widget/Group/Thumbnail.php:110
8160
+ #, fuzzy
8161
+ #| msgid "Mobile text"
8162
+ msgid "Mobile width"
8163
+ msgstr "Mobil-Text"
8164
+
8165
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:66
8166
  msgid "Align thumbnails"
8167
  msgstr ""
8168
 
8169
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:68
8170
  msgid "Start"
8171
  msgstr "Start"
8172
 
8173
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:70
8174
  msgid "End"
8175
  msgstr ""
8176
 
8177
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:71
8178
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:279
8179
  msgid "Space between"
8180
  msgstr ""
8181
 
8182
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:72
8183
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:280
8184
  #, fuzzy
8185
  #| msgid "Background"
8186
  msgid "Space around"
8187
  msgstr "Hintergrund"
8188
 
8189
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:89
8190
+ #: SmartSlider3Pro/Renderable/Item/Caption/Assets/caption.js:21
8191
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:54
8192
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:101
8193
  msgid "Caption"
8194
  msgstr "Überschrift"
8195
 
8196
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:131
8197
  msgid ""
8198
  "The height (horizontal orientation) or width (vertical orientation) of the "
8199
  "caption container."
8200
  msgstr ""
8201
 
8202
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:161
8203
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:162
8204
  msgid "Next arrow image"
8205
  msgstr ""
8206
 
8207
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:163
8208
  msgid "The previous arrow image will be mirrored."
8209
  msgstr ""
8210
 
8211
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:169
8212
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8213
  msgid "Group by"
8214
  msgstr ""
8215
 
8216
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:170
8217
  msgctxt "Unit"
8218
  msgid "thumbnails"
8219
  msgstr ""
8220
 
8221
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:173
8222
  msgid "You can break your thumbnails into rows or columns."
8223
  msgstr ""
8224
 
8225
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:187
 
 
 
 
 
 
 
 
 
8226
  msgid ""
8227
  "The height (horizontal orientation) or width (vertical orientation) of the "
8228
  "thumbnail container in px or %."
8298
  msgid "Hide on mobile"
8299
  msgstr ""
8300
 
8301
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:101
8302
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:160
8303
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:28
8304
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:37
 
8305
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:45
8306
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialGroups.php:41
8307
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:47
8308
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:37
8309
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:186
 
 
 
8310
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:236
8311
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:184
8312
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:54
8313
  msgid "Type"
8314
  msgstr "tippen"
8315
 
8316
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:112
8317
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:171
8318
  msgid "Secondary"
8319
  msgstr ""
8320
 
8321
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:140
8322
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:198
8323
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:44
8324
  msgid "Flip"
8325
  msgstr ""
8326
 
8327
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:154
8328
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:212
8329
  msgid "Grow"
8330
  msgstr "Wachsen"
8331
 
8332
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:155
8333
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:213
8334
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:901
8335
  msgid "Shrink"
8336
  msgstr "Schrumpfen"
8511
  msgid "Ribbon"
8512
  msgstr ""
8513
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8514
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:83
8515
  msgid "The secret is empty. Please insert that value too!"
8516
  msgstr ""
8528
  "%3$s"
8529
  msgstr ""
8530
 
8531
+ #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:119
8532
+ #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:103
8533
+ #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:95
8534
+ #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:94
8535
+ #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:134
8536
+ #, php-format
8537
+ msgid ""
8538
+ "%2$s Check the documentation %3$s to learn how to configure your %1$s app."
8539
+ msgstr ""
8540
+
8541
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:131
8542
  msgctxt "Facebook app permission"
8543
  msgid "pages read engagement"
8570
  "own user."
8571
  msgstr ""
8572
 
8573
+ #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:140
8574
+ #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:114
8575
+ #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:105
8576
+ #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:104
8577
+ #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:144
8578
+ msgid "Token"
8579
+ msgstr "Zeichen"
8580
+
8581
+ #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:141
8582
+ #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:115
8583
+ #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:108
8584
+ #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:105
8585
+ #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:145
8586
+ msgid "Callback url"
8587
+ msgstr "Callback -URL"
8588
+
8589
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:164
8590
  msgid "The token expired. Please request new token! "
8591
  msgstr "Der Token ist abgelaufen, bitte fordere einen neuen Token an!"
8592
 
8593
+ #: SmartSlider3Pro/Generator/Common/Facebook/Elements/FacebookToken.php:29
8594
+ #: SmartSlider3Pro/Generator/Common/Flickr/Elements/FlickrToken.php:29
8595
+ #: SmartSlider3Pro/Generator/Common/Twitter/Elements/TwitterToken.php:29
8596
+ #: SmartSlider3Pro/Generator/Common/Vimeo/Elements/VimeoToken.php:28
8597
+ #: SmartSlider3Pro/Generator/Common/YouTube/Elements/YouTubeToken.php:28
8598
+ msgid "Request token"
8599
+ msgstr "Merkmal anfragen"
8600
+
8601
  #: SmartSlider3Pro/Generator/Common/Facebook/GeneratorGroupFacebook.php:26
8602
  msgid "Facebook photos or posts on your page"
8603
  msgstr ""
8738
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:104
8739
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:103
8740
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:94
8741
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:89
8742
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:99
8743
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:87
8744
  msgid "Creation date"
8785
  msgstr ""
8786
 
8787
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:109
8788
+ #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:126
8789
  #, php-format
8790
  msgid ""
8791
  "The given text is not valid XML! %1$sValidate your code%2$s to make sure it "
8793
  msgstr ""
8794
 
8795
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:111
8796
+ #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:128
8797
  #, php-format
8798
  msgid ""
8799
  "The given text is not valid JSON! %1$sValidate your code%2$s to make sure it "
8801
  msgstr ""
8802
 
8803
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:152
8804
+ #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:169
8805
  msgid ""
8806
  "Try to change the \"Level separation\" or \"Remove levels from result\" "
8807
  "setting."
8816
  msgid "Images"
8817
  msgstr "Bilder"
8818
 
8819
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:35
8820
+ msgid "Timezone offset in hours. For example: +2 or -7."
8821
+ msgstr ""
8822
+
8823
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:64
8824
  msgid "The data in the given url is not valid XML."
8825
  msgstr ""
8826
 
8839
  msgstr "Tweet anzeigen"
8840
 
8841
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:37
 
8842
  msgid "Comments"
8843
  msgstr "Kommentare"
8844
 
8874
  msgid "optional"
8875
  msgstr ""
8876
 
 
 
8877
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/GeneratorGroupDjclassifieds.php:23
8878
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:28
8879
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/GeneratorGroupEasyblog.php:21
8896
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/GeneratorGroupHikashop.php:22
8897
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/GeneratorGroupIgnitegallery.php:21
8898
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:20
 
 
 
 
8899
  #: SmartSlider3Pro/Generator/Joomla/Jevents/GeneratorGroupJevents.php:22
 
 
 
 
 
 
 
8900
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/GeneratorGroupJoomshopping.php:21
8901
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:30
 
 
8902
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:21
8903
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:31
8904
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/GeneratorGroupMijoshop.php:21
8908
  #: SmartSlider3Pro/Generator/Joomla/Redshop/GeneratorGroupRedshop.php:21
8909
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:25
8910
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/GeneratorGroupRseventspro.php:21
8911
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:31
8912
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/GeneratorGroupVirtuemart.php:21
8913
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:38
 
 
8914
  #, php-format
8915
  msgid "Creates slides from %1$s content."
8916
  msgstr ""
8917
 
 
 
 
 
8918
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/GeneratorGroupDjclassifieds.php:31
8919
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:21
8920
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:29
8941
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:40
8942
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:54
8943
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:49
8944
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:55
 
8945
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:39
8946
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:48
8947
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:46
8972
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:72
8973
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:47
8974
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:36
 
8975
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:69
8976
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:60
8977
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:51
 
8978
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:52
8979
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:60
8980
  msgid "Menu item (item ID)"
8981
  msgstr ""
8982
 
8991
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:79
8992
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:87
8993
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:70
8994
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:87
8995
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:96
8996
  msgid "Start date"
8997
  msgstr "Startdatum"
9003
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:88
9004
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:77
9005
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:83
 
9006
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:55
9007
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:62
9008
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:92
9015
  msgstr ""
9016
 
9017
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:43
 
9018
  msgid "Frontpage"
9019
  msgstr "Frontpage"
9020
 
9054
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:36
9055
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:23
9056
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/GeneratorGroupEventsbooking.php:29
 
 
 
9057
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/GeneratorGroupRseventspro.php:29
9058
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/GeneratorGroupAllInOneEventCalendar.php:25
9059
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/GeneratorGroupEventsManager.php:24
9068
 
9069
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/GeneratorGroupEasysocial.php:37
9070
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialVideos.php:19
 
9071
  msgid "Videos"
9072
  msgstr "Videos"
9073
 
9113
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:41
9114
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:55
9115
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:50
9116
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:56
 
9117
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:40
9118
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:47
9119
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:47
9125
  msgstr "Jeden Tag"
9126
 
9127
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:43
9128
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:59
9129
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:38
9130
  msgid "Recurring events"
9131
  msgstr ""
9149
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:54
9150
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:53
9151
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:50
9152
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:46
 
9153
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:38
9154
  msgid "Location"
9155
  msgstr "Ort"
9171
  msgstr ""
9172
 
9173
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:50
 
9174
  msgid "Public"
9175
  msgstr ""
9176
 
9177
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:51
 
 
9178
  msgid "Private"
9179
  msgstr ""
9180
 
9217
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/GeneratorGroupHikashop.php:31
9218
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:24
9219
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:19
 
 
9220
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/GeneratorGroupJoomshopping.php:29
9221
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/GeneratorGroupMijoshop.php:29
9222
  #: SmartSlider3Pro/Generator/Joomla/Redshop/GeneratorGroupRedshop.php:29
9225
  msgstr "Produkte"
9226
 
9227
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:52
9228
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:42
9229
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:37
9230
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:37
9231
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:50
9237
  msgstr "Als Sonderpreis"
9238
 
9239
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:62
9240
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:48
 
 
9241
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:44
9242
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:57
9243
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:40
9262
 
9263
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:78
9264
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:57
9265
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:65
 
 
 
9266
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:52
9267
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:57
9268
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:67
9296
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:80
9297
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:88
9298
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:71
9299
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:88
9300
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:97
9301
  msgid "End date"
9302
  msgstr "Enddatum"
9361
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:39
9362
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:43
9363
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:33
9364
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:49
 
9365
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:33
9366
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:34
9367
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:253
9368
  msgid "Tag"
9369
  msgstr "Tag"
9370
 
9399
  "to appear in the generator. One product ID per line."
9400
  msgstr ""
9401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9402
  #: SmartSlider3Pro/Generator/Joomla/Jevents/GeneratorGroupJevents.php:30
9403
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:32
9404
  msgid "One time events"
9417
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:59
9418
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:64
9419
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:56
9420
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:71
9421
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:77
9422
  msgid "Offset value"
9423
  msgstr ""
9424
 
9425
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:60
9426
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:65
9427
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:57
9428
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:72
9429
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:78
9430
  msgid ""
9431
  "Timezone offset in hours. For example: +2 or -7. If you leave it empty, "
9432
  "Joomla's System -> Global Configuration -> Server -> Server Time Zone "
9441
  msgid "Trashed"
9442
  msgstr ""
9443
 
9444
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9445
  msgid "Ask down all product images"
9446
  msgstr ""
9447
 
9448
+ #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:244
9449
  msgid "View item"
9450
  msgstr ""
9451
 
9452
+ #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:54
9453
+ msgid "Viewed"
9454
+ msgstr "Gesehen"
9455
+
9456
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:117
9457
  msgid "View image"
9458
  msgstr "Bild anzeigen"
9469
  msgid "Discount price"
9470
  msgstr "Sonderpreis"
9471
 
9472
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:58
9473
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:72
9474
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:78
9475
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:84
9484
  msgid "Show parent products only"
9485
  msgstr ""
9486
 
 
 
 
 
9487
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/GeneratorGroupAllInOneEventCalendar.php:20
9488
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:24
9489
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/GeneratorGroupEventsManager.php:19
9553
  msgid "Creates slides by your custom settings."
9554
  msgstr ""
9555
 
9556
+ #: SmartSlider3Pro/Generator/WordPress/Custom/GeneratorGroupCustom.php:37
9557
+ #, php-format
9558
+ msgid ""
9559
+ "You don't have custom generators yet. %1$s Check the documentation %2$s to "
9560
+ "learn how to create your own generator."
9561
+ msgstr ""
9562
+
9563
  #: SmartSlider3Pro/Generator/WordPress/Custom/Sources/CustomCustom.php:124
9564
  msgid "No options given"
9565
  msgstr ""
9697
  "inside them.)"
9698
  msgstr ""
9699
 
 
 
 
 
9700
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceCategory.php:26
9701
  msgid "Submenu limit"
9702
  msgstr ""
9958
  msgid "Vertical pendulum 3D"
9959
  msgstr "Vertikales 3D Pendel"
9960
 
9961
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:155
9962
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:206
9963
  msgid "Before text"
9964
  msgstr ""
9965
 
9966
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:159
9967
  msgid "Animated text"
9968
  msgstr ""
9969
 
9970
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:164
9971
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:214
9972
  msgid "After text"
9973
  msgstr ""
9974
 
9975
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:189
9976
  msgid "Rotating"
9977
  msgstr ""
9978
 
9979
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:190
9980
  msgid "Drop-in"
9981
  msgstr ""
9982
 
9983
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:192
9984
  msgid "Slide down"
9985
  msgstr ""
9986
 
9987
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:193
9988
+ msgid "Typewriter"
 
 
 
 
9989
  msgstr ""
9990
 
9991
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:194
9992
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:55
9993
  msgid "Chars"
9994
  msgstr "Buchstaben"
9995
 
9996
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:195
9997
  msgid "Chars 2"
9998
  msgstr ""
9999
 
10000
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:222
10001
  msgid "Auto width"
10002
  msgstr ""
10003
 
10004
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:223
10005
  #, fuzzy
10006
  #| msgid "Hover color"
10007
  msgid "Cursor color"
10008
  msgstr "Hover Farbe"
10009
 
10010
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:227
 
 
 
 
 
 
10011
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:279
10012
  msgctxt "Effect"
10013
  msgid "Loop"
10014
  msgstr ""
10015
 
10016
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:242
10017
  msgid "Show duration"
10018
  msgstr ""
10019
 
10020
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:273
10021
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:314
10022
  msgid "Class on the selected tag element."
10023
  msgstr ""
10024
 
10025
+ #: SmartSlider3Pro/Renderable/Item/Area/Assets/area.js:22
10026
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:39
10027
  msgid "Area"
10028
  msgstr ""
10075
  msgid "Full"
10076
  msgstr "Voll"
10077
 
10078
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:234
10079
  msgid "Scales up the image on hover"
10080
  msgstr ""
10081
 
10082
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:238
10083
  msgid "Overlay background"
10084
  msgstr ""
10085
 
10086
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:248
10087
  msgid "Positions the text inside the overlay."
10088
  msgstr ""
10089
 
10097
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
10098
  #: SmartSlider3Pro/Renderable/Item/Counter/Assets/counter.js:20
10099
  #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:40
10100
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:101
10101
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:111
10102
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:148
10103
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:126
10104
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
10105
  msgid "Counter"
10106
  msgstr ""
10107
 
10108
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:126
10109
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:112
10110
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:127
10111
+ #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:63
10112
  msgid "Value"
10113
  msgstr ""
10114
 
10115
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:129
10116
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:115
10117
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:130
10118
  msgid "Start from"
10119
  msgstr ""
10133
  msgstr ""
10134
 
10135
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:160
10136
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:119
10137
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:145
10138
  msgid "Labels"
10139
  msgstr ""
10147
  msgstr ""
10148
 
10149
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:172
10150
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:120
10151
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:156
10152
  msgid "Pre"
10153
  msgstr ""
10154
 
10155
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:180
10156
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:137
10157
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:164
 
10158
  msgid "Animation duration"
10159
  msgstr ""
10160
 
10397
  msgid "Upper-roman"
10398
  msgstr ""
10399
 
10400
+ #: SmartSlider3Pro/Renderable/Item/Icon/Assets/icon2.js:37
10401
  msgid "Icon not found"
10402
  msgstr "Icon nicht gefunden"
10403
 
10404
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:131
10405
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:132
10406
+ #, fuzzy
10407
+ #| msgid "Previous label"
10408
+ msgid "Aria label"
10409
+ msgstr "Letztes Label"
10410
+
10411
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:133
10412
+ #, php-format
10413
+ msgid "Enter an %1$s aria-label attribute %2$s that describes the link."
10414
+ msgstr ""
10415
+
10416
+ #: SmartSlider3Pro/Renderable/Item/Iframe/Assets/iframe.js:22
10417
  msgid "Iframe"
10418
  msgstr ""
10419
 
10451
  msgid "Image area"
10452
  msgstr ""
10453
 
10454
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/Assets/imagebox.js:22
10455
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:64
10456
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:176
10457
  #, fuzzy
10458
  #| msgid "Image mode"
10459
  msgid "Image box"
10460
  msgstr "Bildmodus"
10461
 
10462
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:342
10463
  msgid ""
10464
  "Positions the text inside the layer. Only works with left and right layout."
10465
  msgstr ""
10560
  msgid "Back image alt tag"
10561
  msgstr ""
10562
 
10563
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:121
10564
  msgid "MP4 video"
10565
  msgstr ""
10566
 
10567
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:221
10568
  msgid "Preload"
10569
  msgstr "Vorspann"
10570
 
10580
  "so we only suggest using this layer if you are a developer!"
10581
  msgstr ""
10582
 
10583
+ #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:65
 
10584
  msgid "Position name or module ID"
10585
  msgstr ""
10586
 
10587
+ #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:66
10588
  msgid ""
10589
  "The position name of your module (for Loadposition and Modulepos) or the "
10590
  "module's ID (Module)."
10645
  msgid "CSS selector (sum of heights)"
10646
  msgstr ""
10647
 
10648
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10649
  msgctxt "Slider type"
10650
  msgid "Carousel slider"
10651
  msgstr ""
10652
 
10653
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:41
10654
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:42
10655
  #, fuzzy
10656
  #| msgid "Slider size"
10657
  msgid "Slide size"
10658
  msgstr "Slider Größe"
10659
 
10660
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:68
10661
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:69
10662
  msgid "Max pane width"
10663
  msgstr ""
10664
 
10665
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:70
10666
  msgid ""
10667
  "You can use this option to limit how many slides can show up next to each "
10668
  "other."
10669
  msgstr ""
10670
 
10671
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:82
10672
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:83
10673
  msgid "Minimum slide distance"
10674
  msgstr ""
10675
 
10676
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:84
10677
  msgid "The minimum space between two slides."
10678
  msgstr ""
10679
 
10680
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:96
10681
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:108
10682
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:132
10683
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:156
10684
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:117
10685
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:129
10686
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:153
10687
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:177
10688
  msgid "Side spacing"
10689
  msgstr ""
10690
 
10691
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:104
10692
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:125
10693
  msgid "Desktop side spacing"
10694
  msgstr ""
10695
 
10696
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:105
10697
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:129
10698
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:153
10699
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:126
10700
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:150
10701
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:174
10702
  msgid ""
10703
  "You can create a fix distance between the slider and the slides where your "
10704
  "controls are which appear on this device. This way your controls won't cover "
10705
  "the slide content."
10706
  msgstr ""
10707
 
10708
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:128
10709
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:149
10710
  msgid "Tablet side spacing"
10711
  msgstr ""
10712
 
10713
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:152
10714
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:173
10715
  msgid "Mobile side spacing"
10716
  msgstr ""
10717
 
10718
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:175
10719
  #, fuzzy
10720
  #| msgid "Background color"
10721
  msgid "Slide background color"
10722
  msgstr "Hintergrundfarbe"
10723
 
10724
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:180
10725
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:85
 
 
 
 
 
 
 
10726
  #, fuzzy
10727
  #| msgid "Slide order saved."
10728
  msgid "Slide border width"
10729
  msgstr "Slide Anordnung gespeichert."
10730
 
10731
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:185
10732
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:90
10733
  #, fuzzy
10734
  #| msgid "Slide order saved."
10735
  msgid "Slide border color"
10736
  msgstr "Slide Anordnung gespeichert."
10737
 
10738
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:188
10739
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:93
10740
  #, fuzzy
10741
  #| msgid "Slide order saved."
10742
  msgid "Slide border radius"
10743
  msgstr "Slide Anordnung gespeichert."
10744
 
10745
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:195
10746
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:103
10747
  #, fuzzy
10748
  #| msgid "Slide order saved."
10749
  msgid "Slider border width"
10750
  msgstr "Slide Anordnung gespeichert."
10751
 
10752
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:200
10753
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:108
10754
  #, fuzzy
10755
  #| msgid "Slide order saved."
10756
  msgid "Slider border color"
10757
  msgstr "Slide Anordnung gespeichert."
10758
 
10759
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:203
10760
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:111
10761
  #, fuzzy
10762
  #| msgid "Slide order saved."
10763
  msgid "Slider border radius"
10764
  msgstr "Slide Anordnung gespeichert."
10765
 
10766
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:212
10767
  msgid "The Single Switch setting can only move the slides horizontally!"
10768
  msgstr ""
10769
 
10770
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:260
10771
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:701
10772
  msgid ""
10773
  "This option will create a complete round from your slides if you have enough "
10774
  "slides. If you don't have enough slides, you could consider duplicating all "
10775
  "the slides or just add more slides until you will get a carousel round."
10776
  msgstr ""
10777
 
10778
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:268
10779
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:269
10780
  msgid "Single switch"
10781
  msgstr ""
10782
 
10783
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:270
10784
  msgid "It switches one slide instead of moving all the visible slides."
10785
  msgstr ""
10786
 
10787
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:277
10788
  msgid "Justify slides"
10789
  msgstr ""
10790
 
10791
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:33
10792
  msgctxt "Slider type"
10793
  msgid "Showcase slider"
10794
  msgstr ""
10795
 
10796
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:69
10797
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:77
10798
  msgid "Slide distance"
10799
  msgstr "Slide Distanz"
10800
 
10801
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:78
10802
  msgid "Fix space between the slides."
10803
  msgstr ""
10804
 
10805
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:194
10806
  msgid "Slide CSS Preset"
10807
  msgstr ""
10808
 
10809
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:256
10810
  #, fuzzy
10811
  #| msgid "No animation"
10812
  msgid "Showcase animation"
10813
  msgstr "Keine Animation"
10814
 
10815
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:279
10816
  msgid "Horizontal showcase"
10817
  msgstr "Horizontaler Schaukasten"
10818
 
10819
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:295
10820
  msgid "Vertical showcase"
10821
  msgstr "Vertikaler Schaukasten"
10822
 
10823
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:311
10824
  msgid "Horizontal cover flow"
10825
  msgstr ""
10826
 
10827
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:327
10828
  msgid "Vertical cover flow"
10829
  msgstr ""
10830
 
10831
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:708
10832
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:709
10833
  msgid "Switch with next/previous slides"
10834
  msgstr ""
10835
 
10836
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:710
10837
  msgid ""
10838
  "Clicking on any slide that's not in the middle will make the slider switch "
10839
  "to that slide. With this option you can disable this behavior, for example, "
10910
  msgid "Fullscreen"
10911
  msgstr ""
10912
 
10913
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImageFrontend.php:137
10914
+ msgid "Exit full screen"
10915
+ msgstr ""
10916
+
10917
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImageFrontend.php:141
10918
+ msgid "Enter Full screen"
10919
+ msgstr ""
10920
+
10921
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:53
10922
  #, php-format
10923
  msgid ""
10945
  msgid "Bar color"
10946
  msgstr ""
10947
 
10948
+ #~ msgid "Show hidden"
10949
+ #~ msgstr "Zeige versteckte"
10950
+
10951
+ #, fuzzy
10952
+ #~| msgid "Tablet text"
10953
+ #~ msgid "Tablet retina"
10954
+ #~ msgstr "Tablet-Text"
10955
+
10956
+ #, fuzzy
10957
+ #~| msgid "Mobile text"
10958
+ #~ msgid "Mobile retina"
10959
+ #~ msgstr "Mobil-Text"
10960
+
10961
+ #, fuzzy
10962
+ #~| msgid "Next position"
10963
+ #~ msgid "Absolute position"
10964
+ #~ msgstr "Nächste Position"
10965
+
10966
+ #~ msgid "Loading animation"
10967
+ #~ msgstr "Animation laden"
10968
+
10969
+ #~ msgid "Tablet scale"
10970
+ #~ msgstr "Tablet Größe"
10971
+
10972
+ #~ msgid "Mobile scale"
10973
+ #~ msgstr "Mobil Größe"
10974
+
10975
+ #, fuzzy
10976
+ #~| msgid "Tablet scale"
10977
+ #~ msgid "Tablet size"
10978
+ #~ msgstr "Tablet Größe"
10979
+
10980
+ #, fuzzy
10981
+ #~| msgid "Mobile scale"
10982
+ #~ msgid "Mobile size"
10983
+ #~ msgstr "Mobil Größe"
10984
+
10985
+ #, fuzzy
10986
+ #~| msgid "Hover color"
10987
+ #~ msgid "Text color"
10988
+ #~ msgstr "Hover Farbe"
10989
+
10990
+ #~ msgctxt "Slider type"
10991
+ #~ msgid "Accordion"
10992
+ #~ msgstr "Accordion"
10993
+
10994
+ #~ msgid "Dark"
10995
+ #~ msgstr "dunkel"
10996
+
10997
+ #~ msgid "Outer color"
10998
+ #~ msgstr "Außenfarbe"
10999
+
11000
+ #~ msgid "Inner color"
11001
+ #~ msgstr "Innenfarbe"
11002
+
11003
+ #~ msgid "Tab background"
11004
+ #~ msgstr "Tab Hintergrund"
11005
+
11006
+ #~ msgid "Outer"
11007
+ #~ msgstr "Äußere"
11008
+
11009
+ #~ msgid "Inner"
11010
+ #~ msgstr "Innere"
11011
+
11012
+ #, fuzzy
11013
+ #~| msgid "Background color"
11014
+ #~ msgid "Slider background color"
11015
+ #~ msgstr "Hintergrundfarbe"
11016
+
11017
  #~ msgid "Ticket price"
11018
  #~ msgstr "Ticketpreis"
Nextend/Languages/es_ES.mo CHANGED
Binary file
Nextend/Languages/es_ES.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-10-16 11:23+0200\n"
5
- "PO-Revision-Date: 2020-10-16 11:23+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
@@ -10,38 +10,34 @@ msgstr ""
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
- "X-Generator: Poedit 2.4.1\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-KeywordsList: n2_;n2_e;n2_n:1,2;n2_en:1,2;n2_x:1,2c;n2_ex:1,2c\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: Framework/Asset/Builder/cache\n"
19
 
20
- #: Framework/Api.php:117 Framework/Misc/HttpClient.php:81
21
  msgid "Debug error"
22
  msgstr "Error de depuración"
23
 
24
- #: Framework/Api.php:136 Framework/Misc/HttpClient.php:106
25
  msgid "CURL disabled in your php.ini configuration. Please enable it!"
26
  msgstr ""
27
  "CURL está desactivado en tu configuración php.ini. ¡Por favor actívala!"
28
 
29
- #: Framework/Api.php:144 Framework/Misc/HttpClient.php:112
30
  msgid "Unable to contact with the licensing server, please try again later!"
31
  msgstr ""
32
  "¡No se puede conectar con el servidor de licencias, por favor inténtalo más "
33
  "tarde!"
34
 
35
- #: Framework/Asset/Js/Js.php:70
36
- msgid "jquery.framework"
37
- msgstr "jquery.framework"
38
-
39
- #: Framework/Asset/Predefined.php:28
40
  msgctxt "Default Google font family for admin"
41
  msgid "Montserrat"
42
  msgstr "Montserrat"
43
 
44
- #: Framework/Asset/Predefined.php:29
45
  msgctxt "Default Google font charset for admin"
46
  msgid "latin"
47
  msgstr "latín"
@@ -54,7 +50,7 @@ msgstr "¡No tienes permisos para subir archivos!"
54
  msgid "Folder is missing!"
55
  msgstr "¡No se encuentra la carpeta!"
56
 
57
- #: Framework/Content/Joomla/JoomlaContent.php:131
58
  msgid "Menu item"
59
  msgstr "Ítem del menú"
60
 
@@ -82,8 +78,8 @@ msgstr "El token de seguridad no es válido"
82
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:96
83
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:176
84
  #: Framework/Image/ControllerAjaxImage.php:34
85
- #: Framework/Image/ControllerAjaxImage.php:73
86
- #: Framework/Image/ControllerAjaxImage.php:109
87
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:33
88
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:99
89
  msgid "Unexpected error"
@@ -100,7 +96,7 @@ msgstr "El valor visual no existe"
100
 
101
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:136
102
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:156
103
- #: Framework/Image/ControllerAjaxImage.php:91
104
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:53
105
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:76
106
  msgid "Not editable"
@@ -132,37 +128,37 @@ msgstr ""
132
  msgid "Font manager"
133
  msgstr "Administrador de fuentes"
134
 
135
- #: Framework/Font/FontRenderer.php:103 Framework/Font/FontRenderer.php:105
136
- #: Framework/Font/FontRenderer.php:117 Framework/Font/FontRenderer.php:119
137
- #: Framework/Font/FontRenderer.php:133 Framework/Font/FontRenderer.php:152
138
- #: Framework/Font/FontRenderer.php:187 Framework/Font/FontRenderer.php:205
139
- #: Framework/Font/FontRenderer.php:221 Framework/Font/FontRenderer.php:237
140
- #: Framework/Font/FontRenderer.php:255 Framework/Style/StyleRenderer.php:80
141
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:28
142
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
143
- #: SmartSlider3/Renderable/Item/Text/Assets/text.js:20
144
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:53
145
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:134
146
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:248
147
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:149
148
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:142
149
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:64
150
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:51
151
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:58
152
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:58
153
  msgid "Text"
154
  msgstr "Texto"
155
 
156
- #: Framework/Font/FontRenderer.php:131 Framework/Font/FontRenderer.php:134
157
- #: Framework/Font/FontRenderer.php:153 Framework/Font/FontRenderer.php:189
158
- #: Framework/Font/FontRenderer.php:206 Framework/Font/FontRenderer.php:239
159
- #: Framework/Font/FontRenderer.php:257 Framework/Style/StyleRenderer.php:109
160
- #: Framework/Style/StyleRenderer.php:125 Framework/Style/StyleRenderer.php:144
161
- #: Framework/Style/StyleRenderer.php:196
162
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:74
163
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:108
164
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:42
165
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:63
166
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:139
167
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:171
168
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:187
@@ -173,27 +169,27 @@ msgstr "Texto"
173
  msgid "Hover"
174
  msgstr "Hover"
175
 
176
- #: Framework/Font/FontRenderer.php:139 Framework/Style/StyleRenderer.php:141
177
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:27
178
- #: SmartSlider3/Renderable/Item/Heading/Assets/heading.js:20
179
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:53
180
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
181
  #: SmartSlider3/Storage.php:65
182
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
183
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:306
184
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:100
185
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:249
186
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:264
187
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:203
188
  msgid "Heading"
189
  msgstr "Encabezado"
190
 
191
- #: Framework/Font/FontRenderer.php:150 Framework/Font/FontRenderer.php:188
192
- #: Framework/Font/FontRenderer.php:238
193
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:58
194
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:60
195
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:85
196
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:87
197
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:75
198
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:77
199
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:112
@@ -207,29 +203,29 @@ msgstr "Encabezado"
207
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:181
208
  #: SmartSlider3/Storage.php:877
209
  #: SmartSlider3Pro/Form/Element/ParticleSkin.php:18
 
210
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:169
211
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:170
212
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:188
213
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:189
214
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:180
215
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:181
216
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:218
217
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:219
218
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:114
219
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:115
220
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:136
221
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:137
222
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:280
223
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:281
 
224
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:138
225
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:139
226
  msgid "Link"
227
  msgstr "Enlace"
228
 
229
- #: Framework/Font/FontRenderer.php:158 Framework/Font/FontRenderer.php:262
230
- #: Framework/Style/StyleRenderer.php:122 Framework/Style/StyleRenderer.php:201
231
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:30
232
- #: SmartSlider3/Renderable/Item/Button/Assets/button.js:20
233
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:50
234
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
235
  #: SmartSlider3/Storage.php:290 SmartSlider3/Widget/Group/Autoplay.php:49
@@ -243,72 +239,11 @@ msgstr "Enlace"
243
  msgid "Button"
244
  msgstr "Botón"
245
 
246
- #: Framework/Font/FontRenderer.php:169
247
- msgid "Accordion slide title"
248
- msgstr "Título del slide acordeón"
249
-
250
- #: Framework/Font/FontRenderer.php:171
251
- #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:72
252
- #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:73
253
- #: Framework/Form/Element/Select/FontWeight.php:13
254
- #: Framework/Form/Element/Select/FontWeight.php:18
255
- #: Framework/Style/StyleRenderer.php:94 Framework/Style/StyleRenderer.php:108
256
- #: Framework/Style/StyleRenderer.php:124 Framework/Style/StyleRenderer.php:143
257
- #: Framework/Style/StyleRenderer.php:162 Framework/Style/StyleRenderer.php:178
258
- #: Framework/Style/StyleRenderer.php:194
259
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:148
260
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:62
261
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:149
262
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:61
263
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:72
264
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:173
265
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:184
266
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:153
267
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:186
268
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:197
269
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:377
270
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:411
271
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:427
272
- #: SmartSlider3Pro/SplitText/ModelSplitText.php:62
273
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:156
274
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:170
275
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:186
276
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:205
277
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:224
278
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:240
279
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:256
280
- msgid "Normal"
281
- msgstr "Normal"
282
-
283
- #: Framework/Font/FontRenderer.php:172 Framework/Font/FontRenderer.php:222
284
- #: Framework/Style/StyleRenderer.php:163 Framework/Style/StyleRenderer.php:179
285
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:353
286
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:396
287
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:441
288
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:477
289
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:513
290
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:554
291
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:596
292
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:638
293
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:225
294
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:241
295
- msgid "Active"
296
- msgstr "Activo"
297
-
298
- #: Framework/Font/FontRenderer.php:177
299
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
300
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:92
301
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:31
302
- #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:79
303
- #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/Assets/Admin/arrow.js:11
304
- msgid "Slide title"
305
- msgstr "Título del slide"
306
-
307
- #: Framework/Font/FontRenderer.php:185
308
  msgid "Paragraph"
309
  msgstr "Párrafo"
310
 
311
- #: Framework/Font/FontRenderer.php:219 Framework/Style/StyleRenderer.php:176
312
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:49
313
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:238
314
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:51
@@ -316,7 +251,22 @@ msgstr "Párrafo"
316
  msgid "Dot"
317
  msgstr "Punto"
318
 
319
- #: Framework/Font/FontRenderer.php:235 SmartSlider3/Storage.php:529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  #: SmartSlider3Pro/Renderable/Item/HtmlList/Assets/list.js:20
321
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:56
322
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:76
@@ -325,8 +275,8 @@ msgstr "Punto"
325
  msgid "List"
326
  msgstr "Lista"
327
 
328
- #: Framework/Font/FontRenderer.php:253 Framework/Font/FontRenderer.php:256
329
- #: Framework/Style/StyleRenderer.php:192 Framework/Style/StyleRenderer.php:195
330
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:234
331
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:254
332
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:257
@@ -353,29 +303,30 @@ msgid "Family"
353
  msgstr "Familia"
354
 
355
  #: Framework/Font/ModelFont.php:40
356
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:170
357
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:54
358
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:197
359
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:304
360
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:438
361
  #: SmartSlider3/Form/Element/BackgroundImage.php:31
362
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:222
363
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:71
364
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:105
 
365
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:53
366
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:83
367
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:119
368
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:105
369
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:164
370
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:112
371
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:158
372
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:137
373
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:245
374
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:94
375
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:242
376
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:138
377
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:40
378
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:54
379
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:43
380
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:57
381
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:59
@@ -386,31 +337,28 @@ msgid "Color"
386
  msgstr "Color"
387
 
388
  #: Framework/Font/ModelFont.php:44
389
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:413
390
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:416
391
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:418
 
392
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:52
393
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:192
394
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:84
395
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:216
396
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:166
397
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:58
398
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:59
399
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:182
400
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:150
401
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:88
402
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:217
403
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:129
404
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:132
405
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:149
406
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:202
407
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:204
408
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:174
409
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:143
410
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:101
411
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:234
412
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:191
413
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:92
414
  #: SmartSlider3Pro/Widget/Indicator/IndicatorPie/IndicatorPie.php:31
415
  msgid "Size"
416
  msgstr "Tamaño"
@@ -451,10 +399,11 @@ msgstr "Espacio entre palabras"
451
  msgid "Transform"
452
  msgstr "Transformar"
453
 
454
- #: Framework/Font/ModelFont.php:86 Framework/Form/Element/Mixed/Border.php:39
455
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:163
 
456
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:116
457
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:190
458
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:91
459
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:46
460
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:105
@@ -462,16 +411,15 @@ msgstr "Transformar"
462
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:85
463
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:105
464
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:167
465
- #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:126
466
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:44
467
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:131
468
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:150
469
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:208
470
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:102
471
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:101
472
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:92
473
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:35
474
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:62
475
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:84
476
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:51
477
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:46
@@ -487,30 +435,21 @@ msgstr "Transformar"
487
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:54
488
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:55
489
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:38
490
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:52
491
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:118
492
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:86
493
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:69
494
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:51
495
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:78
496
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:69
497
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:56
498
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:56
499
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:28
500
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:63
501
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:62
502
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:63
503
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:51
504
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:45
505
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:56
506
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:84
507
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:66
508
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:56
509
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:38
510
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:36
511
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:151
512
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:137
513
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:223
514
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:39
515
  msgid "None"
516
  msgstr "Ninguno"
@@ -536,14 +475,14 @@ msgid "Text shadow"
536
  msgstr "Sombra del texto"
537
 
538
  #: Framework/Font/ModelFont.php:100 Framework/Image/ModelImage.php:35
539
- #: Framework/Image/ModelImage.php:58 Framework/Style/ModelStyle.php:94
540
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:83
541
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:61
542
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:111
543
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:77
544
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:38
545
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:115
546
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:218
547
  #: SmartSlider3/BackgroundAnimation/ModelBackgroundAnimation.php:41
548
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:78
549
  #: SmartSlider3Pro/PostBackgroundAnimation/ModelPostBackgroundAnimation.php:45
@@ -571,8 +510,8 @@ msgstr "Puedes cargar Google Fonts en el backend."
571
 
572
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:64
573
  #: Framework/Form/Element/Style.php:50
574
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:161
575
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:188
576
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabStyle.php:20
577
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:57
578
  #: SmartSlider3/Widget/Group/Bullet.php:95
@@ -597,6 +536,38 @@ msgctxt "Font style"
597
  msgid "Italic"
598
  msgstr "Itálica"
599
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
600
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:86
601
  msgid "Character set"
602
  msgstr "Grupo de caracteres"
@@ -666,52 +637,53 @@ msgid "Choose"
666
  msgstr "Seleccionar"
667
 
668
  #: Framework/Form/Element/Breakpoint.php:39
669
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
670
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:75
671
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:194
672
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:52
673
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:80
674
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:80
675
  msgid "Orientation"
676
  msgstr "Orientación"
677
 
678
  #: Framework/Form/Element/Breakpoint.php:41
679
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
680
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:230
 
681
  msgid "Portrait"
682
  msgstr "Vertical"
683
 
684
  #: Framework/Form/Element/Breakpoint.php:42
685
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
686
  msgid "Landscape"
687
  msgstr "Horizontal"
688
 
689
  #: Framework/Form/Element/Breakpoint.php:51
690
- #: Framework/Form/Element/Breakpoint.php:86 Framework/Image/ModelImage.php:40
691
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:86
692
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:228
693
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:20
694
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:161
695
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:162
696
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:181
 
697
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:112
698
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:97
699
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:229
700
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:302
701
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:523
702
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:156
703
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:167
704
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:157
705
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:161
706
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:97
707
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:150
 
708
  msgid "Mobile"
709
  msgstr "Móvil"
710
 
711
  #: Framework/Form/Element/Breakpoint.php:56
712
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:229
713
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:21
714
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:177
715
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:101
716
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:212
717
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:294
@@ -723,28 +695,29 @@ msgstr "Móvil grande"
723
 
724
  #: Framework/Form/Element/Breakpoint.php:61
725
  #: Framework/Form/Element/Breakpoint.php:91 Framework/Image/ModelImage.php:38
726
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:85
727
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:226
728
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:18
729
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:163
730
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:172
731
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:106
732
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:194
733
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:287
734
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:473
735
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:155
736
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:159
737
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:145
738
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:149
739
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:112
740
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:126
 
741
  msgid "Tablet"
742
  msgstr "Tableta"
743
 
744
  #: Framework/Form/Element/Breakpoint.php:66
745
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:227
746
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:19
747
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:168
748
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:110
749
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:178
750
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:279
@@ -756,23 +729,24 @@ msgstr "Tableta grande"
756
 
757
  #: Framework/Form/Element/Breakpoint.php:71
758
  #: Framework/Form/Element/Breakpoint.php:96 Framework/Image/ModelImage.php:31
759
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:84
760
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:224
761
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:16
762
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:163
763
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:115
764
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:159
765
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:151
766
- #: SmartSlider3/Application/Admin/Preview/Template/Index.php:29
767
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:127
768
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:102
 
769
  msgid "Desktop"
770
  msgstr "Escritorio"
771
 
772
  #: Framework/Form/Element/Breakpoint.php:76
773
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:225
774
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:17
775
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:159
776
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:119
777
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:143
778
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:272
@@ -800,12 +774,11 @@ msgstr "Ver registros"
800
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
801
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
802
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
803
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:146
804
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:149
805
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
806
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
807
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:179
808
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:161
809
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:85
810
  msgid "Font"
811
  msgstr "Fuente"
@@ -814,52 +787,52 @@ msgstr "Fuente"
814
  msgid "Warning"
815
  msgstr "Atención"
816
 
817
- #: Framework/Form/Element/Mixed/Border.php:40
818
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:166
819
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:193
820
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:154
821
  msgid "Dotted"
822
  msgstr "Puntos"
823
 
824
- #: Framework/Form/Element/Mixed/Border.php:41
825
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:165
826
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:192
827
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:153
828
  msgid "Dashed"
829
  msgstr "Líneas"
830
 
831
- #: Framework/Form/Element/Mixed/Border.php:42
832
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:164
833
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:191
834
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:152
835
  msgid "Solid"
836
  msgstr "Sólido"
837
 
838
- #: Framework/Form/Element/Mixed/Border.php:43
839
  msgid "Double"
840
  msgstr "Doble"
841
 
842
- #: Framework/Form/Element/Mixed/Border.php:44
843
  msgid "Groove"
844
  msgstr "Surco"
845
 
846
- #: Framework/Form/Element/Mixed/Border.php:45
847
  msgid "Ridge"
848
  msgstr "Ranura"
849
 
850
- #: Framework/Form/Element/Mixed/Border.php:46
851
  msgid "Inset"
852
  msgstr "Profundidad"
853
 
854
- #: Framework/Form/Element/Mixed/Border.php:47
855
  msgid "Outset"
856
  msgstr "Elevación"
857
 
858
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:20
859
  msgid "Field"
860
  msgstr "Campo"
861
 
862
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:22
863
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:87
864
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:42
865
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:101
@@ -870,7 +843,6 @@ msgstr "Campo"
870
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:97
871
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:88
872
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:31
873
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:58
874
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:80
875
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:47
876
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:42
@@ -885,24 +857,15 @@ msgstr "Campo"
885
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:50
886
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:51
887
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:34
888
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:48
889
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:114
890
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:82
891
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:65
892
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:47
893
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:74
894
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:65
895
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:52
896
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:52
897
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:59
898
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:58
899
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:59
900
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:47
901
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:41
902
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:52
903
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:80
904
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:62
905
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:52
906
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:68
907
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:91
908
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:34
@@ -913,24 +876,24 @@ msgstr "Campo"
913
  msgid "Order"
914
  msgstr "Orden"
915
 
916
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:24
917
  msgid "Ascending"
918
  msgstr "Ascendente"
919
 
920
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:25
921
  msgid "Descending"
922
  msgstr "Descendente"
923
 
924
  #: Framework/Form/Element/OnOff.php:22
925
  #: Framework/Form/Element/Select/Gradient.php:15
926
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:145
927
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:117
928
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:124
929
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:96
930
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:107
931
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:290
932
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:307
933
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:165
934
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:141
935
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:150
936
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:180
@@ -938,9 +901,9 @@ msgid "Off"
938
  msgstr "Apagado"
939
 
940
  #: Framework/Form/Element/OnOff.php:22
941
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:146
942
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:308
943
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:166
944
  msgid "On"
945
  msgstr "Encendido"
946
 
@@ -953,11 +916,10 @@ msgstr ""
953
  "varias opciones."
954
 
955
  #: Framework/Form/Element/Select/FillMode.php:15
956
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:239
957
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:107
958
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:240
959
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:130
960
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:208
961
  msgid "Fill"
962
  msgstr "Rellenar"
963
 
@@ -966,45 +928,39 @@ msgid "Blur fit"
966
  msgstr "Ajuste de tamaño desenfocado"
967
 
968
  #: Framework/Form/Element/Select/FillMode.php:17
969
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:240
970
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:108
971
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:241
972
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:131
973
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:209
974
  msgid "Fit"
975
  msgstr "Encajar"
976
 
977
  #: Framework/Form/Element/Select/FillMode.php:18
978
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:79
979
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:80
 
980
  msgid "Stretch"
981
  msgstr "Estirar"
982
 
983
  #: Framework/Form/Element/Select/FillMode.php:19
984
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:81
985
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:102
986
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:150
987
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:241
988
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:109
989
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:242
990
  #: SmartSlider3/Storage.php:710
991
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:103
992
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:71
993
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:71
994
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:235
995
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:337
996
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:307
997
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:67
998
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:76
999
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:76
1000
  msgid "Center"
1001
  msgstr "Centrar"
1002
 
1003
- #: Framework/Form/Element/Select/FillMode.php:20
1004
- msgid "Tile"
1005
- msgstr "Mosaico"
1006
-
1007
- #: Framework/Form/Element/Select/FillMode.php:26
1008
  msgid "Slider's default"
1009
  msgstr "Slider por defecto"
1010
 
@@ -1018,7 +974,6 @@ msgstr "Slider por defecto"
1018
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTags.php:17
1019
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTaxonomies.php:23
1020
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:39
1021
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Elements/CobaltCategories.php:39
1022
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsCategories.php:36
1023
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsLocations.php:36
1024
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsTypes.php:15
@@ -1044,27 +999,12 @@ msgstr "Slider por defecto"
1044
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopTags.php:18
1045
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopWarehouses.php:18
1046
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Elements/IgnitegalleryCategories.php:33
1047
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Elements/JauctionCategories.php:35
1048
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Elements/JauctionLanguages.php:21
1049
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Elements/JcartCategories.php:33
1050
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Elements/JcartLanguages.php:22
1051
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCalendars.php:17
1052
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCategories.php:34
1053
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:72
1054
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Elements/JmarketCategories.php:35
1055
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Elements/JmarketLanguages.php:21
1056
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialCategories.php:31
1057
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialEvents.php:17
1058
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialGroupcategories.php:31
1059
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialGroups.php:17
1060
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialProfiles.php:17
1061
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialVideotype.php:17
1062
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:46
1063
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingCategories.php:42
1064
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:27
1065
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingManufacturers.php:27
1066
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Elements/JreviewsArticles.php:21
1067
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Elements/JreviewsCategories.php:36
1068
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Categories.php:29
1069
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Tags.php:18
1070
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Elements/MijoshopCategories.php:49
@@ -1080,8 +1020,6 @@ msgstr "Slider por defecto"
1080
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Elements/RseventsproTags.php:17
1081
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartCategories.php:34
1082
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartManufacturers.php:21
1083
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Elements/ZooCategories.php:24
1084
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Elements/ZooTags.php:17
1085
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarCategories.php:34
1086
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarTags.php:35
1087
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Elements/EventsManagerCategories.php:34
@@ -1114,7 +1052,6 @@ msgid "Extra light"
1114
  msgstr "Extra fina"
1115
 
1116
  #: Framework/Form/Element/Select/FontWeight.php:17
1117
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:77
1118
  msgid "Light"
1119
  msgstr "Fina"
1120
 
@@ -1135,34 +1072,34 @@ msgid "New"
1135
  msgstr "Nuevo"
1136
 
1137
  #: Framework/Form/Element/Select/LinkTarget.php:15
1138
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1150
1139
  msgid "Parent"
1140
  msgstr "Carpeta raíz"
1141
 
1142
  #: Framework/Form/Element/Select/LinkTarget.php:16
1143
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:75
1144
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:78
1145
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:81
1146
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:84
1147
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:176
1148
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:468
1149
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
1150
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
1151
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
1152
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
1153
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
1154
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
1155
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:511
1156
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:238
 
1157
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:106
1158
  #: SmartSlider3/Storage.php:979
1159
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:138
1160
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:73
1161
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:199
1162
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:217
1163
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:234
1164
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:299
1165
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:336
1166
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:105
1167
  msgid "Top"
1168
  msgstr "Superior"
@@ -1187,25 +1124,25 @@ msgstr "Restablecer al estado normal"
1187
  #: Framework/Form/Joomla/Element/Select/MenuItems.php:18
1188
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:119
1189
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:61
1190
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:150
1191
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:132
1192
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:507
1193
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:107
1194
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:49
1195
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:190
1196
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:237
1197
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:196
1198
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:58
1199
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:69
1200
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:170
1201
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:181
1202
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:183
1203
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:194
1204
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:373
1205
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:408
1206
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:424
1207
  #: SmartSlider3/Storage.php:552 SmartSlider3/Storage.php:928
1208
- #: SmartSlider3/Storage.php:1165 SmartSlider3/Storage.php:3954
1209
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:39
1210
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCategoryLanguage.php:20
1211
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCurrency.php:20
@@ -1215,25 +1152,17 @@ msgstr "Restablecer al estado normal"
1215
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:95
1216
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:80
1217
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:86
1218
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:218
1219
  msgid "Default"
1220
  msgstr "Por defecto"
1221
 
1222
- #: Framework/Image/Admin/Assets/js/editor.js:142
1223
- msgid "Generate"
1224
- msgstr "Generar"
1225
-
1226
- #: Framework/Image/Admin/Assets/js/editor.js:148
1227
- msgid "Desktop image is empty!"
1228
- msgstr "¡La imagen de escritorio está vacía!"
1229
-
1230
- #: Framework/Image/Admin/Assets/js/manager.js:44
1231
  msgid "The image is empty"
1232
  msgstr "La imagen está vacía"
1233
 
1234
- #: Framework/Image/Admin/Assets/js/manager.js:65
1235
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:86
1236
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:107
1237
  msgid "Empty"
1238
  msgstr "Vacio"
1239
 
@@ -1241,38 +1170,27 @@ msgstr "Vacio"
1241
  msgid "Image manager"
1242
  msgstr "Administrador de imágenes"
1243
 
1244
- #: Framework/Image/Joomla/JoomlaImage.php:12
1245
- msgid "behavior.modal"
1246
- msgstr ""
1247
-
1248
  #: Framework/Image/ModelImage.php:37
1249
  msgid "Desktop retina"
1250
  msgstr "Escritorio retina"
1251
 
1252
- #: Framework/Image/ModelImage.php:39
1253
- msgid "Tablet retina"
1254
- msgstr "Tableta retina"
1255
-
1256
- #: Framework/Image/ModelImage.php:41
1257
- msgid "Mobile retina"
1258
- msgstr "Móvil retina"
1259
-
1260
- #: Framework/Image/ModelImage.php:55
1261
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:29
1262
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:19
1263
  #: SmartSlider3/Form/Element/BackgroundImage.php:29
1264
- #: SmartSlider3/Renderable/Item/Image/Assets/image.js:20
1265
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:43
1266
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:129
1267
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
1268
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:253
1269
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:262
1270
  #: SmartSlider3/Widget/Group/Bullet.php:64
1271
  #: SmartSlider3/Widget/Group/Thumbnail.php:63
1272
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:161
1273
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:110
1274
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:211
1275
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:216
 
1276
  msgid "Image"
1277
  msgstr "Imagen"
1278
 
@@ -1300,12 +1218,11 @@ msgid "Style settings"
1300
  msgstr "Opciones de estilo"
1301
 
1302
  #: Framework/Style/ModelStyle.php:35
1303
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:165
1304
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:112
1305
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:97
1306
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:139
1307
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:139
1308
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:225
1309
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:113
1310
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:89
1311
  msgid "Background color"
@@ -1313,135 +1230,107 @@ msgstr "Color de fondo"
1313
 
1314
  #: Framework/Style/ModelStyle.php:39
1315
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:143
1316
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:223
1317
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:288
1318
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:196
1319
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:335
1320
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:131
1321
  msgid "Opacity"
1322
  msgstr "Opacidad"
1323
 
1324
  #: Framework/Style/ModelStyle.php:50
1325
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:203
1326
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:120
1327
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:189
1328
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:221
1329
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:150
1330
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:262
1331
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:317
1332
  msgid "Padding"
1333
  msgstr "Padding"
1334
 
1335
  #: Framework/Style/ModelStyle.php:72
1336
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:135
1337
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:140
1338
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:165
1339
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:169
1340
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:161
1341
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:167
1342
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:125
1343
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:127
1344
  msgid "Border"
1345
  msgstr "Borde"
1346
 
1347
  #: Framework/Style/ModelStyle.php:74
1348
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:174
1349
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:171
1350
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:201
1351
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:280
 
1352
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:162
1353
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:117
1354
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:152
1355
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:153
1356
  msgid "Border radius"
1357
  msgstr "Radio del borde"
1358
 
1359
  #: Framework/Style/ModelStyle.php:87
1360
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:126
1361
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:157
1362
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:153
1363
  msgid "Box shadow"
1364
  msgstr "Sombra de la caja"
1365
 
1366
- #: Framework/Style/StyleRenderer.php:78
1367
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:140
1368
  msgid "Single"
1369
  msgstr "Un solo"
1370
 
1371
- #: Framework/Style/StyleRenderer.php:92
1372
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:178
1373
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:38
1374
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:200
1375
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:154
1376
  msgid "Simple"
1377
  msgstr "Simple"
1378
 
1379
- #: Framework/Style/StyleRenderer.php:106
1380
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:168
1381
  msgid "Box"
1382
  msgstr "Caja"
1383
 
1384
- #: Framework/Style/StyleRenderer.php:160
1385
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:222
1386
  msgid "Heading active"
1387
  msgstr "Encabezado activo"
1388
 
1389
  #: SmartSlider3/Application/Admin/ApplicationTypeAdmin.php:55
1390
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:301
1391
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:112
1392
- #: SmartSlider3/Application/Model/ModelSlidersXRef.php:150
1393
- #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:85
1394
  msgid "Dashboard"
1395
  msgstr "Panel de control"
1396
 
1397
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:79
1398
- msgid "Slide height probably too high"
1399
- msgstr "La altura del slide es probablemente muy alta"
1400
-
1401
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:80
1402
- msgid ""
1403
- "The height of this slide is much higher than others so it will increase the "
1404
- "height of the other slides."
1405
- msgstr ""
1406
- "La altura de este slide es mucho más alta que la de otros, por lo que debes "
1407
- "incrementar la altura de esos otros slides."
1408
-
1409
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:84
1410
- msgid "Slide height increased"
1411
- msgstr "Altura del slide incrementada"
1412
-
1413
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:89
1414
- #, javascript-format
1415
- msgid ""
1416
- "The height of this slide increased because the following slides are much "
1417
- "higher: %s."
1418
- msgstr ""
1419
- "La altura de este slide se incrementó ya que los siguientes slides son mucho "
1420
- "más grandes: %s."
1421
-
1422
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:12
1423
  msgid "Drop files here or"
1424
  msgstr "Suelta los archivos aquí o"
1425
 
1426
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:12
1427
  msgid "Upload"
1428
  msgstr "Subir"
1429
 
1430
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:19
1431
  msgid "Parent directory"
1432
  msgstr "Directorio raíz"
1433
 
1434
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:105
1435
  msgid "Current path"
1436
  msgstr "Ruta actual"
1437
 
1438
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:32
1439
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:59
1440
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:214
1441
  msgid "Preset"
1442
  msgstr "Preajuste"
1443
 
1444
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:32
1445
  msgid ""
1446
  "You can use presets to save style settings for later use. Clicking on any "
1447
  "preset will load its styling to your current layer, and the previous style "
@@ -1452,7 +1341,7 @@ msgstr ""
1452
  "cargará su estilo en la capa actual, y se perderán los estilos que tenían "
1453
  "previamente."
1454
 
1455
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:34
1456
  msgid ""
1457
  "Layer design options affect every device. If you need to make responsive "
1458
  "adjustments, look for the options with the device icon."
@@ -1461,56 +1350,54 @@ msgstr ""
1461
  "necesitas hacer ajustes sobre las opciones responsivas, utiliza las opciones "
1462
  "al presionar el ícono del dispositivo que deseas."
1463
 
1464
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:41
1465
  msgid "Reset style to default"
1466
  msgstr "Reestablecer el estilo a su valor por defecto"
1467
 
1468
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:47
1469
  msgid "Save style as new preset"
1470
  msgstr "Grabar estilo como un nuevo preajuste"
1471
 
1472
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:58
1473
  msgid "Load style"
1474
  msgstr "Cargar estilo"
1475
 
1476
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:87
1477
  msgid "You have not created any presets for this layer yet."
1478
  msgstr "Aún no has creado preajustes para esta capa."
1479
 
1480
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:159
1481
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:166
1482
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:217
1483
  msgid "Save as"
1484
  msgstr "Guardar como"
1485
 
1486
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:164
1487
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:222
1488
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:207
1489
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
1490
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
1491
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
1492
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:85
1493
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialUsers.php:84
1494
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:57
1495
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:57
1496
  msgid "Name"
1497
  msgstr "Nombre"
1498
 
1499
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:174
1500
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:232
1501
  msgid "Please fill the name field!"
1502
  msgstr "¡Por favor rellena el campo \"nombre\"!"
1503
 
1504
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:199
1505
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:290
1506
  msgid "Preset saved."
1507
  msgstr "Preajuste guardado."
1508
 
1509
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:268
1510
  msgid "Overwrite preset"
1511
  msgstr "Sobrescribir preajuste"
1512
 
1513
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:312
1514
  msgid "Preset deleted."
1515
  msgstr "Preajuste eliminado."
1516
 
@@ -1519,13 +1406,13 @@ msgid "Choose folder"
1519
  msgstr "Seleccionar carpeta"
1520
 
1521
  #: SmartSlider3/Application/Admin/Assets/js/common/element/folders.js:46
1522
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:75
1523
  msgid "Select"
1524
  msgstr "Seleccionar"
1525
 
1526
- #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:135
1527
- #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:198
1528
- #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:69
1529
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:51
1530
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:142
1531
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:145
@@ -1537,31 +1424,31 @@ msgstr "Seleccionar"
1537
  msgid "Disabled"
1538
  msgstr "Deshabilitado"
1539
 
1540
- #: SmartSlider3/Application/Admin/Assets/js/common/element/imagemanager.js:32
1541
  msgid "Image field can not be empty!"
1542
  msgstr "¡El campo imagen no puede estar vacio!"
1543
 
1544
- #: SmartSlider3/Application/Admin/Assets/js/common/element/skin.js:56
1545
  msgid "Done"
1546
  msgstr "Hecho"
1547
 
1548
- #: SmartSlider3/Application/Admin/Assets/js/common/element/upload.js:39
1549
  msgid "No file selected."
1550
  msgstr "No se seleccionó un archivo."
1551
 
1552
- #: SmartSlider3/Application/Admin/Assets/js/common/form-tip-manager.js:109
1553
  msgid "Open docs"
1554
  msgstr "Abrir documentación"
1555
 
1556
- #: SmartSlider3/Application/Admin/Assets/js/common/form.js:113
1557
  msgid "The changes you made will be lost if you navigate away from this page."
1558
  msgstr "Los cambios que has realizado se perderán si sales de esta página."
1559
 
1560
- #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:77
1561
  msgid "Icons"
1562
  msgstr "Íconos"
1563
 
1564
- #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:90
1565
  #: SmartSlider3/Application/Admin/Help/Template/Index.php:72
1566
  #: SmartSlider3Pro/Generator/Common/Flickr/GeneratorGroupFlickr.php:36
1567
  #: SmartSlider3Pro/Generator/Common/YouTube/GeneratorGroupYouTube.php:31
@@ -1571,38 +1458,38 @@ msgstr "Íconos"
1571
  msgid "Search"
1572
  msgstr "Buscar"
1573
 
1574
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:18
1575
  msgid "Are you sure?"
1576
  msgstr "¿Estás seguro?"
1577
 
1578
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:22
1579
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonCancel.php:12
1580
  msgid "Cancel"
1581
  msgstr "Cancelar"
1582
 
1583
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:29
1584
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:99
1585
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:382
1586
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:181
1587
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1108
1588
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:112
1589
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:45
1590
  msgid "Delete"
1591
  msgstr "Borrar"
1592
 
1593
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalLightbox.js:36
1594
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:95
1595
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:47
1596
  msgid "Close"
1597
  msgstr "Cerrar"
1598
 
1599
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:16
1600
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:23
1601
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:41
1602
  msgid "Create group"
1603
  msgstr "Crear grupo"
1604
 
1605
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:21
1606
  msgid "Group name"
1607
  msgstr "Nombre del grupo"
1608
 
@@ -1610,85 +1497,82 @@ msgstr "Nombre del grupo"
1610
  msgid "Group created"
1611
  msgstr "Grupo creado"
1612
 
1613
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/generator-record-viewer.js:52
1614
  msgid "Records"
1615
  msgstr "Registros"
1616
 
1617
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:11
1618
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:62
1619
  msgid "Keyboard shortcuts"
1620
  msgstr "Atajos de teclado"
1621
 
1622
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:40
1623
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:37
1624
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:91
1625
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:54
1626
  msgid "Got it"
1627
  msgstr "Entendido"
1628
 
1629
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:61
1630
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:46
1631
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:56
1632
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:68
1633
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:35
1634
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:33
1635
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:43
1636
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:56
1637
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:59
1638
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:139
1639
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:146
1640
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:127
1641
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:132
1642
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:109
1643
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:112
1644
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:204
1645
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:154
1646
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:113
1647
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:159
1648
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:204
1649
  #: SmartSlider3Pro/Renderable/Item/Html/ItemHtml.php:61
1650
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:125
1651
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:92
1652
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:64
1653
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:108
1654
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:181
1655
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:119
1656
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:114
1657
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:50
1658
  msgid "General"
1659
  msgstr "General"
1660
 
1661
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:62
1662
  msgid "Content tab"
1663
  msgstr "Pestaña Contenido"
1664
 
1665
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:63
1666
  msgid "Style tab"
1667
  msgstr "Pestaña Estilo"
1668
 
1669
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:69
1670
  msgid "Animation tab"
1671
  msgstr "Pestaña Animación"
1672
 
1673
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:73
1674
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:24
1675
  msgid "Add Layer"
1676
  msgstr "Agregar Capa"
1677
 
1678
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:74
1679
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerWindow.js:79
1680
  msgid "Layer List"
1681
  msgstr "Lista de Capas"
1682
 
1683
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:78
1684
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerNavigation.js:50
1685
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:50
1686
  msgid "Timeline"
1687
  msgstr "Línea de tiempo"
1688
 
1689
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:82
1690
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleProject.php:49
1691
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleShots.php:37
1692
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:101
1693
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoGallery.php:100
1694
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoStream.php:91
@@ -1698,113 +1582,113 @@ msgstr "Línea de tiempo"
1698
  msgid "View"
1699
  msgstr "Ver"
1700
 
1701
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:91
1702
  msgid "Adjust"
1703
  msgstr "Ajustar"
1704
 
1705
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1706
  msgid "Move (Absolute)"
1707
  msgstr "Mover (Absoluto)"
1708
 
1709
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1710
  #: SmartSlider3/Widget/Group/Arrow.php:44
1711
  msgid "Arrows"
1712
  msgstr "Flechas"
1713
 
1714
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1715
  msgid "Align (Absolute)"
1716
  msgstr "Alinear (Absoluto)"
1717
 
1718
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1719
  msgid "Numeric keys"
1720
  msgstr "Teclas numéricas"
1721
 
1722
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:98
1723
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:16
1724
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:20
1725
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:39
1726
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:60
1727
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:42
1728
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:41
1729
  msgid "Action"
1730
  msgstr "Acción"
1731
 
1732
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:100
1733
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:375
1734
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:174
1735
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1101
1736
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:79
1737
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:54
1738
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:43
1739
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:127
1740
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:148
1741
  msgid "Duplicate"
1742
  msgstr "Duplicar"
1743
 
1744
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:101
1745
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1131
1746
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:60
1747
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:44
1748
- #: SmartSlider3/Application/Model/ModelSliders.php:573
1749
  msgid "Copy"
1750
  msgstr "Copiar"
1751
 
1752
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:102
1753
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1140
1754
  msgid "Paste"
1755
  msgstr "Pegar"
1756
 
1757
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:103
1758
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:200
1759
  msgid "Undo"
1760
  msgstr "Deshacer"
1761
 
1762
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:104
1763
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:191
1764
  msgid "Redo"
1765
  msgstr "Rehacer"
1766
 
1767
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:105
1768
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonSave.php:12
1769
  msgid "Save"
1770
  msgstr "Guardar"
1771
 
1772
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:109
1773
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:42
1774
  msgid "Play animations"
1775
  msgstr "Reproducir animaciones"
1776
 
1777
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:114
1778
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:86
1779
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:89
1780
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:106
1781
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:109
1782
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:272
1783
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:171
1784
  msgid "Clear device specific settings"
1785
  msgstr "Borrar las opciones específicas del dispositivo"
1786
 
1787
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:115
1788
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:89
1789
  msgid "Current layer, current device"
1790
  msgstr "Capa actual, dispositivo actual"
1791
 
1792
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:116
1793
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:86
1794
  msgid "Current layer, all devices"
1795
  msgstr "Capa actual, todos los dispositivos"
1796
 
1797
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:117
1798
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:109
1799
  msgid "All layers, current device"
1800
  msgstr "Todas las capas, el dispositivo actual"
1801
 
1802
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:118
1803
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:106
1804
  msgid "All layers, all devices"
1805
  msgstr "Todas las capas, todos los dispositivos"
1806
 
1807
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/safe-html.js:15
1808
  msgid "Unexpected response"
1809
  msgstr "Respuesta inesperada"
1810
 
@@ -1826,10 +1710,18 @@ msgid "Go to slide ID"
1826
  msgstr "Ir al ID del slide"
1827
 
1828
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:21
 
 
 
 
1829
  msgid "Previous slide"
1830
  msgstr "Anterior slide"
1831
 
1832
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:22
 
 
 
 
1833
  msgid "Next slide"
1834
  msgstr "Siguiente slide"
1835
 
@@ -1877,18 +1769,17 @@ msgstr "Índice de slides"
1877
 
1878
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:189
1879
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:257
1880
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:215
1881
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:325
1882
  msgid "Direction"
1883
  msgstr "Dirección"
1884
 
1885
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:190
1886
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:258
1887
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:93
1888
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:164
1889
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:77
1890
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:196
1891
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:42
1892
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:76
1893
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:82
1894
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:82
@@ -1967,19 +1858,19 @@ msgstr "Títulos - Uno por línea"
1967
  msgid "Autoplay duration"
1968
  msgstr "Duración de la reproducción automática"
1969
 
1970
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:19
1971
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:18
1972
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:75
1973
  msgid "URL"
1974
  msgstr "URL"
1975
 
1976
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:24
1977
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:275
1978
  msgid "Search keyword"
1979
  msgstr "Buscar palabra clave"
1980
 
1981
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:31
1982
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:283
1983
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:16
1984
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:30
1985
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/GeneratorGroupMultisitePost.php:29
@@ -1991,36 +1882,36 @@ msgid "Lightbox"
1991
  msgstr "Lightbox"
1992
 
1993
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:34
1994
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:412
1995
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:15
1996
  msgid "Insert"
1997
  msgstr "Insertar"
1998
 
1999
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:26
2000
  msgid "Oops, Something Went Wrong"
2001
  msgstr "Uy, algo salió mal"
2002
 
2003
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:50
2004
  msgid "Success"
2005
  msgstr "Éxito"
2006
 
2007
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:56
2008
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:413
2009
  msgid "Notice"
2010
  msgstr "Notificación"
2011
 
2012
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:33
2013
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:68
2014
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:124
2015
  msgid "Select image"
2016
  msgstr "Seleccionar imagen"
2017
 
2018
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:35
2019
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:70
2020
  msgid "Use Joomla selector"
2021
  msgstr "Usar selector de Joomla"
2022
 
2023
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:126
2024
  msgid "Use default selector"
2025
  msgstr "Usar selector por defecto"
2026
 
@@ -2028,55 +1919,55 @@ msgstr "Usar selector por defecto"
2028
  msgid "Deleted."
2029
  msgstr "Eliminado."
2030
 
2031
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:101
2032
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/setsandmore.js:91
2033
  #: SmartSlider3Pro/SplitText/Admin/Assets/js/manager.js:71
2034
  msgid "Static"
2035
  msgstr "Estático"
2036
 
2037
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:224
2038
  msgid "Save as New"
2039
  msgstr "Grabar como nuevo"
2040
 
2041
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:235
2042
  msgid "Saved."
2043
  msgstr "Grabado."
2044
 
2045
- #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:71
2046
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:140
2047
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/splittextanimationmanagerelement.js:100
2048
  msgid "Enabled"
2049
  msgstr "Habilitado"
2050
 
2051
- #: SmartSlider3/Application/Admin/Assets/js/element/columns-element.js:110
2052
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:70
2053
  msgid "Column"
2054
  msgstr "Columna"
2055
 
2056
- #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:141
2057
  msgid "There is no layer available to be parent of the current layer!"
2058
  msgstr "¡No hay una capa disponible para ser raíz de la capa actual!"
2059
 
2060
- #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:151
2061
  msgid "Pick the parent layer!"
2062
  msgstr "Selecciona la capa raíz (de origen)"
2063
 
2064
- #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:170
2065
  msgid "Pick the align point of the parent layer!"
2066
  msgstr "¡Selecciona el punto de alineación en la capa raíz!"
2067
 
2068
- #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:193
2069
  msgid "Pick the align point of the child layer!"
2070
  msgstr "¡Selecciona el punto de alineación en la capa enlazada!"
2071
 
2072
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:71
2073
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:327
2074
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:104
2075
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:24
2076
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:204
2077
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:275
2078
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:180
2079
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:260
2080
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:203
2081
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:289
2082
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:89
@@ -2084,151 +1975,150 @@ msgstr "¡Selecciona el punto de alineación en la capa enlazada!"
2084
  msgid "Advanced"
2085
  msgstr "Avanzado"
2086
 
2087
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:75
2088
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:87
2089
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:96
2090
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:108
2091
  #, javascript-format
2092
  msgid "Outer %s"
2093
  msgstr "Externo %s"
2094
 
2095
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:78
2096
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:87
2097
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:90
2098
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:99
2099
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:149
2100
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:169
2101
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:471
2102
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:475
2103
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
2104
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
2105
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
2106
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
2107
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:491
2108
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:514
 
2109
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:88
2110
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:199
2111
  #: SmartSlider3/Storage.php:949
2112
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:102
2113
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:70
2114
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:181
2115
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:220
2116
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:300
2117
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:75
2118
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:75
2119
  msgid "Left"
2120
  msgstr "Izquierda"
2121
 
2122
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:84
2123
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:93
2124
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:96
2125
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:105
2126
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:151
2127
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
2128
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
2129
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
2130
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
2131
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
2132
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
2133
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
2134
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:512
 
2135
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:89
2136
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:200
2137
  #: SmartSlider3/Storage.php:964
2138
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:104
2139
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:72
2140
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:190
2141
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:218
2142
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:301
2143
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:77
2144
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:77
2145
  msgid "Right"
2146
  msgstr "Derecha"
2147
 
2148
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:90
2149
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:93
2150
  msgid "Middle"
2151
  msgstr "En la mitad"
2152
 
2153
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:99
2154
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:102
2155
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:105
2156
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:108
2157
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:470
2158
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:474
2159
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
2160
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
2161
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
2162
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
2163
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:490
2164
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:513
2165
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:242
 
2166
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:107
2167
  #: SmartSlider3/Storage.php:994
2168
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:140
2169
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:74
2170
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:208
2171
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:219
2172
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:236
2173
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:302
2174
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:338
2175
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:108
2176
  msgid "Bottom"
2177
  msgstr "Inferior"
2178
 
2179
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1210
2180
  msgid "Layer(s)"
2181
  msgstr "Capa(s)"
2182
 
2183
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:270
2184
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:94
2185
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:252
2186
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:69
2187
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:94
2188
  msgid "Hide on"
2189
  msgstr "Ocultar en"
2190
 
2191
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:414
2192
  msgid "Rename"
2193
  msgstr "Renombrar"
2194
 
2195
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:421
2196
  msgid "Show/Hide in editor"
2197
  msgstr "Mostrar/ocultar en el editor"
2198
 
2199
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:573
2200
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:594
2201
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:35
2202
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabGoPro.php:21
2203
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:156
2204
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:346
2205
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:129
2206
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:185
2207
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:195
2208
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:197
2209
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:179
2210
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:134
2211
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:259
2212
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:163
2213
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:130
2214
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:183
2215
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:45
2216
  msgid "Animation"
2217
  msgstr "Animación"
2218
 
2219
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/animations.js:106
2220
  msgid "Add animation"
2221
  msgstr "Agregar animación"
2222
 
2223
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/animations.js:116
2224
  msgid "Remove animations"
2225
  msgstr "Remover animación"
2226
 
2227
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/editor/Editor.js:50
2228
  msgid "Layer Animation - Basic"
2229
  msgstr "Animación de Capa - Básica"
2230
 
2231
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/editor/Editor.js:105
2232
  msgid "Add keyframe"
2233
  msgstr "Agregar fotograma clave"
2234
 
@@ -2238,146 +2128,146 @@ msgstr "Agregar fotograma clave"
2238
  msgid "Loop"
2239
  msgstr "Bucle"
2240
 
2241
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/group/keyFrame/KeyFrame.js:188
2242
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:357
2243
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:358
 
2244
  msgid "Special Zero"
2245
  msgstr "Cero especial"
2246
 
2247
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/group/keyFrame/KeyFrame.js:188
2248
  msgid "Keyframe"
2249
  msgstr "Fotograma clave"
2250
 
2251
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/reveal/editor/Editor.js:41
2252
  msgid "Layer Animation - Reveal"
2253
  msgstr "Animación de Capa - Revelar"
2254
 
2255
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:170
2256
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/content.js:121
2257
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:362
2258
  msgid "Open/Close"
2259
  msgstr "Abrir/Cerrar"
2260
 
2261
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/content.js:11
2262
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:505
2263
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabContent.php:18
2264
  msgid "Content"
2265
  msgstr "Contenido"
2266
 
2267
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/contentAbstract.js:439
2268
  msgid "Child layers"
2269
  msgstr "Capas anidadas"
2270
 
2271
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/animatedHeading.js:68
2272
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/Assets/animatedHeading.js:20
2273
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:52
2274
  msgid "Animated heading"
2275
  msgstr "Encabezado Animado"
2276
 
2277
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/highlightedHeading.js:57
2278
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/Assets/highlightedHeading.js:22
2279
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:53
2280
  msgid "Highlighted heading"
2281
  msgstr "Encabezado destacado"
2282
 
2283
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/splittext-admin.js:87
2284
  msgid "Text animation in"
2285
  msgstr "Animación del texto entrando"
2286
 
2287
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/splittext-admin.js:100
2288
  msgid "Text animation out"
2289
  msgstr "Animación del texto saliendo"
2290
 
2291
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:11
2292
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:194
2293
  msgid "Layer"
2294
  msgstr "Capa"
2295
 
2296
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:14
2297
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:31
2298
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/BlockAddLayer.php:25
2299
  msgid "Row"
2300
  msgstr "Fila"
2301
 
2302
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:13
2303
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:161
2304
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:662
2305
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:678
2306
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:56
2307
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
2308
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:82
2309
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:329
2310
  msgid "Slide"
2311
  msgstr "Slide"
2312
 
2313
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:176
2314
  msgid "Theme"
2315
  msgstr "Tema"
2316
 
2317
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:256
2318
  #, javascript-format
2319
  msgid "%s or newer required for this feature."
2320
  msgstr "Se requiere %s o más nuevo para esta característica."
2321
 
2322
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:294
2323
  msgid "This section requires activated Pro version."
2324
  msgstr "Esta sección requiere la versión Pro activada."
2325
 
2326
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:297
2327
  #, javascript-format
2328
  msgid "This block is not available in the free version. %s"
2329
  msgstr "Este bloque no está disponible en la versión gratuita. %s"
2330
 
2331
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:297
2332
  #: SmartSlider3/Application/Admin/GoPro/ViewGoProIndex.php:24
2333
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:37
2334
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:51
2335
  #: SmartSlider3/Application/Admin/Layout/Block/Core/FreeNeedMore/FreeNeedMore.php:23
2336
- #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:96
2337
  msgid "Go Pro"
2338
  msgstr "Ir a la versión Pro"
2339
 
2340
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:17
2341
  msgid "Editor settings"
2342
  msgstr "Opciones del editor"
2343
 
2344
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:45
2345
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:53
2346
  msgid "Upgrade to Pro"
2347
  msgstr "Actualizar a la versión Pro"
2348
 
2349
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:55
2350
  msgid "Guide settings"
2351
  msgstr "Opciones de la guía"
2352
 
2353
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:124
2354
  msgid "Smart snap"
2355
  msgstr "Ajuste inteligente al contenido"
2356
 
2357
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:131
2358
  msgid "Round to 5px"
2359
  msgstr "Redondear a 5px"
2360
 
2361
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:143
2362
  msgid "Ruler"
2363
  msgstr "Regla"
2364
 
2365
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:147
2366
  msgid "Clear guides"
2367
  msgstr "Borrar guías"
2368
 
2369
- #: SmartSlider3/Application/Admin/Assets/js/license.js:101
2370
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:14
2371
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:13
2372
  msgid "Activate Smart Slider 3 Pro"
2373
  msgstr "Activa Smart Slider 3 Pro"
2374
 
2375
- #: SmartSlider3/Application/Admin/Assets/js/license.js:107
2376
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:15
2377
  msgid "Activation is required to unlock all features!"
2378
  msgstr "¡Se requiere la activación para desbloquear todas las características!"
2379
 
2380
- #: SmartSlider3/Application/Admin/Assets/js/license.js:108
2381
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:15
2382
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:16
2383
  msgid ""
@@ -2387,75 +2277,62 @@ msgstr ""
2387
  "Registra Smart Slider 3 en este dominio para activar las actualizaciones "
2388
  "automáticas, plantillas de sliders y la biblioteca de slides."
2389
 
2390
- #: SmartSlider3/Application/Admin/Assets/js/license.js:113
2391
  msgid "Skip"
2392
  msgstr "Saltar"
2393
 
2394
- #: SmartSlider3/Application/Admin/Assets/js/license.js:124
2395
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:17
2396
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardInfo/DashboardInfo.php:85
2397
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:27
2398
  msgid "Activate"
2399
  msgstr "Activar"
2400
 
2401
- #: SmartSlider3/Application/Admin/Assets/js/license.js:156
2402
- msgid ""
2403
- "Activation process is not supported in this browser. Please use Google "
2404
- "Chrome."
2405
- msgstr ""
2406
- "Este navegador no soporta el proceso de activación. Por favor utiliza Google "
2407
- "Chrome."
2408
-
2409
- #: SmartSlider3/Application/Admin/Assets/js/license.js:230
2410
  msgid "Smart Slider 3 activated!"
2411
  msgstr "¡Smart Slider 3 activado!"
2412
 
2413
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:164
2414
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:165
 
2415
  msgid "Laptop"
2416
  msgstr "Laptop"
2417
 
2418
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:191
2419
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:199
2420
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:210
2421
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:136
2422
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:134
2423
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:65
2424
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:429
2425
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:455
2426
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:480
2427
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:505
2428
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:530
2429
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:221
2430
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:152
2431
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:154
2432
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:148
2433
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:244
2434
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:149
2435
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:253
2436
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:89
2437
  #: SmartSlider3/Widget/Group/Bullet.php:73
2438
- #: SmartSlider3/Widget/Group/Thumbnail.php:66
2439
- #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:36
2440
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:113
2441
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:172
2442
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:175
2443
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:178
2444
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:248
2445
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:82
2446
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:221
2447
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:154
 
2448
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:34
2449
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:58
2450
  #: SmartSlider3Pro/Widget/Indicator/IndicatorStripe/IndicatorStripe.php:31
2451
  msgid "Width"
2452
  msgstr "Ancho"
2453
 
2454
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:227
2455
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:235
2456
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:215
2457
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:146
2458
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:139
2459
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:78
2460
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:433
2461
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:459
@@ -2464,59 +2341,61 @@ msgstr "Ancho"
2464
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:534
2465
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:99
2466
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:105
2467
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:228
2468
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:157
2469
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:159
2470
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:153
2471
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:248
2472
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:154
2473
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:257
2474
  #: SmartSlider3/Widget/Group/Bullet.php:84
2475
  #: SmartSlider3/Widget/Group/Thumbnail.php:77
2476
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:125
2477
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:184
 
 
2478
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:181
2479
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:184
2480
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:85
2481
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:159
 
2482
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:59
2483
  #: SmartSlider3Pro/Widget/Indicator/IndicatorStripe/IndicatorStripe.php:35
2484
  msgid "Height"
2485
  msgstr "Alto"
2486
 
2487
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:413
2488
  #, javascript-format
2489
  msgid "Below %s pixels."
2490
  msgstr "Menos de %s pixeles."
2491
 
2492
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:416
2493
  #, javascript-format
2494
  msgid "Above %s pixels."
2495
  msgstr "Más de %s pixeles."
2496
 
2497
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:418
2498
  #, javascript-format
2499
  msgid "Between %s and %s pixels."
2500
  msgstr "Entre %s y %s pixeles."
2501
 
2502
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:187
2503
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:171
2504
  #, javascript-format, php-format
2505
  msgid "This slide is hidden on the following devices: %s"
2506
  msgstr "Este slide está oculto en los siguientes dispositivos: %s"
2507
 
2508
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:34
2509
  msgid "Data"
2510
  msgstr "Datos"
2511
 
2512
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:333
2513
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:44
2514
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:31
2515
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:29
2516
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsCustomPosts.php:54
2517
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:30
2518
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPostsByIDs.php:18
2519
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleProject.php:22
2520
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookAlbums.php:21
2521
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:23
2522
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:20
@@ -2536,7 +2415,6 @@ msgstr "Datos"
2536
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:22
2537
  #: SmartSlider3Pro/Generator/Common/YouTube/Sources/YouTubeByPlaylist.php:29
2538
  #: SmartSlider3Pro/Generator/Common/YouTube/Sources/YouTubeBySearch.php:28
2539
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:44
2540
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:37
2541
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:34
2542
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:30
@@ -2552,24 +2430,15 @@ msgstr "Datos"
2552
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:30
2553
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:25
2554
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:26
2555
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:32
2556
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:100
2557
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:38
2558
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:37
2559
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:32
2560
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:36
2561
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:33
2562
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:33
2563
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:33
2564
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:35
2565
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:35
2566
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:37
2567
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:31
2568
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:27
2569
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:31
2570
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:36
2571
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:44
2572
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:38
2573
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:28
2574
  #: SmartSlider3Pro/Generator/WordPress/BestWebSoft/Sources/BestWebSoftGallery.php:19
2575
  #: SmartSlider3Pro/Generator/WordPress/Custom/Sources/CustomCustom.php:26
@@ -2584,112 +2453,62 @@ msgstr "Datos"
2584
  msgid "Filter"
2585
  msgstr "Filtro"
2586
 
2587
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:334
2588
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:343
2589
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:117
2590
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:467
2591
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:55
2592
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:75
2593
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:240
2594
  msgid "No"
2595
  msgstr "No"
2596
 
2597
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:335
2598
  msgid "Clean HTML"
2599
  msgstr "Limpiar %s"
2600
 
2601
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:336
2602
  msgid "Remove HTML"
2603
  msgstr "Remover HTML"
2604
 
2605
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:342
2606
  msgid "Split by Chars"
2607
  msgstr "Separar por caracteres"
2608
 
2609
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:344
2610
  msgid "Strict"
2611
  msgstr "Estricto"
2612
 
2613
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:345
2614
  msgid "Respect words"
2615
  msgstr "Respetar palabras"
2616
 
2617
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:370
2618
  msgid "Find image"
2619
  msgstr "Encontrar imagen"
2620
 
2621
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:383
2622
  msgid "Find link"
2623
  msgstr "Encontrar enlace"
2624
 
2625
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:396
2626
  msgid "Remove links"
2627
  msgstr "Remover enlaces"
2628
 
2629
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:401
2630
  msgid "Remove line breaks"
2631
  msgstr "Remover saltos de línea"
2632
 
2633
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:409
2634
  msgid "Result"
2635
  msgstr "Resultado"
2636
 
2637
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:16
2638
- msgid "Most important changes in version 3.4"
2639
- msgstr "Los cambios más importantes en la versión 3.4"
2640
-
2641
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:19
2642
- msgid ""
2643
- "To help you get started with the new version, we've put together the most "
2644
- "important changes."
2645
- msgstr ""
2646
- "Para ayudarte a comenzar con la nueva versión, hemos agrupado los cambios "
2647
- "más importantes."
2648
-
2649
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:30
2650
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:261
2651
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:265
2652
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:100
2653
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:39
2654
- msgid "Slide background"
2655
- msgstr "Fondo del slide"
2656
-
2657
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:33
2658
- msgid ""
2659
- "You can find the Slide Background option in the Layer Window! Click on the "
2660
- "Slide Label at the top of the Canvas to find them."
2661
- msgstr ""
2662
- "La opción para seleccionar el fondo del slide la puedes encontrar en la "
2663
- "ventana de capas. Has click en la etiqueta \"Slide\" de color azul en la "
2664
- "parte superior de la ventana de edición para cambiar esta opción."
2665
-
2666
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:36
2667
- msgid "Watch video"
2668
- msgstr "Mirar video"
2669
-
2670
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:45
2671
- msgid "Absolute position"
2672
- msgstr "Posición absoluta"
2673
-
2674
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:48
2675
- msgid ""
2676
- "Canvas layers are now called Absolute! In the Add Panel switch to Absolute "
2677
- "before you create the layer."
2678
- msgstr ""
2679
- "Las capas del modo Canvas de anteriores versiones ahora se llaman modo "
2680
- "Absoluto. En el panel para agregar capas puedes cambiar el modo a Absoluto y "
2681
- "crear tu capa."
2682
-
2683
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:51
2684
- msgid "Read docs"
2685
- msgstr "Leer más"
2686
-
2687
- #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:42
2688
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:169
2689
  msgid "Change slider type"
2690
  msgstr "Cambiar el tipo de slider"
2691
 
2692
- #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:47
2693
  msgid ""
2694
  "Changing your slider type is irreversible. After changing your slider type, "
2695
  "<b>you will lose all slider type related settings</b>."
@@ -2697,20 +2516,20 @@ msgstr ""
2697
  "Cambiar el tipo de slider es irreversible. Tras hacer este cambio, "
2698
  "<b>perderás todas las opciones relacionadas al tipo de slider</b>."
2699
 
2700
- #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:51
2701
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:175
2702
  msgid "Slider type"
2703
  msgstr "Tipo de slider"
2704
 
2705
- #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:54
2706
  msgid "Convert"
2707
  msgstr "Convertir"
2708
 
2709
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:39
2710
  msgid "What do you want to create today?"
2711
  msgstr "¿Qué es lo que quieres crear hoy?"
2712
 
2713
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:42
2714
  msgid ""
2715
  "Use our powerful visual editor, or simply import one of our existing "
2716
  "template."
@@ -2718,11 +2537,11 @@ msgstr ""
2718
  "Puedes usar nuestro poderoso editor visual, o simplemente importar una de "
2719
  "las plantillas existentes."
2720
 
2721
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:69
2722
  msgid "Create a New Project"
2723
  msgstr "Crear un nuevo proyecto"
2724
 
2725
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:72
2726
  msgid ""
2727
  "Start a new project from scratch and build exactly what you’ve imagined. You "
2728
  "can easily customize every pixels and create anything with layers."
@@ -2731,11 +2550,11 @@ msgstr ""
2731
  "imaginado. Puedes personalizar fácilmente cada pixel y crear cualquier cosa "
2732
  "que desees con las capas."
2733
 
2734
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:93
2735
  msgid "Start with a Template"
2736
  msgstr "Comenzar con una plantilla"
2737
 
2738
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:96
2739
  msgid ""
2740
  "Start with a template and make it your own with the innovative drag and drop "
2741
  "interface. You can choose from hundreds of premade templates."
@@ -2744,110 +2563,111 @@ msgstr ""
2744
  "arrastrar y soltar. Puedes seleccionar entre cientos de plantillas "
2745
  "prediseñadas."
2746
 
2747
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:100
2748
  msgid "or import your own files"
2749
  msgstr "o puedes importar tus propios archivos"
2750
 
2751
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:117
2752
  msgid "Create new project"
2753
  msgstr "Crear un nuevo proyecto"
2754
 
2755
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:123
2756
  msgid "Project type"
2757
  msgstr "Tipo de proyecto"
2758
 
2759
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:126
2760
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
2761
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:81
2762
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
2763
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:53
2764
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:183
2765
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:114
2766
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:322
2767
  msgid "Slider"
2768
  msgstr "Slider"
2769
 
2770
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:130
2771
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:26
2772
  msgid "Block"
2773
  msgstr "Bloque"
2774
 
2775
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:162
2776
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:223
2777
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:231
2778
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:18
2779
  msgid "Full page"
2780
  msgstr "Página completa"
2781
 
2782
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:182
2783
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:30
2784
  msgid "Carousel"
2785
  msgstr "Carrusel"
2786
 
2787
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:186
2788
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:30
2789
  msgid "Showcase"
2790
  msgstr "Exhibición"
2791
 
2792
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:199
2793
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:231
2794
  msgid "Pro"
2795
  msgstr "Pro"
2796
 
2797
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:202
2798
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:47
2799
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:34
2800
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:57
 
2801
  msgid "Settings"
2802
  msgstr "Ajustes"
2803
 
2804
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:207
2805
  msgid "My project"
2806
  msgstr "Mi proyecto"
2807
 
2808
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:221
2809
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:15
2810
  msgid "Boxed"
2811
  msgstr "Encajonado"
2812
 
2813
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:222
2814
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:78
2815
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:151
2816
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:164
2817
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:17
2818
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:91
2819
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:148
2820
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:246
2821
  msgid "Full width"
2822
  msgstr "Ancho completo"
2823
 
2824
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:226
2825
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:376
2826
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:297
2827
  msgid "Layout"
2828
  msgstr "Diseño"
2829
 
2830
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:235
2831
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:47
2832
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:47
2833
  msgid "Slide width"
2834
  msgstr "Ancho del slide"
2835
 
2836
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:241
2837
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:57
2838
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:57
2839
  msgid "Slide height"
2840
  msgstr "Altura del slide"
2841
 
2842
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:249
2843
  msgid "Create"
2844
  msgstr "Crear"
2845
 
2846
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:375
2847
  msgid "Join The Smart Slider 3 Community"
2848
  msgstr "Únete a la Comunidad de Smart Slider 3"
2849
 
2850
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:377
2851
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardNewsletter.php:22
2852
  msgid ""
2853
  "Join more than 120,000 subscribers and get access to the latest slider "
@@ -2858,108 +2678,105 @@ msgstr ""
2858
  "plantillas de sliders, consejos, tutoriales y otros contenidos exclusivos en "
2859
  "tu correo."
2860
 
2861
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:391
2862
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardNewsletter.php:32
2863
  msgid "Subscribe"
2864
  msgstr "Suscribirse"
2865
 
2866
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:295
2867
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:70
2868
  msgid "Change group"
2869
  msgstr "Cambiar grupo"
2870
 
2871
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:308
2872
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/GeneratorGroupEasysocial.php:35
2873
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:29
2874
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialGroups.php:23
2875
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/GeneratorGroupJomsocial.php:35
2876
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:42
2877
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:39
2878
  msgid "Groups"
2879
  msgstr "Grupos"
2880
 
2881
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:312
2882
  msgid "Set"
2883
  msgstr "Fijar"
2884
 
2885
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:66
2886
  msgid "Up"
2887
  msgstr "Arriba"
2888
 
2889
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:76
2890
  msgid "Insert group"
2891
  msgstr "Insertar grupo"
2892
 
2893
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:93
2894
- #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:59
2895
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:134
2896
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
2897
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:42
2898
  msgid "Group"
2899
  msgstr "Grupo"
2900
 
2901
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:86
2902
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:134
2903
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:207
2904
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:158
2905
  msgid "Move to trash"
2906
  msgstr "Mover a la papelera"
2907
 
2908
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:29
2909
  msgid "empty the trash"
2910
  msgstr "vaciar la papelera"
2911
 
2912
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:118
2913
  msgid "Delete permanently"
2914
  msgstr "Eliminar permanentemente"
2915
 
2916
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:164
2917
  msgid "delete this slider"
2918
  msgstr "borrar slider"
2919
 
2920
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:68
2921
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:61
2922
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:47
2923
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:199
2924
  msgid "Publish"
2925
  msgstr "Publicar"
2926
 
2927
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:75
2928
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:48
2929
  msgid "Unpublish"
2930
  msgstr "Despublicar"
2931
 
2932
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:84
2933
  msgid "Edit generator"
2934
  msgstr "Editar generador"
2935
 
2936
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:93
2937
  msgid "Set as first"
2938
  msgstr "Establecer como el primero"
2939
 
2940
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:104
2941
  msgid "Convert to slide"
2942
  msgstr "Convertir a slider"
2943
 
2944
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:253
2945
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:494
2946
  msgid "Copy slide to"
2947
  msgstr "Copiar slide a"
2948
 
2949
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:270
2950
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:304
2951
  msgid "Add post"
2952
  msgstr "Agregar artículo"
2953
 
2954
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:310
2955
  msgid "Please select a Post first!"
2956
  msgstr "¡Por favor seleccionar un Artículo primero!"
2957
 
2958
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:456
2959
  msgid "delete these slides"
2960
  msgstr "eliminar estos slides"
2961
 
2962
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:456
2963
  msgid "delete this slide"
2964
  msgstr "eliminar este slide"
2965
 
@@ -2972,8 +2789,8 @@ msgid "Effects"
2972
  msgstr "Efectos"
2973
 
2974
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:60
2975
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:28
2976
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:67
2977
  msgid "Shape divider"
2978
  msgstr "Divisor de forma"
2979
 
@@ -3054,8 +2871,8 @@ msgstr "Activar"
3054
 
3055
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:114
3056
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:43
3057
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:138
3058
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:196
3059
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:260
3060
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:35
3061
  msgid "Animate"
@@ -3063,16 +2880,15 @@ msgstr "Animar"
3063
 
3064
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:115
3065
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:52
3066
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:198
3067
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:476
3068
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:86
3069
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:60
3070
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:133
3071
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:78
3072
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:197
3073
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:54
3074
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:241
3075
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:327
3076
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:83
3077
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:83
3078
  msgid "Horizontal"
@@ -3093,17 +2909,15 @@ msgstr "Invertir"
3093
 
3094
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:122
3095
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:53
3096
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:203
3097
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:477
3098
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:104
3099
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:61
3100
  #: SmartSlider3/Storage.php:2242
3101
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:134
3102
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:79
3103
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:198
3104
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:55
3105
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:242
3106
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:328
3107
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:84
3108
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:84
3109
  msgid "Vertical"
@@ -3111,9 +2925,9 @@ msgstr "Vertical"
3111
 
3112
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:125
3113
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:126
3114
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:309
3115
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:148
3116
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:206
3117
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:72
3118
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:78
3119
  msgid "Scroll"
@@ -3141,27 +2955,27 @@ msgid "Both"
3141
  msgstr "Ambos"
3142
 
3143
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:140
3144
- #: SmartSlider3/Storage.php:4249
3145
  msgid "To bottom"
3146
  msgstr "Parte inferior"
3147
 
3148
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:141
3149
- #: SmartSlider3/Storage.php:4229
3150
  msgid "To top"
3151
  msgstr "Parte superior"
3152
 
3153
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:48
3154
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:53
3155
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:164
3156
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:166
3157
  #: SmartSlider3/Widget/Group/Autoplay.php:35
3158
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:127
3159
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:170
3160
  msgid "Autoplay"
3161
  msgstr "Reproducción Automática"
3162
 
3163
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:65
3164
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:116
3165
  msgid "Slide duration"
3166
  msgstr "Duración del Slide"
3167
 
@@ -3201,7 +3015,7 @@ msgstr "Detener con el ratón"
3201
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:97
3202
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:109
3203
  msgid "Enter"
3204
- msgstr "Enter"
3205
 
3206
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:98
3207
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:108
@@ -3225,9 +3039,9 @@ msgid "Resume on media"
3225
  msgstr "Reanudar con un medio"
3226
 
3227
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:38
3228
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:224
3229
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:149
3230
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:213
3231
  msgid "Controls"
3232
  msgstr "Controles"
3233
 
@@ -3343,38 +3157,51 @@ msgstr "Abajo - siempre"
3343
 
3344
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:103
3345
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:104
 
 
 
 
 
 
 
 
 
 
 
 
 
3346
  msgid "Slider CSS classes"
3347
  msgstr "Clases CSS del slider"
3348
 
3349
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:105
3350
  msgid "You can put custom CSS classes to the slider's container."
3351
  msgstr ""
3352
  "Puedes ingresar tus clases CSS personalizadas en el contenedor del slider."
3353
 
3354
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:116
3355
  msgid "JavaScript callbacks"
3356
  msgstr "Callbacks JavaScript"
3357
 
3358
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:123
3359
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:124
3360
  msgid "Post IDs"
3361
  msgstr "ID del artículo"
3362
 
3363
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:123
3364
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:124
3365
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:43
3366
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:50
3367
  msgid "one per line"
3368
  msgstr "uno por línea"
3369
 
3370
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:125
3371
  msgid "The cache of the posts with the given ID will be cleared upon save."
3372
  msgstr "El cache de los artículos que tienen un ID se limpiará al grabar."
3373
 
3374
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:76
3375
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:77
3376
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:64
3377
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:84
3378
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:216
3379
  msgid "Thumbnail"
3380
  msgstr "Miniatura"
@@ -3385,6 +3212,12 @@ msgstr "La miniatura del slider que aparece en la lista de sliders."
3385
 
3386
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:81
3387
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:83
 
 
 
 
 
 
3388
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:53
3389
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:55
3390
  msgid "ARIA label"
@@ -3464,11 +3297,47 @@ msgstr ""
3464
  msgid "Slider design"
3465
  msgstr "Diseño del slider"
3466
 
3467
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3468
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:69
3469
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:74
3470
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:155
3471
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:153
3472
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:100
3473
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:68
3474
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:73
@@ -3476,50 +3345,68 @@ msgstr "Diseño del slider"
3476
  msgid "Align"
3477
  msgstr "Alinear"
3478
 
3479
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:158
3480
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:160
3481
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:109
3482
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:113
3483
  msgid "Margin"
3484
  msgstr "Margen"
3485
 
3486
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:161
3487
  msgid "Puts a fix margin around your slider."
3488
  msgstr "Coloca un margen al rededor de tu slider."
3489
 
3490
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:171
3491
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:315
3492
  msgid "Perspective"
3493
  msgstr "Perspectiva"
3494
 
3495
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:47
3496
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:52
3497
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:217
 
 
 
 
 
 
 
3498
  msgid "Loading"
3499
  msgstr "Carga"
3500
 
3501
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:58
3502
  msgid "Instant"
3503
  msgstr "Al instante"
3504
 
3505
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:59
3506
  msgid "After page loaded"
3507
  msgstr "Después de que la página sea cargada"
3508
 
3509
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:60
3510
  msgid "After delay"
3511
- msgstr "Después del retraso"
3512
 
3513
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:74
 
 
 
 
 
 
 
 
 
 
 
 
3514
  msgid "Load delay"
3515
  msgstr "Retraso de carga"
3516
 
3517
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:81
3518
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:85
3519
  msgid "Play when visible"
3520
  msgstr "Reproducir cuando esta visible"
3521
 
3522
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:86
3523
  msgid ""
3524
  "Makes sure that the autoplay and layer animations only start when your "
3525
  "slider is visible."
@@ -3527,203 +3414,158 @@ msgstr ""
3527
  "Permite que la reproducción automática y las animaciones de capas solo "
3528
  "comiencen cuando tu slider esté visible."
3529
 
3530
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:88
3531
  msgid "At"
3532
  msgstr "En"
3533
 
3534
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:96
3535
- msgid "Fade on load"
3536
- msgstr "Desvanecer al cargar"
3537
-
3538
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:104
3539
- msgid "Fade on scroll"
3540
- msgstr "Desvanecer al desplazarse"
3541
-
3542
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:107
3543
- msgid "Delayed (for lightbox/tabs)"
3544
- msgstr "Retardo (para lighbox/fichas)"
3545
-
3546
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:111
3547
- msgid ""
3548
- "If you turn off <b>Fade On Load</b>, the slider loading will be visible as "
3549
- "the browser builds up the slider. In most cases this looks bad, so we don't "
3550
- "suggest turning <b>Fade On Load</b> off."
3551
- msgstr ""
3552
- "Si desactivas <b>Desvanecer al cargar</b>, la carga del slider será visible "
3553
- "cuando el navegador cargar el slider. En la mayoría de los casos esto no "
3554
- "sugerimos desactivar <b>Desvanecer al cargar</b>."
3555
-
3556
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:118
3557
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:123
3558
- msgid "Loading animation"
3559
- msgstr "Animación de pre-carga"
3560
-
3561
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:122
3562
- msgid "Spinner"
3563
- msgstr "Spinner"
3564
 
3565
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:128
3566
- #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:38
3567
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:124
3568
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:125
3569
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:46
3570
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:76
3571
- #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:35
3572
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:158
3573
- #: SmartSlider3Pro/Form/Element/ParticleSkin.php:61
3574
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:129
3575
- #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:47
3576
- #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:69
3577
- msgid "Custom"
3578
- msgstr "Personalizado"
3579
-
3580
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:156
3581
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:157
3582
- msgid "Hide until complete load"
3583
- msgstr "Ocultar hasta que la carga se complete"
3584
-
3585
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:158
3586
- msgid ""
3587
- "When an image is used as the loading spinner, it takes time to load. This "
3588
- "can be visible, as the image being built up by the browser and moves to the "
3589
- "slider's center. You can hide the spinner during this image loading part."
3590
- msgstr ""
3591
- "Cuando una imagen se utiliza como un spinner de carga, tarda tiempo en "
3592
- "cargar. Esta puede estar visible mientras la imagen se carga en el navegador "
3593
- "y se mueve al centro del slider. Puede ocultar el spinner durante el proceso "
3594
- "de carga de la imagen."
3595
-
3596
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:164
3597
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:82
3598
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:83
3599
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:67
3600
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:69
3601
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:110
3602
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:111
3603
- msgid "Background image"
3604
- msgstr "Imagen de fondo"
3605
-
3606
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:48
3607
- #: SmartSlider3/Renderable/Item/Image/ItemImage.php:172
3608
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:247
3609
- #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:161
3610
- msgid "Optimize"
3611
- msgstr "Optimizar"
3612
-
3613
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:56
3614
- msgid "Lazy load"
3615
- msgstr "Modo de carga"
3616
-
3617
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:60
3618
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:76
3619
  msgid "Loading mode"
3620
  msgstr "Modo de carga"
3621
 
3622
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:63
3623
  msgid "Delayed loading"
3624
  msgstr "Carga retardada"
3625
 
3626
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:64
3627
  msgid "Lazy loading"
3628
  msgstr "Carga diferida"
3629
 
3630
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:77
3631
  msgid ""
3632
  "You can speed up your site's loading by delaying the slide background images."
3633
  msgstr ""
3634
  "Puedes mejorar la velocidad de carga de tu sitio al retrasar la carga de las "
3635
  "imágenes de fondo de los slides."
3636
 
3637
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:80
3638
  msgid "Load neighbor"
3639
  msgstr "Cargar"
3640
 
3641
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:81
3642
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:98
3643
  #: SmartSlider3/Application/Model/ModelGenerator.php:401
3644
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:174
3645
  msgctxt "Unit"
3646
  msgid "slides"
3647
  msgstr "slides"
3648
 
3649
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:88
3650
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:90
3651
- msgid "Optimize slide images"
3652
- msgstr "Optimizar imágenes de los slides"
3653
-
3654
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:102
3655
  #, php-format
3656
- msgid "Your current memory limit is %s."
3657
- msgstr "Tu límite de memoria actual es de %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3658
 
3659
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:105
3660
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:231
3661
- msgid "Quality"
3662
- msgstr "Calidad"
3663
 
3664
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:112
3665
- msgid ""
3666
- "This feature requires high memory limit. If you do not have enough memory "
3667
- "you will get a blank page on the frontend."
3668
- msgstr ""
3669
- "Esta característica requiere de un límite de memoria alto. Si no tienes "
3670
- "suficiente memoria en tu servidor obtendrás una pantalla en blanco en el "
3671
- "frontend."
3672
 
3673
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:116
3674
  msgid "Thumbnail width"
3675
  msgstr "Ancho de la miniatura"
3676
 
3677
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:121
3678
  msgid "Thumbnail height"
3679
  msgstr "Altura de la miniatura"
3680
 
3681
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:128
3682
- msgid "Resize background"
3683
- msgstr "Redimensionar fondo"
3684
-
3685
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:148
3686
- msgid "Optimize layer images"
3687
- msgstr "Optimizar imágenes de capa"
3688
-
3689
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:151
3690
- msgid "Resize"
3691
- msgstr "Redimensionar"
3692
-
3693
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:157
3694
- msgid "Tablet scale"
3695
- msgstr "Escala en tableta"
3696
-
3697
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:163
3698
- msgid "Mobile scale"
3699
- msgstr "Escala móvil"
3700
 
3701
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:175
3702
  msgid "Base64 embed"
3703
  msgstr "Base64 embebido"
3704
 
3705
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:176
3706
  msgid "Embeds the layer images to the page source, reducing the requests."
3707
  msgstr ""
3708
  "Incrusta las capas de imágenes en el código fuente de la página, reduciendo "
3709
  "así la cantidad de peticiones."
3710
 
3711
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:178
3712
  msgid "Max file size"
3713
  msgstr "Tamaño de archivo máximo"
3714
 
3715
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:188
3716
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:196
3717
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:85
3718
  #: SmartSlider3/Storage.php:522
3719
  msgid "Other"
3720
  msgstr "Otro"
3721
 
3722
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:200
3723
  msgid "JetPack Photon image optimizer"
3724
  msgstr "Optimizador de imagen JetPack Photon"
3725
 
3726
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:205
3727
  msgid "Background video on mobile"
3728
  msgstr "Fondo de video en móvil"
3729
 
@@ -3751,12 +3593,12 @@ msgid "Max"
3751
  msgstr "Max"
3752
 
3753
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:248
3754
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:177
3755
  msgid "Breakpoints"
3756
  msgstr "Puntos de parada o \"breakpoints\""
3757
 
3758
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:311
3759
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:180
3760
  msgid ""
3761
  "Breakpoints define the browser width in pixel when the slider switches to a "
3762
  "different device."
@@ -3766,12 +3608,12 @@ msgstr ""
3766
 
3767
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:313
3768
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:400
 
3769
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFonts.php:46
3770
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:181
3771
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:229
3772
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:249
3773
  #: SmartSlider3/Application/Admin/Sliders/ViewSlidersImport.php:86
3774
- #: SmartSlider3Pro/Generator/Common/Dribbble/ConfigurationDribbble.php:99
3775
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:120
3776
  #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:104
3777
  #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:96
@@ -3813,8 +3655,8 @@ msgstr ""
3813
  "configurarla correctamente!"
3814
 
3815
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:41
3816
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:97
3817
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:156
3818
  #: SmartSlider3/Application/Model/ModelGenerator.php:400
3819
  msgid "Slides"
3820
  msgstr "Slides"
@@ -3840,33 +3682,37 @@ msgstr ""
3840
  msgid "Randomize"
3841
  msgstr "Aleatorio"
3842
 
3843
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:76
 
 
 
 
3844
  msgid "Randomize first"
3845
  msgstr "El primero aleatorio"
3846
 
3847
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:77
3848
  msgid "Cache support"
3849
  msgstr "Soporte para cache"
3850
 
3851
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:78
3852
  msgid "Cache variations"
3853
  msgstr "Variaciones del cache"
3854
 
3855
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:89
3856
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:90
3857
  msgid "Reverse"
3858
  msgstr "Reverso"
3859
 
3860
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:91
3861
  msgid "You can make your slides appear in the slider in a reversed order."
3862
  msgstr "Puedes hacer que tu slides aparezcan en un orden inverso."
3863
 
3864
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:94
3865
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:96
3866
  msgid "Max count"
3867
  msgstr "Conteo máximo"
3868
 
3869
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:97
3870
  msgid ""
3871
  "You can limit how many slides you want to show from your slider. It's best "
3872
  "used with the Randomize feature, to improve the experience."
@@ -3874,12 +3720,12 @@ msgstr ""
3874
  "Puedes limitar cuantos slides quieres mostrar en tu slider. Una buena idea "
3875
  "es utilizarlo con la opción de Aleatorizar para mejorar la experiencia."
3876
 
3877
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:100
3878
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:101
3879
  msgid "Maintain session"
3880
  msgstr "Mantener sesión"
3881
 
3882
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:102
3883
  msgid ""
3884
  "The slider continues from the last viewed slide when the visitor comes back "
3885
  "to the page."
@@ -3887,12 +3733,12 @@ msgstr ""
3887
  "El slider continua desde el último slide que fue visto cuando el usuario "
3888
  "regresa a la página."
3889
 
3890
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:107
3891
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:108
3892
  msgid "Backgrounds in lightbox"
3893
  msgstr "Fondos en el lightbox"
3894
 
3895
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:109
3896
  msgid ""
3897
  "Creates a lightbox from your slide background images. This feature only "
3898
  "works if all slides have background images."
@@ -3900,59 +3746,59 @@ msgstr ""
3900
  "Crea un lightbox con las imágenes de fondo de tu slide. Esta característica "
3901
  "solo funciona si todos los slides tienen una imagen de fondo."
3902
 
3903
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:115
3904
  msgid "Show label"
3905
  msgstr "Mostrar etiqueta"
3906
 
3907
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:118
3908
  msgid "Only slide name"
3909
  msgstr "Solo el nombre del slide"
3910
 
3911
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:119
3912
  msgid "Slide name and description"
3913
  msgstr "Nombre y descripción del slide"
3914
 
3915
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:136
3916
  msgid "Background parallax"
3917
  msgstr "Fondo parallax"
3918
 
3919
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:145
3920
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:67
3921
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:179
3922
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:192
3923
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:422
3924
  msgid "Strength"
3925
  msgstr "Fuerza"
3926
 
3927
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:147
3928
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:70
3929
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:182
3930
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:195
3931
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:425
3932
  msgid "Super soft"
3933
  msgstr "Super suave"
3934
 
3935
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:148
3936
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:71
3937
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:183
3938
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:196
3939
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:426
3940
  msgid "Soft"
3941
  msgstr "Suave"
3942
 
3943
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:150
3944
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:73
3945
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:185
3946
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:198
3947
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:428
3948
  msgid "Strong"
3949
  msgstr "Fuerte"
3950
 
3951
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:151
3952
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:74
3953
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:186
3954
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:199
3955
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:429
3956
  msgid "Super strong"
3957
  msgstr "Super fuerte"
3958
 
@@ -3977,15 +3823,15 @@ msgstr "Origen del genedor no encontrado"
3977
  msgid "No records found for the filter"
3978
  msgstr "No se encontraron entradas para el filtro"
3979
 
3980
- #: SmartSlider3/Application/Admin/Generator/ControllerGenerator.php:211
3981
  msgid "Authentication successful."
3982
  msgstr "Autenticación exitosa."
3983
 
3984
- #: SmartSlider3/Application/Admin/Generator/Template/CreateStep1Groups.php:61
3985
  msgid "Not installed"
3986
  msgstr "No instalado"
3987
 
3988
- #: SmartSlider3/Application/Admin/Generator/Template/CreateStep1Groups.php:69
3989
  msgid "Visit"
3990
  msgstr "Visitar"
3991
 
@@ -4010,8 +3856,8 @@ msgstr "Agregar"
4010
 
4011
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:58
4012
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:84
4013
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:96
4014
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:123
4015
  msgid "Generator"
4016
  msgstr "Generador"
4017
 
@@ -4176,7 +4022,7 @@ msgstr ""
4176
  "que tienen soporte para la edición son los siguientes: %s."
4177
 
4178
  #: SmartSlider3/Application/Admin/Help/ViewHelpIndex.php:28
4179
- #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:90
4180
  msgid "Help center"
4181
  msgstr "Centro de ayuda"
4182
 
@@ -4269,27 +4115,27 @@ msgstr "Me encantó"
4269
  msgid "Why upgrade to Smart Slider 3 Pro?"
4270
  msgstr "¿Por qué actualizarse a Smart Slider 3 Pro?"
4271
 
4272
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:25
4273
- msgid "180+ slider templates"
4274
- msgstr "Más de 180 plantillas de sliders"
4275
-
4276
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:29
4277
- msgid "14 new layers"
4278
- msgstr "14 nuevas capas"
4279
 
4280
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:33
4281
- msgid "New animations & effects"
4282
- msgstr "Nuevas animaciones y efectos"
4283
-
4284
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:39
4285
  msgid "Full slide library access"
4286
  msgstr "Acceso completo a la Biblioteca de Slides"
4287
 
4288
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:43
 
 
 
 
4289
  msgid "Extra advanced options"
4290
  msgstr "Opciones extra avanzadas"
4291
 
4292
- #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:47
 
 
 
 
4293
  msgid "Lifetime update & support"
4294
  msgstr "Soporte y actualizaciones de por vida"
4295
 
@@ -4316,7 +4162,7 @@ msgstr "Biblioteca"
4316
 
4317
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:129
4318
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:62
4319
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:151
4320
  msgid "Absolute"
4321
  msgstr "Absoluto"
4322
 
@@ -4327,75 +4173,84 @@ msgctxt "Layer group"
4327
  msgid "Basic"
4328
  msgstr "Básico"
4329
 
4330
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:41
4331
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:45
4332
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:37
4333
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:41
4334
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:45
4335
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:49
4336
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:333
4337
  msgid "Inner align"
4338
  msgstr "Alineación Interna"
4339
 
4340
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:46
4341
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:42
4342
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:50
4343
  msgid "Positions the layers inside horizontally."
4344
  msgstr "Posiciona horizontalmente las capas que se encuentran dentro."
4345
 
4346
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:49
4347
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:53
4348
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:161
4349
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:44
4350
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:48
4351
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:232
4352
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:238
4353
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:334
4354
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:340
4355
  msgid "Vertical align"
4356
  msgstr "Alineación vertical"
4357
 
4358
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:54
4359
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:49
4360
  msgid "Positions the layers inside vertically."
4361
  msgstr "Posiciona verticalmente las capas que se encuentran dentro."
4362
 
4363
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:66
4364
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:93
4365
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:83
4366
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:113
4367
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:55
4368
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:165
4369
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:178
4370
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:143
4371
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:178
4372
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:196
4373
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:188
4374
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:227
4375
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:123
4376
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:144
4377
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:288
4378
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:171
4379
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:146
4380
  msgid "Target window"
4381
  msgstr "Ventana de destino"
4382
 
4383
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:93
4384
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:94
 
 
 
 
 
 
 
 
 
4385
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:79
4386
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:80
4387
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:121
4388
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:122
4389
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:267
4390
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:121
4391
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:122
4392
  msgid "Focus"
4393
  msgstr "Enfoque"
4394
 
4395
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:95
4396
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:81
4397
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:123
4398
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:123
4399
  msgid ""
4400
  "You can set the starting position of a background image. This makes sure "
4401
  "that the selected part will always remain visible, so you should pick the "
@@ -4405,48 +4260,48 @@ msgstr ""
4405
  "que la parte seleccionada siempre permanezca visible, así que selecciona la "
4406
  "parte más importante."
4407
 
4408
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:107
4409
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:137
4410
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:134
4411
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:178
4412
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:41
4413
  msgid "Background"
4414
  msgstr "Fondo"
4415
 
4416
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:116
4417
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:101
4418
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:143
4419
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:308
4420
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:116
4421
  msgid "Gradient"
4422
  msgstr "Degradado"
4423
 
4424
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:122
4425
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:107
4426
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:149
4427
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:314
4428
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:121
4429
  msgid "Color end"
4430
  msgstr "Color final"
4431
 
4432
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:194
4433
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:90
4434
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:168
4435
  msgid "Max width"
4436
  msgstr "Ancho máximo"
4437
 
4438
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:53
4439
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:59
4440
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:64
4441
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:142
4442
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:148
4443
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:151
4444
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:93
4445
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:111
4446
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:99
4447
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:41
4448
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:36
4449
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:57
4450
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:33
4451
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:40
4452
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:39
@@ -4473,18 +4328,18 @@ msgstr "Puedes colocar una altura fija para tu capa."
4473
  msgid "With margins you can create distance between your layers."
4474
  msgstr "Con los márgenes puedes crear distancia entre tus capas."
4475
 
4476
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:183
4477
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:235
4478
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:243
4479
  msgid "Responsive"
4480
  msgstr "Responsivo"
4481
 
4482
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:188
4483
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:194
4484
  msgid "Linked to"
4485
  msgstr "Enlazado a"
4486
 
4487
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:195
4488
  msgid ""
4489
  "You can link your layer to another layer on the same level. This way your "
4490
  "layer won't be positioned to the slide, but the other layer."
@@ -4492,80 +4347,67 @@ msgstr ""
4492
  "Puedes enlazar tu capa con otra capa del mismo nivel. De esta manera la capa "
4493
  "no se posicionará en el slide, sino en relación a la otra capa."
4494
 
4495
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:245
4496
  msgid "Hide when variable empty"
4497
  msgstr "Ocultar cuando la variable este vacía"
4498
 
4499
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:254
4500
  msgid "Text scale"
4501
  msgstr "Escalar"
4502
 
4503
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:265
4504
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:266
4505
- msgid "Adaptive"
4506
- msgstr "Adaptativo"
4507
-
4508
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:267
4509
- msgid ""
4510
- "Keeps the same size for your text on each device for best legibility. It's "
4511
- "enabled by default on the Content layer."
4512
- msgstr ""
4513
- "Mantiene el mismo tamaño para el texto en cada dispositivo para mejorar la "
4514
- "legibilidad. Está activado por defecto para la capa Contenido."
4515
-
4516
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:271
4517
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:170
4518
  msgid "Device specific settings"
4519
  msgstr "Opciones específicas del dispositivo"
4520
 
4521
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:271
4522
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:170
4523
  msgid "Clear"
4524
  msgstr "Limpiar"
4525
 
4526
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:273
4527
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:172
4528
  msgid "Erases all device specific changes you made on the current device."
4529
  msgstr ""
4530
  "Borra todos los cambios específicos para el dispositivo actual que hayas "
4531
  "hecho."
4532
 
4533
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:282
4534
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:70
4535
  msgid "Effect"
4536
  msgstr "Efecto"
4537
 
4538
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:285
4539
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:286
4540
  msgid "Parallax"
4541
  msgstr "Parallax"
4542
 
4543
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:287
4544
  msgid "More parallax options in slider settings -> Layer animations tab."
4545
  msgstr ""
4546
  "Puedes encontrar más opciones del parallax en la opción Preferencias del "
4547
  "slider > Animaciones de capa."
4548
 
 
4549
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:305
4550
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:312
4551
  msgid "Crop"
4552
  msgstr "Cortar"
4553
 
4554
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:310
4555
  msgid "Mask"
4556
  msgstr "Mascara"
4557
 
4558
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:313
4559
  msgid "If your content is larger than the layer, you can crop it to fit."
4560
  msgstr ""
4561
  "Si el contenido es más grande que la capa, puedes recortarlo para que encaje."
4562
 
4563
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:316
4564
  msgid "Rotation"
4565
  msgstr "Rotación"
4566
 
4567
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:333
4568
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:335
4569
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:205
4570
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:207
4571
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:281
@@ -4573,8 +4415,8 @@ msgstr "Rotación"
4573
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:182
4574
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
4575
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:190
4576
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:282
4577
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:284
4578
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:311
4579
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:313
4580
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:196
@@ -4582,7 +4424,7 @@ msgstr "Rotación"
4582
  msgid "CSS Class"
4583
  msgstr "Clase CSS"
4584
 
4585
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:336
4586
  msgid "You can add a custom CSS class on the layer container."
4587
  msgstr ""
4588
  "Puedes agregar una clase CSS personalizada en el contenedor de la capa."
@@ -4593,8 +4435,8 @@ msgstr "Fondo del contenido"
4593
 
4594
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:118
4595
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:185
4596
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:219
4597
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:148
4598
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:190
4599
  msgid "Spacing"
4600
  msgstr "Espaciado"
@@ -4617,84 +4459,91 @@ msgstr ""
4617
  "¿Necesitas cambiar el tamaño de la fuente para cada dispositivo? Utiliza la "
4618
  "opción \"escala de texto\"."
4619
 
4620
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:36
4621
  msgid "Columns"
4622
  msgstr "Columnas"
4623
 
4624
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:53
4625
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:62
4626
  msgid "Gutter"
4627
  msgstr "Canal"
4628
 
4629
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:63
4630
  msgid "Creates space between the columns"
4631
  msgstr "Crea un espacio entre las columnas"
4632
 
4633
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:66
4634
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:74
4635
  msgid "Wrap after"
4636
  msgstr "Colapsar"
4637
 
4638
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:75
4639
  msgid "Breaks the columns to the given amount of rows."
4640
  msgstr "Divide las columnas en la cantidad ingresada de filas."
4641
 
4642
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:81
4643
  msgid "Makes the row fill the available vertical space"
4644
  msgstr "Hace que la fila rellene todo el espacio vertical disponible"
4645
 
 
 
 
 
 
 
 
 
4646
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:60
4647
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:96
4648
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:35
4649
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:67
4650
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:109
4651
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:78
4652
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:173
4653
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
4654
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:171
4655
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:268
4656
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:272
4657
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:50
4658
  msgid "Description"
4659
  msgstr "Descripción"
4660
 
4661
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:107
4662
  msgid "Custom lightbox image"
4663
  msgstr "Imagen de lightbox personalizada"
4664
 
4665
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:112
4666
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/SlideBox.php:72
4667
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:56
4668
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:56
4669
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:73
4670
  msgid "Published"
4671
  msgstr "Publicado"
4672
 
4673
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:124
4674
  msgid "Publish on"
4675
  msgstr "Publicar en"
4676
 
4677
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:125
4678
  msgid "Unpublish on"
4679
  msgstr "Despublicar en"
4680
 
4681
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:130
4682
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:135
4683
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:105
4684
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:47
4685
  msgid "Thumbnail type"
4686
  msgstr "Tipo de miniatura"
4687
 
4688
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:133
4689
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:108
4690
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:50
4691
  #: SmartSlider3/Form/Element/BackgroundImage.php:30
4692
- #: SmartSlider3Pro/Renderable/Item/Video/Assets/video.js:22
4693
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:36
4694
  msgid "Video"
4695
  msgstr "Video"
4696
 
4697
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:136
4698
  msgid ""
4699
  "If you have a video on your slide, you can put a play icon on the thumbnail "
4700
  "image to indicate that."
@@ -4702,10 +4551,10 @@ msgstr ""
4702
  "Si tienes un video en tu slide, puedes incluir un ícono de reproducción "
4703
  "(play) en la imagen miniatura para indicar que puede reproducirse."
4704
 
4705
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:216
4706
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:162
4707
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:164
4708
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:168
4709
  #, php-format
4710
  msgid ""
4711
  "Video autoplaying has a lot of limitations made by browsers. %1$sLearn about "
@@ -4714,57 +4563,38 @@ msgstr ""
4714
  "La reproducción automática tiene muchas limitaciones en los navegadores. "
4715
  "%1$sObtén más información.%2$s"
4716
 
4717
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:218
4718
  msgid "Slide background video"
4719
  msgstr "Fondo de video del slide"
4720
 
4721
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:230
4722
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:103
4723
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:236
4724
- msgid "Muted"
4725
- msgstr "Mudo"
4726
-
4727
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:231
4728
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:205
4729
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:210
4730
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:104
4731
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:237
4732
- #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:132
4733
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:183
4734
- msgctxt "Video/Audio play"
4735
- msgid "Loop"
4736
- msgstr "Loop"
4737
-
4738
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:232
4739
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:233
4740
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:215
4741
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:216
4742
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:217
4743
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:218
4744
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:142
4745
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:143
4746
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:199
4747
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:200
4748
  msgid "Restart on slide change"
4749
  msgstr "Comenzar de nuevo con el cambio de slide"
4750
 
4751
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:234
4752
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:217
4753
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:219
4754
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:201
4755
  msgid "Starts the video from the beginning when the slide is viewed again."
4756
  msgstr "Comienza el video desde el inicio cuando el slide se mira nuevamente."
4757
 
4758
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:237
4759
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:284
4760
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:105
4761
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:238
4762
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:128
4763
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:206
4764
- msgid "Fill mode"
4765
- msgstr "Modo de relleno"
4766
 
4767
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:262
4768
  msgid ""
4769
  "Select a background image for the slide. By clicking the small screen icon, "
4770
  "you can pick different images for different devices."
@@ -4773,7 +4603,7 @@ msgstr ""
4773
  "de la pequeña pantalla, puedes seleccionar diferentes imágenes para "
4774
  "diferentes dispositivos."
4775
 
4776
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:282
4777
  #, php-format
4778
  msgid ""
4779
  "Please read %1$sour detailed guide%2$s about setting your own slide "
@@ -4782,37 +4612,37 @@ msgstr ""
4782
  "Por favor consulta %1$snuestra guía detallada%2$s sobre como colocar tu "
4783
  "propio fondo del slide correctamente."
4784
 
4785
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:295
4786
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:202
4787
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:100
4788
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:1070
4789
  msgid "Blur"
4790
  msgstr "Desenfocar"
4791
 
4792
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:318
4793
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:319
4794
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:124
4795
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:87
4796
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:87
4797
  msgid "Overlay"
4798
  msgstr "Cubrir"
4799
 
4800
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:320
4801
  msgid "Puts the color in front of the image."
4802
  msgstr "Coloca el color en frente de la imagen."
4803
 
4804
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:324
4805
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:163
4806
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:242
4807
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:153
4808
  msgid "SEO"
4809
  msgstr "SEO"
4810
 
4811
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:325
4812
  msgid "Image alt"
4813
  msgstr "Alt de la imagen"
4814
 
4815
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:328
4816
  msgid "Image title"
4817
  msgstr "Título de la imagen"
4818
 
@@ -4831,60 +4661,60 @@ msgctxt "Layer animation"
4831
  msgid "Events"
4832
  msgstr "Eventos"
4833
 
4834
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:68
4835
  msgid "Plays in when"
4836
  msgstr "Reproducir \"dentro\" cuando"
4837
 
4838
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:73
4839
  msgid "Plays out when"
4840
  msgstr "Reproducir \"fuera\" cuando"
4841
 
4842
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:81
4843
  msgid "Plays loop when"
4844
  msgstr "Reproducir \"bucle\" cuando"
4845
 
4846
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:86
4847
  msgid "Pauses loop when"
4848
  msgstr "Pausar \"bucle\" cuando"
4849
 
4850
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:91
4851
  msgid "Stops loop when"
4852
  msgstr "Detener \"bucle\" cuando"
4853
 
4854
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:96
4855
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:101
4856
  msgid "Repeatable"
4857
  msgstr "Repetible"
4858
 
4859
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:102
4860
  msgid "Allows the layer animations to play more than once."
4861
  msgstr "Permite que la animación de capa se reproduzca más de una vez."
4862
 
4863
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:105
4864
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:371
4865
  msgid "Start delay"
4866
  msgstr "Comenzar retrazo"
4867
 
4868
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:119
4869
  msgid "End delay"
4870
  msgstr "Finalizar retrazo"
4871
 
4872
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:132
4873
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:133
 
4874
  msgid "Repeat loop only"
4875
  msgstr "Repetir bucle"
4876
 
4877
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:134
4878
  msgid "Allows the stopped loop to start again."
4879
  msgstr "Permite que el bucle vuelva a comenzar una vez que termina."
4880
 
4881
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:137
4882
  msgid "Trigger custom event on"
4883
  msgstr "Disparar evento personalizado con"
4884
 
4885
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:139
4886
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:41
4887
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:62
4888
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:148
4889
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:181
4890
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:44
@@ -4892,72 +4722,72 @@ msgstr "Disparar evento personalizado con"
4892
  msgid "Click"
4893
  msgstr "Clic"
4894
 
4895
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:142
4896
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:182
4897
  msgid "Mouse enter"
4898
  msgstr "Ingreso del ratón"
4899
 
4900
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:145
4901
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:183
4902
  msgid "Mouse leave"
4903
  msgstr "Egreso del ratón"
4904
 
4905
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:148
4906
  msgid "Media started"
4907
  msgstr "Medio iniciado"
4908
 
4909
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:151
4910
  msgid "Media paused"
4911
  msgstr "Medio pausado"
4912
 
4913
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:154
4914
  msgid "Media stopped"
4915
  msgstr "Medio detenido"
4916
 
4917
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:168
4918
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:439
4919
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:86
4920
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:40
4921
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:271
4922
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:269
4923
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:302
4924
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:72
4925
  msgid "Duration"
4926
  msgstr "Duración"
4927
 
4928
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:180
4929
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:451
4930
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:214
4931
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:240
4932
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:98
4933
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:241
4934
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:185
4935
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:140
4936
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:267
4937
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:169
4938
  msgid "Delay"
4939
  msgstr "Retardo"
4940
 
4941
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:193
4942
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:497
4943
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:503
4944
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:103
4945
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:198
4946
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:279
4947
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:313
4948
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:97
4949
  msgid "Easing"
4950
  msgstr "Suavizado"
4951
 
4952
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:209
4953
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:76
4954
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:153
 
 
4955
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:152
4956
  msgid "Offset"
4957
  msgstr "Distancia"
4958
 
4959
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:257
4960
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
4961
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
4962
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
4963
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
@@ -4965,42 +4795,43 @@ msgstr "Distancia"
4965
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
4966
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
4967
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
 
4968
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:49
4969
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:254
4970
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:536
4971
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:578
4972
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:620
4973
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:184
4974
  msgid "Rotate"
4975
  msgstr "Girar"
4976
 
4977
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:295
4978
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:39
4979
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:223
4980
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:224
4981
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:377
4982
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:138
4983
  msgid "Scale"
4984
  msgstr "Escalar"
4985
 
4986
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:322
4987
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
4988
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
4989
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:474
4990
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:475
 
4991
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:945
4992
  msgid "Skew"
4993
  msgstr "Torcer"
4994
 
4995
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:329
4996
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:376
4997
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:406
4998
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:246
4999
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:99
5000
  msgid "Transform origin"
5001
  msgstr "Transformar origen"
5002
 
5003
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:359
5004
  msgid ""
5005
  "Makes the last keyframe to be the origin of the layer animation, instead of "
5006
  "its canvas position."
@@ -5008,16 +4839,16 @@ msgstr ""
5008
  "Hace que el último fotograma clave sea el origen de la animación de capa, en "
5009
  "vez de la posición de su canvas."
5010
 
5011
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:365
5012
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:368
5013
  msgid "Repeat count"
5014
  msgstr "Conteo de repetición"
5015
 
5016
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:367
5017
  msgid "loops"
5018
  msgstr "bucle"
5019
 
5020
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:369
5021
  msgid ""
5022
  "You can restrict the loop to play only a certain amount of loops, instead of "
5023
  "infinite."
@@ -5025,78 +4856,78 @@ msgstr ""
5025
  "Puedes hacer que el bucle se reproduzca una determinada cantidad de veces, "
5026
  "en vez de que sea infinito."
5027
 
5028
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:468
5029
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
5030
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:470
5031
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:471
 
5032
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:912
5033
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:192
5034
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:47
5035
  msgctxt "Animation"
5036
  msgid "Slide"
5037
  msgstr "Slide"
5038
 
5039
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:476
5040
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:477
5041
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:478
5042
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:479
 
5043
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:246
5044
  msgid "Curtains"
5045
  msgstr "Cortinas"
5046
 
5047
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:478
5048
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:479
 
5049
  msgid "Diagonal"
5050
  msgstr "Diagonal"
5051
 
5052
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
5053
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
5054
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:490
5055
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:491
 
5056
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:262
5057
  msgid "Circle"
5058
  msgstr "Circulo"
5059
 
5060
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:494
5061
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:254
5062
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:256
5063
  msgid "From"
5064
  msgstr "Desde"
5065
 
5066
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:500
5067
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:259
5068
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:261
5069
  msgid "To"
5070
  msgstr "Hasta"
5071
 
5072
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:508
5073
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:58
5074
  #: SmartSlider3/Storage.php:935 SmartSlider3/Storage.php:1755
5075
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:132
5076
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:24
5077
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:73
5078
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:91
5079
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:1061
5080
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:189
5081
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:201
5082
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:132
5083
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:243
5084
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:48
5085
  msgid "Fade"
5086
  msgstr "Desvanecer"
5087
 
5088
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:509
5089
  #: SmartSlider3/Storage.php:1009
5090
  msgid "Scale up"
5091
  msgstr "Aumentar tamaño"
5092
 
5093
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:510
5094
  #: SmartSlider3/Storage.php:1024
5095
  msgid "Scale down"
5096
  msgstr "Reducir tamaño"
5097
 
5098
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/SlideBox.php:22
5099
- #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:40
5100
  msgid "Edit"
5101
  msgstr "Editar"
5102
 
@@ -5144,7 +4975,7 @@ msgstr "Vacío"
5144
 
5145
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:36
5146
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:175
5147
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:121
5148
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:159
5149
  msgid "Post"
5150
  msgstr "Artículo"
@@ -5153,7 +4984,7 @@ msgstr "Artículo"
5153
  msgid "Dynamic slides"
5154
  msgstr "Slides Dinámicos"
5155
 
5156
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:92
5157
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:21
5158
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:27
5159
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:63
@@ -5162,27 +4993,27 @@ msgstr "Slides Dinámicos"
5162
  msgid "Add slide"
5163
  msgstr "Agregar slide"
5164
 
5165
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:105
5166
  msgid "Block must contain only one slide. Need more?"
5167
  msgstr "El bloque debe contener solo un slide. ¿Necesitas más?"
5168
 
5169
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:108
5170
  msgid "Convert to slider"
5171
  msgstr "Convertir a slider"
5172
 
5173
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:136
5174
  msgid "Slide one"
5175
  msgstr "Slide uno"
5176
 
5177
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:143
5178
  msgid "Slide two"
5179
  msgstr "Slide dos"
5180
 
5181
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:150
5182
  msgid "Drop images here"
5183
  msgstr "Suelta tus imágenes aquí"
5184
 
5185
- #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:106
5186
  msgid "Edit slider"
5187
  msgstr "Editar slider"
5188
 
@@ -5282,7 +5113,7 @@ msgstr "Pega el código PHP en el archivo del tema:"
5282
  msgid "Trash is empty."
5283
  msgstr "La papelera está vacía."
5284
 
5285
- #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderTrash/SliderTrashBox.php:38
5286
  #: SmartSlider3/Application/Admin/Sliders/ViewSlidersImport.php:122
5287
  msgid "Restore"
5288
  msgstr "Reestablecer"
@@ -5299,11 +5130,11 @@ msgstr "Volver a cargar la vista previa"
5299
  msgid "Open preview in full"
5300
  msgstr "Abrir el preview en pantalla completa"
5301
 
5302
- #: SmartSlider3/Application/Admin/Preview/Template/Index.php:28
5303
  msgid "State"
5304
  msgstr "Estado"
5305
 
5306
- #: SmartSlider3/Application/Admin/Preview/Template/Index.php:30
5307
  msgid "Reason"
5308
  msgstr "Razón"
5309
 
@@ -5328,18 +5159,43 @@ msgstr "Predeterminados de capas"
5328
  msgid "Generators"
5329
  msgstr "Generadores"
5330
 
5331
- #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:31
5332
- #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:47
5333
- #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:65
5334
- #: SmartSlider3/Application/Admin/Settings/ControllerSettings.php:36
5335
  msgid "Saved and slider cache invalidated."
5336
  msgstr "Grabado y cache del slider invalidado."
5337
 
5338
- #: SmartSlider3/Application/Admin/Settings/ControllerSettings.php:98
5339
  #: SmartSlider3/Application/Admin/Slider/ControllerSlider.php:43
5340
  msgid "Cache cleared."
5341
  msgstr "Cache borrado."
5342
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5343
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFonts.php:41
5344
  msgid "Configuration"
5345
  msgstr "Configuración"
@@ -5383,12 +5239,25 @@ msgstr "Utilizar URL relativa al protocolo"
5383
  msgid "Loads the URLs without a http or https protocol."
5384
  msgstr "Carga las URL sin un protocolo http o https."
5385
 
 
5386
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:48
 
 
 
5387
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:49
 
 
 
 
 
 
 
 
 
5388
  msgid "English UI"
5389
  msgstr "English UI"
5390
 
5391
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:50
5392
  msgid ""
5393
  "You can keep using Smart Slider 3 in English, even if your backend isn't in "
5394
  "English."
@@ -5396,12 +5265,12 @@ msgstr ""
5396
  "Puedes seguir utilizando Smart Slider 3 en inglés, incluso si el backend no "
5397
  "está en inglés."
5398
 
5399
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:53
5400
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:54
5401
  msgid "Improved frontend accessibility"
5402
  msgstr "Accesibilidad mejorada del frontend"
5403
 
5404
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:55
5405
  msgid ""
5406
  "Keeps the clicked element (like a button) in focus unless the focus is "
5407
  "changed by clicking away."
@@ -5409,107 +5278,72 @@ msgstr ""
5409
  "Mantiene el elemento que se ha hecho un clic (como un botón) en foco a menos "
5410
  "que se haga un clic fuera del mismo."
5411
 
5412
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:63
5413
- msgid "Load jQuery on frontend"
5414
- msgstr "Cargar JQuery en el frontend"
5415
-
5416
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:65
5417
- msgid "Load GSAP on frontend"
5418
- msgstr "Cargar GSAP en el frontend"
5419
-
5420
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:67
5421
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:87
5422
- msgid "Async"
5423
- msgstr "Asíncrono"
5424
-
5425
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:68
5426
- msgid "Combine"
5427
- msgstr "Combinar"
5428
-
5429
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:69
5430
  msgid "Script attributes"
5431
  msgstr "Atributos del script"
5432
 
5433
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:71
5434
  msgid "Slider's inline JavaScript"
5435
  msgstr "Javascript incluido en el slider"
5436
 
5437
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:73
5438
  msgid "Head"
5439
  msgstr "Encabezado"
5440
 
5441
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:74
5442
  msgid "Into the slider"
5443
  msgstr "Dentro del slider"
5444
 
5445
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:83
5446
- msgid "CSS mode"
5447
- msgstr "Modo CSS"
5448
-
5449
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:85
5450
- msgid "Inline"
5451
- msgstr "En línea"
5452
-
5453
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:86
5454
- msgid "Inline at head"
5455
- msgstr "En línea en el encabezado"
5456
-
5457
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:92
5458
  msgid "Load Font Awesome 4"
5459
  msgstr "Cargar Font Awesome 4"
5460
 
5461
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:95
5462
  msgid "API requests"
5463
  msgstr "Solicitudes de la API"
5464
 
5465
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:99
5466
  #, php-format
5467
  msgctxt "Curl"
5468
  msgid "Use %s"
5469
  msgstr "Usar %s"
5470
 
5471
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:101
5472
  #, php-format
5473
  msgctxt "curl proxy"
5474
  msgid "Clean %s"
5475
  msgstr "Limpiar %s"
5476
 
5477
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:58
5478
- #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:175
5479
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:126
5480
- msgid "Clear cache"
5481
- msgstr "Borrar cache"
5482
-
5483
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:70
5484
  msgid "General settings"
5485
  msgstr "Ajustes generales"
5486
 
5487
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:80
5488
  msgid "Automatic update check"
5489
  msgstr "Verificación automatica de actualización"
5490
 
 
5491
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:82
5492
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:83
5493
  msgid "Alternative save slide"
5494
  msgstr "Guardar slide alternativo"
5495
 
5496
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:84
5497
  msgid ""
5498
  "If you experience problems during the save this option might solve them."
5499
  msgstr ""
5500
  "Si experimentas problemas durante el guardado, esta opción puede resolver el "
5501
  "problema."
5502
 
5503
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:86
5504
  msgid "Preview in new window"
5505
  msgstr "Vista previa en una nueva ventana"
5506
 
 
5507
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:91
5508
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:92
5509
  msgid "Lightbox videos in new tab on Mobile"
5510
  msgstr "Videos en lightbox dentro de una nueva pestaña del móvil"
5511
 
5512
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:93
5513
  msgid ""
5514
  "Opens the lightbox videos in the YouTube app to avoid the mobile disabling "
5515
  "the video."
@@ -5517,20 +5351,20 @@ msgstr ""
5517
  "Abre los videos en un lightbox dentro de la aplicación de YouTube para "
5518
  "evitar que el móvil desactive el video."
5519
 
5520
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:98
5521
  msgid "YouTube and Vimeo privacy enhanced mode"
5522
  msgstr "Modo mejorado de privacidad para YouTube y Vimeo"
5523
 
5524
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:100
5525
  msgid "Smooth scroll speed"
5526
  msgstr "Velocidad de desplazamiento"
5527
 
5528
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:107
5529
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:109
5530
  msgid "Editor - additional CSS files"
5531
  msgstr "Editor - archivos adicionales CSS"
5532
 
5533
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:110
5534
  msgid ""
5535
  "You can call your own CSS files to our backend, for example, to be able to "
5536
  "use custom fonts. Write each URL to a new line."
@@ -5538,32 +5372,32 @@ msgstr ""
5538
  "Puedes llamar tus propios archivos CSS en nuestro backend, por ejemplo, para "
5539
  "utilizar tipografías personalizadas. Escribe cada URL en una línea diferente."
5540
 
5541
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:115
5542
  msgid "WordPress settings"
5543
  msgstr "Opciones de Wordpress"
5544
 
5545
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:118
5546
  msgid "Show editor icon"
5547
  msgstr "Mostrar ícono del editor"
5548
 
5549
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:120
5550
  msgid "Show in admin bar"
5551
  msgstr "Mostrar en la barra de administración"
5552
 
5553
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:122
5554
  msgid "YOAST SEO sitemap - add images"
5555
  msgstr "Mapa del sitio YOAST SEO - agregar imágenes"
5556
 
5557
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:124
5558
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:128
5559
  msgid "Create widget area"
5560
  msgstr "Crear un área de widget"
5561
 
5562
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:125
5563
  msgid "widget area(s)"
5564
  msgstr "área/s de widget/s"
5565
 
5566
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:129
5567
  msgid ""
5568
  "Creates new widget areas which you can place to your theme for easy "
5569
  "publishing."
@@ -5571,12 +5405,12 @@ msgstr ""
5571
  "Crea nuevas áreas de widget que puedas colocar en tu plantilla para que sea "
5572
  "fácil publicarlo."
5573
 
 
5574
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:134
5575
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:135
5576
  msgid "Use iframe in AJAX calls"
5577
  msgstr "Utilizar los iframe en llamadas AJAX"
5578
 
5579
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:136
5580
  msgid ""
5581
  "Loads the slider using an iframe when the page is loaded via AJAX to avoid "
5582
  "problems."
@@ -5584,34 +5418,34 @@ msgstr ""
5584
  "Carga el slider usando un iframe cuando la página es cargada utilizando AJAX "
5585
  "para evitar problemas."
5586
 
5587
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:142
5588
  msgid "Joomla settings"
5589
  msgstr "Opciones de Joomla"
5590
 
5591
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:145
5592
  msgid "Force RTL backend"
5593
  msgstr "Forzar el texto del backend de derecha a izquierda (RTL)"
5594
 
5595
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:164
5596
  msgid "Run content plugins on sliders"
5597
  msgstr "Cargar plugins de contenido en los sliders"
5598
 
5599
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:170
5600
  msgid "Exclude plugins"
5601
  msgstr "Excluir plugins"
5602
 
5603
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:180
5604
  msgid ""
5605
  "At each slider you can override the global breakpoints with local values."
5606
  msgstr ""
5607
  "En cada slider puedes sobrescribir los puntos de parada (breakpoint) "
5608
  "globales con los valores locales."
5609
 
5610
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:227
5611
  msgid "Focus offset"
5612
  msgstr "Espacio compensatorio"
5613
 
5614
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:229
5615
  msgid ""
5616
  "This option is used at the full page layout to decrease the slider height. "
5617
  "The \"Scroll to slider\" option also uses this option to determine where to "
@@ -5621,11 +5455,11 @@ msgstr ""
5621
  "alto del slider. La opción \"Desplazar al slider\" también utiliza esta "
5622
  "característica para determinar donde se desplazará hacia el slider."
5623
 
5624
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:247
5625
  msgid "Translate url"
5626
  msgstr "Traducir url"
5627
 
5628
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:249
5629
  msgid ""
5630
  "You can change the frontend URL our assets are loading from. It can be "
5631
  "useful after moving to a new domain."
@@ -5633,12 +5467,12 @@ msgstr ""
5633
  "Puedes cambiar la URL del frontend desde donde los valores son cargados. "
5634
  "Puede ser útil tras mover el sitio a un nuevo dominio."
5635
 
5636
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:257
5637
  msgid "The old URL you want to replace. E.g. https://oldsite.com/"
5638
  msgstr ""
5639
  "La vieja URL que quieres reemplazar. Por ejemplo: https://viejositio.com/"
5640
 
5641
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:262
5642
  msgid "The new URL you want to use. E.g. https://newsite.com"
5643
  msgstr "La nueva URL que quieres utilizar. Por ejemplo: https://nuevositio.com"
5644
 
@@ -5650,44 +5484,44 @@ msgstr "Slider reestablecido."
5650
  msgid "Slider permanently deleted."
5651
  msgstr "Slider eliminado permanentemente."
5652
 
5653
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:145
5654
  msgid "Slider created."
5655
  msgstr "Slider creado."
5656
 
5657
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:162
5658
  msgid "Slider renamed."
5659
  msgstr "Slider renombrado."
5660
 
5661
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:178
5662
  msgid "Slider saved."
5663
  msgstr "Slider Almacenado."
5664
 
5665
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:189
5666
  #, php-format
5667
  msgid "Import url is not valid: %s"
5668
  msgstr "El url para importar no es valido: %s"
5669
 
5670
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:196
5671
  msgid "License key required for premium features!"
5672
  msgstr "¡Clave de licencia requerida para las caracteristicas premium!"
5673
 
5674
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:227
5675
  #: SmartSlider3/Application/Admin/Sliders/ControllerAjaxSliders.php:200
5676
  msgid "Slider imported."
5677
  msgstr "Se importó el slider."
5678
 
5679
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:231
5680
  #: SmartSlider3/Application/Admin/Sliders/ControllerAjaxSliders.php:216
5681
  msgid "Import error!"
5682
  msgstr "¡Error al importar!"
5683
 
5684
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:254
5685
  #: SmartSlider3/Application/Admin/Slides/ControllerAjaxSlides.php:234
5686
  #: SmartSlider3/Application/Admin/Slides/ControllerSlides.php:80
5687
  msgid "Slide duplicated."
5688
  msgstr "Slide duplicado."
5689
 
5690
- #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:275
5691
  #, php-format
5692
  msgid "%s slider type is not available."
5693
  msgstr "%s el tipo de slider no está disponible."
@@ -5724,14 +5558,12 @@ msgstr "Eliminar slide"
5724
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:88
5725
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:96
5726
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:48
5727
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:65
5728
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:55
5729
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:49
5730
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:79
5731
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:59
5732
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:41
5733
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:120
5734
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:66
5735
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:68
5736
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:53
5737
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:48
@@ -5951,14 +5783,10 @@ msgstr "Slide creado."
5951
  msgid "Failed to create slides."
5952
  msgstr "Fallo al crear slides."
5953
 
5954
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:178
5955
  msgid "Static save"
5956
  msgstr "Guardar estático"
5957
 
5958
- #: SmartSlider3/Application/Admin/Update/ControllerUpdate.php:19
5959
- msgid "index.php?option=com_installer&view=update"
5960
- msgstr ""
5961
-
5962
  #: SmartSlider3/Application/Model/ModelGenerator.php:396
5963
  msgid "Generator settings"
5964
  msgstr "Configuración del generador"
@@ -6004,9 +5832,9 @@ msgstr "Alias actualizado a: %s"
6004
 
6005
  #: SmartSlider3/BackgroundAnimation/Block/BackgroundAnimationManager/Index.php:14
6006
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:45
6007
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:136
6008
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:140
6009
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:353
6010
  msgid "Background animation"
6011
  msgstr "Animación de fondo"
6012
 
@@ -6128,6 +5956,10 @@ msgstr "Amontonar"
6128
  msgid "No description."
6129
  msgstr "Sin descripción."
6130
 
 
 
 
 
6131
  #: SmartSlider3/Generator/Common/Test/GeneratorGroupTest.php:17
6132
  #: SmartSlider3/Generator/Common/Test/Sources/TestTest.php:12
6133
  msgid "Test generator."
@@ -6142,35 +5974,6 @@ msgstr "Tipo de generador no encontrado"
6142
  msgid "%1$s generator missing the following source: %2$s"
6143
  msgstr "falta el generador %1$s del siguiente código fuente: %2$s"
6144
 
6145
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Elements/JoomlaContentCategories.php:43
6146
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Elements/CobaltCategories.php:37
6147
- #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsCategories.php:39
6148
- #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsLocations.php:39
6149
- #: SmartSlider3Pro/Generator/Joomla/Easyblog/Elements/EasyblogCategories.php:33
6150
- #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Elements/EasydiscussCategories.php:33
6151
- #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCategories.php:33
6152
- #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Elements/EventsbookingCategories.php:27
6153
- #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Elements/FlexicontentCategories.php:43
6154
- #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopBrands.php:30
6155
- #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopCategories.php:30
6156
- #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Elements/IgnitegalleryCategories.php:36
6157
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Elements/JauctionCategories.php:33
6158
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Elements/JcartCategories.php:36
6159
- #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCategories.php:32
6160
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Elements/JmarketCategories.php:33
6161
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialCategories.php:29
6162
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialGroupcategories.php:29
6163
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingCategories.php:41
6164
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Elements/JreviewsCategories.php:39
6165
- #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Categories.php:32
6166
- #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Elements/MijoshopCategories.php:47
6167
- #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Elements/PhocagalleryCategories.php:33
6168
- #: SmartSlider3Pro/Generator/Joomla/Redshop/Elements/RedshopCategories.php:35
6169
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Elements/RseventsproCategories.php:37
6170
- #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartCategories.php:37
6171
- msgid "menu.treerecurse"
6172
- msgstr ""
6173
-
6174
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:14
6175
  msgid "Joomla articles"
6176
  msgstr "Artículos de Joomla"
@@ -6180,38 +5983,28 @@ msgid "Creates slides from your Joomla articles or categories."
6180
  msgstr "Crea slides a partir de tus artículos o categorías de Joomla."
6181
 
6182
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:22
6183
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:41
6184
  msgid "Article"
6185
  msgstr "Artículo"
6186
 
6187
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:23
6188
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:47
6189
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:93
6190
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:34
6191
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:48
6192
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:33
6193
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:33
6194
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:30
6195
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:40
6196
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:36
6197
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:103
6198
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:41
6199
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:40
6200
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:35
6201
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:36
6202
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:36
6203
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:38
6204
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:65
6205
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:38
6206
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:40
6207
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:65
6208
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:34
6209
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:30
6210
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:34
6211
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:39
6212
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:47
6213
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:68
6214
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:41
6215
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:32
6216
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:32
6217
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:30
@@ -6240,8 +6033,6 @@ msgstr "Etiquetas"
6240
 
6241
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:59
6242
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:95
6243
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:55
6244
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:64
6245
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:44
6246
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:38
6247
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:53
@@ -6253,12 +6044,10 @@ msgstr "Etiquetas"
6253
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:57
6254
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:46
6255
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:58
6256
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:41
6257
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:41
6258
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:49
6259
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:67
6260
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:46
6261
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:56
6262
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:56
6263
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:48
6264
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:39
@@ -6266,25 +6055,17 @@ msgid "Featured"
6266
  msgstr "Destacado"
6267
 
6268
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:60
6269
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:54
6270
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:42
6271
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:37
6272
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:64
6273
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:58
6274
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:50
6275
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:50
6276
  msgid "User ID"
6277
  msgstr "ID del usuario"
6278
 
6279
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:63
6280
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:40
6281
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:53
6282
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:47
6283
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:45
6284
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:111
6285
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:44
6286
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:51
6287
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:52
 
6288
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:51
6289
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:45
6290
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:39
@@ -6308,22 +6089,21 @@ msgstr "Activa esta opción para generar más variables de los slides."
6308
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:70
6309
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:54
6310
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:51
6311
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:49
6312
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:56
6313
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:62
6314
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:76
6315
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:77
6316
  msgid "Date format"
6317
  msgstr "Formato de fecha"
6318
 
6319
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:79
6320
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:291
6321
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:293
 
6322
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:70
6323
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:54
6324
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:51
6325
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:56
6326
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:62
6327
  msgid "m-d-Y"
6328
  msgstr "m-d-Y"
6329
 
@@ -6332,16 +6112,15 @@ msgstr "m-d-Y"
6332
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:71
6333
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:55
6334
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:52
6335
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:50
6336
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:57
6337
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:63
6338
  msgid "Time format"
6339
  msgstr "Formato de hora"
6340
 
6341
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:81
6342
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:40
6343
- #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:33
6344
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:64
6345
  msgid "Translate date and time"
6346
  msgstr "Traducir fecha y hora"
6347
 
@@ -6352,10 +6131,10 @@ msgstr "Traducir fecha y hora"
6352
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:88
6353
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:277
6354
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:167
6355
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:228
 
6356
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:53
6357
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:98
6358
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:63
6359
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:52
6360
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:47
6361
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:76
@@ -6367,12 +6146,9 @@ msgstr "Traducir fecha y hora"
6367
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:55
6368
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:91
6369
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:74
6370
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:70
6371
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:74
6372
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:57
6373
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:64
6374
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:46
6375
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:88
6376
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:77
6377
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:101
6378
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:41
@@ -6381,8 +6157,7 @@ msgstr "Traducir fecha y hora"
6381
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:74
6382
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:166
6383
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:169
6384
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:167
6385
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:177
6386
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:44
6387
  msgid "Title"
6388
  msgstr "Titulo"
@@ -6394,7 +6169,6 @@ msgstr "Nombre de usuario"
6394
 
6395
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:97
6396
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:51
6397
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:66
6398
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:73
6399
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:80
6400
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:60
@@ -6402,23 +6176,17 @@ msgstr "Nombre de usuario"
6402
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:42
6403
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:92
6404
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:75
6405
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:75
6406
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:62
6407
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:59
6408
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:67
6409
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:68
6410
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:69
6411
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:49
6412
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:61
6413
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:89
6414
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:71
6415
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:58
6416
  msgid "Hits"
6417
  msgstr "Visitas"
6418
 
6419
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:98
6420
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:49
6421
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:67
6422
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:56
6423
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:50
6424
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:77
@@ -6430,22 +6198,13 @@ msgstr "Visitas"
6430
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:61
6431
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:62
6432
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:43
6433
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:54
6434
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:123
6435
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:89
6436
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:72
6437
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:53
6438
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:79
6439
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:71
6440
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:58
6441
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:58
6442
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:68
6443
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:63
6444
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:70
6445
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:56
6446
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:59
6447
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:72
6448
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:59
6449
  msgid "Creation time"
6450
  msgstr "Hora de creación"
6451
 
@@ -6456,19 +6215,13 @@ msgstr "Hora de creación"
6456
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:82
6457
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:62
6458
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:63
6459
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:55
6460
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:124
6461
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:90
6462
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:73
6463
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:54
6464
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:80
6465
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:69
6466
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:64
6467
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:71
6468
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:57
6469
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:60
6470
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:73
6471
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:60
6472
  msgid "Modification time"
6473
  msgstr "Hora de modificación"
6474
 
@@ -6480,8 +6233,7 @@ msgstr "Tiempo de publicación"
6480
  msgid "Featured article ordering"
6481
  msgstr "Orden de artículo destacado"
6482
 
6483
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:284
6484
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:164
6485
  msgid "View article"
6486
  msgstr "Ver artículo"
6487
 
@@ -6492,7 +6244,12 @@ msgstr ""
6492
  "Crea slides a partir de las categorías dentro de Joomla. (No así los "
6493
  "artículos dentro de estas.)"
6494
 
6495
- #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:130
 
 
 
 
 
6496
  msgid "View category"
6497
  msgstr "Ver categoría"
6498
 
@@ -6504,9 +6261,6 @@ msgid "Nothing"
6504
  msgstr "Nada"
6505
 
6506
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:20
6507
- #: SmartSlider3Pro/Generator/Common/Dribbble/GeneratorGroupDribbble.php:28
6508
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleProject.php:15
6509
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleShots.php:13
6510
  #: SmartSlider3Pro/Generator/Common/Facebook/GeneratorGroupFacebook.php:26
6511
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookAlbums.php:16
6512
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:18
@@ -6557,6 +6311,20 @@ msgstr "Entradas por filtro"
6557
  msgid "Posts by IDs"
6558
  msgstr "Entradas por IDs"
6559
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6560
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:41
6561
  msgid "All custom posts"
6562
  msgstr "Todos los artículos personalizados"
@@ -6673,8 +6441,6 @@ msgstr "Fecha de modificación"
6673
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:110
6674
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsCustomPosts.php:192
6675
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:90
6676
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:56
6677
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:55
6678
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:74
6679
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:43
6680
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:64
@@ -6980,10 +6746,6 @@ msgstr ""
6980
  "Puedes escribir el ID de la página que quieres mostrar en tu generador. %1$s "
6981
  "Escribe un ID por línea."
6982
 
6983
- #: SmartSlider3/Platform/Joomla/AdministratorComponent.php:62
6984
- msgid "JERROR_ALERTNOAUTHOR"
6985
- msgstr ""
6986
-
6987
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:73
6988
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:75
6989
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:144
@@ -7007,7 +6769,7 @@ msgstr "Seleccionar slider"
7007
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:100
7008
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:190
7009
  #: SmartSlider3/Platform/WordPress/Integration/Unyson/smartslider/options/option-types.php:63
7010
- #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:155
7011
  msgid "OR"
7012
  msgstr "O"
7013
 
@@ -7021,13 +6783,13 @@ msgid "MORE"
7021
  msgstr "MÁS"
7022
 
7023
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
7024
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:48
7025
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:118
7026
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:161
7027
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
7028
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:103
7029
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:124
7030
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:149
7031
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:157
7032
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:119
7033
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:146
@@ -7053,20 +6815,20 @@ msgstr "Previene que el texto se quiebre en varias líneas"
7053
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:181
7054
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:144
7055
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:146
7056
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:179
7057
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:181
7058
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:197
7059
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:199
7060
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:189
7061
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:191
7062
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:228
7063
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:230
7064
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:124
7065
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:126
7066
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:145
7067
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:147
7068
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:289
7069
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:291
 
7070
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:147
7071
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:149
7072
  msgid "Rel"
@@ -7075,13 +6837,13 @@ msgstr "Rel"
7075
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:169
7076
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:182
7077
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:147
7078
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:182
7079
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:200
7080
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:192
7081
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:231
7082
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:127
7083
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:148
7084
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:292
7085
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:150
7086
  #, php-format
7087
  msgid ""
@@ -7095,18 +6857,18 @@ msgstr ""
7095
 
7096
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:173
7097
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:174
7098
- #: SmartSlider3Pro/Renderable/Item/Icon/Assets/icon2.js:20
7099
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:31
7100
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:93
7101
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:212
7102
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:231
7103
  msgid "Icon"
7104
  msgstr "Icono"
7105
 
7106
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:197
7107
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:121
7108
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:164
7109
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:127
7110
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:149
7111
  msgid "Placement"
7112
  msgstr "Ubicación"
@@ -7154,22 +6916,26 @@ msgstr "Altura fija para el %1$s."
7154
 
7155
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:164
7156
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:39
7157
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:243
7158
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:226
 
7159
  msgid "Alt tag"
7160
  msgstr "Etiqueta Alt"
7161
 
7162
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:173
7163
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:174
7164
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:248
7165
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:249
 
 
7166
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:162
7167
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:163
7168
  msgid "Optimize image"
7169
  msgstr "Optimizar imagen"
7170
 
7171
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:175
7172
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:250
 
7173
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:164
7174
  msgid ""
7175
  "You can turn off the Layer image optimization for this image, to resize it "
@@ -7195,7 +6961,7 @@ msgstr "Especial"
7195
  #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:45
7196
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:45
7197
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:41
7198
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:44
7199
  msgctxt "Layer group"
7200
  msgid "Media"
7201
  msgstr "Medio"
@@ -7237,184 +7003,233 @@ msgstr "Texto personalizado para móviles"
7237
  msgid "Mobile text"
7238
  msgstr "Texto móvil"
7239
 
7240
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:111
7241
  msgid "Vimeo url or Video ID"
7242
  msgstr "URL de Vimeo o ID del video"
7243
 
7244
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:115
7245
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:116
7246
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:120
7247
  msgid "Cover image"
7248
  msgstr "Imagen de portada"
7249
 
7250
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:119
7251
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:120
7252
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:124
7253
  msgid "Aspect ratio"
7254
  msgstr "Relación de aspecto"
7255
 
7256
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:125
7257
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:158
7258
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:126
7259
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:159
7260
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:130
7261
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:164
7262
  msgid "Fill layer height"
7263
  msgstr "Rellena la altura de la capa"
7264
 
7265
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:158
7266
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:159
7267
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:164
7268
  msgid "Set on Style tab."
7269
  msgstr "Ajustes en la pestaña Estilo."
7270
 
7271
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:160
7272
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:162
7273
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:166
7274
  msgid "Video settings"
7275
  msgstr "Opciones de video"
7276
 
7277
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:170
7278
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:172
7279
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:176
7280
  msgid "When ended"
7281
  msgstr "Cuando finalice"
7282
 
7283
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:172
7284
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:174
7285
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:178
7286
  msgid "Do nothing"
7287
  msgstr "No hacer nada"
7288
 
7289
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:173
7290
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:175
7291
  msgid "Go to next slide"
7292
  msgstr "Ir al slide siguiente"
7293
 
7294
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:177
7295
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:179
7296
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:67
7297
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:72
7298
  msgid "Start time"
7299
  msgstr "Hora de Inicio"
7300
 
7301
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:183
7302
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:189
7303
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:133
7304
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:152
7305
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:189
7306
  msgid "Volume"
7307
  msgstr "Volumen"
7308
 
7309
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:185
7310
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:191
7311
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:135
7312
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:191
7313
  msgid "Mute"
7314
  msgstr "Mudo"
7315
 
7316
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:194
7317
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:200
7318
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:200
7319
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:206
7320
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:227
7321
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:233
7322
  msgid "Pause on scroll"
7323
  msgstr "Pausar al desplazarse"
7324
 
7325
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:196
7326
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:202
7327
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:229
7328
  msgid "Never"
7329
  msgstr "Nunca"
7330
 
7331
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:197
7332
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:203
7333
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:230
7334
  msgid "When partly visible"
7335
  msgstr "Cuando esté parcialmente visible"
7336
 
7337
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:198
7338
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:204
7339
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:231
7340
  msgid "When not visible"
7341
  msgstr "Cuando no esté visible"
7342
 
7343
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:201
7344
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:207
7345
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:234
7346
  msgid "You can pause the video when the visitor scrolls away from the slider"
7347
  msgstr "Puedes pausar el video cuando el usuario se desplaza fuera del slider"
7348
 
7349
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:212
 
7350
  msgid "Private video"
7351
  msgstr "Video privado"
7352
 
7353
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:221
7354
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:223
 
 
 
 
 
7355
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:147
7356
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:228
7357
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:136
7358
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:71
7359
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:295
7360
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:137
7361
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:204
7362
  msgid "Display"
7363
  msgstr "Pantalla"
7364
 
7365
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:225
 
 
 
 
 
 
7366
  msgid "Remove controls"
7367
  msgstr "Remover controles"
7368
 
7369
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7370
  msgid "Users byline"
7371
  msgstr "Usuarios por linea"
7372
 
7373
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:242
7374
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:243
7375
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:245
 
 
 
 
 
 
 
 
 
 
 
 
 
7376
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:246
 
 
 
7377
  msgid "Play button"
7378
  msgstr "Botón reproducir"
7379
 
7380
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:113
 
 
 
 
 
 
 
 
 
 
7381
  msgid "YouTube URL or Video ID"
7382
  msgstr "URL de Youtube o ID del video"
7383
 
7384
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:184
7385
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:68
7386
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:73
7387
  msgid "End time"
7388
  msgstr "Hora de finalización"
7389
 
7390
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:226
7391
  msgid "Hide YouTube logo"
7392
  msgstr "Ocultar logo de Youtube"
7393
 
7394
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:228
7395
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:229
7396
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:215
7397
  msgid "Centered"
7398
  msgstr "Centrado"
7399
 
7400
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:230
7401
  msgid "Scales up and crops the video to cover the whole layer."
7402
  msgstr "Agranda y recorta el video para cubrir toda la capa."
7403
 
7404
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:234
7405
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:239
7406
  msgid "Show related videos"
7407
  msgstr "Mostrar videos relacionados"
7408
 
7409
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:236
7410
  msgid "Anywhere"
7411
  msgstr "En cualquier lugar"
7412
 
7413
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:237
7414
  msgid "Same channel"
7415
  msgstr "Mismo canal"
7416
 
7417
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:240
7418
  msgid ""
7419
  "YouTube no longer allows hiding the related videos at the end of the video. "
7420
  "This setting defines whether the videos should come from the same channel as "
@@ -7434,7 +7249,7 @@ msgstr "¡Error del slider! No se encontró el generador: "
7434
 
7435
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:26
7436
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:27
7437
- #: SmartSlider3/Storage.php:3961
7438
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:275
7439
  msgid "Downscale"
7440
  msgstr "Reducir tamaño"
@@ -7445,7 +7260,7 @@ msgstr "Permite que el slider disminuya en escala para pantallas más pequeñas.
7445
 
7446
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:30
7447
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:31
7448
- #: SmartSlider3/Storage.php:4075
7449
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:286
7450
  msgid "Upscale"
7451
  msgstr "Aumentar tamaño"
@@ -7510,136 +7325,125 @@ msgstr ""
7510
  "Puede hacer que el slider rellene un elemento raíz en vez de el ancho "
7511
  "completo del navegador."
7512
 
7513
- #: SmartSlider3/Slider/Slide.php:752
7514
  msgid "Not found"
7515
  msgstr "No se encontró"
7516
 
7517
- #: SmartSlider3/Slider/SliderType/AbstractSliderTypeCss.php:46
7518
  msgid "Slider size is too small!"
7519
  msgstr "¡El tamaño del slider es demasiado pequeño!"
7520
 
7521
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:49
7522
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:161
7523
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:174
7524
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:394
7525
  #: SmartSlider3Pro/PostBackgroundAnimation/Block/PostBackgroundAnimationManager/Index.php:15
7526
  msgid "Ken Burns effect"
7527
  msgstr "Efecto Ken Burns"
7528
 
7529
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:56
7530
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:168
7531
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:148
7532
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:181
7533
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:371
7534
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:406
7535
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:127
7536
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:139
7537
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:197
7538
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:246
7539
  msgid "Speed"
7540
  msgstr "Velocidad"
7541
 
7542
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:59
7543
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:171
7544
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:150
7545
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:151
7546
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:184
7547
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:374
7548
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:375
7549
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:409
7550
  msgid "Super slow"
7551
  msgstr "Super lento"
7552
 
7553
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:60
7554
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:172
7555
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:152
7556
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:185
7557
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:376
7558
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:410
7559
  msgid "Slow"
7560
  msgstr "Lento"
7561
 
7562
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:62
7563
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:174
7564
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:154
7565
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:187
7566
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:378
7567
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:412
7568
  msgid "Fast"
7569
  msgstr "Rápido"
7570
 
7571
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:63
7572
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:155
7573
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:188
7574
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:379
7575
  msgid "Super fast"
7576
  msgstr "Super rápido"
7577
 
7578
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:80
7579
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:209
7580
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:183
7581
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:84
7582
- msgid "Slider background image"
7583
- msgstr "Imagen de fondo del slider"
7584
 
7585
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:87
7586
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:216
7587
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:190
7588
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:91
7589
- msgid "Fixed"
7590
- msgstr "Fijo"
7591
 
7592
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:175
7593
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:413
7594
  msgid "Super fast 4x"
7595
  msgstr "Super rápido 4x"
7596
 
7597
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:42
7598
  msgctxt "Slider type"
7599
  msgid "Simple slider"
7600
  msgstr "Slider simple"
7601
 
7602
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:51
7603
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:55
7604
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:232
7605
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:238
7606
  msgid "Main animation"
7607
  msgstr "Animación principal"
7608
 
7609
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:57
7610
  msgid "No animation"
7611
  msgstr "Sin animación"
7612
 
7613
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:59
7614
  msgid "Crossfade"
7615
  msgstr "Fundido cruzado"
7616
 
7617
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:62
7618
  msgid "Horizontal - reversed"
7619
  msgstr "Horizontal - invertido"
7620
 
7621
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:63
7622
  msgid "Vertical - reversed"
7623
  msgstr "Vertical - invertido"
7624
 
7625
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:115
7626
- msgid "Parallax overlap"
7627
- msgstr "Superposición de parallax"
7628
-
7629
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:126
7630
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:127
7631
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:200
7632
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:201
7633
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:284
7634
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:285
7635
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:663
7636
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:664
7637
  msgctxt "Feature"
7638
  msgid "Carousel"
7639
  msgstr "Carrusel"
7640
 
7641
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:128
7642
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:202
7643
  msgid ""
7644
  "If you turn off this option, you can't switch to the first slide from the "
7645
  "last one."
@@ -7647,77 +7451,53 @@ msgstr ""
7647
  "Si desactivas esta opción, no podrás cambiar del primer slide hacia el "
7648
  "último."
7649
 
7650
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:159
7651
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:160
7652
  msgid "Shifted"
7653
  msgstr "Cambiado"
7654
 
7655
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:161
7656
  msgid "The background and the main animation plays simultaneously or shifted."
7657
  msgstr ""
7658
  "La animación de fondo y la animación principal se reproducen simultáneamente "
7659
  "o cambiadas."
7660
 
7661
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:229
7662
- msgid "Background video"
7663
- msgstr "Video de fondo"
7664
-
7665
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:246
7666
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:247
7667
- msgid "Background image dynamic height"
7668
- msgstr "Altura dinámica de la imagen de fondo"
7669
-
7670
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:248
7671
- msgid ""
7672
- "The height of your slides changes according to the height of the background "
7673
- "image."
7674
- msgstr ""
7675
- "La altura de tus slides cambia de acuerdo a la altura de la imagen de fondo."
7676
-
7677
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:252
7678
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:253
7679
  msgid "Loop single slide"
7680
  msgstr "Repetir slide simple"
7681
 
7682
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:254
7683
  msgid "In case of one slide, it repeats the animation of the slide."
7684
  msgstr "En el caso de tener un slide, repite la animación de ese slide."
7685
 
7686
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:272
7687
- msgid "Border width"
7688
- msgstr "Ancho del borde"
7689
-
7690
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:277
7691
- msgid "Border color"
7692
- msgstr "Color de borde"
7693
-
7694
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:287
7695
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:169
7696
  msgid "Slider CSS Preset"
7697
  msgstr "Preajuste de CSS del Slider"
7698
 
7699
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:291
7700
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:147
7701
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:173
7702
  msgid "Light shadow"
7703
  msgstr "Sombra Clara"
7704
 
7705
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:297
7706
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:179
7707
  msgid "Dark shadow"
7708
  msgstr "Sombra Oscura"
7709
 
7710
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:303
7711
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:185
7712
  msgid "Photo"
7713
  msgstr "Foto"
7714
 
7715
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:311
7716
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:193
7717
  msgid "Photo rounded"
7718
  msgstr "Foto con contorno"
7719
 
7720
- #: SmartSlider3/SmartSlider3Info.php:209
7721
  #, php-format
7722
  msgid "Demo slider is not available with the following ID: %s"
7723
  msgstr "Demo slider no esta disponible con el siguiente ID: %s"
@@ -8065,284 +7845,284 @@ msgstr "Parallax abajo"
8065
  msgid "Flowing tiles vertical"
8066
  msgstr "Bloques fluyendo vertical"
8067
 
8068
- #: SmartSlider3/Storage.php:2731
8069
  msgid "Slide to bottom"
8070
  msgstr "Deslizar hacia abajo"
8071
 
8072
- #: SmartSlider3/Storage.php:2766
8073
  msgid "Slide to top"
8074
  msgstr "Deslizar hacia arriba"
8075
 
8076
- #: SmartSlider3/Storage.php:2802
8077
  msgid "Curtain to bottom"
8078
  msgstr "Cortina hacia abajo"
8079
 
8080
- #: SmartSlider3/Storage.php:2836
8081
  msgid "Curtain to top"
8082
  msgstr "Cortina hacia arriba"
8083
 
8084
- #: SmartSlider3/Storage.php:2872
8085
  msgid "Switching to bottom"
8086
  msgstr "Cambiar hacia abajo"
8087
 
8088
- #: SmartSlider3/Storage.php:2911
8089
  msgid "Switching to top"
8090
  msgstr "Cambiar hacia arriba"
8091
 
8092
- #: SmartSlider3/Storage.php:2950
8093
  msgid "Horizontal spin to bottom"
8094
  msgstr "Giro horizontal hacia abajo"
8095
 
8096
- #: SmartSlider3/Storage.php:2972
8097
  msgid "Horizontal spin to top"
8098
  msgstr "Giro horizontal hacia arriba"
8099
 
8100
- #: SmartSlider3/Storage.php:2994
8101
  msgid "3D bricks to bottom"
8102
  msgstr "Ladrillos 3D hacia abajo"
8103
 
8104
- #: SmartSlider3/Storage.php:3040
8105
  msgid "3D bricks to top"
8106
  msgstr "Ladrillos 3D hacia arriba"
8107
 
8108
- #: SmartSlider3/Storage.php:3086
8109
  msgid "3D rows to bottom"
8110
  msgstr "Filas 3D hacia abajo"
8111
 
8112
- #: SmartSlider3/Storage.php:3132
8113
  msgid "3D rows to top"
8114
  msgstr "Filas 3D hacia arriba"
8115
 
8116
- #: SmartSlider3/Storage.php:3178
8117
  msgid "3D columns to bottom"
8118
  msgstr "Columnas 3D hacia abajo"
8119
 
8120
- #: SmartSlider3/Storage.php:3208
8121
  msgid "3D columns to top"
8122
  msgstr "Columnas 3D hacia arriba"
8123
 
8124
- #: SmartSlider3/Storage.php:3238
8125
  msgid "Spinning cuboid to bottom"
8126
  msgstr "Cubo giratorio hacia abajo"
8127
 
8128
- #: SmartSlider3/Storage.php:3260
8129
  msgid "Spinning cuboid to top"
8130
  msgstr "Cubo giratorio hacia arriba"
8131
 
8132
- #: SmartSlider3/Storage.php:3282
8133
  msgid "Turning cuboid to bottom"
8134
  msgstr "Girar cubo hacia abajo"
8135
 
8136
- #: SmartSlider3/Storage.php:3306
8137
  msgid "Turning cuboid to top"
8138
  msgstr "Girar cuboide hacia arriba"
8139
 
8140
- #: SmartSlider3/Storage.php:3337
8141
  msgid "Scale to right"
8142
  msgstr "Escala a la derecha"
8143
 
8144
- #: SmartSlider3/Storage.php:3377
8145
  msgid "Rotate to right"
8146
  msgstr "Girar a la izquierda"
8147
 
8148
- #: SmartSlider3/Storage.php:3423
8149
  msgid "Fixed to right"
8150
  msgstr "Ajustado a la derecha"
8151
 
8152
- #: SmartSlider3/Storage.php:3454
8153
  msgid "Parallax to right"
8154
  msgstr "Palallax a la derecha"
8155
 
8156
- #: SmartSlider3/Storage.php:3490
8157
  msgid "Flow - reversed"
8158
  msgstr "Fluido - al revés"
8159
 
8160
- #: SmartSlider3/Storage.php:3529
8161
  msgid "Slide to right"
8162
  msgstr "Deslizar a la derecha"
8163
 
8164
- #: SmartSlider3/Storage.php:3565
8165
  msgid "Curtain to right"
8166
  msgstr "Cortina a la derecha"
8167
 
8168
- #: SmartSlider3/Storage.php:3600
8169
  msgid "Blocks to right"
8170
  msgstr "Bloques a la derecha"
8171
 
8172
- #: SmartSlider3/Storage.php:3638
8173
  msgid "Slices to right"
8174
  msgstr "Cortes hacia la derecha"
8175
 
8176
- #: SmartSlider3/Storage.php:3676
8177
  msgid "Reversed slices to right"
8178
  msgstr "Cortes hacia la derecha invertidos"
8179
 
8180
- #: SmartSlider3/Storage.php:3714
8181
  msgid "Switching to right"
8182
  msgstr "Cambiar a la derecha"
8183
 
8184
- #: SmartSlider3/Storage.php:3753
8185
  msgid "Page turn to right"
8186
  msgstr "Girar pagina a la derecha"
8187
 
8188
- #: SmartSlider3/Storage.php:3765
8189
  msgid "Vertical spin to right"
8190
  msgstr "Giro vertical a la derecha"
8191
 
8192
- #: SmartSlider3/Storage.php:3786
8193
  msgid "3D bricks to right"
8194
  msgstr "Cubos 3D a la derecha"
8195
 
8196
- #: SmartSlider3/Storage.php:3831
8197
  msgid "3D rows to right"
8198
  msgstr "Filas 3D a la derecha"
8199
 
8200
- #: SmartSlider3/Storage.php:3876
8201
  msgid "3D columns to right"
8202
  msgstr "Colunas 3D a la derecha"
8203
 
8204
- #: SmartSlider3/Storage.php:3905
8205
  msgid "Spinning cuboid to right"
8206
  msgstr "Cubo giratorio a la derecha"
8207
 
8208
- #: SmartSlider3/Storage.php:3927
8209
  msgid "Turning cuboid to right"
8210
  msgstr "Cubo giratorio a la derecha"
8211
 
8212
- #: SmartSlider3/Storage.php:3979
8213
  msgid "Downscale left"
8214
  msgstr "Reducir tamaño a la izquierda"
8215
 
8216
- #: SmartSlider3/Storage.php:4003
8217
  msgid "Downscale right"
8218
  msgstr "Reducir a la derecha"
8219
 
8220
- #: SmartSlider3/Storage.php:4027
8221
  msgid "Downscale top"
8222
  msgstr "Reducir hacia arriba"
8223
 
8224
- #: SmartSlider3/Storage.php:4051
8225
  msgid "Downscale bottom"
8226
  msgstr "Reducir hacia abajo"
8227
 
8228
- #: SmartSlider3/Storage.php:4093
8229
  msgid "Upscale left"
8230
  msgstr "Aumentar a la izquierda"
8231
 
8232
- #: SmartSlider3/Storage.php:4117
8233
  msgid "Upscale right"
8234
  msgstr "Aumentar a la derecha"
8235
 
8236
- #: SmartSlider3/Storage.php:4141
8237
  msgid "Upscale top"
8238
  msgstr "Aumentar hacia arriba"
8239
 
8240
- #: SmartSlider3/Storage.php:4165
8241
  msgid "Upscale bottom"
8242
  msgstr "Aumentar hacia abajo"
8243
 
8244
- #: SmartSlider3/Storage.php:4189
8245
  msgid "To left"
8246
  msgstr "A la izquierda"
8247
 
8248
- #: SmartSlider3/Storage.php:4209
8249
  msgid "To right"
8250
  msgstr "A la derecha"
8251
 
8252
- #: SmartSlider3/Storage.php:4269
8253
  msgid "To top left"
8254
  msgstr "Hacia arriba a la izquierda"
8255
 
8256
- #: SmartSlider3/Storage.php:4294
8257
  msgid "To top right"
8258
  msgstr "Parte superior derecha"
8259
 
8260
- #: SmartSlider3/Storage.php:4319
8261
  msgid "To bottom left"
8262
  msgstr "Parte inferior izquierda"
8263
 
8264
- #: SmartSlider3/Storage.php:4344
8265
  msgid "To bottom right"
8266
  msgstr "Parte inferior derecha"
8267
 
8268
- #: SmartSlider3/Storage.php:4371
8269
  msgid "My layouts"
8270
  msgstr "Mis diseños"
8271
 
8272
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:54
8273
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:37
8274
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:40
8275
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:55
8276
  msgctxt "Arrow direction"
8277
  msgid "Previous"
8278
  msgstr "Anterior"
8279
 
8280
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:62
8281
  msgid "Previous image"
8282
  msgstr "Imagen anterior"
8283
 
8284
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:79
8285
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:113
8286
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:97
8287
  msgid "Hover color"
8288
  msgstr "Color de hover"
8289
 
8290
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:85
8291
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:64
8292
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:44
8293
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:47
8294
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:63
8295
  #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:58
8296
  msgid "Mirror"
8297
  msgstr "Reflejar"
8298
 
8299
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:93
8300
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:51
8301
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:54
8302
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:70
8303
  msgctxt "Arrow direction"
8304
  msgid "Next"
8305
  msgstr "Siguiente"
8306
 
8307
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:97
8308
  msgid "Next image"
8309
  msgstr "Imagen siguiente"
8310
 
8311
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:120
8312
  #: SmartSlider3/Widget/Group/Arrow.php:59
8313
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:140
8314
  #: SmartSlider3Pro/Form/Element/Select/ShapeDividerSelect.php:16
8315
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:60
8316
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:45
8317
  msgid "Arrow"
8318
  msgstr "Flecha"
8319
 
8320
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:125
8321
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:57
8322
  msgid "Previous position"
8323
  msgstr "Posición anterior"
8324
 
8325
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:126
8326
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:59
8327
  msgid "Next position"
8328
  msgstr "Siguiente posición"
8329
 
8330
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:141
8331
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:157
8332
  msgid "Previous alt tag"
8333
  msgstr "Etiqueta alt para Anterior"
8334
 
8335
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:142
8336
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:160
8337
  msgid "Next alt tag"
8338
  msgstr "Etiqueta alt para Siguiente"
8339
 
 
8340
  #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:143
8341
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:144
8342
  msgid "Base64"
8343
  msgstr "Base64"
8344
 
8345
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:145
8346
  msgid ""
8347
  "Base64 encoded arrow images are loading faster and they are colorable. But "
8348
  "optimization plugins often have errors in their codes related to them, so if "
@@ -8353,39 +8133,40 @@ msgstr ""
8353
  "errores en su código relacionado a ellas, de esta manera, sí la flecha no "
8354
  "carga, desactiva esta opción."
8355
 
8356
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:157
8357
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:92
8358
  #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:92
8359
- msgid "Desktop size"
8360
- msgstr "Tamaño de escritorio"
8361
-
8362
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:159
8363
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:94
8364
- #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:94
8365
- msgid "Tablet size"
8366
- msgstr "Tamaño de tableta"
8367
 
8368
  #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:161
8369
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:96
8370
- #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:96
8371
- msgid "Mobile size"
8372
- msgstr "Tamaño de móvil"
8373
 
8374
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:40
8375
- msgid "Play"
8376
- msgstr "Reproducir"
 
 
8377
 
8378
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:71
8379
  msgid "Pause"
8380
  msgstr "Pausar"
8381
 
8382
- #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImageFrontend.php:130
 
 
 
 
 
8383
  msgid "Pause autoplay"
8384
  msgstr "Pausar reproducción automática"
8385
 
8386
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:45
8387
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:55
8388
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:78
8389
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:37
8390
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:65
8391
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:65
@@ -8433,7 +8214,7 @@ msgstr "Barra de tamaño completo"
8433
  #: SmartSlider3/Widget/Group/Autoplay.php:65
8434
  #: SmartSlider3/Widget/Group/Bar.php:68
8435
  #: SmartSlider3/Widget/Group/Bullet.php:109
8436
- #: SmartSlider3/Widget/Group/Thumbnail.php:95
8437
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:64
8438
  #: SmartSlider3Pro/Widget/Group/Html.php:57
8439
  #: SmartSlider3Pro/Widget/Group/Indicator.php:56
@@ -8449,8 +8230,8 @@ msgstr "Mostrar al desplazar el ratón por encima"
8449
  #: SmartSlider3/Widget/Group/Bullet.php:116
8450
  #: SmartSlider3/Widget/Group/Shadow.php:59
8451
  #: SmartSlider3/Widget/Group/Shadow.php:60
8452
- #: SmartSlider3/Widget/Group/Thumbnail.php:101
8453
- #: SmartSlider3/Widget/Group/Thumbnail.php:102
8454
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:68
8455
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:69
8456
  #: SmartSlider3Pro/Widget/Group/Html.php:61
@@ -8465,7 +8246,7 @@ msgstr "Ocultar slides"
8465
  #: SmartSlider3/Widget/Group/Bar.php:76
8466
  #: SmartSlider3/Widget/Group/Bullet.php:117
8467
  #: SmartSlider3/Widget/Group/Shadow.php:61
8468
- #: SmartSlider3/Widget/Group/Thumbnail.php:103
8469
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:70
8470
  #: SmartSlider3Pro/Widget/Group/Html.php:63
8471
  #: SmartSlider3Pro/Widget/Group/Indicator.php:62
@@ -8494,40 +8275,40 @@ msgid "Side"
8494
  msgstr "Lado"
8495
 
8496
  #: SmartSlider3/Widget/Group/Bullet.php:102
8497
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:123
8498
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:166
8499
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:129
8500
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:151
8501
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:342
8502
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:384
8503
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:432
8504
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:468
8505
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:504
8506
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:543
8507
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:585
8508
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:627
 
8509
  msgid "Before"
8510
  msgstr "Antes"
8511
 
8512
  #: SmartSlider3/Widget/Group/Bullet.php:103
8513
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:125
8514
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:169
8515
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:130
8516
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:153
8517
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:364
8518
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:408
8519
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:450
8520
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:486
8521
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:522
8522
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:565
8523
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:607
8524
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:649
 
8525
  msgid "After"
8526
  msgstr "Despues"
8527
 
8528
  #: SmartSlider3/Widget/Group/Shadow.php:31
8529
  #: SmartSlider3/Widget/Group/Shadow.php:40
8530
- #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:27
8531
  msgid "Shadow"
8532
  msgstr "Sombra"
8533
 
@@ -8536,36 +8317,48 @@ msgstr "Sombra"
8536
  msgid "Thumbnails"
8537
  msgstr "Miniatura"
8538
 
8539
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:68
 
 
 
 
 
 
 
 
 
 
 
 
8540
  msgid "Align thumbnails"
8541
  msgstr "Alinear imágenes de miniatura"
8542
 
8543
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:70
8544
  msgid "Start"
8545
  msgstr "Inicio"
8546
 
8547
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:72
8548
  msgid "End"
8549
  msgstr "Fin"
8550
 
8551
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:73
8552
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:305
8553
  msgid "Space between"
8554
  msgstr "Espacio entre medio"
8555
 
8556
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:74
8557
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:306
8558
  msgid "Space around"
8559
  msgstr "Espacio alrededor"
8560
 
8561
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:91
8562
- #: SmartSlider3Pro/Renderable/Item/Caption/Assets/caption.js:20
8563
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:54
8564
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:101
8565
  msgid "Caption"
8566
  msgstr "Leyenda"
8567
 
8568
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:133
8569
  msgid ""
8570
  "The height (horizontal orientation) or width (vertical orientation) of the "
8571
  "caption container."
@@ -8573,60 +8366,30 @@ msgstr ""
8573
  "La altura (orientación horizontal) o el ancho (orientación vertical) del "
8574
  "contenedor del pie de foto."
8575
 
8576
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:163
8577
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:164
8578
  msgid "Next arrow image"
8579
  msgstr "Imagen de la flecha \"siguiente\""
8580
 
8581
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:165
8582
  msgid "The previous arrow image will be mirrored."
8583
  msgstr "La imagen de la flecha \"Anterior\" se espejará."
8584
 
8585
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:173
8586
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:176
8587
- msgid "Minimum thumbnail count"
8588
- msgstr "Conteo minimo de miniatura"
8589
-
8590
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:177
8591
- msgid ""
8592
- "If your thumbnail is vertical, it hides the thumbnails when the set number "
8593
- "of thumbnails can't fit."
8594
- msgstr ""
8595
- "Si tu miniatura es vertical, oculta la miniatura cuando el número de "
8596
- "miniaturas no puede encajar."
8597
-
8598
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:177
8599
- msgid ""
8600
- "If your thumbnail is horizontal, it starts resizing the thumbnails when the "
8601
- "set number of thumbnails can't fit."
8602
- msgstr ""
8603
- "Si tu miniatura es horizontal, redimensiona las miniaturas cuando el número "
8604
- "de miniaturas no pueden encajar."
8605
-
8606
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:181
8607
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:184
8608
  msgid "Group by"
8609
  msgstr "Agrupar por"
8610
 
8611
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:182
8612
  msgctxt "Unit"
8613
  msgid "thumbnails"
8614
  msgstr "miniaturas"
8615
 
8616
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:185
8617
  msgid "You can break your thumbnails into rows or columns."
8618
  msgstr "Puedes separar las miniaturas en filas o columnas."
8619
 
8620
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:188
8621
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:189
8622
- msgid "Invert group direction"
8623
- msgstr "Invertir dirección del grupo"
8624
-
8625
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:190
8626
- msgid "Makes the thumbnail order follow the set orientation."
8627
- msgstr "Establece el orden de las miniaturas siguiendo la orientación del set."
8628
-
8629
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:205
8630
  msgid ""
8631
  "The height (horizontal orientation) or width (vertical orientation) of the "
8632
  "thumbnail container in px or %."
@@ -8704,43 +8467,39 @@ msgstr "Remover"
8704
  msgid "Hide on mobile"
8705
  msgstr "Ocultar en móvil"
8706
 
8707
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:98
8708
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:157
8709
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:28
8710
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:37
8711
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:47
8712
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:45
8713
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialGroups.php:41
8714
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:47
8715
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:37
8716
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:50
8717
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:44
8718
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:48
8719
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:187
8720
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:236
8721
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:183
8722
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:54
8723
  msgid "Type"
8724
  msgstr "Tipo"
8725
 
8726
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:109
8727
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:168
8728
  msgid "Secondary"
8729
  msgstr "Secundario"
8730
 
8731
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:137
8732
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:195
8733
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:44
8734
  msgid "Flip"
8735
  msgstr "Tirar"
8736
 
8737
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:151
8738
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:209
8739
  msgid "Grow"
8740
  msgstr "Crecer"
8741
 
8742
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:152
8743
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:210
8744
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:901
8745
  msgid "Shrink"
8746
  msgstr "Encoger"
@@ -8916,48 +8675,8 @@ msgid "Masked waves"
8916
  msgstr "Olas enmascaradas"
8917
 
8918
  #: SmartSlider3Pro/Form/Element/Select/ShapeDividerSelect.php:44
8919
- msgid "Ribbon"
8920
- msgstr "Listón"
8921
-
8922
- #: SmartSlider3Pro/Generator/Common/Dribbble/ConfigurationDribbble.php:98
8923
- #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:119
8924
- #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:103
8925
- #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:95
8926
- #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:94
8927
- #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:134
8928
- #, php-format
8929
- msgid ""
8930
- "%2$s Check the documentation %3$s to learn how to configure your %1$s app."
8931
- msgstr ""
8932
- "%2$s Consulta la documentación %3$s para conocer como configurar tu "
8933
- "aplicación de %1$s."
8934
-
8935
- #: SmartSlider3Pro/Generator/Common/Dribbble/ConfigurationDribbble.php:109
8936
- #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:140
8937
- #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:114
8938
- #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:105
8939
- #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:104
8940
- #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:144
8941
- msgid "Token"
8942
- msgstr "Token"
8943
-
8944
- #: SmartSlider3Pro/Generator/Common/Dribbble/ConfigurationDribbble.php:112
8945
- #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:141
8946
- #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:115
8947
- #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:108
8948
- #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:105
8949
- #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:145
8950
- msgid "Callback url"
8951
- msgstr "URL Callback"
8952
-
8953
- #: SmartSlider3Pro/Generator/Common/Dribbble/Elements/DribbbleToken.php:29
8954
- #: SmartSlider3Pro/Generator/Common/Facebook/Elements/FacebookToken.php:29
8955
- #: SmartSlider3Pro/Generator/Common/Flickr/Elements/FlickrToken.php:29
8956
- #: SmartSlider3Pro/Generator/Common/Twitter/Elements/TwitterToken.php:29
8957
- #: SmartSlider3Pro/Generator/Common/Vimeo/Elements/VimeoToken.php:28
8958
- #: SmartSlider3Pro/Generator/Common/YouTube/Elements/YouTubeToken.php:28
8959
- msgid "Request token"
8960
- msgstr "Solicitar token"
8961
 
8962
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:83
8963
  msgid "The secret is empty. Please insert that value too!"
@@ -8979,10 +8698,22 @@ msgstr ""
8979
  "HTTPS para poder utilizar este generador! %2$s ¿Cómo usar SSL para mi sitio "
8980
  "en WordPress? %3$s"
8981
 
 
 
 
 
 
 
 
 
 
 
 
 
8982
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:131
8983
  msgctxt "Facebook app permission"
8984
  msgid "pages read engagement"
8985
- msgstr ""
8986
 
8987
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:132
8988
  msgid "Pages read engagement permission"
@@ -9018,10 +8749,34 @@ msgstr ""
9018
  "Necesitas el permiso \"user_photos\" para acceder a las fotos de los "
9019
  "usuarios, a excepción de tu propio usuario."
9020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9021
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:164
9022
  msgid "The token expired. Please request new token! "
9023
  msgstr "El token expiró. Por favor solicite uno nuevo. "
9024
 
 
 
 
 
 
 
 
 
9025
  #: SmartSlider3Pro/Generator/Common/Facebook/GeneratorGroupFacebook.php:26
9026
  msgid "Facebook photos or posts on your page"
9027
  msgstr "Publicaciones y fotos de Facebook en tu página"
@@ -9167,7 +8922,7 @@ msgstr "Nombre de archivo"
9167
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:104
9168
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:103
9169
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:94
9170
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:87
9171
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:99
9172
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:87
9173
  msgid "Creation date"
@@ -9222,7 +8977,7 @@ msgstr ""
9222
  "debes seleccionar el nivel directamente de la lista."
9223
 
9224
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:109
9225
- #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:119
9226
  #, php-format
9227
  msgid ""
9228
  "The given text is not valid XML! %1$sValidate your code%2$s to make sure it "
@@ -9232,7 +8987,7 @@ msgstr ""
9232
  "asegurarte que está correcto."
9233
 
9234
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:111
9235
- #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:121
9236
  #, php-format
9237
  msgid ""
9238
  "The given text is not valid JSON! %1$sValidate your code%2$s to make sure it "
@@ -9242,7 +8997,7 @@ msgstr ""
9242
  "asegurarte que está correcto."
9243
 
9244
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:152
9245
- #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:162
9246
  msgid ""
9247
  "Try to change the \"Level separation\" or \"Remove levels from result\" "
9248
  "setting."
@@ -9259,7 +9014,11 @@ msgstr ""
9259
  msgid "Images"
9260
  msgstr "Imagenes"
9261
 
9262
- #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:60
 
 
 
 
9263
  msgid "The data in the given url is not valid XML."
9264
  msgstr "Los datos entregados en la url no son válidos XML."
9265
 
@@ -9278,7 +9037,6 @@ msgid "View tweet"
9278
  msgstr "Ver tweet"
9279
 
9280
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:37
9281
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/GeneratorGroupJreviews.php:31
9282
  msgid "Comments"
9283
  msgstr "Comentarios"
9284
 
@@ -9312,8 +9070,6 @@ msgstr "Lista de reproducción"
9312
  msgid "optional"
9313
  msgstr "opcional"
9314
 
9315
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/GeneratorGroupCobalt.php:24
9316
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:35
9317
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/GeneratorGroupDjclassifieds.php:23
9318
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:28
9319
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/GeneratorGroupEasyblog.php:21
@@ -9336,22 +9092,9 @@ msgstr "opcional"
9336
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/GeneratorGroupHikashop.php:22
9337
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/GeneratorGroupIgnitegallery.php:21
9338
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:20
9339
- #: SmartSlider3Pro/Generator/Joomla/Jauction/GeneratorGroupJauction.php:24
9340
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:23
9341
- #: SmartSlider3Pro/Generator/Joomla/Jcart/GeneratorGroupJcart.php:23
9342
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:91
9343
  #: SmartSlider3Pro/Generator/Joomla/Jevents/GeneratorGroupJevents.php:22
9344
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/GeneratorGroupJmarket.php:23
9345
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:23
9346
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/GeneratorGroupJomsocial.php:26
9347
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:27
9348
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:24
9349
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:24
9350
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:24
9351
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/GeneratorGroupJoomshopping.php:21
9352
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:29
9353
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/GeneratorGroupJreviews.php:23
9354
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:26
9355
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:21
9356
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:31
9357
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/GeneratorGroupMijoshop.php:21
@@ -9361,19 +9104,13 @@ msgstr "opcional"
9361
  #: SmartSlider3Pro/Generator/Joomla/Redshop/GeneratorGroupRedshop.php:21
9362
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:25
9363
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/GeneratorGroupRseventspro.php:21
9364
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:30
9365
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/GeneratorGroupVirtuemart.php:21
9366
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:38
9367
- #: SmartSlider3Pro/Generator/Joomla/Zoo/GeneratorGroupZoo.php:26
9368
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:29
9369
  #, php-format
9370
  msgid "Creates slides from %1$s content."
9371
  msgstr "Crea slides del contenido de %1$s."
9372
 
9373
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:164
9374
- msgid "View record"
9375
- msgstr "Ver registro"
9376
-
9377
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/GeneratorGroupDjclassifieds.php:31
9378
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:21
9379
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:29
@@ -9400,8 +9137,7 @@ msgstr "Expiro"
9400
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:40
9401
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:54
9402
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:49
9403
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:47
9404
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:54
9405
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:39
9406
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:48
9407
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:46
@@ -9432,12 +9168,11 @@ msgstr "Comprar ahora"
9432
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:72
9433
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:47
9434
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:36
9435
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:46
9436
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:69
9437
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:60
9438
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:45
9439
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:50
9440
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:52
 
9441
  msgid "Menu item (item ID)"
9442
  msgstr "Ítem del menú (item ID)"
9443
 
@@ -9455,7 +9190,7 @@ msgstr ""
9455
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:79
9456
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:87
9457
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:70
9458
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:85
9459
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:96
9460
  msgid "Start date"
9461
  msgstr "Fecha de inicio"
@@ -9467,7 +9202,6 @@ msgstr "Fecha de vencimiento"
9467
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:88
9468
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:77
9469
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:83
9470
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:122
9471
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:55
9472
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:62
9473
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:92
@@ -9480,7 +9214,6 @@ msgid "Include subcategories"
9480
  msgstr "Incluir subcategorias"
9481
 
9482
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:43
9483
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:50
9484
  msgid "Frontpage"
9485
  msgstr "Pagina de inicio"
9486
 
@@ -9520,9 +9253,6 @@ msgstr "Ver discusión"
9520
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:36
9521
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:23
9522
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/GeneratorGroupEventsbooking.php:29
9523
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/GeneratorGroupJomsocial.php:34
9524
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:39
9525
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:36
9526
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/GeneratorGroupRseventspro.php:29
9527
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/GeneratorGroupAllInOneEventCalendar.php:25
9528
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/GeneratorGroupEventsManager.php:24
@@ -9537,7 +9267,6 @@ msgstr "Albums"
9537
 
9538
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/GeneratorGroupEasysocial.php:37
9539
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialVideos.php:19
9540
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/GeneratorGroupJomsocial.php:36
9541
  msgid "Videos"
9542
  msgstr "Videos"
9543
 
@@ -9583,8 +9312,7 @@ msgstr "ID's de usuarios bloqueadas"
9583
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:41
9584
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:55
9585
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:50
9586
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:48
9587
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:55
9588
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:40
9589
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:47
9590
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:47
@@ -9596,7 +9324,7 @@ msgid "All day"
9596
  msgstr "Todo el día"
9597
 
9598
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:43
9599
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:58
9600
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:38
9601
  msgid "Recurring events"
9602
  msgstr "Evento recurrente"
@@ -9620,8 +9348,7 @@ msgstr "Solo Invitar"
9620
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:54
9621
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:53
9622
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:50
9623
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:57
9624
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:45
9625
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:38
9626
  msgid "Location"
9627
  msgstr "Ubicación"
@@ -9643,13 +9370,10 @@ msgid "Do not pull posts from these users. Separate them by comma."
9643
  msgstr "No mostrar artículos de estos usuarios. Sepáralos con comas."
9644
 
9645
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:50
9646
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:47
9647
  msgid "Public"
9648
  msgstr "Público"
9649
 
9650
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:51
9651
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:43
9652
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:48
9653
  msgid "Private"
9654
  msgstr "Privado"
9655
 
@@ -9690,8 +9414,6 @@ msgstr "Puntos"
9690
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/GeneratorGroupHikashop.php:31
9691
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:24
9692
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:19
9693
- #: SmartSlider3Pro/Generator/Joomla/Jcart/GeneratorGroupJcart.php:31
9694
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/GeneratorGroupJmarket.php:31
9695
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/GeneratorGroupJoomshopping.php:29
9696
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/GeneratorGroupMijoshop.php:29
9697
  #: SmartSlider3Pro/Generator/Joomla/Redshop/GeneratorGroupRedshop.php:29
@@ -9700,7 +9422,7 @@ msgid "Products"
9700
  msgstr "Productos"
9701
 
9702
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:52
9703
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:41
9704
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:37
9705
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:37
9706
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:50
@@ -9712,9 +9434,7 @@ msgid "On discount"
9712
  msgstr "En Descuento"
9713
 
9714
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:62
9715
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:108
9716
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:40
9717
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:47
9718
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:44
9719
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:57
9720
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:40
@@ -9739,10 +9459,7 @@ msgstr "Lenguaje del Fabricante"
9739
 
9740
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:78
9741
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:57
9742
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:53
9743
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:119
9744
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:52
9745
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:64
9746
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:52
9747
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:57
9748
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:67
@@ -9776,7 +9493,7 @@ msgstr "Solo eventos no recurrentes"
9776
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:80
9777
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:88
9778
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:71
9779
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:86
9780
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:97
9781
  msgid "End date"
9782
  msgstr "Fecha de finalización"
@@ -9841,11 +9558,10 @@ msgstr "Marca"
9841
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:39
9842
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:43
9843
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:33
9844
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:48
9845
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:45
9846
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:33
9847
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:34
9848
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:252
9849
  msgid "Tag"
9850
  msgstr "Etiqueta"
9851
 
@@ -9882,27 +9598,6 @@ msgstr ""
9882
  "Escribe los ID's de productos que quieres mostrar aquí, en el orden que "
9883
  "quieres que aparezcan en el generador. Un ID de producto por línea."
9884
 
9885
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:139
9886
- msgid "index.php?option=com_jauction&controller=catalog&task=show&eid="
9887
- msgstr ""
9888
-
9889
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:109
9890
- msgid "Available by date"
9891
- msgstr "Disponible por fecha"
9892
-
9893
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:110
9894
- msgid "Requires shipping"
9895
- msgstr "Requiere envío"
9896
-
9897
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:112
9898
- msgid "Min order quantity"
9899
- msgstr "Cantidad mínima de órdenes"
9900
-
9901
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:121
9902
- #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:54
9903
- msgid "Viewed"
9904
- msgstr "Visto"
9905
-
9906
  #: SmartSlider3Pro/Generator/Joomla/Jevents/GeneratorGroupJevents.php:30
9907
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:32
9908
  msgid "One time events"
@@ -9921,16 +9616,16 @@ msgstr "Lenguaje de la Fecha"
9921
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:59
9922
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:64
9923
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:56
9924
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:69
9925
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:75
9926
  msgid "Offset value"
9927
  msgstr "Valor de compensación"
9928
 
9929
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:60
9930
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:65
9931
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:57
9932
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:70
9933
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:76
9934
  msgid ""
9935
  "Timezone offset in hours. For example: +2 or -7. If you leave it empty, "
9936
  "Joomla's System -> Global Configuration -> Server -> Server Time Zone "
@@ -9948,38 +9643,18 @@ msgstr "Estado"
9948
  msgid "Trashed"
9949
  msgstr "En la papelera"
9950
 
9951
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:42
9952
- msgid "Approved"
9953
- msgstr "Aprovado"
9954
-
9955
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:143
9956
- msgid "index.php?option=com_jmarket&controller=catalog&task=show&eid="
9957
- msgstr ""
9958
-
9959
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:61
9960
- msgid "Show hidden"
9961
- msgstr "Mostrar ocultos"
9962
-
9963
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:212
9964
- msgid "index.php?option=com_community&view=events&task=viewevent&eventid="
9965
- msgstr ""
9966
-
9967
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:138
9968
- msgid "index.php?option=com_community&view=groups&task=viewgroup&groupid="
9969
- msgstr ""
9970
-
9971
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:139
9972
- msgid "View group"
9973
- msgstr "Ver grupo"
9974
-
9975
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:57
9976
  msgid "Ask down all product images"
9977
  msgstr "Preguntar por todas las imágenes de productos"
9978
 
9979
- #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:240
9980
  msgid "View item"
9981
  msgstr "Ver ítem"
9982
 
 
 
 
 
9983
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:117
9984
  msgid "View image"
9985
  msgstr "Ver imagen"
@@ -9996,7 +9671,7 @@ msgstr "En venta"
9996
  msgid "Discount price"
9997
  msgstr "Precio de descuento"
9998
 
9999
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:57
10000
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:72
10001
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:78
10002
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:84
@@ -10011,10 +9686,6 @@ msgstr "Lenguaje de resguardo (fallback)"
10011
  msgid "Show parent products only"
10012
  msgstr "Mostrar solo los productos principales"
10013
 
10014
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:61
10015
- msgid "Priority"
10016
- msgstr "Prioridad"
10017
-
10018
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/GeneratorGroupAllInOneEventCalendar.php:20
10019
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:24
10020
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/GeneratorGroupEventsManager.php:19
@@ -10089,6 +9760,17 @@ msgstr "Ver galería"
10089
  msgid "Creates slides by your custom settings."
10090
  msgstr "Crea slides para tus opciones personalizadas."
10091
 
 
 
 
 
 
 
 
 
 
 
 
10092
  #: SmartSlider3Pro/Generator/WordPress/Custom/Sources/CustomCustom.php:124
10093
  msgid "No options given"
10094
  msgstr "No se ingresaron opciones"
@@ -10230,10 +9912,6 @@ msgstr ""
10230
  "Crea slides para tus categorías de WooCommerce. (No así a los productos "
10231
  "dentro de ellas.)"
10232
 
10233
- #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceCategory.php:25
10234
- msgid "Parent category"
10235
- msgstr "Categoría padre"
10236
-
10237
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceCategory.php:26
10238
  msgid "Submenu limit"
10239
  msgstr "Limite de submenu"
@@ -10499,77 +10177,69 @@ msgstr "Pendulo 3D"
10499
  msgid "Vertical pendulum 3D"
10500
  msgstr "Pendulo vertical 3D"
10501
 
10502
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:156
10503
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:206
10504
  msgid "Before text"
10505
  msgstr "Antes del texto"
10506
 
10507
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:160
10508
  msgid "Animated text"
10509
  msgstr "Texto animado"
10510
 
10511
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:165
10512
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:214
10513
  msgid "After text"
10514
  msgstr "Después del texto"
10515
 
10516
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:190
10517
  msgid "Rotating"
10518
  msgstr "Rotar"
10519
 
10520
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:191
10521
  msgid "Drop-in"
10522
  msgstr "Caer"
10523
 
10524
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:193
10525
  msgid "Slide down"
10526
  msgstr "Deslizar hacia abajo"
10527
 
10528
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:194
10529
- msgid "Typewriter 1"
10530
- msgstr "Máquina de escribir 1"
10531
-
10532
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:195
10533
- msgid "Typewriter 2"
10534
- msgstr "Máquina de escribir 2"
10535
 
10536
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:196
10537
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:55
10538
  msgid "Chars"
10539
  msgstr "Caracteres"
10540
 
10541
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:197
10542
  msgid "Chars 2"
10543
  msgstr "Caracteres 2"
10544
 
10545
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:233
10546
  msgid "Auto width"
10547
  msgstr "Ancho automático"
10548
 
10549
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:234
10550
  msgid "Cursor color"
10551
  msgstr "Color del cursor"
10552
 
10553
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:237
10554
- msgid "Text color"
10555
- msgstr "Color del texto"
10556
-
10557
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:239
10558
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:279
10559
  msgctxt "Effect"
10560
  msgid "Loop"
10561
  msgstr "Loop"
10562
 
10563
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:254
10564
  msgid "Show duration"
10565
  msgstr "Mostrar duración"
10566
 
10567
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:285
10568
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:314
10569
  msgid "Class on the selected tag element."
10570
  msgstr "Clase en la etiqueta seleccionada."
10571
 
10572
- #: SmartSlider3Pro/Renderable/Item/Area/Assets/area.js:23
10573
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:39
10574
  msgid "Area"
10575
  msgstr "Área"
@@ -10605,8 +10275,8 @@ msgid ""
10605
  "Audio autoplaying has a lot of limitations made by browsers. You can read "
10606
  "about them %1$shere%2$s."
10607
  msgstr ""
10608
- "La reproducción automática de audio tiene muchas limitaciones en los "
10609
- "diferentes navegadores. Puedes leer sobre ello %1$saquí%2$s."
10610
 
10611
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:144
10612
  msgid "Starts the audio from the beginning when the slide is viewed again."
@@ -10624,15 +10294,15 @@ msgstr "Tiempo"
10624
  msgid "Full"
10625
  msgstr "Completo"
10626
 
10627
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:225
10628
  msgid "Scales up the image on hover"
10629
  msgstr "Agranda la escala de la imagen cuando se hace hover a la imagen"
10630
 
10631
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:229
10632
  msgid "Overlay background"
10633
  msgstr "Fondo de la superposición"
10634
 
10635
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:239
10636
  msgid "Positions the text inside the overlay."
10637
  msgstr "Coloca el texto dentro del overlay."
10638
 
@@ -10646,22 +10316,23 @@ msgstr "Contador circular"
10646
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
10647
  #: SmartSlider3Pro/Renderable/Item/Counter/Assets/counter.js:20
10648
  #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:40
10649
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:99
10650
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:109
10651
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:146
10652
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:126
10653
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
10654
  msgid "Counter"
10655
  msgstr "Contador"
10656
 
10657
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:126
10658
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:110
10659
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:127
 
10660
  msgid "Value"
10661
  msgstr "Valor"
10662
 
10663
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:129
10664
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:113
10665
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:130
10666
  msgid "Start from"
10667
  msgstr "Comenzar desde"
@@ -10681,7 +10352,7 @@ msgid "Stroke width"
10681
  msgstr "Ancho del trazado"
10682
 
10683
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:160
10684
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:117
10685
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:145
10686
  msgid "Labels"
10687
  msgstr "Etiquetas"
@@ -10695,15 +10366,14 @@ msgid "Inner after"
10695
  msgstr "Dentro despúes"
10696
 
10697
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:172
10698
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:118
10699
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:156
10700
  msgid "Pre"
10701
  msgstr "Antes de"
10702
 
10703
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:180
10704
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:135
10705
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:164
10706
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:187
10707
  msgid "Animation duration"
10708
  msgstr "Duración de la animación"
10709
 
@@ -10951,11 +10621,21 @@ msgctxt "List layer type"
10951
  msgid "Upper-roman"
10952
  msgstr "Superior-romano"
10953
 
10954
- #: SmartSlider3Pro/Renderable/Item/Icon/Assets/icon2.js:36
10955
  msgid "Icon not found"
10956
  msgstr "Ícono no encontrado"
10957
 
10958
- #: SmartSlider3Pro/Renderable/Item/Iframe/Assets/iframe.js:23
 
 
 
 
 
 
 
 
 
 
10959
  msgid "Iframe"
10960
  msgstr "Iframe"
10961
 
@@ -10995,13 +10675,13 @@ msgstr "título del iframe"
10995
  msgid "Image area"
10996
  msgstr "Área de la imagen"
10997
 
10998
- #: SmartSlider3Pro/Renderable/Item/ImageBox/Assets/imagebox.js:21
10999
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:64
11000
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:175
11001
  msgid "Image box"
11002
  msgstr "Caja de imagen"
11003
 
11004
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:341
11005
  msgid ""
11006
  "Positions the text inside the layer. Only works with left and right layout."
11007
  msgstr ""
@@ -11107,11 +10787,11 @@ msgstr "Etiqueta alt de imagen del frente"
11107
  msgid "Back image alt tag"
11108
  msgstr "Etiqueta alt de imagen de fondo"
11109
 
11110
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:116
11111
  msgid "MP4 video"
11112
  msgstr "Video MP4"
11113
 
11114
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:219
11115
  msgid "Preload"
11116
  msgstr "Precarga"
11117
 
@@ -11131,12 +10811,11 @@ msgstr ""
11131
  "personalizado que debes escribir, ¡te sugerimos que utilices esta capa solo "
11132
  "sí eres un desarrollador!"
11133
 
11134
- #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:62
11135
- #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:64
11136
  msgid "Position name or module ID"
11137
  msgstr "Nombre de la posición o ID del módulo"
11138
 
11139
- #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:65
11140
  msgid ""
11141
  "The position name of your module (for Loadposition and Modulepos) or the "
11142
  "module's ID (Module)."
@@ -11208,80 +10887,22 @@ msgstr ""
11208
  msgid "CSS selector (sum of heights)"
11209
  msgstr "Selector CSS (suma de las alturas)"
11210
 
11211
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:33
11212
- msgctxt "Slider type"
11213
- msgid "Accordion"
11214
- msgstr "Acordión"
11215
-
11216
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:37
11217
- msgctxt "Slider type"
11218
- msgid "Accordion slider"
11219
- msgstr "Slider acordión"
11220
-
11221
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:63
11222
- msgid "Dark"
11223
- msgstr "Oscuro"
11224
-
11225
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:95
11226
- msgid "Border outer width"
11227
- msgstr "Ancho del borde exterior"
11228
-
11229
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:103
11230
- msgid "Outer color"
11231
- msgstr "Color externo"
11232
-
11233
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:106
11234
- msgid "Border inner width"
11235
- msgstr "Ancho del borde interior"
11236
-
11237
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:114
11238
- msgid "Inner color"
11239
- msgstr "Color interno"
11240
-
11241
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:124
11242
- msgid "Tab background"
11243
- msgstr "Fonde de la ficha"
11244
-
11245
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:125
11246
- msgid "Tab background - Active"
11247
- msgstr "Pestaña fondo - Activa"
11248
-
11249
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:127
11250
- msgid "Slide margin"
11251
- msgstr "Margen del slide"
11252
-
11253
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:136
11254
- msgid "Title size"
11255
- msgstr "Tamaño del título"
11256
-
11257
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:144
11258
- msgid "Title margin"
11259
- msgstr "Margen del título"
11260
-
11261
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:167
11262
- msgid "Outer"
11263
- msgstr "Externo"
11264
-
11265
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:172
11266
- msgid "Inner"
11267
- msgstr "Interno"
11268
-
11269
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:34
11270
  msgctxt "Slider type"
11271
  msgid "Carousel slider"
11272
  msgstr "Slider carrusel"
11273
 
11274
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:43
11275
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:43
11276
  msgid "Slide size"
11277
  msgstr "Tamaño del slide"
11278
 
11279
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:70
11280
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:71
11281
  msgid "Max pane width"
11282
  msgstr "Ancho máximo del panel"
11283
 
11284
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:72
11285
  msgid ""
11286
  "You can use this option to limit how many slides can show up next to each "
11287
  "other."
@@ -11289,29 +10910,37 @@ msgstr ""
11289
  "Puedes usar esta opción para limitar el número de slides que mostrarás "
11290
  "después de cada uno."
11291
 
11292
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:84
11293
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:85
11294
  msgid "Minimum slide distance"
11295
  msgstr "Distancia mínima del slide"
11296
 
11297
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:86
11298
  msgid "The minimum space between two slides."
11299
  msgstr "El espacio mínimo entre dos slides."
11300
 
11301
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:98
11302
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:110
11303
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:134
11304
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:158
 
 
 
 
11305
  msgid "Side spacing"
11306
  msgstr "Espaciado de costado"
11307
 
11308
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:106
 
11309
  msgid "Desktop side spacing"
11310
  msgstr "Espaciado de costado para escritorio"
11311
 
11312
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:107
11313
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:131
11314
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:155
 
 
 
11315
  msgid ""
11316
  "You can create a fix distance between the slider and the slides where your "
11317
  "controls are which appear on this device. This way your controls won't cover "
@@ -11321,59 +10950,56 @@ msgstr ""
11321
  "controles aparecen en este dispositivo. De esta manera los controles no "
11322
  "cubrirán el contenido del slide."
11323
 
11324
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:130
 
11325
  msgid "Tablet side spacing"
11326
  msgstr "Espaciado de costado de tabletas"
11327
 
11328
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:154
 
11329
  msgid "Mobile side spacing"
11330
  msgstr "Espaciado de costado de móviles"
11331
 
11332
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:177
11333
  msgid "Slide background color"
11334
  msgstr "Color de fondo del slide"
11335
 
11336
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:199
11337
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:100
11338
- msgid "Slider background color"
11339
- msgstr "Color de fondo del slider"
11340
-
11341
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:204
11342
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:109
11343
  msgid "Slide border width"
11344
  msgstr "Ancho del borde del slide"
11345
 
11346
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:209
11347
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:114
11348
  msgid "Slide border color"
11349
  msgstr "Color del borde del slide"
11350
 
11351
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:212
11352
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:117
11353
  msgid "Slide border radius"
11354
  msgstr "Radio del borde del slider"
11355
 
11356
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:219
11357
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:127
11358
  msgid "Slider border width"
11359
  msgstr "Ancho del borde del slide"
11360
 
11361
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:224
11362
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:132
11363
  msgid "Slider border color"
11364
  msgstr "Color de borde del slide"
11365
 
11366
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:227
11367
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:135
11368
  msgid "Slider border radius"
11369
  msgstr "Radio del borde del slider"
11370
 
11371
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:236
11372
  msgid "The Single Switch setting can only move the slides horizontally!"
11373
  msgstr "¡Esta opción puede mover solo los slides horizontalmente!"
11374
 
11375
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:286
11376
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:665
11377
  msgid ""
11378
  "This option will create a complete round from your slides if you have enough "
11379
  "slides. If you don't have enough slides, you could consider duplicating all "
@@ -11383,63 +11009,63 @@ msgstr ""
11383
  "los suficientes slides. Sí no los tienes, considera duplicar los que tengas "
11384
  "o bien agregar más hasta que tengas un giro completo del carrusel."
11385
 
11386
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:294
11387
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:295
11388
  msgid "Single switch"
11389
  msgstr "Interruptor simple"
11390
 
11391
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:296
11392
  msgid "It switches one slide instead of moving all the visible slides."
11393
  msgstr "Cambia a un slide en vez de mover todos los slides visibles."
11394
 
11395
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:303
11396
  msgid "Justify slides"
11397
  msgstr "Justificar slides"
11398
 
11399
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:34
11400
  msgctxt "Slider type"
11401
  msgid "Showcase slider"
11402
  msgstr "Slider tipo presentación"
11403
 
11404
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:70
11405
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:78
11406
  msgid "Slide distance"
11407
  msgstr "Distancia del slide"
11408
 
11409
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:79
11410
  msgid "Fix space between the slides."
11411
  msgstr "Espacio fijo entre los slides."
11412
 
11413
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:143
11414
  msgid "Slide CSS Preset"
11415
  msgstr "Preajustes CSS del slide"
11416
 
11417
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:210
11418
  msgid "Showcase animation"
11419
  msgstr "Animación de exhibición"
11420
 
11421
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:233
11422
  msgid "Horizontal showcase"
11423
  msgstr "Muestra horizontal"
11424
 
11425
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:249
11426
  msgid "Vertical showcase"
11427
  msgstr "Muestra vertical"
11428
 
11429
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:265
11430
  msgid "Horizontal cover flow"
11431
  msgstr "Flujo de cobertura horizontal"
11432
 
11433
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:281
11434
  msgid "Vertical cover flow"
11435
  msgstr "Flujo de cobertura vertical"
11436
 
11437
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:672
11438
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:673
11439
  msgid "Switch with next/previous slides"
11440
  msgstr "Cambiar los slides con anterior/siguiente"
11441
 
11442
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:674
11443
  msgid ""
11444
  "Clicking on any slide that's not in the middle will make the slider switch "
11445
  "to that slide. With this option you can disable this behavior, for example, "
@@ -11520,6 +11146,14 @@ msgstr "A pantalla completa"
11520
  msgid "Fullscreen"
11521
  msgstr "Pantalla completa"
11522
 
 
 
 
 
 
 
 
 
11523
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:53
11524
  #, php-format
11525
  msgid ""
@@ -11551,6 +11185,303 @@ msgstr "Color de la pista"
11551
  msgid "Bar color"
11552
  msgstr "Color de la barra"
11553
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11554
  #~ msgid "Show Joomla admin footer"
11555
  #~ msgstr "Mostrar el bloque administrativo inferior de Joomla"
11556
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2021-05-03 16:52+0200\n"
5
+ "PO-Revision-Date: 2021-05-03 16:52+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Generator: Poedit 2.4.3\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-Basepath: ..\n"
16
+ "X-Poedit-KeywordsList: ;n2_;n2_e;n2_n:1,2;n2_en:1,2;n2_x:1,2c;n2_ex:1,2c\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: Framework/Asset/Builder/cache\n"
19
 
20
+ #: Framework/Api.php:125 Framework/Misc/HttpClient.php:81
21
  msgid "Debug error"
22
  msgstr "Error de depuración"
23
 
24
+ #: Framework/Api.php:144 Framework/Misc/HttpClient.php:106
25
  msgid "CURL disabled in your php.ini configuration. Please enable it!"
26
  msgstr ""
27
  "CURL está desactivado en tu configuración php.ini. ¡Por favor actívala!"
28
 
29
+ #: Framework/Api.php:152 Framework/Misc/HttpClient.php:112
30
  msgid "Unable to contact with the licensing server, please try again later!"
31
  msgstr ""
32
  "¡No se puede conectar con el servidor de licencias, por favor inténtalo más "
33
  "tarde!"
34
 
35
+ #: Framework/Asset/Predefined.php:45
 
 
 
 
36
  msgctxt "Default Google font family for admin"
37
  msgid "Montserrat"
38
  msgstr "Montserrat"
39
 
40
+ #: Framework/Asset/Predefined.php:46
41
  msgctxt "Default Google font charset for admin"
42
  msgid "latin"
43
  msgstr "latín"
50
  msgid "Folder is missing!"
51
  msgstr "¡No se encuentra la carpeta!"
52
 
53
+ #: Framework/Content/Joomla/JoomlaContent.php:145
54
  msgid "Menu item"
55
  msgstr "Ítem del menú"
56
 
78
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:96
79
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:176
80
  #: Framework/Image/ControllerAjaxImage.php:34
81
+ #: Framework/Image/ControllerAjaxImage.php:52
82
+ #: Framework/Image/ControllerAjaxImage.php:88
83
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:33
84
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:99
85
  msgid "Unexpected error"
96
 
97
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:136
98
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:156
99
+ #: Framework/Image/ControllerAjaxImage.php:70
100
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:53
101
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:76
102
  msgid "Not editable"
128
  msgid "Font manager"
129
  msgstr "Administrador de fuentes"
130
 
131
+ #: Framework/Font/FontRenderer.php:104 Framework/Font/FontRenderer.php:106
132
+ #: Framework/Font/FontRenderer.php:118 Framework/Font/FontRenderer.php:120
133
+ #: Framework/Font/FontRenderer.php:134 Framework/Font/FontRenderer.php:153
134
+ #: Framework/Font/FontRenderer.php:172 Framework/Font/FontRenderer.php:190
135
+ #: Framework/Font/FontRenderer.php:206 Framework/Font/FontRenderer.php:222
136
+ #: Framework/Font/FontRenderer.php:240 Framework/Style/StyleRenderer.php:81
137
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:28
138
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
139
+ #: SmartSlider3/Renderable/Item/Text/Assets/text.js:21
140
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:53
141
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:134
142
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:249
143
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:149
144
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:142
145
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:63
146
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:51
147
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:58
148
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:58
149
  msgid "Text"
150
  msgstr "Texto"
151
 
152
+ #: Framework/Font/FontRenderer.php:132 Framework/Font/FontRenderer.php:135
153
+ #: Framework/Font/FontRenderer.php:154 Framework/Font/FontRenderer.php:174
154
+ #: Framework/Font/FontRenderer.php:191 Framework/Font/FontRenderer.php:224
155
+ #: Framework/Font/FontRenderer.php:242 Framework/Style/StyleRenderer.php:110
156
+ #: Framework/Style/StyleRenderer.php:126 Framework/Style/StyleRenderer.php:145
157
+ #: Framework/Style/StyleRenderer.php:197
158
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:73
159
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:107
160
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:42
161
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:61
162
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:139
163
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:171
164
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:187
169
  msgid "Hover"
170
  msgstr "Hover"
171
 
172
+ #: Framework/Font/FontRenderer.php:140 Framework/Style/StyleRenderer.php:142
173
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:27
174
+ #: SmartSlider3/Renderable/Item/Heading/Assets/heading.js:21
175
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:53
176
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
177
  #: SmartSlider3/Storage.php:65
178
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
179
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:306
180
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:100
181
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:250
182
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:265
183
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:203
184
  msgid "Heading"
185
  msgstr "Encabezado"
186
 
187
+ #: Framework/Font/FontRenderer.php:151 Framework/Font/FontRenderer.php:173
188
+ #: Framework/Font/FontRenderer.php:223
189
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:59
190
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:61
191
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:86
192
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:88
193
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:75
194
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:77
195
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:112
203
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:181
204
  #: SmartSlider3/Storage.php:877
205
  #: SmartSlider3Pro/Form/Element/ParticleSkin.php:18
206
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:168
207
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:169
 
208
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:188
209
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:189
210
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:180
211
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:181
212
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:218
213
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:219
 
214
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:115
215
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:116
216
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:141
217
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:142
218
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:281
219
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:282
220
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:138
221
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:139
222
  msgid "Link"
223
  msgstr "Enlace"
224
 
225
+ #: Framework/Font/FontRenderer.php:159 Framework/Font/FontRenderer.php:247
226
+ #: Framework/Style/StyleRenderer.php:123 Framework/Style/StyleRenderer.php:202
227
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:30
228
+ #: SmartSlider3/Renderable/Item/Button/Assets/button.js:21
229
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:50
230
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
231
  #: SmartSlider3/Storage.php:290 SmartSlider3/Widget/Group/Autoplay.php:49
239
  msgid "Button"
240
  msgstr "Botón"
241
 
242
+ #: Framework/Font/FontRenderer.php:170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  msgid "Paragraph"
244
  msgstr "Párrafo"
245
 
246
+ #: Framework/Font/FontRenderer.php:204 Framework/Style/StyleRenderer.php:177
247
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:49
248
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:238
249
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:51
251
  msgid "Dot"
252
  msgstr "Punto"
253
 
254
+ #: Framework/Font/FontRenderer.php:207 Framework/Style/StyleRenderer.php:164
255
+ #: Framework/Style/StyleRenderer.php:180
256
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:389
257
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:432
258
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:477
259
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:513
260
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:549
261
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:590
262
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:632
263
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:674
264
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:225
265
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:241
266
+ msgid "Active"
267
+ msgstr "Activo"
268
+
269
+ #: Framework/Font/FontRenderer.php:220 SmartSlider3/Storage.php:529
270
  #: SmartSlider3Pro/Renderable/Item/HtmlList/Assets/list.js:20
271
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:56
272
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:76
275
  msgid "List"
276
  msgstr "Lista"
277
 
278
+ #: Framework/Font/FontRenderer.php:238 Framework/Font/FontRenderer.php:241
279
+ #: Framework/Style/StyleRenderer.php:193 Framework/Style/StyleRenderer.php:196
280
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:234
281
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:254
282
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:257
303
  msgstr "Familia"
304
 
305
  #: Framework/Font/ModelFont.php:40
306
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:177
307
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:54
308
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:204
309
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:310
310
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:439
311
  #: SmartSlider3/Form/Element/BackgroundImage.php:31
312
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:228
313
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:229
314
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:70
315
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:104
316
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:53
317
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:83
318
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:119
319
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:108
320
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:167
321
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:112
322
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:158
323
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:137
324
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:245
325
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:95
326
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:243
327
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:138
328
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:39
329
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:53
330
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:43
331
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:57
332
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:59
337
  msgstr "Color"
338
 
339
  #: Framework/Font/ModelFont.php:44
340
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:414
341
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:417
342
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:419
343
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:154
344
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:52
345
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:199
346
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:84
347
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:215
348
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:165
349
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:58
350
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:59
351
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:182
352
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:150
353
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:127
354
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:130
355
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:147
356
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:184
357
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:186
 
 
358
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:174
359
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:143
360
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:102
361
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:235
 
 
362
  #: SmartSlider3Pro/Widget/Indicator/IndicatorPie/IndicatorPie.php:31
363
  msgid "Size"
364
  msgstr "Tamaño"
399
  msgid "Transform"
400
  msgstr "Transformar"
401
 
402
+ #: Framework/Font/ModelFont.php:86
403
+ #: Framework/Form/Element/MixedField/Border.php:39
404
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:170
405
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:116
406
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:197
407
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:91
408
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:46
409
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:105
411
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:85
412
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:105
413
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:167
414
+ #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:127
415
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:44
416
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:130
417
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:153
418
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:211
419
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:102
420
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:101
421
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:92
422
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:35
 
423
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:84
424
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:51
425
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:46
435
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:54
436
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:55
437
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:38
 
 
438
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:86
439
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:69
 
 
 
 
 
440
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:28
441
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:64
 
442
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:63
443
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:51
444
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:45
445
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:56
446
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:86
447
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:66
 
448
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:38
449
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:36
450
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:151
451
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:137
452
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:225
453
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:39
454
  msgid "None"
455
  msgstr "Ninguno"
475
  msgstr "Sombra del texto"
476
 
477
  #: Framework/Font/ModelFont.php:100 Framework/Image/ModelImage.php:35
478
+ #: Framework/Image/ModelImage.php:56 Framework/Style/ModelStyle.php:94
479
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:84
480
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:62
481
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:112
482
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:77
483
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:38
484
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:115
485
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:216
486
  #: SmartSlider3/BackgroundAnimation/ModelBackgroundAnimation.php:41
487
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:78
488
  #: SmartSlider3Pro/PostBackgroundAnimation/ModelPostBackgroundAnimation.php:45
510
 
511
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:64
512
  #: Framework/Form/Element/Style.php:50
513
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:168
514
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:195
515
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabStyle.php:20
516
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:57
517
  #: SmartSlider3/Widget/Group/Bullet.php:95
536
  msgid "Italic"
537
  msgstr "Itálica"
538
 
539
+ #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:72
540
+ #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:73
541
+ #: Framework/Form/Element/Select/FontWeight.php:13
542
+ #: Framework/Form/Element/Select/FontWeight.php:18
543
+ #: Framework/Style/StyleRenderer.php:95 Framework/Style/StyleRenderer.php:109
544
+ #: Framework/Style/StyleRenderer.php:125 Framework/Style/StyleRenderer.php:144
545
+ #: Framework/Style/StyleRenderer.php:163 Framework/Style/StyleRenderer.php:179
546
+ #: Framework/Style/StyleRenderer.php:195
547
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:192
548
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:113
549
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:138
550
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:61
551
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:72
552
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:162
553
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:178
554
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:128
555
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:161
556
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:172
557
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:307
558
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:341
559
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:357
560
+ #: SmartSlider3Pro/SplitText/ModelSplitText.php:62
561
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:156
562
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:170
563
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:186
564
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:205
565
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:224
566
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:240
567
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:256
568
+ msgid "Normal"
569
+ msgstr "Normal"
570
+
571
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:86
572
  msgid "Character set"
573
  msgstr "Grupo de caracteres"
637
  msgstr "Seleccionar"
638
 
639
  #: Framework/Form/Element/Breakpoint.php:39
640
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
641
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:75
642
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:176
 
643
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:80
644
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:80
645
  msgid "Orientation"
646
  msgstr "Orientación"
647
 
648
  #: Framework/Form/Element/Breakpoint.php:41
649
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
650
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:248
651
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:249
652
  msgid "Portrait"
653
  msgstr "Vertical"
654
 
655
  #: Framework/Form/Element/Breakpoint.php:42
656
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
657
  msgid "Landscape"
658
  msgstr "Horizontal"
659
 
660
  #: Framework/Form/Element/Breakpoint.php:51
661
+ #: Framework/Form/Element/Breakpoint.php:86 Framework/Image/ModelImage.php:39
662
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:87
663
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:228
664
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:21
 
665
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:162
666
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:163
667
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:183
668
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:112
669
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:97
670
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:229
671
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:302
672
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:523
673
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:145
674
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:167
675
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:157
676
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:161
677
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:97
678
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:148
679
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:169
680
  msgid "Mobile"
681
  msgstr "Móvil"
682
 
683
  #: Framework/Form/Element/Breakpoint.php:56
684
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:229
685
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:22
686
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:179
687
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:101
688
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:212
689
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:294
695
 
696
  #: Framework/Form/Element/Breakpoint.php:61
697
  #: Framework/Form/Element/Breakpoint.php:91 Framework/Image/ModelImage.php:38
698
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:86
699
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:226
700
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:19
701
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:164
702
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:174
703
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:106
704
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:194
705
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:287
706
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:473
707
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:144
708
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:159
709
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:145
710
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:149
711
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:112
712
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:124
713
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:145
714
  msgid "Tablet"
715
  msgstr "Tableta"
716
 
717
  #: Framework/Form/Element/Breakpoint.php:66
718
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:227
719
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:20
720
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:170
721
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:110
722
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:178
723
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:279
729
 
730
  #: Framework/Form/Element/Breakpoint.php:71
731
  #: Framework/Form/Element/Breakpoint.php:96 Framework/Image/ModelImage.php:31
732
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:85
733
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:224
734
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:17
735
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:165
736
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:115
737
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:159
738
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:151
739
+ #: SmartSlider3/Application/Admin/Preview/Template/Index.php:28
740
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:127
741
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:100
742
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:121
743
  msgid "Desktop"
744
  msgstr "Escritorio"
745
 
746
  #: Framework/Form/Element/Breakpoint.php:76
747
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:225
748
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:18
749
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:161
750
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:119
751
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:143
752
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:272
774
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
775
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
776
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
777
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:148
778
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:151
779
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
780
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
781
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:179
 
782
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:85
783
  msgid "Font"
784
  msgstr "Fuente"
787
  msgid "Warning"
788
  msgstr "Atención"
789
 
790
+ #: Framework/Form/Element/MixedField/Border.php:40
791
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:173
792
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:200
793
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:154
794
  msgid "Dotted"
795
  msgstr "Puntos"
796
 
797
+ #: Framework/Form/Element/MixedField/Border.php:41
798
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:172
799
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:199
800
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:153
801
  msgid "Dashed"
802
  msgstr "Líneas"
803
 
804
+ #: Framework/Form/Element/MixedField/Border.php:42
805
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:171
806
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:198
807
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:152
808
  msgid "Solid"
809
  msgstr "Sólido"
810
 
811
+ #: Framework/Form/Element/MixedField/Border.php:43
812
  msgid "Double"
813
  msgstr "Doble"
814
 
815
+ #: Framework/Form/Element/MixedField/Border.php:44
816
  msgid "Groove"
817
  msgstr "Surco"
818
 
819
+ #: Framework/Form/Element/MixedField/Border.php:45
820
  msgid "Ridge"
821
  msgstr "Ranura"
822
 
823
+ #: Framework/Form/Element/MixedField/Border.php:46
824
  msgid "Inset"
825
  msgstr "Profundidad"
826
 
827
+ #: Framework/Form/Element/MixedField/Border.php:47
828
  msgid "Outset"
829
  msgstr "Elevación"
830
 
831
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:20
832
  msgid "Field"
833
  msgstr "Campo"
834
 
835
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:22
836
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:87
837
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:42
838
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:101
843
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:97
844
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:88
845
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:31
 
846
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:80
847
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:47
848
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:42
857
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:50
858
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:51
859
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:34
 
 
860
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:82
861
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:65
862
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:60
 
 
 
 
 
 
863
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:59
864
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:47
865
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:41
866
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:52
867
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:82
868
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:62
 
869
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:68
870
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:91
871
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:34
876
  msgid "Order"
877
  msgstr "Orden"
878
 
879
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:24
880
  msgid "Ascending"
881
  msgstr "Ascendente"
882
 
883
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:25
884
  msgid "Descending"
885
  msgstr "Descendente"
886
 
887
  #: Framework/Form/Element/OnOff.php:22
888
  #: Framework/Form/Element/Select/Gradient.php:15
889
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:146
890
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:117
891
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:124
892
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:96
893
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:107
894
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:283
895
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:300
896
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:140
897
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:141
898
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:150
899
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:180
901
  msgstr "Apagado"
902
 
903
  #: Framework/Form/Element/OnOff.php:22
904
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:147
905
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:301
906
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:141
907
  msgid "On"
908
  msgstr "Encendido"
909
 
916
  "varias opciones."
917
 
918
  #: Framework/Form/Element/Select/FillMode.php:15
919
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:177
920
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:245
921
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:132
922
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:212
 
923
  msgid "Fill"
924
  msgstr "Rellenar"
925
 
928
  msgstr "Ajuste de tamaño desenfocado"
929
 
930
  #: Framework/Form/Element/Select/FillMode.php:17
931
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:178
932
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:246
933
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:133
934
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:213
 
935
  msgid "Fit"
936
  msgstr "Encajar"
937
 
938
  #: Framework/Form/Element/Select/FillMode.php:18
 
939
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:80
940
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:81
941
  msgid "Stretch"
942
  msgstr "Estirar"
943
 
944
  #: Framework/Form/Element/Select/FillMode.php:19
945
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:82
946
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:103
947
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:179
948
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:194
949
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:247
 
950
  #: SmartSlider3/Storage.php:710
951
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:103
952
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:71
953
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:69
954
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:244
955
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:338
956
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:281
957
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:67
958
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:76
959
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:76
960
  msgid "Center"
961
  msgstr "Centrar"
962
 
963
+ #: Framework/Form/Element/Select/FillMode.php:24
 
 
 
 
964
  msgid "Slider's default"
965
  msgstr "Slider por defecto"
966
 
974
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTags.php:17
975
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTaxonomies.php:23
976
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:39
 
977
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsCategories.php:36
978
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsLocations.php:36
979
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsTypes.php:15
999
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopTags.php:18
1000
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopWarehouses.php:18
1001
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Elements/IgnitegalleryCategories.php:33
 
 
 
 
1002
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCalendars.php:17
1003
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCategories.php:34
1004
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:72
 
 
 
 
 
 
 
 
 
1005
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingCategories.php:42
1006
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:27
1007
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingManufacturers.php:27
 
 
1008
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Categories.php:29
1009
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Tags.php:18
1010
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Elements/MijoshopCategories.php:49
1020
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Elements/RseventsproTags.php:17
1021
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartCategories.php:34
1022
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartManufacturers.php:21
 
 
1023
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarCategories.php:34
1024
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarTags.php:35
1025
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Elements/EventsManagerCategories.php:34
1052
  msgstr "Extra fina"
1053
 
1054
  #: Framework/Form/Element/Select/FontWeight.php:17
 
1055
  msgid "Light"
1056
  msgstr "Fina"
1057
 
1072
  msgstr "Nuevo"
1073
 
1074
  #: Framework/Form/Element/Select/LinkTarget.php:15
1075
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1152
1076
  msgid "Parent"
1077
  msgstr "Carpeta raíz"
1078
 
1079
  #: Framework/Form/Element/Select/LinkTarget.php:16
1080
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:76
1081
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:79
1082
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:82
1083
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:85
1084
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:175
1085
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
1086
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
 
1087
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
1088
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
1089
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
1090
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
1091
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
1092
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:512
1093
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:220
1094
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:106
1095
  #: SmartSlider3/Storage.php:979
1096
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:138
1097
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:76
1098
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:199
1099
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:226
1100
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:243
1101
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:300
1102
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:337
1103
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:105
1104
  msgid "Top"
1105
  msgstr "Superior"
1124
  #: Framework/Form/Joomla/Element/Select/MenuItems.php:18
1125
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:119
1126
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:61
1127
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:149
1128
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:138
1129
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:508
1130
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:107
1131
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:49
1132
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:194
1133
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:258
1134
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:199
1135
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:58
1136
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:69
1137
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:159
1138
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:175
1139
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:158
1140
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:169
1141
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:303
1142
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:338
1143
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:354
1144
  #: SmartSlider3/Storage.php:552 SmartSlider3/Storage.php:928
1145
+ #: SmartSlider3/Storage.php:1165 SmartSlider3/Storage.php:3952
1146
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:39
1147
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCategoryLanguage.php:20
1148
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCurrency.php:20
1152
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:95
1153
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:80
1154
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:86
1155
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:264
1156
  msgid "Default"
1157
  msgstr "Por defecto"
1158
 
1159
+ #: Framework/Image/Admin/Assets/js/manager.js:45
 
 
 
 
 
 
 
 
1160
  msgid "The image is empty"
1161
  msgstr "La imagen está vacía"
1162
 
1163
+ #: Framework/Image/Admin/Assets/js/manager.js:66
1164
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:87
1165
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:108
1166
  msgid "Empty"
1167
  msgstr "Vacio"
1168
 
1170
  msgid "Image manager"
1171
  msgstr "Administrador de imágenes"
1172
 
 
 
 
 
1173
  #: Framework/Image/ModelImage.php:37
1174
  msgid "Desktop retina"
1175
  msgstr "Escritorio retina"
1176
 
1177
+ #: Framework/Image/ModelImage.php:53
 
 
 
 
 
 
 
 
1178
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:29
1179
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:19
1180
  #: SmartSlider3/Form/Element/BackgroundImage.php:29
1181
+ #: SmartSlider3/Renderable/Item/Image/Assets/image.js:21
1182
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:43
1183
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:129
1184
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
1185
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:276
1186
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:263
1187
  #: SmartSlider3/Widget/Group/Bullet.php:64
1188
  #: SmartSlider3/Widget/Group/Thumbnail.php:63
1189
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:161
1190
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:112
1191
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:212
1192
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:217
1193
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:256
1194
  msgid "Image"
1195
  msgstr "Imagen"
1196
 
1218
  msgstr "Opciones de estilo"
1219
 
1220
  #: Framework/Style/ModelStyle.php:35
1221
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:162
1222
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:119
1223
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:97
1224
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:139
1225
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:146
 
1226
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:113
1227
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:89
1228
  msgid "Background color"
1230
 
1231
  #: Framework/Style/ModelStyle.php:39
1232
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:143
1233
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:229
1234
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:294
1235
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:197
1236
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:371
1237
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:131
1238
  msgid "Opacity"
1239
  msgstr "Opacidad"
1240
 
1241
  #: Framework/Style/ModelStyle.php:50
1242
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:210
1243
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:120
1244
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:189
1245
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:228
1246
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:156
1247
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:188
1248
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:318
1249
  msgid "Padding"
1250
  msgstr "Padding"
1251
 
1252
  #: Framework/Style/ModelStyle.php:72
1253
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:142
1254
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:147
1255
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:165
1256
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:169
1257
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:168
1258
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:174
1259
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:125
1260
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:127
1261
  msgid "Border"
1262
  msgstr "Borde"
1263
 
1264
  #: Framework/Style/ModelStyle.php:74
1265
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:181
1266
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:171
1267
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:208
1268
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:90
1269
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:210
1270
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:162
 
 
 
1271
  msgid "Border radius"
1272
  msgstr "Radio del borde"
1273
 
1274
  #: Framework/Style/ModelStyle.php:87
1275
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:133
1276
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:157
1277
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:160
1278
  msgid "Box shadow"
1279
  msgstr "Sombra de la caja"
1280
 
1281
+ #: Framework/Style/StyleRenderer.php:79
1282
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:140
1283
  msgid "Single"
1284
  msgstr "Un solo"
1285
 
1286
+ #: Framework/Style/StyleRenderer.php:93
1287
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:179
1288
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:35
1289
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:200
1290
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:154
1291
  msgid "Simple"
1292
  msgstr "Simple"
1293
 
1294
+ #: Framework/Style/StyleRenderer.php:107
1295
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:168
1296
  msgid "Box"
1297
  msgstr "Caja"
1298
 
1299
+ #: Framework/Style/StyleRenderer.php:161
1300
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:222
1301
  msgid "Heading active"
1302
  msgstr "Encabezado activo"
1303
 
1304
  #: SmartSlider3/Application/Admin/ApplicationTypeAdmin.php:55
1305
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:302
1306
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:110
1307
+ #: SmartSlider3/Application/Model/ModelSlidersXRef.php:154
1308
+ #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:100
1309
  msgid "Dashboard"
1310
  msgstr "Panel de control"
1311
 
1312
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1313
  msgid "Drop files here or"
1314
  msgstr "Suelta los archivos aquí o"
1315
 
1316
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:13
1317
  msgid "Upload"
1318
  msgstr "Subir"
1319
 
1320
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:20
1321
  msgid "Parent directory"
1322
  msgstr "Directorio raíz"
1323
 
1324
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:106
1325
  msgid "Current path"
1326
  msgstr "Ruta actual"
1327
 
1328
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:33
1329
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:260
 
1330
  msgid "Preset"
1331
  msgstr "Preajuste"
1332
 
1333
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:33
1334
  msgid ""
1335
  "You can use presets to save style settings for later use. Clicking on any "
1336
  "preset will load its styling to your current layer, and the previous style "
1341
  "cargará su estilo en la capa actual, y se perderán los estilos que tenían "
1342
  "previamente."
1343
 
1344
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:35
1345
  msgid ""
1346
  "Layer design options affect every device. If you need to make responsive "
1347
  "adjustments, look for the options with the device icon."
1350
  "necesitas hacer ajustes sobre las opciones responsivas, utiliza las opciones "
1351
  "al presionar el ícono del dispositivo que deseas."
1352
 
1353
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:42
1354
  msgid "Reset style to default"
1355
  msgstr "Reestablecer el estilo a su valor por defecto"
1356
 
1357
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:48
1358
  msgid "Save style as new preset"
1359
  msgstr "Grabar estilo como un nuevo preajuste"
1360
 
1361
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:59
1362
  msgid "Load style"
1363
  msgstr "Cargar estilo"
1364
 
1365
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:88
1366
  msgid "You have not created any presets for this layer yet."
1367
  msgstr "Aún no has creado preajustes para esta capa."
1368
 
1369
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:160
1370
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:167
1371
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:218
1372
  msgid "Save as"
1373
  msgstr "Guardar como"
1374
 
1375
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:165
1376
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:223
1377
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:208
1378
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
1379
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
1380
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
1381
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:85
1382
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialUsers.php:84
 
 
1383
  msgid "Name"
1384
  msgstr "Nombre"
1385
 
1386
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:175
1387
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:233
1388
  msgid "Please fill the name field!"
1389
  msgstr "¡Por favor rellena el campo \"nombre\"!"
1390
 
1391
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:200
1392
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:291
1393
  msgid "Preset saved."
1394
  msgstr "Preajuste guardado."
1395
 
1396
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:269
1397
  msgid "Overwrite preset"
1398
  msgstr "Sobrescribir preajuste"
1399
 
1400
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:313
1401
  msgid "Preset deleted."
1402
  msgstr "Preajuste eliminado."
1403
 
1406
  msgstr "Seleccionar carpeta"
1407
 
1408
  #: SmartSlider3/Application/Admin/Assets/js/common/element/folders.js:46
1409
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:79
1410
  msgid "Select"
1411
  msgstr "Seleccionar"
1412
 
1413
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:136
1414
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:199
1415
+ #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:70
1416
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:51
1417
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:142
1418
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:145
1424
  msgid "Disabled"
1425
  msgstr "Deshabilitado"
1426
 
1427
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/imagemanager.js:33
1428
  msgid "Image field can not be empty!"
1429
  msgstr "¡El campo imagen no puede estar vacio!"
1430
 
1431
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/skin.js:57
1432
  msgid "Done"
1433
  msgstr "Hecho"
1434
 
1435
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/upload.js:40
1436
  msgid "No file selected."
1437
  msgstr "No se seleccionó un archivo."
1438
 
1439
+ #: SmartSlider3/Application/Admin/Assets/js/common/form-tip-manager.js:110
1440
  msgid "Open docs"
1441
  msgstr "Abrir documentación"
1442
 
1443
+ #: SmartSlider3/Application/Admin/Assets/js/common/form.js:114
1444
  msgid "The changes you made will be lost if you navigate away from this page."
1445
  msgstr "Los cambios que has realizado se perderán si sales de esta página."
1446
 
1447
+ #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:78
1448
  msgid "Icons"
1449
  msgstr "Íconos"
1450
 
1451
+ #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:91
1452
  #: SmartSlider3/Application/Admin/Help/Template/Index.php:72
1453
  #: SmartSlider3Pro/Generator/Common/Flickr/GeneratorGroupFlickr.php:36
1454
  #: SmartSlider3Pro/Generator/Common/YouTube/GeneratorGroupYouTube.php:31
1458
  msgid "Search"
1459
  msgstr "Buscar"
1460
 
1461
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:19
1462
  msgid "Are you sure?"
1463
  msgstr "¿Estás seguro?"
1464
 
1465
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:23
1466
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonCancel.php:12
1467
  msgid "Cancel"
1468
  msgstr "Cancelar"
1469
 
1470
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:30
1471
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:100
1472
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:376
1473
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:178
1474
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1052
1475
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:113
1476
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:45
1477
  msgid "Delete"
1478
  msgstr "Borrar"
1479
 
1480
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalLightbox.js:37
1481
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:96
1482
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:47
1483
  msgid "Close"
1484
  msgstr "Cerrar"
1485
 
1486
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:17
1487
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:24
1488
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:41
1489
  msgid "Create group"
1490
  msgstr "Crear grupo"
1491
 
1492
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:22
1493
  msgid "Group name"
1494
  msgstr "Nombre del grupo"
1495
 
1497
  msgid "Group created"
1498
  msgstr "Grupo creado"
1499
 
1500
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/generator-record-viewer.js:53
1501
  msgid "Records"
1502
  msgstr "Registros"
1503
 
1504
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:12
1505
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:63
1506
  msgid "Keyboard shortcuts"
1507
  msgstr "Atajos de teclado"
1508
 
1509
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:41
1510
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:38
1511
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:92
 
1512
  msgid "Got it"
1513
  msgstr "Entendido"
1514
 
1515
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:62
1516
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:46
1517
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:56
1518
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:68
1519
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:36
1520
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:33
1521
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:44
1522
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:56
1523
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:59
1524
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:139
1525
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:146
1526
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:127
1527
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:132
1528
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:113
1529
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:115
1530
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:204
1531
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:153
1532
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:113
1533
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:159
1534
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:204
1535
  #: SmartSlider3Pro/Renderable/Item/Html/ItemHtml.php:61
1536
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:125
1537
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:93
1538
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:64
1539
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:110
1540
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:182
1541
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:119
1542
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:119
1543
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:50
1544
  msgid "General"
1545
  msgstr "General"
1546
 
1547
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:63
1548
  msgid "Content tab"
1549
  msgstr "Pestaña Contenido"
1550
 
1551
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:64
1552
  msgid "Style tab"
1553
  msgstr "Pestaña Estilo"
1554
 
1555
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:70
1556
  msgid "Animation tab"
1557
  msgstr "Pestaña Animación"
1558
 
1559
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:74
1560
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:24
1561
  msgid "Add Layer"
1562
  msgstr "Agregar Capa"
1563
 
1564
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:75
1565
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerWindow.js:80
1566
  msgid "Layer List"
1567
  msgstr "Lista de Capas"
1568
 
1569
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:79
1570
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerNavigation.js:51
1571
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:50
1572
  msgid "Timeline"
1573
  msgstr "Línea de tiempo"
1574
 
1575
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:83
 
 
1576
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:101
1577
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoGallery.php:100
1578
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoStream.php:91
1582
  msgid "View"
1583
  msgstr "Ver"
1584
 
1585
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1586
  msgid "Adjust"
1587
  msgstr "Ajustar"
1588
 
1589
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1590
  msgid "Move (Absolute)"
1591
  msgstr "Mover (Absoluto)"
1592
 
1593
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1594
  #: SmartSlider3/Widget/Group/Arrow.php:44
1595
  msgid "Arrows"
1596
  msgstr "Flechas"
1597
 
1598
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:94
1599
  msgid "Align (Absolute)"
1600
  msgstr "Alinear (Absoluto)"
1601
 
1602
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:94
1603
  msgid "Numeric keys"
1604
  msgstr "Teclas numéricas"
1605
 
1606
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:99
1607
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:16
1608
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:20
1609
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:39
1610
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:58
1611
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:42
1612
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:41
1613
  msgid "Action"
1614
  msgstr "Acción"
1615
 
1616
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:101
1617
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:369
1618
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:171
1619
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1045
1620
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:80
1621
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:55
1622
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:43
1623
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:127
1624
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:148
1625
  msgid "Duplicate"
1626
  msgstr "Duplicar"
1627
 
1628
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:102
1629
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1133
1630
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:61
1631
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:44
1632
+ #: SmartSlider3/Application/Model/ModelSliders.php:579
1633
  msgid "Copy"
1634
  msgstr "Copiar"
1635
 
1636
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:103
1637
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1142
1638
  msgid "Paste"
1639
  msgstr "Pegar"
1640
 
1641
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:104
1642
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:198
1643
  msgid "Undo"
1644
  msgstr "Deshacer"
1645
 
1646
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:105
1647
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:189
1648
  msgid "Redo"
1649
  msgstr "Rehacer"
1650
 
1651
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:106
1652
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonSave.php:12
1653
  msgid "Save"
1654
  msgstr "Guardar"
1655
 
1656
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:110
1657
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:42
1658
  msgid "Play animations"
1659
  msgstr "Reproducir animaciones"
1660
 
1661
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:115
1662
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:87
1663
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:90
1664
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:107
1665
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:110
1666
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:265
1667
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:177
1668
  msgid "Clear device specific settings"
1669
  msgstr "Borrar las opciones específicas del dispositivo"
1670
 
1671
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:116
1672
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:90
1673
  msgid "Current layer, current device"
1674
  msgstr "Capa actual, dispositivo actual"
1675
 
1676
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:117
1677
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:87
1678
  msgid "Current layer, all devices"
1679
  msgstr "Capa actual, todos los dispositivos"
1680
 
1681
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:118
1682
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:110
1683
  msgid "All layers, current device"
1684
  msgstr "Todas las capas, el dispositivo actual"
1685
 
1686
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:119
1687
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:107
1688
  msgid "All layers, all devices"
1689
  msgstr "Todas las capas, todos los dispositivos"
1690
 
1691
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/safe-html.js:16
1692
  msgid "Unexpected response"
1693
  msgstr "Respuesta inesperada"
1694
 
1710
  msgstr "Ir al ID del slide"
1711
 
1712
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:21
1713
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrowFrontend.php:177
1714
+ #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBarFrontend.php:171
1715
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowRevealFrontend.php:186
1716
+ #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowTextFrontend.php:115
1717
  msgid "Previous slide"
1718
  msgstr "Anterior slide"
1719
 
1720
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:22
1721
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrowFrontend.php:180
1722
+ #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBarFrontend.php:174
1723
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowRevealFrontend.php:189
1724
+ #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowTextFrontend.php:118
1725
  msgid "Next slide"
1726
  msgstr "Siguiente slide"
1727
 
1769
 
1770
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:189
1771
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:257
1772
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:224
1773
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:361
1774
  msgid "Direction"
1775
  msgstr "Dirección"
1776
 
1777
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:190
1778
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:258
1779
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:93
1780
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:139
1781
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:77
1782
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:178
 
1783
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:76
1784
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:82
1785
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:82
1858
  msgid "Autoplay duration"
1859
  msgstr "Duración de la reproducción automática"
1860
 
1861
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:20
1862
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:18
1863
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:75
1864
  msgid "URL"
1865
  msgstr "URL"
1866
 
1867
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:25
1868
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:276
1869
  msgid "Search keyword"
1870
  msgstr "Buscar palabra clave"
1871
 
1872
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:32
1873
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:284
1874
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:16
1875
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:30
1876
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/GeneratorGroupMultisitePost.php:29
1882
  msgstr "Lightbox"
1883
 
1884
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:34
1885
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:413
1886
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:16
1887
  msgid "Insert"
1888
  msgstr "Insertar"
1889
 
1890
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:27
1891
  msgid "Oops, Something Went Wrong"
1892
  msgstr "Uy, algo salió mal"
1893
 
1894
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:51
1895
  msgid "Success"
1896
  msgstr "Éxito"
1897
 
1898
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:57
1899
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:414
1900
  msgid "Notice"
1901
  msgstr "Notificación"
1902
 
1903
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:34
1904
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:70
1905
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:130
1906
  msgid "Select image"
1907
  msgstr "Seleccionar imagen"
1908
 
1909
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:37
1910
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:73
1911
  msgid "Use Joomla selector"
1912
  msgstr "Usar selector de Joomla"
1913
 
1914
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:132
1915
  msgid "Use default selector"
1916
  msgstr "Usar selector por defecto"
1917
 
1919
  msgid "Deleted."
1920
  msgstr "Eliminado."
1921
 
1922
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:102
1923
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/setsandmore.js:93
1924
  #: SmartSlider3Pro/SplitText/Admin/Assets/js/manager.js:71
1925
  msgid "Static"
1926
  msgstr "Estático"
1927
 
1928
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:225
1929
  msgid "Save as New"
1930
  msgstr "Grabar como nuevo"
1931
 
1932
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:236
1933
  msgid "Saved."
1934
  msgstr "Grabado."
1935
 
1936
+ #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:72
1937
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:140
1938
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/splittextanimationmanagerelement.js:100
1939
  msgid "Enabled"
1940
  msgstr "Habilitado"
1941
 
1942
+ #: SmartSlider3/Application/Admin/Assets/js/element/columns-element.js:111
1943
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:71
1944
  msgid "Column"
1945
  msgstr "Columna"
1946
 
1947
+ #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:174
1948
  msgid "There is no layer available to be parent of the current layer!"
1949
  msgstr "¡No hay una capa disponible para ser raíz de la capa actual!"
1950
 
1951
+ #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:184
1952
  msgid "Pick the parent layer!"
1953
  msgstr "Selecciona la capa raíz (de origen)"
1954
 
1955
+ #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:203
1956
  msgid "Pick the align point of the parent layer!"
1957
  msgstr "¡Selecciona el punto de alineación en la capa raíz!"
1958
 
1959
+ #: SmartSlider3/Application/Admin/Assets/js/element/layerpicker.js:226
1960
  msgid "Pick the align point of the child layer!"
1961
  msgstr "¡Selecciona el punto de alineación en la capa enlazada!"
1962
 
1963
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:72
1964
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:320
1965
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:110
1966
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:24
1967
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:204
1968
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:275
1969
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:180
1970
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:248
1971
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:203
1972
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:289
1973
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:89
1975
  msgid "Advanced"
1976
  msgstr "Avanzado"
1977
 
1978
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:76
1979
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:88
1980
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:97
1981
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:109
1982
  #, javascript-format
1983
  msgid "Outer %s"
1984
  msgstr "Externo %s"
1985
 
1986
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:79
1987
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:88
1988
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:91
1989
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:100
1990
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:193
1991
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:168
1992
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
1993
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:476
 
1994
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
1995
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
1996
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
1997
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
1998
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:492
1999
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:515
2000
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:88
2001
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:199
2002
  #: SmartSlider3/Storage.php:949
2003
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:102
2004
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:70
2005
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:181
2006
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:229
2007
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:301
2008
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:75
2009
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:75
2010
  msgid "Left"
2011
  msgstr "Izquierda"
2012
 
2013
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:85
2014
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:94
2015
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:97
2016
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:106
2017
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:195
2018
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:470
2019
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:474
 
2020
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
2021
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
2022
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
2023
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
2024
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:490
2025
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:513
2026
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:89
2027
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:200
2028
  #: SmartSlider3/Storage.php:964
2029
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:104
2030
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:72
2031
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:190
2032
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:227
2033
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:302
2034
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:77
2035
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:77
2036
  msgid "Right"
2037
  msgstr "Derecha"
2038
 
2039
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:91
2040
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:94
2041
  msgid "Middle"
2042
  msgstr "En la mitad"
2043
 
2044
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:100
2045
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:103
2046
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:106
2047
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:109
2048
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:471
2049
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:475
 
2050
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
2051
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
2052
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
2053
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
2054
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:491
2055
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:514
2056
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:224
2057
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:107
2058
  #: SmartSlider3/Storage.php:994
2059
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:140
2060
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:77
2061
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:208
2062
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:228
2063
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:245
2064
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:303
2065
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:339
2066
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:108
2067
  msgid "Bottom"
2068
  msgstr "Inferior"
2069
 
2070
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1212
2071
  msgid "Layer(s)"
2072
  msgstr "Capa(s)"
2073
 
2074
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:270
2075
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:94
2076
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:251
2077
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:69
2078
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:94
2079
  msgid "Hide on"
2080
  msgstr "Ocultar en"
2081
 
2082
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:413
2083
  msgid "Rename"
2084
  msgstr "Renombrar"
2085
 
2086
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:420
2087
  msgid "Show/Hide in editor"
2088
  msgstr "Mostrar/ocultar en el editor"
2089
 
2090
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:550
2091
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:571
2092
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:35
2093
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabGoPro.php:21
2094
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:140
2095
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:276
2096
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:128
2097
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:184
2098
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:195
2099
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:197
2100
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:179
2101
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:136
2102
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:259
2103
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:163
2104
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:130
 
2105
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:45
2106
  msgid "Animation"
2107
  msgstr "Animación"
2108
 
2109
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/animations.js:107
2110
  msgid "Add animation"
2111
  msgstr "Agregar animación"
2112
 
2113
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/animations.js:117
2114
  msgid "Remove animations"
2115
  msgstr "Remover animación"
2116
 
2117
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/editor/Editor.js:51
2118
  msgid "Layer Animation - Basic"
2119
  msgstr "Animación de Capa - Básica"
2120
 
2121
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/editor/Editor.js:106
2122
  msgid "Add keyframe"
2123
  msgstr "Agregar fotograma clave"
2124
 
2128
  msgid "Loop"
2129
  msgstr "Bucle"
2130
 
2131
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/group/keyFrame/KeyFrame.js:189
 
2132
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:358
2133
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:359
2134
  msgid "Special Zero"
2135
  msgstr "Cero especial"
2136
 
2137
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/basic/group/keyFrame/KeyFrame.js:189
2138
  msgid "Keyframe"
2139
  msgstr "Fotograma clave"
2140
 
2141
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/animation/types/reveal/editor/Editor.js:42
2142
  msgid "Layer Animation - Reveal"
2143
  msgstr "Animación de Capa - Revelar"
2144
 
2145
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:160
2146
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/content.js:120
2147
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:355
2148
  msgid "Open/Close"
2149
  msgstr "Abrir/Cerrar"
2150
 
2151
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/content.js:12
2152
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:506
2153
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabContent.php:18
2154
  msgid "Content"
2155
  msgstr "Contenido"
2156
 
2157
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/contentAbstract.js:410
2158
  msgid "Child layers"
2159
  msgstr "Capas anidadas"
2160
 
2161
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/animatedHeading.js:69
2162
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/Assets/animatedHeading.js:21
2163
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:52
2164
  msgid "Animated heading"
2165
  msgstr "Encabezado Animado"
2166
 
2167
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/highlightedHeading.js:61
2168
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/Assets/highlightedHeading.js:22
2169
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:53
2170
  msgid "Highlighted heading"
2171
  msgstr "Encabezado destacado"
2172
 
2173
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/splittext-admin.js:105
2174
  msgid "Text animation in"
2175
  msgstr "Animación del texto entrando"
2176
 
2177
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/item/splittext-admin.js:118
2178
  msgid "Text animation out"
2179
  msgstr "Animación del texto saliendo"
2180
 
2181
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:12
2182
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:191
2183
  msgid "Layer"
2184
  msgstr "Capa"
2185
 
2186
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:15
2187
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:31
2188
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/BlockAddLayer.php:25
2189
  msgid "Row"
2190
  msgstr "Fila"
2191
 
2192
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:14
2193
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:161
2194
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:655
2195
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/section-slide.js:671
2196
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:56
2197
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
2198
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:82
2199
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:259
2200
  msgid "Slide"
2201
  msgstr "Slide"
2202
 
2203
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:177
2204
  msgid "Theme"
2205
  msgstr "Tema"
2206
 
2207
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:257
2208
  #, javascript-format
2209
  msgid "%s or newer required for this feature."
2210
  msgstr "Se requiere %s o más nuevo para esta característica."
2211
 
2212
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:295
2213
  msgid "This section requires activated Pro version."
2214
  msgstr "Esta sección requiere la versión Pro activada."
2215
 
2216
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:298
2217
  #, javascript-format
2218
  msgid "This block is not available in the free version. %s"
2219
  msgstr "Este bloque no está disponible en la versión gratuita. %s"
2220
 
2221
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/addLayer.js:298
2222
  #: SmartSlider3/Application/Admin/GoPro/ViewGoProIndex.php:24
2223
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:37
2224
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:51
2225
  #: SmartSlider3/Application/Admin/Layout/Block/Core/FreeNeedMore/FreeNeedMore.php:23
2226
+ #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:111
2227
  msgid "Go Pro"
2228
  msgstr "Ir a la versión Pro"
2229
 
2230
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:18
2231
  msgid "Editor settings"
2232
  msgstr "Opciones del editor"
2233
 
2234
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:46
2235
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:49
2236
  msgid "Upgrade to Pro"
2237
  msgstr "Actualizar a la versión Pro"
2238
 
2239
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:56
2240
  msgid "Guide settings"
2241
  msgstr "Opciones de la guía"
2242
 
2243
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:125
2244
  msgid "Smart snap"
2245
  msgstr "Ajuste inteligente al contenido"
2246
 
2247
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:132
2248
  msgid "Round to 5px"
2249
  msgstr "Redondear a 5px"
2250
 
2251
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:144
2252
  msgid "Ruler"
2253
  msgstr "Regla"
2254
 
2255
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:148
2256
  msgid "Clear guides"
2257
  msgstr "Borrar guías"
2258
 
2259
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:102
2260
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:14
2261
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:13
2262
  msgid "Activate Smart Slider 3 Pro"
2263
  msgstr "Activa Smart Slider 3 Pro"
2264
 
2265
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:108
2266
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:15
2267
  msgid "Activation is required to unlock all features!"
2268
  msgstr "¡Se requiere la activación para desbloquear todas las características!"
2269
 
2270
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:109
2271
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:15
2272
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:16
2273
  msgid ""
2277
  "Registra Smart Slider 3 en este dominio para activar las actualizaciones "
2278
  "automáticas, plantillas de sliders y la biblioteca de slides."
2279
 
2280
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:114
2281
  msgid "Skip"
2282
  msgstr "Saltar"
2283
 
2284
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:125
2285
  #: SmartSlider3/Application/Admin/Layout/Block/Core/Banner/BlockBannerActivate.php:17
2286
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardInfo/DashboardInfo.php:85
2287
  #: SmartSlider3/Application/Admin/Sliders/Pro/Template/Activate.php:27
2288
  msgid "Activate"
2289
  msgstr "Activar"
2290
 
2291
+ #: SmartSlider3/Application/Admin/Assets/js/license.js:225
 
 
 
 
 
 
 
 
2292
  msgid "Smart Slider 3 activated!"
2293
  msgstr "¡Smart Slider 3 activado!"
2294
 
 
2295
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:165
2296
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:166
2297
  msgid "Laptop"
2298
  msgstr "Laptop"
2299
 
2300
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:190
2301
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:198
2302
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:211
 
 
2303
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:65
2304
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:429
2305
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:455
2306
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:480
2307
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:505
2308
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:530
2309
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:220
2310
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:152
2311
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:154
2312
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:152
2313
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:267
2314
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:152
2315
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:254
2316
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:89
2317
  #: SmartSlider3/Widget/Group/Bullet.php:73
2318
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:116
2319
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:175
 
 
2320
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:175
2321
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:178
2322
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:248
2323
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:82
2324
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:222
2325
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:158
2326
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:247
2327
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:34
2328
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:58
2329
  #: SmartSlider3Pro/Widget/Indicator/IndicatorStripe/IndicatorStripe.php:31
2330
  msgid "Width"
2331
  msgstr "Ancho"
2332
 
2333
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:226
2334
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:234
2335
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:216
 
 
2336
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:78
2337
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:433
2338
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:459
2341
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:534
2342
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:99
2343
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:105
2344
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:227
2345
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:157
2346
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:159
2347
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:157
2348
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:271
2349
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:157
2350
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:258
2351
  #: SmartSlider3/Widget/Group/Bullet.php:84
2352
  #: SmartSlider3/Widget/Group/Thumbnail.php:77
2353
+ #: SmartSlider3/Widget/Group/Thumbnail.php:99
2354
+ #: SmartSlider3/Widget/Group/Thumbnail.php:121
2355
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:128
2356
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:187
2357
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:181
2358
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:184
2359
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:85
2360
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:163
2361
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:251
2362
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:59
2363
  #: SmartSlider3Pro/Widget/Indicator/IndicatorStripe/IndicatorStripe.php:35
2364
  msgid "Height"
2365
  msgstr "Alto"
2366
 
2367
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:414
2368
  #, javascript-format
2369
  msgid "Below %s pixels."
2370
  msgstr "Menos de %s pixeles."
2371
 
2372
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:417
2373
  #, javascript-format
2374
  msgid "Above %s pixels."
2375
  msgstr "Más de %s pixeles."
2376
 
2377
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:419
2378
  #, javascript-format
2379
  msgid "Between %s and %s pixels."
2380
  msgstr "Entre %s y %s pixeles."
2381
 
2382
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:189
2383
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:171
2384
  #, javascript-format, php-format
2385
  msgid "This slide is hidden on the following devices: %s"
2386
  msgstr "Este slide está oculto en los siguientes dispositivos: %s"
2387
 
2388
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:35
2389
  msgid "Data"
2390
  msgstr "Datos"
2391
 
2392
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:334
2393
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:44
2394
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:31
2395
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:29
2396
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsCustomPosts.php:54
2397
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:30
2398
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPostsByIDs.php:18
 
2399
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookAlbums.php:21
2400
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:23
2401
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:20
2415
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:22
2416
  #: SmartSlider3Pro/Generator/Common/YouTube/Sources/YouTubeByPlaylist.php:29
2417
  #: SmartSlider3Pro/Generator/Common/YouTube/Sources/YouTubeBySearch.php:28
 
2418
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:37
2419
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:34
2420
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:30
2430
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:30
2431
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:25
2432
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:26
 
 
2433
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:38
2434
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:37
2435
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:36
 
 
 
 
 
 
2436
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:37
2437
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:31
2438
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:27
2439
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:31
2440
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:37
2441
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:44
 
2442
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:28
2443
  #: SmartSlider3Pro/Generator/WordPress/BestWebSoft/Sources/BestWebSoftGallery.php:19
2444
  #: SmartSlider3Pro/Generator/WordPress/Custom/Sources/CustomCustom.php:26
2453
  msgid "Filter"
2454
  msgstr "Filtro"
2455
 
2456
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:335
2457
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:344
2458
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:112
2459
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:468
2460
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:55
2461
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:75
2462
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:216
2463
  msgid "No"
2464
  msgstr "No"
2465
 
2466
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:336
2467
  msgid "Clean HTML"
2468
  msgstr "Limpiar %s"
2469
 
2470
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:337
2471
  msgid "Remove HTML"
2472
  msgstr "Remover HTML"
2473
 
2474
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:343
2475
  msgid "Split by Chars"
2476
  msgstr "Separar por caracteres"
2477
 
2478
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:345
2479
  msgid "Strict"
2480
  msgstr "Estricto"
2481
 
2482
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:346
2483
  msgid "Respect words"
2484
  msgstr "Respetar palabras"
2485
 
2486
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:371
2487
  msgid "Find image"
2488
  msgstr "Encontrar imagen"
2489
 
2490
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:384
2491
  msgid "Find link"
2492
  msgstr "Encontrar enlace"
2493
 
2494
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:397
2495
  msgid "Remove links"
2496
  msgstr "Remover enlaces"
2497
 
2498
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:402
2499
  msgid "Remove line breaks"
2500
  msgstr "Remover saltos de línea"
2501
 
2502
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:410
2503
  msgid "Result"
2504
  msgstr "Resultado"
2505
 
2506
+ #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2507
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:169
2508
  msgid "Change slider type"
2509
  msgstr "Cambiar el tipo de slider"
2510
 
2511
+ #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:48
2512
  msgid ""
2513
  "Changing your slider type is irreversible. After changing your slider type, "
2514
  "<b>you will lose all slider type related settings</b>."
2516
  "Cambiar el tipo de slider es irreversible. Tras hacer este cambio, "
2517
  "<b>perderás todas las opciones relacionadas al tipo de slider</b>."
2518
 
2519
+ #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:52
2520
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:176
2521
  msgid "Slider type"
2522
  msgstr "Tipo de slider"
2523
 
2524
+ #: SmartSlider3/Application/Admin/Assets/js/slider/change-type.js:55
2525
  msgid "Convert"
2526
  msgstr "Convertir"
2527
 
2528
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:40
2529
  msgid "What do you want to create today?"
2530
  msgstr "¿Qué es lo que quieres crear hoy?"
2531
 
2532
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:43
2533
  msgid ""
2534
  "Use our powerful visual editor, or simply import one of our existing "
2535
  "template."
2537
  "Puedes usar nuestro poderoso editor visual, o simplemente importar una de "
2538
  "las plantillas existentes."
2539
 
2540
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:70
2541
  msgid "Create a New Project"
2542
  msgstr "Crear un nuevo proyecto"
2543
 
2544
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:73
2545
  msgid ""
2546
  "Start a new project from scratch and build exactly what you’ve imagined. You "
2547
  "can easily customize every pixels and create anything with layers."
2550
  "imaginado. Puedes personalizar fácilmente cada pixel y crear cualquier cosa "
2551
  "que desees con las capas."
2552
 
2553
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:94
2554
  msgid "Start with a Template"
2555
  msgstr "Comenzar con una plantilla"
2556
 
2557
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:97
2558
  msgid ""
2559
  "Start with a template and make it your own with the innovative drag and drop "
2560
  "interface. You can choose from hundreds of premade templates."
2563
  "arrastrar y soltar. Puedes seleccionar entre cientos de plantillas "
2564
  "prediseñadas."
2565
 
2566
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:101
2567
  msgid "or import your own files"
2568
  msgstr "o puedes importar tus propios archivos"
2569
 
2570
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:118
2571
  msgid "Create new project"
2572
  msgstr "Crear un nuevo proyecto"
2573
 
2574
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:124
2575
  msgid "Project type"
2576
  msgstr "Tipo de proyecto"
2577
 
2578
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:127
2579
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
2580
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:81
2581
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
2582
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:53
2583
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:183
2584
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:96
2585
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:252
2586
  msgid "Slider"
2587
  msgstr "Slider"
2588
 
2589
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:131
2590
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:26
2591
  msgid "Block"
2592
  msgstr "Bloque"
2593
 
2594
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:163
2595
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:224
2596
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:232
2597
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:18
2598
  msgid "Full page"
2599
  msgstr "Página completa"
2600
 
2601
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:183
2602
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:28
2603
  msgid "Carousel"
2604
  msgstr "Carrusel"
2605
 
2606
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:187
2607
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:29
2608
  msgid "Showcase"
2609
  msgstr "Exhibición"
2610
 
2611
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:200
2612
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:232
2613
  msgid "Pro"
2614
  msgstr "Pro"
2615
 
2616
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:203
2617
  #: SmartSlider3/Application/Admin/Layout/AbstractLayoutMenu.php:47
2618
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:34
2619
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:57
2620
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:33
2621
  msgid "Settings"
2622
  msgstr "Ajustes"
2623
 
2624
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:208
2625
  msgid "My project"
2626
  msgstr "Mi proyecto"
2627
 
2628
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:222
2629
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:15
2630
  msgid "Boxed"
2631
  msgstr "Encajonado"
2632
 
2633
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:223
2634
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:79
2635
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:151
2636
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:164
2637
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:17
2638
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:91
2639
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:148
2640
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:247
2641
  msgid "Full width"
2642
  msgstr "Ancho completo"
2643
 
2644
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:227
2645
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:376
2646
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:298
2647
  msgid "Layout"
2648
  msgstr "Diseño"
2649
 
2650
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:236
2651
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:45
2652
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:46
2653
  msgid "Slide width"
2654
  msgstr "Ancho del slide"
2655
 
2656
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:242
2657
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:55
2658
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:56
2659
  msgid "Slide height"
2660
  msgstr "Altura del slide"
2661
 
2662
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:250
2663
  msgid "Create"
2664
  msgstr "Crear"
2665
 
2666
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:376
2667
  msgid "Join The Smart Slider 3 Community"
2668
  msgstr "Únete a la Comunidad de Smart Slider 3"
2669
 
2670
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:378
2671
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardNewsletter.php:22
2672
  msgid ""
2673
  "Join more than 120,000 subscribers and get access to the latest slider "
2678
  "plantillas de sliders, consejos, tutoriales y otros contenidos exclusivos en "
2679
  "tu correo."
2680
 
2681
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:392
2682
  #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardNewsletter.php:32
2683
  msgid "Subscribe"
2684
  msgstr "Suscribirse"
2685
 
2686
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:296
2687
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:71
2688
  msgid "Change group"
2689
  msgstr "Cambiar grupo"
2690
 
2691
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:309
2692
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/GeneratorGroupEasysocial.php:35
2693
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:29
2694
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialGroups.php:23
 
 
 
2695
  msgid "Groups"
2696
  msgstr "Grupos"
2697
 
2698
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:313
2699
  msgid "Set"
2700
  msgstr "Fijar"
2701
 
2702
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:67
2703
  msgid "Up"
2704
  msgstr "Arriba"
2705
 
2706
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:77
2707
  msgid "Insert group"
2708
  msgstr "Insertar grupo"
2709
 
2710
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:94
2711
+ #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:67
2712
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:134
2713
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
2714
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:43
2715
  msgid "Group"
2716
  msgstr "Grupo"
2717
 
2718
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:87
2719
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:134
2720
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:207
2721
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:158
2722
  msgid "Move to trash"
2723
  msgstr "Mover a la papelera"
2724
 
2725
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:30
2726
  msgid "empty the trash"
2727
  msgstr "vaciar la papelera"
2728
 
2729
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:119
2730
  msgid "Delete permanently"
2731
  msgstr "Eliminar permanentemente"
2732
 
2733
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:165
2734
  msgid "delete this slider"
2735
  msgstr "borrar slider"
2736
 
2737
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:69
2738
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:61
2739
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:47
2740
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:199
2741
  msgid "Publish"
2742
  msgstr "Publicar"
2743
 
2744
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:76
2745
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:48
2746
  msgid "Unpublish"
2747
  msgstr "Despublicar"
2748
 
2749
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:85
2750
  msgid "Edit generator"
2751
  msgstr "Editar generador"
2752
 
2753
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:94
2754
  msgid "Set as first"
2755
  msgstr "Establecer como el primero"
2756
 
2757
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:105
2758
  msgid "Convert to slide"
2759
  msgstr "Convertir a slider"
2760
 
2761
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:254
2762
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:495
2763
  msgid "Copy slide to"
2764
  msgstr "Copiar slide a"
2765
 
2766
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:271
2767
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:305
2768
  msgid "Add post"
2769
  msgstr "Agregar artículo"
2770
 
2771
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:311
2772
  msgid "Please select a Post first!"
2773
  msgstr "¡Por favor seleccionar un Artículo primero!"
2774
 
2775
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:457
2776
  msgid "delete these slides"
2777
  msgstr "eliminar estos slides"
2778
 
2779
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:457
2780
  msgid "delete this slide"
2781
  msgstr "eliminar este slide"
2782
 
2789
  msgstr "Efectos"
2790
 
2791
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:60
2792
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:31
2793
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:70
2794
  msgid "Shape divider"
2795
  msgstr "Divisor de forma"
2796
 
2871
 
2872
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:114
2873
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:43
2874
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:141
2875
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:199
2876
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:260
2877
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:35
2878
  msgid "Animate"
2880
 
2881
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:115
2882
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:52
2883
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:197
2884
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:477
2885
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:86
2886
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:57
2887
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:132
2888
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:78
2889
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:179
2890
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:217
2891
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:363
 
2892
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:83
2893
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:83
2894
  msgid "Horizontal"
2909
 
2910
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:122
2911
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:53
2912
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:202
2913
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:478
2914
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:104
2915
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:58
2916
  #: SmartSlider3/Storage.php:2242
2917
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:133
2918
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:79
2919
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:180
2920
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:364
 
 
2921
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:84
2922
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:84
2923
  msgid "Vertical"
2925
 
2926
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:125
2927
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:126
2928
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:302
2929
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:151
2930
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:209
2931
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:72
2932
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:78
2933
  msgid "Scroll"
2955
  msgstr "Ambos"
2956
 
2957
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:140
2958
+ #: SmartSlider3/Storage.php:4247
2959
  msgid "To bottom"
2960
  msgstr "Parte inferior"
2961
 
2962
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:141
2963
+ #: SmartSlider3/Storage.php:4227
2964
  msgid "To top"
2965
  msgstr "Parte superior"
2966
 
2967
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:48
2968
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:53
2969
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:168
2970
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:169
2971
  #: SmartSlider3/Widget/Group/Autoplay.php:35
2972
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:127
2973
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:174
2974
  msgid "Autoplay"
2975
  msgstr "Reproducción Automática"
2976
 
2977
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:65
2978
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:122
2979
  msgid "Slide duration"
2980
  msgstr "Duración del Slide"
2981
 
3015
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:97
3016
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:109
3017
  msgid "Enter"
3018
+ msgstr "Entrar"
3019
 
3020
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:98
3021
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:108
3039
  msgstr "Reanudar con un medio"
3040
 
3041
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:38
3042
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:225
3043
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:149
3044
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:217
3045
  msgid "Controls"
3046
  msgstr "Controles"
3047
 
3157
 
3158
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:103
3159
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:104
3160
+ msgid "Delayed (for lightbox/tabs)"
3161
+ msgstr "Retardo (para lighbox/fichas)"
3162
+
3163
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:105
3164
+ msgid ""
3165
+ "Delays the loading of the slider until its container gets visible. Useful "
3166
+ "when you display the slider in a lightbox or tab."
3167
+ msgstr ""
3168
+ "Muestra la carga de un slider hasta que su contenedor se haga visible. Es "
3169
+ "útil cuando quieres mostrar un slider en un lightbox o en una lengüeta o tab."
3170
+
3171
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:111
3172
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:112
3173
  msgid "Slider CSS classes"
3174
  msgstr "Clases CSS del slider"
3175
 
3176
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:113
3177
  msgid "You can put custom CSS classes to the slider's container."
3178
  msgstr ""
3179
  "Puedes ingresar tus clases CSS personalizadas en el contenedor del slider."
3180
 
3181
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:124
3182
  msgid "JavaScript callbacks"
3183
  msgstr "Callbacks JavaScript"
3184
 
3185
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:131
3186
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:132
3187
  msgid "Post IDs"
3188
  msgstr "ID del artículo"
3189
 
3190
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:131
3191
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:132
3192
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:43
3193
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:50
3194
  msgid "one per line"
3195
  msgstr "uno por línea"
3196
 
3197
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:133
3198
  msgid "The cache of the posts with the given ID will be cleared upon save."
3199
  msgstr "El cache de los artículos que tienen un ID se limpiará al grabar."
3200
 
3201
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:76
3202
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:77
3203
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:64
3204
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:82
3205
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:216
3206
  msgid "Thumbnail"
3207
  msgstr "Miniatura"
3212
 
3213
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:81
3214
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:83
3215
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:70
3216
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:72
3217
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:97
3218
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:99
3219
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:86
3220
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:88
3221
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:53
3222
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:55
3223
  msgid "ARIA label"
3297
  msgid "Slider design"
3298
  msgstr "Diseño del slider"
3299
 
3300
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:145
3301
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:322
3302
+ msgid "Slider background image"
3303
+ msgstr "Imagen de fondo del slider"
3304
+
3305
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:153
3306
+ msgid "Fixed"
3307
+ msgstr "Fijo"
3308
+
3309
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:166
3310
+ msgid "Background video"
3311
+ msgstr "Video de fondo"
3312
+
3313
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:173
3314
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:236
3315
+ msgid "Muted"
3316
+ msgstr "Mudo"
3317
+
3318
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:174
3319
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:237
3320
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:209
3321
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:213
3322
+ #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:132
3323
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:187
3324
+ msgctxt "Video/Audio play"
3325
+ msgid "Loop"
3326
+ msgstr "Loop"
3327
+
3328
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:175
3329
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:243
3330
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:290
3331
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:130
3332
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:210
3333
+ msgid "Fill mode"
3334
+ msgstr "Modo de relleno"
3335
+
3336
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:190
3337
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:69
3338
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:74
3339
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:154
3340
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:152
3341
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:100
3342
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:68
3343
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:73
3345
  msgid "Align"
3346
  msgstr "Alinear"
3347
 
3348
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:202
3349
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:204
3350
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:109
3351
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:113
3352
  msgid "Margin"
3353
  msgstr "Margen"
3354
 
3355
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:205
3356
  msgid "Puts a fix margin around your slider."
3357
  msgstr "Coloca un margen al rededor de tu slider."
3358
 
3359
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:215
 
3360
  msgid "Perspective"
3361
  msgstr "Perspectiva"
3362
 
3363
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:51
3364
+ #: SmartSlider3/Renderable/Item/Image/ItemImage.php:172
3365
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:256
3366
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:346
3367
+ #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:161
3368
+ msgid "Optimize"
3369
+ msgstr "Optimizar"
3370
+
3371
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:56
3372
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:219
3373
  msgid "Loading"
3374
  msgstr "Carga"
3375
 
3376
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:62
3377
  msgid "Instant"
3378
  msgstr "Al instante"
3379
 
3380
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:63
3381
  msgid "After page loaded"
3382
  msgstr "Después de que la página sea cargada"
3383
 
3384
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:64
3385
  msgid "After delay"
3386
+ msgstr "Después de un retraso"
3387
 
3388
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:76
3389
+ msgid "Loading type"
3390
+ msgstr "Tipo de carga"
3391
+
3392
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:77
3393
+ msgid ""
3394
+ "If your slider is above the fold, you can load it immediately. Otherwise, "
3395
+ "you can load it only after the page has loaded."
3396
+ msgstr ""
3397
+ "Si tu slider esta por arriba del contenido puedes cargarlo inmediatamente. "
3398
+ "De otra forma, puedes cargarlo solo después que la página haya cargado."
3399
+
3400
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:81
3401
  msgid "Load delay"
3402
  msgstr "Retraso de carga"
3403
 
3404
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:86
3405
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:90
3406
  msgid "Play when visible"
3407
  msgstr "Reproducir cuando esta visible"
3408
 
3409
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:91
3410
  msgid ""
3411
  "Makes sure that the autoplay and layer animations only start when your "
3412
  "slider is visible."
3414
  "Permite que la reproducción automática y las animaciones de capas solo "
3415
  "comiencen cuando tu slider esté visible."
3416
 
3417
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:93
3418
  msgid "At"
3419
  msgstr "En"
3420
 
3421
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:101
3422
+ msgid "Slide background images"
3423
+ msgstr "Imagenes de fondo del slide"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3424
 
3425
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:111
3426
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3427
  msgid "Loading mode"
3428
  msgstr "Modo de carga"
3429
 
3430
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:114
3431
  msgid "Delayed loading"
3432
  msgstr "Carga retardada"
3433
 
3434
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:115
3435
  msgid "Lazy loading"
3436
  msgstr "Carga diferida"
3437
 
3438
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:128
3439
  msgid ""
3440
  "You can speed up your site's loading by delaying the slide background images."
3441
  msgstr ""
3442
  "Puedes mejorar la velocidad de carga de tu sitio al retrasar la carga de las "
3443
  "imágenes de fondo de los slides."
3444
 
3445
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:135
3446
  msgid "Load neighbor"
3447
  msgstr "Cargar"
3448
 
3449
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:136
3450
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:104
3451
  #: SmartSlider3/Application/Model/ModelGenerator.php:401
 
3452
  msgctxt "Unit"
3453
  msgid "slides"
3454
  msgstr "slides"
3455
 
3456
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:151
 
 
 
 
 
3457
  #, php-format
3458
+ msgid ""
3459
+ "Convert to WebP and image resizing require a lot of memory. Lift the memory "
3460
+ "limit%s if you get a blank page."
3461
+ msgstr ""
3462
+ "Convertir al formato WebP y redimensionar imágenes requiere de mucha "
3463
+ "memoria. Incrementa el límite de memoria %s si obtienes una página en blanco."
3464
+
3465
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:157
3466
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:264
3467
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:327
3468
+ msgid "Convert to WebP"
3469
+ msgstr "Convertir a WebP"
3470
+
3471
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:168
3472
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:186
3473
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:280
3474
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:345
3475
+ msgid "Resize"
3476
+ msgstr "Redimensionar"
3477
+
3478
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:176
3479
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:272
3480
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:336
3481
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:252
3482
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:260
3483
+ msgid "Quality"
3484
+ msgstr "Calidad"
3485
+
3486
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:198
3487
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:289
3488
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:355
3489
+ msgid "Default width"
3490
+ msgstr "Ancho por defecto"
3491
+
3492
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:204
3493
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:293
3494
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:361
3495
+ msgid "Medium width"
3496
+ msgstr "Ancho medio"
3497
+
3498
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:209
3499
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:366
3500
+ #, fuzzy
3501
+ #| msgid "Medium Light"
3502
+ msgid "Medium height"
3503
+ msgstr "Fina Media"
3504
+
3505
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:214
3506
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:297
3507
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:371
3508
+ msgid "Small width"
3509
+ msgstr "Ancho pequeño"
3510
+
3511
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:219
3512
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:376
3513
+ #, fuzzy
3514
+ #| msgid "Small Light"
3515
+ msgid "Small height"
3516
+ msgstr "Pequeño Claro"
3517
+
3518
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:224
3519
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:301
3520
+ msgid "Retina"
3521
+ msgstr "Retina"
3522
 
3523
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:229
3524
+ msgid "Resize Thumbnail"
3525
+ msgstr "Redimensionar miniatura"
 
3526
 
3527
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:237
3528
+ msgid "Thumbnail Quality"
3529
+ msgstr "Calidad de la miniatura"
 
 
 
 
 
3530
 
3531
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:245
3532
  msgid "Thumbnail width"
3533
  msgstr "Ancho de la miniatura"
3534
 
3535
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:250
3536
  msgid "Thumbnail height"
3537
  msgstr "Altura de la miniatura"
3538
 
3539
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:261
3540
+ msgid "Layer images"
3541
+ msgstr "Imágenes de capas"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3542
 
3543
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:308
3544
  msgid "Base64 embed"
3545
  msgstr "Base64 embebido"
3546
 
3547
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:309
3548
  msgid "Embeds the layer images to the page source, reducing the requests."
3549
  msgstr ""
3550
  "Incrusta las capas de imágenes en el código fuente de la página, reduciendo "
3551
  "así la cantidad de peticiones."
3552
 
3553
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:311
3554
  msgid "Max file size"
3555
  msgstr "Tamaño de archivo máximo"
3556
 
3557
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:387
3558
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:395
3559
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:80
3560
  #: SmartSlider3/Storage.php:522
3561
  msgid "Other"
3562
  msgstr "Otro"
3563
 
3564
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:399
3565
  msgid "JetPack Photon image optimizer"
3566
  msgstr "Optimizador de imagen JetPack Photon"
3567
 
3568
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:404
3569
  msgid "Background video on mobile"
3570
  msgstr "Fondo de video en móvil"
3571
 
3593
  msgstr "Max"
3594
 
3595
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:248
3596
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:159
3597
  msgid "Breakpoints"
3598
  msgstr "Puntos de parada o \"breakpoints\""
3599
 
3600
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:311
3601
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:162
3602
  msgid ""
3603
  "Breakpoints define the browser width in pixel when the slider switches to a "
3604
  "different device."
3608
 
3609
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:313
3610
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:400
3611
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:84
3612
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFonts.php:46
3613
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:163
3614
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:211
3615
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:231
3616
  #: SmartSlider3/Application/Admin/Sliders/ViewSlidersImport.php:86
 
3617
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:120
3618
  #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:104
3619
  #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:96
3655
  "configurarla correctamente!"
3656
 
3657
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:41
3658
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:103
3659
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:154
3660
  #: SmartSlider3/Application/Model/ModelGenerator.php:400
3661
  msgid "Slides"
3662
  msgstr "Slides"
3682
  msgid "Randomize"
3683
  msgstr "Aleatorio"
3684
 
3685
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:70
3686
+ msgid "Randomize slides"
3687
+ msgstr "Aleatorizar los slides"
3688
+
3689
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:71
3690
  msgid "Randomize first"
3691
  msgstr "El primero aleatorio"
3692
 
3693
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:72
3694
  msgid "Cache support"
3695
  msgstr "Soporte para cache"
3696
 
3697
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:73
3698
  msgid "Cache variations"
3699
  msgstr "Variaciones del cache"
3700
 
3701
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:84
3702
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:85
3703
  msgid "Reverse"
3704
  msgstr "Reverso"
3705
 
3706
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:86
3707
  msgid "You can make your slides appear in the slider in a reversed order."
3708
  msgstr "Puedes hacer que tu slides aparezcan en un orden inverso."
3709
 
3710
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:89
3711
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:91
3712
  msgid "Max count"
3713
  msgstr "Conteo máximo"
3714
 
3715
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:92
3716
  msgid ""
3717
  "You can limit how many slides you want to show from your slider. It's best "
3718
  "used with the Randomize feature, to improve the experience."
3720
  "Puedes limitar cuantos slides quieres mostrar en tu slider. Una buena idea "
3721
  "es utilizarlo con la opción de Aleatorizar para mejorar la experiencia."
3722
 
3723
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:95
3724
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:96
3725
  msgid "Maintain session"
3726
  msgstr "Mantener sesión"
3727
 
3728
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:97
3729
  msgid ""
3730
  "The slider continues from the last viewed slide when the visitor comes back "
3731
  "to the page."
3733
  "El slider continua desde el último slide que fue visto cuando el usuario "
3734
  "regresa a la página."
3735
 
3736
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:102
3737
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:103
3738
  msgid "Backgrounds in lightbox"
3739
  msgstr "Fondos en el lightbox"
3740
 
3741
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:104
3742
  msgid ""
3743
  "Creates a lightbox from your slide background images. This feature only "
3744
  "works if all slides have background images."
3746
  "Crea un lightbox con las imágenes de fondo de tu slide. Esta característica "
3747
  "solo funciona si todos los slides tienen una imagen de fondo."
3748
 
3749
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:110
3750
  msgid "Show label"
3751
  msgstr "Mostrar etiqueta"
3752
 
3753
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:113
3754
  msgid "Only slide name"
3755
  msgstr "Solo el nombre del slide"
3756
 
3757
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:114
3758
  msgid "Slide name and description"
3759
  msgstr "Nombre y descripción del slide"
3760
 
3761
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:125
3762
  msgid "Background parallax"
3763
  msgstr "Fondo parallax"
3764
 
3765
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:134
3766
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:67
3767
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:173
3768
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:167
3769
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:352
3770
  msgid "Strength"
3771
  msgstr "Fuerza"
3772
 
3773
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:136
3774
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:70
3775
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:176
3776
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:170
3777
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:355
3778
  msgid "Super soft"
3779
  msgstr "Super suave"
3780
 
3781
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:137
3782
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:71
3783
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:177
3784
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:171
3785
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:356
3786
  msgid "Soft"
3787
  msgstr "Suave"
3788
 
3789
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:139
3790
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:73
3791
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:179
3792
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:173
3793
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:358
3794
  msgid "Strong"
3795
  msgstr "Fuerte"
3796
 
3797
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:140
3798
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:74
3799
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:180
3800
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:174
3801
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:359
3802
  msgid "Super strong"
3803
  msgstr "Super fuerte"
3804
 
3823
  msgid "No records found for the filter"
3824
  msgstr "No se encontraron entradas para el filtro"
3825
 
3826
+ #: SmartSlider3/Application/Admin/Generator/ControllerGenerator.php:212
3827
  msgid "Authentication successful."
3828
  msgstr "Autenticación exitosa."
3829
 
3830
+ #: SmartSlider3/Application/Admin/Generator/Template/CreateStep1Groups.php:62
3831
  msgid "Not installed"
3832
  msgstr "No instalado"
3833
 
3834
+ #: SmartSlider3/Application/Admin/Generator/Template/CreateStep1Groups.php:70
3835
  msgid "Visit"
3836
  msgstr "Visitar"
3837
 
3856
 
3857
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:58
3858
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:84
3859
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:102
3860
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:121
3861
  msgid "Generator"
3862
  msgstr "Generador"
3863
 
4022
  "que tienen soporte para la edición son los siguientes: %s."
4023
 
4024
  #: SmartSlider3/Application/Admin/Help/ViewHelpIndex.php:28
4025
+ #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:105
4026
  msgid "Help center"
4027
  msgstr "Centro de ayuda"
4028
 
4115
  msgid "Why upgrade to Smart Slider 3 Pro?"
4116
  msgstr "¿Por qué actualizarse a Smart Slider 3 Pro?"
4117
 
4118
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:24
4119
+ msgid "120+ slider templates"
4120
+ msgstr "Más de 120 plantillas de sliders"
 
 
 
 
4121
 
4122
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:28
 
 
 
 
4123
  msgid "Full slide library access"
4124
  msgstr "Acceso completo a la Biblioteca de Slides"
4125
 
4126
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:32
4127
+ msgid "20 new layers"
4128
+ msgstr "20 nuevas capas"
4129
+
4130
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:36
4131
  msgid "Extra advanced options"
4132
  msgstr "Opciones extra avanzadas"
4133
 
4134
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:40
4135
+ msgid "New animations & effects"
4136
+ msgstr "Nuevas animaciones y efectos"
4137
+
4138
+ #: SmartSlider3/Application/Admin/Layout/Block/Dashboard/DashboardManager/Boxes/DashboardUpgradePro.php:44
4139
  msgid "Lifetime update & support"
4140
  msgstr "Soporte y actualizaciones de por vida"
4141
 
4162
 
4163
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:129
4164
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:62
4165
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:150
4166
  msgid "Absolute"
4167
  msgstr "Absoluto"
4168
 
4173
  msgid "Basic"
4174
  msgstr "Básico"
4175
 
4176
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:42
4177
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:46
4178
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:37
4179
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:41
4180
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:46
4181
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:50
4182
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:334
4183
  msgid "Inner align"
4184
  msgstr "Alineación Interna"
4185
 
4186
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:47
4187
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:42
4188
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:51
4189
  msgid "Positions the layers inside horizontally."
4190
  msgstr "Posiciona horizontalmente las capas que se encuentran dentro."
4191
 
4192
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:50
4193
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:54
4194
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:160
4195
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:44
4196
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:48
4197
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:241
4198
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:247
4199
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:335
4200
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:341
4201
  msgid "Vertical align"
4202
  msgstr "Alineación vertical"
4203
 
4204
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:55
4205
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:49
4206
  msgid "Positions the layers inside vertically."
4207
  msgstr "Posiciona verticalmente las capas que se encuentran dentro."
4208
 
4209
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:68
4210
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:95
4211
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:84
4212
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:113
4213
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:55
4214
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:165
4215
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:178
4216
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:143
4217
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:177
4218
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:196
4219
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:188
4220
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:227
4221
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:125
4222
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:149
4223
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:289
4224
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:171
4225
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:146
4226
  msgid "Target window"
4227
  msgstr "Ventana de destino"
4228
 
4229
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:89
4230
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:90
4231
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:67
4232
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:69
4233
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:117
4234
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:118
4235
+ msgid "Background image"
4236
+ msgstr "Imagen de fondo"
4237
+
4238
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:100
4239
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:101
4240
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:79
4241
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:80
4242
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:128
4243
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:129
4244
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:273
4245
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:123
4246
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:124
4247
  msgid "Focus"
4248
  msgstr "Enfoque"
4249
 
4250
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:102
4251
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:81
4252
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:130
4253
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:125
4254
  msgid ""
4255
  "You can set the starting position of a background image. This makes sure "
4256
  "that the selected part will always remain visible, so you should pick the "
4260
  "que la parte seleccionada siempre permanezca visible, así que selecciona la "
4261
  "parte más importante."
4262
 
4263
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:114
4264
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:137
4265
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:141
4266
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:184
4267
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:41
4268
  msgid "Background"
4269
  msgstr "Fondo"
4270
 
4271
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:123
4272
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:101
4273
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:150
4274
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:314
4275
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:116
4276
  msgid "Gradient"
4277
  msgstr "Degradado"
4278
 
4279
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:129
4280
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:107
4281
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:156
4282
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:320
4283
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:121
4284
  msgid "Color end"
4285
  msgstr "Color final"
4286
 
4287
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:201
4288
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:90
4289
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:167
4290
  msgid "Max width"
4291
  msgstr "Ancho máximo"
4292
 
4293
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:53
4294
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:59
4295
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:64
4296
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:141
4297
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:147
4298
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:150
4299
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:93
4300
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:111
4301
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:110
4302
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:41
4303
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:36
4304
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:55
4305
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:33
4306
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:40
4307
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:39
4328
  msgid "With margins you can create distance between your layers."
4329
  msgstr "Con los márgenes puedes crear distancia entre tus capas."
4330
 
4331
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:182
4332
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:234
4333
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:242
4334
  msgid "Responsive"
4335
  msgstr "Responsivo"
4336
 
4337
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:187
4338
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:193
4339
  msgid "Linked to"
4340
  msgstr "Enlazado a"
4341
 
4342
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:194
4343
  msgid ""
4344
  "You can link your layer to another layer on the same level. This way your "
4345
  "layer won't be positioned to the slide, but the other layer."
4347
  "Puedes enlazar tu capa con otra capa del mismo nivel. De esta manera la capa "
4348
  "no se posicionará en el slide, sino en relación a la otra capa."
4349
 
4350
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:244
4351
  msgid "Hide when variable empty"
4352
  msgstr "Ocultar cuando la variable este vacía"
4353
 
4354
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:253
4355
  msgid "Text scale"
4356
  msgstr "Escalar"
4357
 
4358
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:264
4359
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:176
 
 
 
 
 
 
 
 
 
 
 
 
 
4360
  msgid "Device specific settings"
4361
  msgstr "Opciones específicas del dispositivo"
4362
 
4363
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:264
4364
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:176
4365
  msgid "Clear"
4366
  msgstr "Limpiar"
4367
 
4368
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:266
4369
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:178
4370
  msgid "Erases all device specific changes you made on the current device."
4371
  msgstr ""
4372
  "Borra todos los cambios específicos para el dispositivo actual que hayas "
4373
  "hecho."
4374
 
4375
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:275
4376
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:70
4377
  msgid "Effect"
4378
  msgstr "Efecto"
4379
 
4380
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:278
4381
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:279
4382
  msgid "Parallax"
4383
  msgstr "Parallax"
4384
 
4385
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:280
4386
  msgid "More parallax options in slider settings -> Layer animations tab."
4387
  msgstr ""
4388
  "Puedes encontrar más opciones del parallax en la opción Preferencias del "
4389
  "slider > Animaciones de capa."
4390
 
4391
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:298
4392
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:305
 
4393
  msgid "Crop"
4394
  msgstr "Cortar"
4395
 
4396
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:303
4397
  msgid "Mask"
4398
  msgstr "Mascara"
4399
 
4400
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:306
4401
  msgid "If your content is larger than the layer, you can crop it to fit."
4402
  msgstr ""
4403
  "Si el contenido es más grande que la capa, puedes recortarlo para que encaje."
4404
 
4405
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:309
4406
  msgid "Rotation"
4407
  msgstr "Rotación"
4408
 
4409
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:326
4410
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:328
4411
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:205
4412
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:207
4413
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:281
4415
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:182
4416
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
4417
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:190
4418
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:270
4419
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:272
4420
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:311
4421
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:313
4422
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:196
4424
  msgid "CSS Class"
4425
  msgstr "Clase CSS"
4426
 
4427
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:329
4428
  msgid "You can add a custom CSS class on the layer container."
4429
  msgstr ""
4430
  "Puedes agregar una clase CSS personalizada en el contenedor de la capa."
4435
 
4436
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:118
4437
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:185
4438
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:226
4439
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:154
4440
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:190
4441
  msgid "Spacing"
4442
  msgstr "Espaciado"
4459
  "¿Necesitas cambiar el tamaño de la fuente para cada dispositivo? Utiliza la "
4460
  "opción \"escala de texto\"."
4461
 
4462
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:37
4463
  msgid "Columns"
4464
  msgstr "Columnas"
4465
 
4466
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:54
4467
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:63
4468
  msgid "Gutter"
4469
  msgstr "Canal"
4470
 
4471
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:64
4472
  msgid "Creates space between the columns"
4473
  msgstr "Crea un espacio entre las columnas"
4474
 
4475
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:67
4476
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:75
4477
  msgid "Wrap after"
4478
  msgstr "Colapsar"
4479
 
4480
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:76
4481
  msgid "Breaks the columns to the given amount of rows."
4482
  msgstr "Divide las columnas en la cantidad ingresada de filas."
4483
 
4484
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:82
4485
  msgid "Makes the row fill the available vertical space"
4486
  msgstr "Hace que la fila rellene todo el espacio vertical disponible"
4487
 
4488
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
4489
+ #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:92
4490
+ #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:31
4491
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:79
4492
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/Assets/Admin/arrow.js:12
4493
+ msgid "Slide title"
4494
+ msgstr "Título del slide"
4495
+
4496
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:60
4497
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:96
4498
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:35
4499
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:67
4500
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:107
4501
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:78
4502
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:173
4503
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
4504
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:172
4505
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:269
4506
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:273
4507
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:50
4508
  msgid "Description"
4509
  msgstr "Descripción"
4510
 
4511
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:113
4512
  msgid "Custom lightbox image"
4513
  msgstr "Imagen de lightbox personalizada"
4514
 
4515
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:118
4516
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/SlideBox.php:72
 
4517
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:56
4518
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:73
4519
  msgid "Published"
4520
  msgstr "Publicado"
4521
 
4522
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:130
4523
  msgid "Publish on"
4524
  msgstr "Publicar en"
4525
 
4526
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:131
4527
  msgid "Unpublish on"
4528
  msgstr "Despublicar en"
4529
 
4530
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:136
4531
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:141
4532
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:105
4533
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:47
4534
  msgid "Thumbnail type"
4535
  msgstr "Tipo de miniatura"
4536
 
4537
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:139
4538
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:108
4539
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:50
4540
  #: SmartSlider3/Form/Element/BackgroundImage.php:30
4541
+ #: SmartSlider3Pro/Renderable/Item/Video/Assets/video.js:21
4542
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:37
4543
  msgid "Video"
4544
  msgstr "Video"
4545
 
4546
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:142
4547
  msgid ""
4548
  "If you have a video on your slide, you can put a play icon on the thumbnail "
4549
  "image to indicate that."
4551
  "Si tienes un video en tu slide, puedes incluir un ícono de reproducción "
4552
  "(play) en la imagen miniatura para indicar que puede reproducirse."
4553
 
4554
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:222
4555
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:166
4556
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:167
4557
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:172
4558
  #, php-format
4559
  msgid ""
4560
  "Video autoplaying has a lot of limitations made by browsers. %1$sLearn about "
4563
  "La reproducción automática tiene muchas limitaciones en los navegadores. "
4564
  "%1$sObtén más información.%2$s"
4565
 
4566
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:224
4567
  msgid "Slide background video"
4568
  msgstr "Fondo de video del slide"
4569
 
4570
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:238
4571
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:239
4572
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:222
4573
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:223
4574
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:219
4575
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4576
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:142
4577
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:143
4578
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:203
4579
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:204
4580
  msgid "Restart on slide change"
4581
  msgstr "Comenzar de nuevo con el cambio de slide"
4582
 
4583
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:240
4584
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:224
4585
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:221
4586
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:205
4587
  msgid "Starts the video from the beginning when the slide is viewed again."
4588
  msgstr "Comienza el video desde el inicio cuando el slide se mira nuevamente."
4589
 
4590
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:267
4591
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:271
4592
+ #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:100
4593
+ #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:39
4594
+ msgid "Slide background"
4595
+ msgstr "Fondo del slide"
 
 
4596
 
4597
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:268
4598
  msgid ""
4599
  "Select a background image for the slide. By clicking the small screen icon, "
4600
  "you can pick different images for different devices."
4603
  "de la pequeña pantalla, puedes seleccionar diferentes imágenes para "
4604
  "diferentes dispositivos."
4605
 
4606
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:288
4607
  #, php-format
4608
  msgid ""
4609
  "Please read %1$sour detailed guide%2$s about setting your own slide "
4612
  "Por favor consulta %1$snuestra guía detallada%2$s sobre como colocar tu "
4613
  "propio fondo del slide correctamente."
4614
 
4615
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:301
4616
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:203
4617
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:100
4618
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:1070
4619
  msgid "Blur"
4620
  msgstr "Desenfocar"
4621
 
4622
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:324
4623
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:325
4624
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:122
4625
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:87
4626
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:87
4627
  msgid "Overlay"
4628
  msgstr "Cubrir"
4629
 
4630
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:326
4631
  msgid "Puts the color in front of the image."
4632
  msgstr "Coloca el color en frente de la imagen."
4633
 
4634
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:330
4635
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:163
4636
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:251
4637
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:153
4638
  msgid "SEO"
4639
  msgstr "SEO"
4640
 
4641
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:331
4642
  msgid "Image alt"
4643
  msgstr "Alt de la imagen"
4644
 
4645
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:334
4646
  msgid "Image title"
4647
  msgstr "Título de la imagen"
4648
 
4661
  msgid "Events"
4662
  msgstr "Eventos"
4663
 
4664
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:69
4665
  msgid "Plays in when"
4666
  msgstr "Reproducir \"dentro\" cuando"
4667
 
4668
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:74
4669
  msgid "Plays out when"
4670
  msgstr "Reproducir \"fuera\" cuando"
4671
 
4672
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:82
4673
  msgid "Plays loop when"
4674
  msgstr "Reproducir \"bucle\" cuando"
4675
 
4676
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:87
4677
  msgid "Pauses loop when"
4678
  msgstr "Pausar \"bucle\" cuando"
4679
 
4680
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:92
4681
  msgid "Stops loop when"
4682
  msgstr "Detener \"bucle\" cuando"
4683
 
4684
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:97
4685
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:102
4686
  msgid "Repeatable"
4687
  msgstr "Repetible"
4688
 
4689
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:103
4690
  msgid "Allows the layer animations to play more than once."
4691
  msgstr "Permite que la animación de capa se reproduzca más de una vez."
4692
 
4693
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:106
4694
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:372
4695
  msgid "Start delay"
4696
  msgstr "Comenzar retrazo"
4697
 
4698
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:120
4699
  msgid "End delay"
4700
  msgstr "Finalizar retrazo"
4701
 
 
4702
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:133
4703
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:134
4704
  msgid "Repeat loop only"
4705
  msgstr "Repetir bucle"
4706
 
4707
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:135
4708
  msgid "Allows the stopped loop to start again."
4709
  msgstr "Permite que el bucle vuelva a comenzar una vez que termina."
4710
 
4711
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:138
4712
  msgid "Trigger custom event on"
4713
  msgstr "Disparar evento personalizado con"
4714
 
4715
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:140
4716
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:41
4717
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:60
4718
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:148
4719
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:181
4720
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:44
4722
  msgid "Click"
4723
  msgstr "Clic"
4724
 
4725
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:143
4726
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:182
4727
  msgid "Mouse enter"
4728
  msgstr "Ingreso del ratón"
4729
 
4730
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:146
4731
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:183
4732
  msgid "Mouse leave"
4733
  msgstr "Egreso del ratón"
4734
 
4735
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:149
4736
  msgid "Media started"
4737
  msgstr "Medio iniciado"
4738
 
4739
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:152
4740
  msgid "Media paused"
4741
  msgstr "Medio pausado"
4742
 
4743
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:155
4744
  msgid "Media stopped"
4745
  msgstr "Medio detenido"
4746
 
4747
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:169
4748
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:440
4749
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:82
4750
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:40
4751
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:271
4752
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:243
4753
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:348
4754
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:72
4755
  msgid "Duration"
4756
  msgstr "Duración"
4757
 
4758
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:181
4759
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:452
4760
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:214
4761
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:240
4762
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:94
4763
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:229
4764
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:185
4765
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:142
4766
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:267
4767
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:169
4768
  msgid "Delay"
4769
  msgstr "Retardo"
4770
 
4771
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:194
4772
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:498
4773
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:504
4774
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:99
4775
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:253
4776
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:359
 
4777
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:97
4778
  msgid "Easing"
4779
  msgstr "Suavizado"
4780
 
4781
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:210
4782
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:76
4783
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:151
4784
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:33
4785
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:34
4786
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:152
4787
  msgid "Offset"
4788
  msgstr "Distancia"
4789
 
4790
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:258
 
4791
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
4792
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
4793
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
4795
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:485
4796
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:486
4797
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:487
4798
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
4799
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:49
4800
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:254
4801
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:572
4802
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:614
4803
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:656
4804
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:184
4805
  msgid "Rotate"
4806
  msgstr "Girar"
4807
 
4808
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:296
4809
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:39
4810
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:232
4811
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:233
4812
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:413
4813
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:138
4814
  msgid "Scale"
4815
  msgstr "Escalar"
4816
 
4817
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:323
 
4818
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
4819
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:474
4820
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:475
4821
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:476
4822
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:945
4823
  msgid "Skew"
4824
  msgstr "Torcer"
4825
 
4826
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:330
4827
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:377
4828
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:407
4829
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:246
4830
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:99
4831
  msgid "Transform origin"
4832
  msgstr "Transformar origen"
4833
 
4834
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:360
4835
  msgid ""
4836
  "Makes the last keyframe to be the origin of the layer animation, instead of "
4837
  "its canvas position."
4839
  "Hace que el último fotograma clave sea el origen de la animación de capa, en "
4840
  "vez de la posición de su canvas."
4841
 
4842
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:366
4843
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:369
4844
  msgid "Repeat count"
4845
  msgstr "Conteo de repetición"
4846
 
4847
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:368
4848
  msgid "loops"
4849
  msgstr "bucle"
4850
 
4851
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:370
4852
  msgid ""
4853
  "You can restrict the loop to play only a certain amount of loops, instead of "
4854
  "infinite."
4856
  "Puedes hacer que el bucle se reproduzca una determinada cantidad de veces, "
4857
  "en vez de que sea infinito."
4858
 
 
4859
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
4860
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:470
4861
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:471
4862
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
4863
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:912
4864
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:191
4865
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:47
4866
  msgctxt "Animation"
4867
  msgid "Slide"
4868
  msgstr "Slide"
4869
 
 
4870
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:477
4871
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:478
4872
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:479
4873
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
4874
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:246
4875
  msgid "Curtains"
4876
  msgstr "Cortinas"
4877
 
 
4878
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:479
4879
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
4880
  msgid "Diagonal"
4881
  msgstr "Diagonal"
4882
 
 
4883
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
4884
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:490
4885
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:491
4886
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:492
4887
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:262
4888
  msgid "Circle"
4889
  msgstr "Circulo"
4890
 
4891
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:495
4892
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:236
4893
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:238
4894
  msgid "From"
4895
  msgstr "Desde"
4896
 
4897
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:501
4898
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:241
4899
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:243
4900
  msgid "To"
4901
  msgstr "Hasta"
4902
 
4903
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:509
4904
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:55
4905
  #: SmartSlider3/Storage.php:935 SmartSlider3/Storage.php:1755
4906
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:131
4907
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:24
4908
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:73
4909
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:91
4910
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:1061
4911
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:188
4912
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:201
4913
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:132
4914
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:218
4915
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:48
4916
  msgid "Fade"
4917
  msgstr "Desvanecer"
4918
 
4919
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:510
4920
  #: SmartSlider3/Storage.php:1009
4921
  msgid "Scale up"
4922
  msgstr "Aumentar tamaño"
4923
 
4924
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:511
4925
  #: SmartSlider3/Storage.php:1024
4926
  msgid "Scale down"
4927
  msgstr "Reducir tamaño"
4928
 
4929
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/SlideBox.php:22
4930
+ #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:48
4931
  msgid "Edit"
4932
  msgstr "Editar"
4933
 
4975
 
4976
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:36
4977
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:175
4978
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:123
4979
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:159
4980
  msgid "Post"
4981
  msgstr "Artículo"
4984
  msgid "Dynamic slides"
4985
  msgstr "Slides Dinámicos"
4986
 
4987
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:93
4988
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:21
4989
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:27
4990
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:63
4993
  msgid "Add slide"
4994
  msgstr "Agregar slide"
4995
 
4996
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:106
4997
  msgid "Block must contain only one slide. Need more?"
4998
  msgstr "El bloque debe contener solo un slide. ¿Necesitas más?"
4999
 
5000
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:109
5001
  msgid "Convert to slider"
5002
  msgstr "Convertir a slider"
5003
 
5004
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:137
5005
  msgid "Slide one"
5006
  msgstr "Slide uno"
5007
 
5008
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:144
5009
  msgid "Slide two"
5010
  msgstr "Slide dos"
5011
 
5012
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:151
5013
  msgid "Drop images here"
5014
  msgstr "Suelta tus imágenes aquí"
5015
 
5016
+ #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderBox/SliderBox.php:114
5017
  msgid "Edit slider"
5018
  msgstr "Editar slider"
5019
 
5113
  msgid "Trash is empty."
5114
  msgstr "La papelera está vacía."
5115
 
5116
+ #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderTrash/SliderTrashBox.php:46
5117
  #: SmartSlider3/Application/Admin/Sliders/ViewSlidersImport.php:122
5118
  msgid "Restore"
5119
  msgstr "Reestablecer"
5130
  msgid "Open preview in full"
5131
  msgstr "Abrir el preview en pantalla completa"
5132
 
5133
+ #: SmartSlider3/Application/Admin/Preview/Template/Index.php:27
5134
  msgid "State"
5135
  msgstr "Estado"
5136
 
5137
+ #: SmartSlider3/Application/Admin/Preview/Template/Index.php:29
5138
  msgid "Reason"
5139
  msgstr "Razón"
5140
 
5159
  msgid "Generators"
5160
  msgstr "Generadores"
5161
 
5162
+ #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:35
5163
+ #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:51
5164
+ #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:69
5165
+ #: SmartSlider3/Application/Admin/Settings/ControllerSettings.php:35
5166
  msgid "Saved and slider cache invalidated."
5167
  msgstr "Grabado y cache del slider invalidado."
5168
 
5169
+ #: SmartSlider3/Application/Admin/Settings/ControllerAjaxSettings.php:174
5170
  #: SmartSlider3/Application/Admin/Slider/ControllerSlider.php:43
5171
  msgid "Cache cleared."
5172
  msgstr "Cache borrado."
5173
 
5174
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:35
5175
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:51
5176
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:57
5177
+ #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:175
5178
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:126
5179
+ msgid "Clear cache"
5180
+ msgstr "Borrar cache"
5181
+
5182
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:75
5183
+ #, fuzzy
5184
+ #| msgid "Clear cache"
5185
+ msgid "Clear cache options"
5186
+ msgstr "Borrar cache"
5187
+
5188
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:80
5189
+ #, fuzzy
5190
+ #| msgid "Remove resized images"
5191
+ msgid "Delete resized image cache"
5192
+ msgstr "Remover imágenes redimensionadas"
5193
+
5194
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsClearCache.php:82
5195
+ #, php-format
5196
+ msgid "If enabled the following folder will be <b>permanently deleted</b>: %s"
5197
+ msgstr ""
5198
+
5199
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFonts.php:41
5200
  msgid "Configuration"
5201
  msgstr "Configuración"
5239
  msgid "Loads the URLs without a http or https protocol."
5240
  msgstr "Carga las URL sin un protocolo http o https."
5241
 
5242
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:47
5243
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:48
5244
+ msgid "Header preload"
5245
+ msgstr "Precarga del encabezado"
5246
+
5247
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:49
5248
+ msgid ""
5249
+ "If the slider is an important part of your site, tell the browser to preload "
5250
+ "its files."
5251
+ msgstr ""
5252
+ "Si el slider es una parte importante de tu sitio, con esto puedes ordenarle "
5253
+ "al navegador que haga una pre-carga de sus archivos."
5254
+
5255
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:53
5256
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:54
5257
  msgid "English UI"
5258
  msgstr "English UI"
5259
 
5260
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:55
5261
  msgid ""
5262
  "You can keep using Smart Slider 3 in English, even if your backend isn't in "
5263
  "English."
5265
  "Puedes seguir utilizando Smart Slider 3 en inglés, incluso si el backend no "
5266
  "está en inglés."
5267
 
5268
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:58
5269
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:59
5270
  msgid "Improved frontend accessibility"
5271
  msgstr "Accesibilidad mejorada del frontend"
5272
 
5273
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:60
5274
  msgid ""
5275
  "Keeps the clicked element (like a button) in focus unless the focus is "
5276
  "changed by clicking away."
5278
  "Mantiene el elemento que se ha hecho un clic (como un botón) en foco a menos "
5279
  "que se haga un clic fuera del mismo."
5280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5281
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:68
 
 
 
 
5282
  msgid "Script attributes"
5283
  msgstr "Atributos del script"
5284
 
5285
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:70
5286
  msgid "Slider's inline JavaScript"
5287
  msgstr "Javascript incluido en el slider"
5288
 
5289
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:72
5290
  msgid "Head"
5291
  msgstr "Encabezado"
5292
 
5293
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:73
5294
  msgid "Into the slider"
5295
  msgstr "Dentro del slider"
5296
 
5297
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:83
 
 
 
 
 
 
 
 
 
 
 
 
5298
  msgid "Load Font Awesome 4"
5299
  msgstr "Cargar Font Awesome 4"
5300
 
5301
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:86
5302
  msgid "API requests"
5303
  msgstr "Solicitudes de la API"
5304
 
5305
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:90
5306
  #, php-format
5307
  msgctxt "Curl"
5308
  msgid "Use %s"
5309
  msgstr "Usar %s"
5310
 
5311
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsFramework.php:92
5312
  #, php-format
5313
  msgctxt "curl proxy"
5314
  msgid "Clean %s"
5315
  msgstr "Limpiar %s"
5316
 
5317
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:69
 
 
 
 
 
 
5318
  msgid "General settings"
5319
  msgstr "Ajustes generales"
5320
 
5321
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:79
5322
  msgid "Automatic update check"
5323
  msgstr "Verificación automatica de actualización"
5324
 
5325
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:81
5326
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:82
 
5327
  msgid "Alternative save slide"
5328
  msgstr "Guardar slide alternativo"
5329
 
5330
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:83
5331
  msgid ""
5332
  "If you experience problems during the save this option might solve them."
5333
  msgstr ""
5334
  "Si experimentas problemas durante el guardado, esta opción puede resolver el "
5335
  "problema."
5336
 
5337
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:85
5338
  msgid "Preview in new window"
5339
  msgstr "Vista previa en una nueva ventana"
5340
 
5341
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:90
5342
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:91
 
5343
  msgid "Lightbox videos in new tab on Mobile"
5344
  msgstr "Videos en lightbox dentro de una nueva pestaña del móvil"
5345
 
5346
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:92
5347
  msgid ""
5348
  "Opens the lightbox videos in the YouTube app to avoid the mobile disabling "
5349
  "the video."
5351
  "Abre los videos en un lightbox dentro de la aplicación de YouTube para "
5352
  "evitar que el móvil desactive el video."
5353
 
5354
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:97
5355
  msgid "YouTube and Vimeo privacy enhanced mode"
5356
  msgstr "Modo mejorado de privacidad para YouTube y Vimeo"
5357
 
5358
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:99
5359
  msgid "Smooth scroll speed"
5360
  msgstr "Velocidad de desplazamiento"
5361
 
5362
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:106
5363
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:108
5364
  msgid "Editor - additional CSS files"
5365
  msgstr "Editor - archivos adicionales CSS"
5366
 
5367
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:109
5368
  msgid ""
5369
  "You can call your own CSS files to our backend, for example, to be able to "
5370
  "use custom fonts. Write each URL to a new line."
5372
  "Puedes llamar tus propios archivos CSS en nuestro backend, por ejemplo, para "
5373
  "utilizar tipografías personalizadas. Escribe cada URL en una línea diferente."
5374
 
5375
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:114
5376
  msgid "WordPress settings"
5377
  msgstr "Opciones de Wordpress"
5378
 
5379
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:117
5380
  msgid "Show editor icon"
5381
  msgstr "Mostrar ícono del editor"
5382
 
5383
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:119
5384
  msgid "Show in admin bar"
5385
  msgstr "Mostrar en la barra de administración"
5386
 
5387
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:121
5388
  msgid "YOAST SEO sitemap - add images"
5389
  msgstr "Mapa del sitio YOAST SEO - agregar imágenes"
5390
 
5391
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:123
5392
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:127
5393
  msgid "Create widget area"
5394
  msgstr "Crear un área de widget"
5395
 
5396
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:124
5397
  msgid "widget area(s)"
5398
  msgstr "área/s de widget/s"
5399
 
5400
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:128
5401
  msgid ""
5402
  "Creates new widget areas which you can place to your theme for easy "
5403
  "publishing."
5405
  "Crea nuevas áreas de widget que puedas colocar en tu plantilla para que sea "
5406
  "fácil publicarlo."
5407
 
5408
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:133
5409
  #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:134
 
5410
  msgid "Use iframe in AJAX calls"
5411
  msgstr "Utilizar los iframe en llamadas AJAX"
5412
 
5413
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:135
5414
  msgid ""
5415
  "Loads the slider using an iframe when the page is loaded via AJAX to avoid "
5416
  "problems."
5418
  "Carga el slider usando un iframe cuando la página es cargada utilizando AJAX "
5419
  "para evitar problemas."
5420
 
5421
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:141
5422
  msgid "Joomla settings"
5423
  msgstr "Opciones de Joomla"
5424
 
5425
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:144
5426
  msgid "Force RTL backend"
5427
  msgstr "Forzar el texto del backend de derecha a izquierda (RTL)"
5428
 
5429
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:146
5430
  msgid "Run content plugins on sliders"
5431
  msgstr "Cargar plugins de contenido en los sliders"
5432
 
5433
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:152
5434
  msgid "Exclude plugins"
5435
  msgstr "Excluir plugins"
5436
 
5437
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:162
5438
  msgid ""
5439
  "At each slider you can override the global breakpoints with local values."
5440
  msgstr ""
5441
  "En cada slider puedes sobrescribir los puntos de parada (breakpoint) "
5442
  "globales con los valores locales."
5443
 
5444
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:209
5445
  msgid "Focus offset"
5446
  msgstr "Espacio compensatorio"
5447
 
5448
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:211
5449
  msgid ""
5450
  "This option is used at the full page layout to decrease the slider height. "
5451
  "The \"Scroll to slider\" option also uses this option to determine where to "
5455
  "alto del slider. La opción \"Desplazar al slider\" también utiliza esta "
5456
  "característica para determinar donde se desplazará hacia el slider."
5457
 
5458
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:229
5459
  msgid "Translate url"
5460
  msgstr "Traducir url"
5461
 
5462
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:231
5463
  msgid ""
5464
  "You can change the frontend URL our assets are loading from. It can be "
5465
  "useful after moving to a new domain."
5467
  "Puedes cambiar la URL del frontend desde donde los valores son cargados. "
5468
  "Puede ser útil tras mover el sitio a un nuevo dominio."
5469
 
5470
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:239
5471
  msgid "The old URL you want to replace. E.g. https://oldsite.com/"
5472
  msgstr ""
5473
  "La vieja URL que quieres reemplazar. Por ejemplo: https://viejositio.com/"
5474
 
5475
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:244
5476
  msgid "The new URL you want to use. E.g. https://newsite.com"
5477
  msgstr "La nueva URL que quieres utilizar. Por ejemplo: https://nuevositio.com"
5478
 
5484
  msgid "Slider permanently deleted."
5485
  msgstr "Slider eliminado permanentemente."
5486
 
5487
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:138
5488
  msgid "Slider created."
5489
  msgstr "Slider creado."
5490
 
5491
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:155
5492
  msgid "Slider renamed."
5493
  msgstr "Slider renombrado."
5494
 
5495
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:171
5496
  msgid "Slider saved."
5497
  msgstr "Slider Almacenado."
5498
 
5499
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:182
5500
  #, php-format
5501
  msgid "Import url is not valid: %s"
5502
  msgstr "El url para importar no es valido: %s"
5503
 
5504
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:189
5505
  msgid "License key required for premium features!"
5506
  msgstr "¡Clave de licencia requerida para las caracteristicas premium!"
5507
 
5508
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:220
5509
  #: SmartSlider3/Application/Admin/Sliders/ControllerAjaxSliders.php:200
5510
  msgid "Slider imported."
5511
  msgstr "Se importó el slider."
5512
 
5513
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:224
5514
  #: SmartSlider3/Application/Admin/Sliders/ControllerAjaxSliders.php:216
5515
  msgid "Import error!"
5516
  msgstr "¡Error al importar!"
5517
 
5518
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:247
5519
  #: SmartSlider3/Application/Admin/Slides/ControllerAjaxSlides.php:234
5520
  #: SmartSlider3/Application/Admin/Slides/ControllerSlides.php:80
5521
  msgid "Slide duplicated."
5522
  msgstr "Slide duplicado."
5523
 
5524
+ #: SmartSlider3/Application/Admin/Slider/ControllerAjaxSlider.php:268
5525
  #, php-format
5526
  msgid "%s slider type is not available."
5527
  msgstr "%s el tipo de slider no está disponible."
5558
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:88
5559
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:96
5560
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:48
 
5561
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:55
5562
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:49
5563
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:79
5564
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:59
5565
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:41
5566
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:67
 
5567
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:68
5568
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:53
5569
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:48
5783
  msgid "Failed to create slides."
5784
  msgstr "Fallo al crear slides."
5785
 
5786
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:176
5787
  msgid "Static save"
5788
  msgstr "Guardar estático"
5789
 
 
 
 
 
5790
  #: SmartSlider3/Application/Model/ModelGenerator.php:396
5791
  msgid "Generator settings"
5792
  msgstr "Configuración del generador"
5832
 
5833
  #: SmartSlider3/BackgroundAnimation/Block/BackgroundAnimationManager/Index.php:14
5834
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:45
5835
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:111
5836
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:115
5837
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:283
5838
  msgid "Background animation"
5839
  msgstr "Animación de fondo"
5840
 
5956
  msgid "No description."
5957
  msgstr "Sin descripción."
5958
 
5959
+ #: SmartSlider3/Generator/AbstractGeneratorGroup.php:110
5960
+ msgid "Generator not found"
5961
+ msgstr "No se encontró el generador"
5962
+
5963
  #: SmartSlider3/Generator/Common/Test/GeneratorGroupTest.php:17
5964
  #: SmartSlider3/Generator/Common/Test/Sources/TestTest.php:12
5965
  msgid "Test generator."
5974
  msgid "%1$s generator missing the following source: %2$s"
5975
  msgstr "falta el generador %1$s del siguiente código fuente: %2$s"
5976
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5977
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:14
5978
  msgid "Joomla articles"
5979
  msgstr "Artículos de Joomla"
5983
  msgstr "Crea slides a partir de tus artículos o categorías de Joomla."
5984
 
5985
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:22
 
5986
  msgid "Article"
5987
  msgstr "Artículo"
5988
 
5989
  #: SmartSlider3/Generator/Joomla/JoomlaContent/GeneratorGroupJoomlaContent.php:23
5990
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:47
5991
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:93
 
 
5992
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:33
5993
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:33
5994
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:30
5995
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:40
 
 
5996
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:41
5997
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:40
5998
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:39
5999
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:66
 
 
 
 
6000
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:40
6001
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:65
6002
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:34
6003
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:30
6004
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:34
6005
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:40
6006
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:47
6007
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:68
 
6008
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:32
6009
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:32
6010
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:30
6033
 
6034
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:59
6035
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:95
 
 
6036
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:44
6037
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:38
6038
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:53
6044
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:57
6045
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:46
6046
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:58
 
 
6047
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:49
6048
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:67
6049
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:46
6050
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:57
6051
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:56
6052
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:48
6053
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:39
6055
  msgstr "Destacado"
6056
 
6057
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:60
 
6058
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:42
6059
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:37
 
 
 
6060
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:50
6061
  msgid "User ID"
6062
  msgstr "ID del usuario"
6063
 
6064
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:63
6065
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:40
 
6066
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:47
 
 
 
 
6067
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:52
6068
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:53
6069
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:51
6070
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:45
6071
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:39
6089
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:70
6090
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:54
6091
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:51
 
6092
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:56
6093
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:64
6094
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:76
6095
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:77
6096
  msgid "Date format"
6097
  msgstr "Formato de fecha"
6098
 
6099
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:79
 
6100
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:293
6101
+ #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:295
6102
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:70
6103
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:54
6104
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:51
6105
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:56
6106
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:64
6107
  msgid "m-d-Y"
6108
  msgstr "m-d-Y"
6109
 
6112
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:71
6113
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:55
6114
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:52
 
6115
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:57
6116
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:65
6117
  msgid "Time format"
6118
  msgstr "Formato de hora"
6119
 
6120
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:81
6121
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:40
6122
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:37
6123
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:66
6124
  msgid "Translate date and time"
6125
  msgstr "Traducir fecha y hora"
6126
 
6131
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:88
6132
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:277
6133
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:167
6134
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:240
6135
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:241
6136
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:53
6137
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:96
 
6138
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:52
6139
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:47
6140
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:76
6146
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:55
6147
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:91
6148
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:74
 
 
 
6149
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:64
6150
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:46
6151
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:90
6152
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:77
6153
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:101
6154
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:41
6157
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:74
6158
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:166
6159
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:169
6160
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:168
 
6161
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:44
6162
  msgid "Title"
6163
  msgstr "Titulo"
6169
 
6170
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:97
6171
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:51
 
6172
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:73
6173
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:80
6174
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:60
6176
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:42
6177
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:92
6178
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:75
6179
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:68
 
 
 
 
6180
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:69
6181
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:49
6182
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:61
6183
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:91
6184
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:71
 
6185
  msgid "Hits"
6186
  msgstr "Visitas"
6187
 
6188
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:98
6189
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:49
 
6190
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:56
6191
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:50
6192
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:77
6198
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:61
6199
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:62
6200
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:43
 
 
6201
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:89
6202
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:72
6203
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:69
 
 
 
 
 
 
6204
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:70
6205
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:56
6206
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:59
6207
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:72
 
6208
  msgid "Creation time"
6209
  msgstr "Hora de creación"
6210
 
6215
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:82
6216
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:62
6217
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:63
 
 
6218
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:90
6219
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:73
6220
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:70
 
 
 
6221
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:71
6222
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:57
6223
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:60
6224
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:73
 
6225
  msgid "Modification time"
6226
  msgstr "Hora de modificación"
6227
 
6233
  msgid "Featured article ordering"
6234
  msgstr "Orden de artículo destacado"
6235
 
6236
+ #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:285
 
6237
  msgid "View article"
6238
  msgstr "Ver artículo"
6239
 
6244
  "Crea slides a partir de las categorías dentro de Joomla. (No así los "
6245
  "artículos dentro de estas.)"
6246
 
6247
+ #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:34
6248
+ #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceCategory.php:25
6249
+ msgid "Parent category"
6250
+ msgstr "Categoría padre"
6251
+
6252
+ #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:134
6253
  msgid "View category"
6254
  msgstr "Ver categoría"
6255
 
6261
  msgstr "Nada"
6262
 
6263
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:20
 
 
 
6264
  #: SmartSlider3Pro/Generator/Common/Facebook/GeneratorGroupFacebook.php:26
6265
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookAlbums.php:16
6266
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:18
6311
  msgid "Posts by IDs"
6312
  msgstr "Entradas por IDs"
6313
 
6314
+ #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:38
6315
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:128
6316
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:128
6317
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:46
6318
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:76
6319
+ #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:34
6320
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:158
6321
+ #: SmartSlider3Pro/Form/Element/ParticleSkin.php:61
6322
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:134
6323
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:47
6324
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:69
6325
+ msgid "Custom"
6326
+ msgstr "Personalizado"
6327
+
6328
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:41
6329
  msgid "All custom posts"
6330
  msgstr "Todos los artículos personalizados"
6441
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:110
6442
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsCustomPosts.php:192
6443
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:90
 
 
6444
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:74
6445
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:43
6446
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:64
6746
  "Puedes escribir el ID de la página que quieres mostrar en tu generador. %1$s "
6747
  "Escribe un ID por línea."
6748
 
 
 
 
 
6749
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:73
6750
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:75
6751
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:144
6769
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:100
6770
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:190
6771
  #: SmartSlider3/Platform/WordPress/Integration/Unyson/smartslider/options/option-types.php:63
6772
+ #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:167
6773
  msgid "OR"
6774
  msgstr "O"
6775
 
6783
  msgstr "MÁS"
6784
 
6785
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
6786
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:49
6787
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:118
6788
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:161
6789
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
6790
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:105
6791
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:126
6792
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:151
6793
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:157
6794
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:119
6795
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:146
6815
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:181
6816
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:144
6817
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:146
6818
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:178
6819
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:180
6820
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:197
6821
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:199
6822
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:189
6823
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:191
6824
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:228
6825
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:230
 
6826
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:126
6827
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:128
6828
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:150
6829
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:152
6830
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:290
6831
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:292
6832
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:147
6833
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:149
6834
  msgid "Rel"
6837
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:169
6838
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:182
6839
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:147
6840
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:181
6841
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:200
6842
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:192
6843
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:231
6844
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:129
6845
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:153
6846
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:293
6847
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:150
6848
  #, php-format
6849
  msgid ""
6857
 
6858
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:173
6859
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:174
6860
+ #: SmartSlider3Pro/Renderable/Item/Icon/Assets/icon2.js:21
6861
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:31
6862
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:94
6863
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:213
6864
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:232
6865
  msgid "Icon"
6866
  msgstr "Icono"
6867
 
6868
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:197
6869
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:119
6870
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:164
6871
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:129
6872
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:149
6873
  msgid "Placement"
6874
  msgstr "Ubicación"
6916
 
6917
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:164
6918
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:39
6919
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:252
6920
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:136
6921
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:227
6922
  msgid "Alt tag"
6923
  msgstr "Etiqueta Alt"
6924
 
6925
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:173
6926
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:174
6927
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:257
6928
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:258
6929
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:347
6930
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:348
6931
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:162
6932
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:163
6933
  msgid "Optimize image"
6934
  msgstr "Optimizar imagen"
6935
 
6936
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:175
6937
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:259
6938
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:349
6939
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:164
6940
  msgid ""
6941
  "You can turn off the Layer image optimization for this image, to resize it "
6961
  #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:45
6962
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:45
6963
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:41
6964
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:45
6965
  msgctxt "Layer group"
6966
  msgid "Media"
6967
  msgstr "Medio"
7003
  msgid "Mobile text"
7004
  msgstr "Texto móvil"
7005
 
7006
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:115
7007
  msgid "Vimeo url or Video ID"
7008
  msgstr "URL de Vimeo o ID del video"
7009
 
7010
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:119
7011
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:119
7012
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:125
7013
  msgid "Cover image"
7014
  msgstr "Imagen de portada"
7015
 
7016
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:123
7017
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:123
7018
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:129
7019
  msgid "Aspect ratio"
7020
  msgstr "Relación de aspecto"
7021
 
7022
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:129
7023
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:162
7024
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:129
7025
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:162
7026
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:135
7027
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:168
7028
  msgid "Fill layer height"
7029
  msgstr "Rellena la altura de la capa"
7030
 
7031
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:162
7032
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:162
7033
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:168
7034
  msgid "Set on Style tab."
7035
  msgstr "Ajustes en la pestaña Estilo."
7036
 
7037
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:164
7038
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:165
7039
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:170
7040
  msgid "Video settings"
7041
  msgstr "Opciones de video"
7042
 
7043
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:174
7044
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:175
7045
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:180
7046
  msgid "When ended"
7047
  msgstr "Cuando finalice"
7048
 
7049
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:176
7050
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:177
7051
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:182
7052
  msgid "Do nothing"
7053
  msgstr "No hacer nada"
7054
 
7055
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:177
7056
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:178
7057
  msgid "Go to next slide"
7058
  msgstr "Ir al slide siguiente"
7059
 
7060
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:181
7061
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:182
7062
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:67
 
7063
  msgid "Start time"
7064
  msgstr "Hora de Inicio"
7065
 
7066
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:187
7067
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:192
7068
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:133
7069
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:152
7070
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:193
7071
  msgid "Volume"
7072
  msgstr "Volumen"
7073
 
7074
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:189
7075
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:194
7076
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:135
7077
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:195
7078
  msgid "Mute"
7079
  msgstr "Mudo"
7080
 
7081
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:198
7082
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:204
7083
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:203
7084
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:209
7085
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:229
7086
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:235
7087
  msgid "Pause on scroll"
7088
  msgstr "Pausar al desplazarse"
7089
 
7090
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:200
7091
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:205
7092
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:231
7093
  msgid "Never"
7094
  msgstr "Nunca"
7095
 
7096
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:201
7097
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:206
7098
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:232
7099
  msgid "When partly visible"
7100
  msgstr "Cuando esté parcialmente visible"
7101
 
7102
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:202
7103
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:207
7104
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:233
7105
  msgid "When not visible"
7106
  msgstr "Cuando no esté visible"
7107
 
7108
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:205
7109
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:210
7110
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:236
7111
  msgid "You can pause the video when the visitor scrolls away from the slider"
7112
  msgstr "Puedes pausar el video cuando el usuario se desplaza fuera del slider"
7113
 
7114
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:216
7115
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:217
7116
  msgid "Private video"
7117
  msgstr "Video privado"
7118
 
7119
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:218
7120
+ msgid ""
7121
+ "Turn it on to remove the admin warning that your video is not accessible."
7122
+ msgstr "Actívalo para ocultar la advertencia si el video no se puede acceder."
7123
+
7124
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:227
7125
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:224
7126
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:147
7127
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:237
7128
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:136
7129
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:71
7130
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:296
7131
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:137
7132
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:208
7133
  msgid "Display"
7134
  msgstr "Pantalla"
7135
 
7136
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:230
7137
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:261
7138
+ msgid "Only works on videos of Vimeo Pro users."
7139
+ msgstr "Funciona únicamente en los videos de los usuarios de Vimeo Pro."
7140
+
7141
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:234
7142
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:235
7143
  msgid "Remove controls"
7144
  msgstr "Remover controles"
7145
 
7146
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:236
7147
+ msgid ""
7148
+ "Removes the controls of the video, but it only works on videos of Vimeo Pro "
7149
+ "users."
7150
+ msgstr ""
7151
+ "Quita los controles del video, esto funciona solo en los video de los "
7152
+ "usuarios de Vimeo Pro."
7153
+
7154
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:242
7155
+ msgid "Hides the title of the video, but only if video owner allows it."
7156
+ msgstr ""
7157
+ "Oculta el título del video, pero solo si el propietario del video lo permite."
7158
+
7159
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:244
7160
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:245
7161
  msgid "Users byline"
7162
  msgstr "Usuarios por linea"
7163
 
7164
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:246
7165
+ msgid ""
7166
+ "Hides the user's byline of the video, but only if video owner allows it."
7167
+ msgstr ""
7168
+ "Oculta el nombre del usuario del video, pero solo si el propietario del "
7169
+ "video lo permite."
7170
+
7171
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:250
7172
+ msgid ""
7173
+ "Hides the profile image of the author, but only if video owner allows it. "
7174
+ msgstr ""
7175
+ "Oculta la imagen de perfil del autor, pero solo si el propietario del video "
7176
+ "lo permite. "
7177
+
7178
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:265
7179
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:266
7180
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:246
7181
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:247
7182
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:239
7183
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:240
7184
  msgid "Play button"
7185
  msgstr "Botón reproducir"
7186
 
7187
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeoFrontend.php:36
7188
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeoFrontend.php:127
7189
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTubeFrontend.php:68
7190
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTubeFrontend.php:164
7191
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:40
7192
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideoFrontend.php:29
7193
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideoFrontend.php:115
7194
+ msgid "Play"
7195
+ msgstr "Reproducir"
7196
+
7197
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:116
7198
  msgid "YouTube URL or Video ID"
7199
  msgstr "URL de Youtube o ID del video"
7200
 
7201
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:187
7202
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:68
 
7203
  msgid "End time"
7204
  msgstr "Hora de finalización"
7205
 
7206
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:227
7207
  msgid "Hide YouTube logo"
7208
  msgstr "Ocultar logo de Youtube"
7209
 
 
7210
  #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:229
7211
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:230
7212
  msgid "Centered"
7213
  msgstr "Centrado"
7214
 
7215
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:231
7216
  msgid "Scales up and crops the video to cover the whole layer."
7217
  msgstr "Agranda y recorta el video para cubrir toda la capa."
7218
 
7219
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:235
7220
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:240
7221
  msgid "Show related videos"
7222
  msgstr "Mostrar videos relacionados"
7223
 
7224
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:237
7225
  msgid "Anywhere"
7226
  msgstr "En cualquier lugar"
7227
 
7228
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:238
7229
  msgid "Same channel"
7230
  msgstr "Mismo canal"
7231
 
7232
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:241
7233
  msgid ""
7234
  "YouTube no longer allows hiding the related videos at the end of the video. "
7235
  "This setting defines whether the videos should come from the same channel as "
7249
 
7250
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:26
7251
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:27
7252
+ #: SmartSlider3/Storage.php:3959
7253
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:275
7254
  msgid "Downscale"
7255
  msgstr "Reducir tamaño"
7260
 
7261
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:30
7262
  #: SmartSlider3/Slider/ResponsiveType/Auto/ResponsiveTypeAutoAdmin.php:31
7263
+ #: SmartSlider3/Storage.php:4073
7264
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:286
7265
  msgid "Upscale"
7266
  msgstr "Aumentar tamaño"
7325
  "Puede hacer que el slider rellene un elemento raíz en vez de el ancho "
7326
  "completo del navegador."
7327
 
7328
+ #: SmartSlider3/Slider/Slide.php:789
7329
  msgid "Not found"
7330
  msgstr "No se encontró"
7331
 
7332
+ #: SmartSlider3/Slider/SliderType/AbstractSliderTypeCss.php:49
7333
  msgid "Slider size is too small!"
7334
  msgstr "¡El tamaño del slider es demasiado pequeño!"
7335
 
7336
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:49
7337
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:145
7338
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:149
7339
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:324
7340
  #: SmartSlider3Pro/PostBackgroundAnimation/Block/PostBackgroundAnimationManager/Index.php:15
7341
  msgid "Ken Burns effect"
7342
  msgstr "Efecto Ken Burns"
7343
 
7344
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:56
7345
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:157
7346
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:123
7347
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:156
7348
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:301
7349
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:336
7350
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:127
7351
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:142
7352
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:200
7353
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:234
7354
  msgid "Speed"
7355
  msgstr "Velocidad"
7356
 
7357
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:59
7358
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:160
7359
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:125
7360
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:126
7361
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:159
7362
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:304
7363
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:305
7364
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:339
7365
  msgid "Super slow"
7366
  msgstr "Super lento"
7367
 
7368
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:60
7369
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:161
7370
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:127
7371
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:160
7372
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:306
7373
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:340
7374
  msgid "Slow"
7375
  msgstr "Lento"
7376
 
7377
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:62
7378
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:163
7379
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:129
7380
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:162
7381
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:308
7382
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:342
7383
  msgid "Fast"
7384
  msgstr "Rápido"
7385
 
7386
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:63
7387
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:130
7388
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:163
7389
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:309
7390
  msgid "Super fast"
7391
  msgstr "Super rápido"
7392
 
7393
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:82
7394
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:202
7395
+ msgid "Border width"
7396
+ msgstr "Ancho del borde"
 
 
7397
 
7398
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:87
7399
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:207
7400
+ msgid "Border color"
7401
+ msgstr "Color de borde"
 
 
7402
 
7403
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:164
7404
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:343
7405
  msgid "Super fast 4x"
7406
  msgstr "Super rápido 4x"
7407
 
7408
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:39
7409
  msgctxt "Slider type"
7410
  msgid "Simple slider"
7411
  msgstr "Slider simple"
7412
 
7413
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:48
7414
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:52
7415
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:208
7416
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:214
7417
  msgid "Main animation"
7418
  msgstr "Animación principal"
7419
 
7420
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:54
7421
  msgid "No animation"
7422
  msgstr "Sin animación"
7423
 
7424
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:56
7425
  msgid "Crossfade"
7426
  msgstr "Fundido cruzado"
7427
 
7428
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:59
7429
  msgid "Horizontal - reversed"
7430
  msgstr "Horizontal - invertido"
7431
 
7432
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:60
7433
  msgid "Vertical - reversed"
7434
  msgstr "Vertical - invertido"
7435
 
7436
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:101
7437
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:102
7438
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:258
7439
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:259
7440
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:699
7441
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:700
 
 
 
 
 
 
7442
  msgctxt "Feature"
7443
  msgid "Carousel"
7444
  msgstr "Carrusel"
7445
 
7446
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:103
 
7447
  msgid ""
7448
  "If you turn off this option, you can't switch to the first slide from the "
7449
  "last one."
7451
  "Si desactivas esta opción, no podrás cambiar del primer slide hacia el "
7452
  "último."
7453
 
7454
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:134
7455
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:135
7456
  msgid "Shifted"
7457
  msgstr "Cambiado"
7458
 
7459
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:136
7460
  msgid "The background and the main animation plays simultaneously or shifted."
7461
  msgstr ""
7462
  "La animación de fondo y la animación principal se reproducen simultáneamente "
7463
  "o cambiadas."
7464
 
7465
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:182
7466
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7467
  msgid "Loop single slide"
7468
  msgstr "Repetir slide simple"
7469
 
7470
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:184
7471
  msgid "In case of one slide, it repeats the animation of the slide."
7472
  msgstr "En el caso de tener un slide, repite la animación de ese slide."
7473
 
7474
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:217
7475
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:215
 
 
 
 
 
 
 
 
7476
  msgid "Slider CSS Preset"
7477
  msgstr "Preajuste de CSS del Slider"
7478
 
7479
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:221
7480
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:198
7481
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:219
7482
  msgid "Light shadow"
7483
  msgstr "Sombra Clara"
7484
 
7485
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:227
7486
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:225
7487
  msgid "Dark shadow"
7488
  msgstr "Sombra Oscura"
7489
 
7490
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:233
7491
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:231
7492
  msgid "Photo"
7493
  msgstr "Foto"
7494
 
7495
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:241
7496
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:239
7497
  msgid "Photo rounded"
7498
  msgstr "Foto con contorno"
7499
 
7500
+ #: SmartSlider3/SmartSlider3Info.php:197
7501
  #, php-format
7502
  msgid "Demo slider is not available with the following ID: %s"
7503
  msgstr "Demo slider no esta disponible con el siguiente ID: %s"
7845
  msgid "Flowing tiles vertical"
7846
  msgstr "Bloques fluyendo vertical"
7847
 
7848
+ #: SmartSlider3/Storage.php:2729
7849
  msgid "Slide to bottom"
7850
  msgstr "Deslizar hacia abajo"
7851
 
7852
+ #: SmartSlider3/Storage.php:2764
7853
  msgid "Slide to top"
7854
  msgstr "Deslizar hacia arriba"
7855
 
7856
+ #: SmartSlider3/Storage.php:2800
7857
  msgid "Curtain to bottom"
7858
  msgstr "Cortina hacia abajo"
7859
 
7860
+ #: SmartSlider3/Storage.php:2834
7861
  msgid "Curtain to top"
7862
  msgstr "Cortina hacia arriba"
7863
 
7864
+ #: SmartSlider3/Storage.php:2870
7865
  msgid "Switching to bottom"
7866
  msgstr "Cambiar hacia abajo"
7867
 
7868
+ #: SmartSlider3/Storage.php:2909
7869
  msgid "Switching to top"
7870
  msgstr "Cambiar hacia arriba"
7871
 
7872
+ #: SmartSlider3/Storage.php:2948
7873
  msgid "Horizontal spin to bottom"
7874
  msgstr "Giro horizontal hacia abajo"
7875
 
7876
+ #: SmartSlider3/Storage.php:2970
7877
  msgid "Horizontal spin to top"
7878
  msgstr "Giro horizontal hacia arriba"
7879
 
7880
+ #: SmartSlider3/Storage.php:2992
7881
  msgid "3D bricks to bottom"
7882
  msgstr "Ladrillos 3D hacia abajo"
7883
 
7884
+ #: SmartSlider3/Storage.php:3038
7885
  msgid "3D bricks to top"
7886
  msgstr "Ladrillos 3D hacia arriba"
7887
 
7888
+ #: SmartSlider3/Storage.php:3084
7889
  msgid "3D rows to bottom"
7890
  msgstr "Filas 3D hacia abajo"
7891
 
7892
+ #: SmartSlider3/Storage.php:3130
7893
  msgid "3D rows to top"
7894
  msgstr "Filas 3D hacia arriba"
7895
 
7896
+ #: SmartSlider3/Storage.php:3176
7897
  msgid "3D columns to bottom"
7898
  msgstr "Columnas 3D hacia abajo"
7899
 
7900
+ #: SmartSlider3/Storage.php:3206
7901
  msgid "3D columns to top"
7902
  msgstr "Columnas 3D hacia arriba"
7903
 
7904
+ #: SmartSlider3/Storage.php:3236
7905
  msgid "Spinning cuboid to bottom"
7906
  msgstr "Cubo giratorio hacia abajo"
7907
 
7908
+ #: SmartSlider3/Storage.php:3258
7909
  msgid "Spinning cuboid to top"
7910
  msgstr "Cubo giratorio hacia arriba"
7911
 
7912
+ #: SmartSlider3/Storage.php:3280
7913
  msgid "Turning cuboid to bottom"
7914
  msgstr "Girar cubo hacia abajo"
7915
 
7916
+ #: SmartSlider3/Storage.php:3304
7917
  msgid "Turning cuboid to top"
7918
  msgstr "Girar cuboide hacia arriba"
7919
 
7920
+ #: SmartSlider3/Storage.php:3335
7921
  msgid "Scale to right"
7922
  msgstr "Escala a la derecha"
7923
 
7924
+ #: SmartSlider3/Storage.php:3375
7925
  msgid "Rotate to right"
7926
  msgstr "Girar a la izquierda"
7927
 
7928
+ #: SmartSlider3/Storage.php:3421
7929
  msgid "Fixed to right"
7930
  msgstr "Ajustado a la derecha"
7931
 
7932
+ #: SmartSlider3/Storage.php:3452
7933
  msgid "Parallax to right"
7934
  msgstr "Palallax a la derecha"
7935
 
7936
+ #: SmartSlider3/Storage.php:3488
7937
  msgid "Flow - reversed"
7938
  msgstr "Fluido - al revés"
7939
 
7940
+ #: SmartSlider3/Storage.php:3527
7941
  msgid "Slide to right"
7942
  msgstr "Deslizar a la derecha"
7943
 
7944
+ #: SmartSlider3/Storage.php:3563
7945
  msgid "Curtain to right"
7946
  msgstr "Cortina a la derecha"
7947
 
7948
+ #: SmartSlider3/Storage.php:3598
7949
  msgid "Blocks to right"
7950
  msgstr "Bloques a la derecha"
7951
 
7952
+ #: SmartSlider3/Storage.php:3636
7953
  msgid "Slices to right"
7954
  msgstr "Cortes hacia la derecha"
7955
 
7956
+ #: SmartSlider3/Storage.php:3674
7957
  msgid "Reversed slices to right"
7958
  msgstr "Cortes hacia la derecha invertidos"
7959
 
7960
+ #: SmartSlider3/Storage.php:3712
7961
  msgid "Switching to right"
7962
  msgstr "Cambiar a la derecha"
7963
 
7964
+ #: SmartSlider3/Storage.php:3751
7965
  msgid "Page turn to right"
7966
  msgstr "Girar pagina a la derecha"
7967
 
7968
+ #: SmartSlider3/Storage.php:3763
7969
  msgid "Vertical spin to right"
7970
  msgstr "Giro vertical a la derecha"
7971
 
7972
+ #: SmartSlider3/Storage.php:3784
7973
  msgid "3D bricks to right"
7974
  msgstr "Cubos 3D a la derecha"
7975
 
7976
+ #: SmartSlider3/Storage.php:3829
7977
  msgid "3D rows to right"
7978
  msgstr "Filas 3D a la derecha"
7979
 
7980
+ #: SmartSlider3/Storage.php:3874
7981
  msgid "3D columns to right"
7982
  msgstr "Colunas 3D a la derecha"
7983
 
7984
+ #: SmartSlider3/Storage.php:3903
7985
  msgid "Spinning cuboid to right"
7986
  msgstr "Cubo giratorio a la derecha"
7987
 
7988
+ #: SmartSlider3/Storage.php:3925
7989
  msgid "Turning cuboid to right"
7990
  msgstr "Cubo giratorio a la derecha"
7991
 
7992
+ #: SmartSlider3/Storage.php:3977
7993
  msgid "Downscale left"
7994
  msgstr "Reducir tamaño a la izquierda"
7995
 
7996
+ #: SmartSlider3/Storage.php:4001
7997
  msgid "Downscale right"
7998
  msgstr "Reducir a la derecha"
7999
 
8000
+ #: SmartSlider3/Storage.php:4025
8001
  msgid "Downscale top"
8002
  msgstr "Reducir hacia arriba"
8003
 
8004
+ #: SmartSlider3/Storage.php:4049
8005
  msgid "Downscale bottom"
8006
  msgstr "Reducir hacia abajo"
8007
 
8008
+ #: SmartSlider3/Storage.php:4091
8009
  msgid "Upscale left"
8010
  msgstr "Aumentar a la izquierda"
8011
 
8012
+ #: SmartSlider3/Storage.php:4115
8013
  msgid "Upscale right"
8014
  msgstr "Aumentar a la derecha"
8015
 
8016
+ #: SmartSlider3/Storage.php:4139
8017
  msgid "Upscale top"
8018
  msgstr "Aumentar hacia arriba"
8019
 
8020
+ #: SmartSlider3/Storage.php:4163
8021
  msgid "Upscale bottom"
8022
  msgstr "Aumentar hacia abajo"
8023
 
8024
+ #: SmartSlider3/Storage.php:4187
8025
  msgid "To left"
8026
  msgstr "A la izquierda"
8027
 
8028
+ #: SmartSlider3/Storage.php:4207
8029
  msgid "To right"
8030
  msgstr "A la derecha"
8031
 
8032
+ #: SmartSlider3/Storage.php:4267
8033
  msgid "To top left"
8034
  msgstr "Hacia arriba a la izquierda"
8035
 
8036
+ #: SmartSlider3/Storage.php:4292
8037
  msgid "To top right"
8038
  msgstr "Parte superior derecha"
8039
 
8040
+ #: SmartSlider3/Storage.php:4317
8041
  msgid "To bottom left"
8042
  msgstr "Parte inferior izquierda"
8043
 
8044
+ #: SmartSlider3/Storage.php:4342
8045
  msgid "To bottom right"
8046
  msgstr "Parte inferior derecha"
8047
 
8048
+ #: SmartSlider3/Storage.php:4369
8049
  msgid "My layouts"
8050
  msgstr "Mis diseños"
8051
 
8052
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:53
8053
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:36
8054
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:40
8055
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:55
8056
  msgctxt "Arrow direction"
8057
  msgid "Previous"
8058
  msgstr "Anterior"
8059
 
8060
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:61
8061
  msgid "Previous image"
8062
  msgstr "Imagen anterior"
8063
 
8064
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:78
8065
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:112
8066
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:98
8067
  msgid "Hover color"
8068
  msgstr "Color de hover"
8069
 
8070
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:84
8071
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:64
8072
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:43
8073
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:47
8074
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:63
8075
  #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:58
8076
  msgid "Mirror"
8077
  msgstr "Reflejar"
8078
 
8079
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:92
8080
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:50
8081
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:54
8082
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:70
8083
  msgctxt "Arrow direction"
8084
  msgid "Next"
8085
  msgstr "Siguiente"
8086
 
8087
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:96
8088
  msgid "Next image"
8089
  msgstr "Imagen siguiente"
8090
 
8091
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:119
8092
  #: SmartSlider3/Widget/Group/Arrow.php:59
8093
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:138
8094
  #: SmartSlider3Pro/Form/Element/Select/ShapeDividerSelect.php:16
8095
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:59
8096
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:45
8097
  msgid "Arrow"
8098
  msgstr "Flecha"
8099
 
8100
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:124
8101
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:57
8102
  msgid "Previous position"
8103
  msgstr "Posición anterior"
8104
 
8105
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:125
8106
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:59
8107
  msgid "Next position"
8108
  msgstr "Siguiente posición"
8109
 
8110
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:140
8111
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:155
8112
  msgid "Previous alt tag"
8113
  msgstr "Etiqueta alt para Anterior"
8114
 
8115
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:141
8116
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:158
8117
  msgid "Next alt tag"
8118
  msgstr "Etiqueta alt para Siguiente"
8119
 
8120
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:142
8121
  #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:143
 
8122
  msgid "Base64"
8123
  msgstr "Base64"
8124
 
8125
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:144
8126
  msgid ""
8127
  "Base64 encoded arrow images are loading faster and they are colorable. But "
8128
  "optimization plugins often have errors in their codes related to them, so if "
8133
  "errores en su código relacionado a ellas, de esta manera, sí la flecha no "
8134
  "carga, desactiva esta opción."
8135
 
8136
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:156
8137
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:93
8138
  #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:92
8139
+ msgid "Image width - Desktop"
8140
+ msgstr "Ancho de imagen - Escritorio"
 
 
 
 
 
 
8141
 
8142
  #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:161
8143
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:98
8144
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:97
8145
+ msgid "Image width - Tablet"
8146
+ msgstr "Ancho de imagen - Tableta"
8147
 
8148
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:166
8149
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:103
8150
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImage.php:102
8151
+ msgid "Image width - Mobile"
8152
+ msgstr "Ancho de imagen - Móvil"
8153
 
8154
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:71
8155
  msgid "Pause"
8156
  msgstr "Pausar"
8157
 
8158
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImageFrontend.php:146
8159
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImageFrontend.php:148
8160
+ msgid "Play autoplay"
8161
+ msgstr "Iniciar reproducción automática"
8162
+
8163
+ #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImageFrontend.php:147
8164
  msgid "Pause autoplay"
8165
  msgstr "Pausar reproducción automática"
8166
 
8167
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:45
8168
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:55
8169
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:76
8170
  #: SmartSlider3Pro/Widget/Bar/BarVertical/BarVertical.php:37
8171
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:65
8172
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:65
8214
  #: SmartSlider3/Widget/Group/Autoplay.php:65
8215
  #: SmartSlider3/Widget/Group/Bar.php:68
8216
  #: SmartSlider3/Widget/Group/Bullet.php:109
8217
+ #: SmartSlider3/Widget/Group/Thumbnail.php:139
8218
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:64
8219
  #: SmartSlider3Pro/Widget/Group/Html.php:57
8220
  #: SmartSlider3Pro/Widget/Group/Indicator.php:56
8230
  #: SmartSlider3/Widget/Group/Bullet.php:116
8231
  #: SmartSlider3/Widget/Group/Shadow.php:59
8232
  #: SmartSlider3/Widget/Group/Shadow.php:60
8233
+ #: SmartSlider3/Widget/Group/Thumbnail.php:145
8234
+ #: SmartSlider3/Widget/Group/Thumbnail.php:146
8235
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:68
8236
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:69
8237
  #: SmartSlider3Pro/Widget/Group/Html.php:61
8246
  #: SmartSlider3/Widget/Group/Bar.php:76
8247
  #: SmartSlider3/Widget/Group/Bullet.php:117
8248
  #: SmartSlider3/Widget/Group/Shadow.php:61
8249
+ #: SmartSlider3/Widget/Group/Thumbnail.php:147
8250
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:70
8251
  #: SmartSlider3Pro/Widget/Group/Html.php:63
8252
  #: SmartSlider3Pro/Widget/Group/Indicator.php:62
8275
  msgstr "Lado"
8276
 
8277
  #: SmartSlider3/Widget/Group/Bullet.php:102
8278
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:121
8279
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:166
8280
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:131
8281
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:151
8282
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:378
8283
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:420
 
8284
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:468
8285
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:504
8286
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:540
8287
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:579
8288
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:621
8289
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:663
8290
  msgid "Before"
8291
  msgstr "Antes"
8292
 
8293
  #: SmartSlider3/Widget/Group/Bullet.php:103
8294
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:123
8295
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:169
8296
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:132
8297
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:153
8298
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:400
8299
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:444
 
8300
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:486
8301
  #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:522
8302
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:558
8303
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:601
8304
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:643
8305
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:685
8306
  msgid "After"
8307
  msgstr "Despues"
8308
 
8309
  #: SmartSlider3/Widget/Group/Shadow.php:31
8310
  #: SmartSlider3/Widget/Group/Shadow.php:40
8311
+ #: SmartSlider3/Widget/Shadow/ShadowImage/ShadowImage.php:26
8312
  msgid "Shadow"
8313
  msgstr "Sombra"
8314
 
8317
  msgid "Thumbnails"
8318
  msgstr "Miniatura"
8319
 
8320
+ #: SmartSlider3/Widget/Group/Thumbnail.php:66
8321
+ msgid "Desktop width"
8322
+ msgstr "Ancho del escritorio"
8323
+
8324
+ #: SmartSlider3/Widget/Group/Thumbnail.php:88
8325
+ msgid "Tablet width"
8326
+ msgstr "Ancho de la tableta"
8327
+
8328
+ #: SmartSlider3/Widget/Group/Thumbnail.php:110
8329
+ msgid "Mobile width"
8330
+ msgstr "Ancho del móvil"
8331
+
8332
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:66
8333
  msgid "Align thumbnails"
8334
  msgstr "Alinear imágenes de miniatura"
8335
 
8336
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:68
8337
  msgid "Start"
8338
  msgstr "Inicio"
8339
 
8340
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:70
8341
  msgid "End"
8342
  msgstr "Fin"
8343
 
8344
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:71
8345
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:279
8346
  msgid "Space between"
8347
  msgstr "Espacio entre medio"
8348
 
8349
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:72
8350
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:280
8351
  msgid "Space around"
8352
  msgstr "Espacio alrededor"
8353
 
8354
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:89
8355
+ #: SmartSlider3Pro/Renderable/Item/Caption/Assets/caption.js:21
8356
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:54
8357
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:101
8358
  msgid "Caption"
8359
  msgstr "Leyenda"
8360
 
8361
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:131
8362
  msgid ""
8363
  "The height (horizontal orientation) or width (vertical orientation) of the "
8364
  "caption container."
8366
  "La altura (orientación horizontal) o el ancho (orientación vertical) del "
8367
  "contenedor del pie de foto."
8368
 
8369
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:161
8370
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:162
8371
  msgid "Next arrow image"
8372
  msgstr "Imagen de la flecha \"siguiente\""
8373
 
8374
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:163
8375
  msgid "The previous arrow image will be mirrored."
8376
  msgstr "La imagen de la flecha \"Anterior\" se espejará."
8377
 
8378
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:169
8379
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8380
  msgid "Group by"
8381
  msgstr "Agrupar por"
8382
 
8383
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:170
8384
  msgctxt "Unit"
8385
  msgid "thumbnails"
8386
  msgstr "miniaturas"
8387
 
8388
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:173
8389
  msgid "You can break your thumbnails into rows or columns."
8390
  msgstr "Puedes separar las miniaturas en filas o columnas."
8391
 
8392
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:187
 
 
 
 
 
 
 
 
 
8393
  msgid ""
8394
  "The height (horizontal orientation) or width (vertical orientation) of the "
8395
  "thumbnail container in px or %."
8467
  msgid "Hide on mobile"
8468
  msgstr "Ocultar en móvil"
8469
 
8470
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:101
8471
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:160
8472
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:28
8473
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:37
 
8474
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:45
8475
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialGroups.php:41
8476
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:47
8477
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:37
8478
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:186
 
 
 
8479
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:236
8480
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:184
8481
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:54
8482
  msgid "Type"
8483
  msgstr "Tipo"
8484
 
8485
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:112
8486
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:171
8487
  msgid "Secondary"
8488
  msgstr "Secundario"
8489
 
8490
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:140
8491
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:198
8492
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:44
8493
  msgid "Flip"
8494
  msgstr "Tirar"
8495
 
8496
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:154
8497
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:212
8498
  msgid "Grow"
8499
  msgstr "Crecer"
8500
 
8501
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:155
8502
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:213
8503
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:901
8504
  msgid "Shrink"
8505
  msgstr "Encoger"
8675
  msgstr "Olas enmascaradas"
8676
 
8677
  #: SmartSlider3Pro/Form/Element/Select/ShapeDividerSelect.php:44
8678
+ msgid "Ribbon"
8679
+ msgstr "Listón"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8680
 
8681
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:83
8682
  msgid "The secret is empty. Please insert that value too!"
8698
  "HTTPS para poder utilizar este generador! %2$s ¿Cómo usar SSL para mi sitio "
8699
  "en WordPress? %3$s"
8700
 
8701
+ #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:119
8702
+ #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:103
8703
+ #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:95
8704
+ #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:94
8705
+ #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:134
8706
+ #, php-format
8707
+ msgid ""
8708
+ "%2$s Check the documentation %3$s to learn how to configure your %1$s app."
8709
+ msgstr ""
8710
+ "%2$s Consulta la documentación %3$s para conocer como configurar tu "
8711
+ "aplicación de %1$s."
8712
+
8713
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:131
8714
  msgctxt "Facebook app permission"
8715
  msgid "pages read engagement"
8716
+ msgstr "pages read engagement"
8717
 
8718
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:132
8719
  msgid "Pages read engagement permission"
8749
  "Necesitas el permiso \"user_photos\" para acceder a las fotos de los "
8750
  "usuarios, a excepción de tu propio usuario."
8751
 
8752
+ #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:140
8753
+ #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:114
8754
+ #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:105
8755
+ #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:104
8756
+ #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:144
8757
+ msgid "Token"
8758
+ msgstr "Token"
8759
+
8760
+ #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:141
8761
+ #: SmartSlider3Pro/Generator/Common/Flickr/ConfigurationFlickr.php:115
8762
+ #: SmartSlider3Pro/Generator/Common/Twitter/ConfigurationTwitter.php:108
8763
+ #: SmartSlider3Pro/Generator/Common/Vimeo/ConfigurationVimeo.php:105
8764
+ #: SmartSlider3Pro/Generator/Common/YouTube/ConfigurationYoutube.php:145
8765
+ msgid "Callback url"
8766
+ msgstr "URL Callback"
8767
+
8768
  #: SmartSlider3Pro/Generator/Common/Facebook/ConfigurationFacebook.php:164
8769
  msgid "The token expired. Please request new token! "
8770
  msgstr "El token expiró. Por favor solicite uno nuevo. "
8771
 
8772
+ #: SmartSlider3Pro/Generator/Common/Facebook/Elements/FacebookToken.php:29
8773
+ #: SmartSlider3Pro/Generator/Common/Flickr/Elements/FlickrToken.php:29
8774
+ #: SmartSlider3Pro/Generator/Common/Twitter/Elements/TwitterToken.php:29
8775
+ #: SmartSlider3Pro/Generator/Common/Vimeo/Elements/VimeoToken.php:28
8776
+ #: SmartSlider3Pro/Generator/Common/YouTube/Elements/YouTubeToken.php:28
8777
+ msgid "Request token"
8778
+ msgstr "Solicitar token"
8779
+
8780
  #: SmartSlider3Pro/Generator/Common/Facebook/GeneratorGroupFacebook.php:26
8781
  msgid "Facebook photos or posts on your page"
8782
  msgstr "Publicaciones y fotos de Facebook en tu página"
8922
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:104
8923
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:103
8924
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:94
8925
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:89
8926
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:99
8927
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:87
8928
  msgid "Creation date"
8977
  "debes seleccionar el nivel directamente de la lista."
8978
 
8979
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:109
8980
+ #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:126
8981
  #, php-format
8982
  msgid ""
8983
  "The given text is not valid XML! %1$sValidate your code%2$s to make sure it "
8987
  "asegurarte que está correcto."
8988
 
8989
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:111
8990
+ #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:128
8991
  #, php-format
8992
  msgid ""
8993
  "The given text is not valid JSON! %1$sValidate your code%2$s to make sure it "
8997
  "asegurarte que está correcto."
8998
 
8999
  #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonInput.php:152
9000
+ #: SmartSlider3Pro/Generator/Common/Json/Sources/JsonUrl.php:169
9001
  msgid ""
9002
  "Try to change the \"Level separation\" or \"Remove levels from result\" "
9003
  "setting."
9014
  msgid "Images"
9015
  msgstr "Imagenes"
9016
 
9017
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:35
9018
+ msgid "Timezone offset in hours. For example: +2 or -7."
9019
+ msgstr ""
9020
+
9021
+ #: SmartSlider3Pro/Generator/Common/Rss/Sources/RSSFeed.php:64
9022
  msgid "The data in the given url is not valid XML."
9023
  msgstr "Los datos entregados en la url no son válidos XML."
9024
 
9037
  msgstr "Ver tweet"
9038
 
9039
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:37
 
9040
  msgid "Comments"
9041
  msgstr "Comentarios"
9042
 
9070
  msgid "optional"
9071
  msgstr "opcional"
9072
 
 
 
9073
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/GeneratorGroupDjclassifieds.php:23
9074
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:28
9075
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/GeneratorGroupEasyblog.php:21
9092
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/GeneratorGroupHikashop.php:22
9093
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/GeneratorGroupIgnitegallery.php:21
9094
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:20
 
 
 
 
9095
  #: SmartSlider3Pro/Generator/Joomla/Jevents/GeneratorGroupJevents.php:22
 
 
 
 
 
 
 
9096
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/GeneratorGroupJoomshopping.php:21
9097
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:30
 
 
9098
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:21
9099
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:31
9100
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/GeneratorGroupMijoshop.php:21
9104
  #: SmartSlider3Pro/Generator/Joomla/Redshop/GeneratorGroupRedshop.php:21
9105
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:25
9106
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/GeneratorGroupRseventspro.php:21
9107
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:31
9108
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/GeneratorGroupVirtuemart.php:21
9109
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:38
 
 
9110
  #, php-format
9111
  msgid "Creates slides from %1$s content."
9112
  msgstr "Crea slides del contenido de %1$s."
9113
 
 
 
 
 
9114
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/GeneratorGroupDjclassifieds.php:31
9115
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:21
9116
  #: SmartSlider3Pro/Generator/Joomla/K2/GeneratorGroupK2.php:29
9137
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:40
9138
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:54
9139
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:49
9140
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:55
 
9141
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:39
9142
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:48
9143
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:46
9168
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:72
9169
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:47
9170
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:36
 
9171
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:69
9172
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:60
9173
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:51
 
9174
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:52
9175
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:60
9176
  msgid "Menu item (item ID)"
9177
  msgstr "Ítem del menú (item ID)"
9178
 
9190
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:79
9191
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:87
9192
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:70
9193
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:87
9194
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:96
9195
  msgid "Start date"
9196
  msgstr "Fecha de inicio"
9202
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:88
9203
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:77
9204
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:83
 
9205
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:55
9206
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:62
9207
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:92
9214
  msgstr "Incluir subcategorias"
9215
 
9216
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:43
 
9217
  msgid "Frontpage"
9218
  msgstr "Pagina de inicio"
9219
 
9253
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialAlbums.php:36
9254
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:23
9255
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/GeneratorGroupEventsbooking.php:29
 
 
 
9256
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/GeneratorGroupRseventspro.php:29
9257
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/GeneratorGroupAllInOneEventCalendar.php:25
9258
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/GeneratorGroupEventsManager.php:24
9267
 
9268
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/GeneratorGroupEasysocial.php:37
9269
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialVideos.php:19
 
9270
  msgid "Videos"
9271
  msgstr "Videos"
9272
 
9312
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:41
9313
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:55
9314
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:50
9315
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:56
 
9316
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:40
9317
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:47
9318
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:47
9324
  msgstr "Todo el día"
9325
 
9326
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:43
9327
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:59
9328
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:38
9329
  msgid "Recurring events"
9330
  msgstr "Evento recurrente"
9348
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialEvents.php:54
9349
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:53
9350
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:50
9351
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:46
 
9352
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:38
9353
  msgid "Location"
9354
  msgstr "Ubicación"
9370
  msgstr "No mostrar artículos de estos usuarios. Sepáralos con comas."
9371
 
9372
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:50
 
9373
  msgid "Public"
9374
  msgstr "Público"
9375
 
9376
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialPages.php:51
 
 
9377
  msgid "Private"
9378
  msgstr "Privado"
9379
 
9414
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/GeneratorGroupHikashop.php:31
9415
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:24
9416
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProductsbyid.php:19
 
 
9417
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/GeneratorGroupJoomshopping.php:29
9418
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/GeneratorGroupMijoshop.php:29
9419
  #: SmartSlider3Pro/Generator/Joomla/Redshop/GeneratorGroupRedshop.php:29
9422
  msgstr "Productos"
9423
 
9424
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:52
9425
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:42
9426
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:37
9427
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:37
9428
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:50
9434
  msgstr "En Descuento"
9435
 
9436
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:62
9437
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:48
 
 
9438
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:44
9439
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:57
9440
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:40
9459
 
9460
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Sources/EshopProducts.php:78
9461
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:57
9462
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:65
 
 
 
9463
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:52
9464
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:57
9465
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:67
9493
  #: SmartSlider3Pro/Generator/Joomla/Eventsbooking/Sources/EventsbookingEvents.php:80
9494
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:88
9495
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:71
9496
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:88
9497
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:97
9498
  msgid "End date"
9499
  msgstr "Fecha de finalización"
9558
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:39
9559
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:43
9560
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:33
9561
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:49
 
9562
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:33
9563
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:34
9564
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:253
9565
  msgid "Tag"
9566
  msgstr "Etiqueta"
9567
 
9598
  "Escribe los ID's de productos que quieres mostrar aquí, en el orden que "
9599
  "quieres que aparezcan en el generador. Un ID de producto por línea."
9600
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9601
  #: SmartSlider3Pro/Generator/Joomla/Jevents/GeneratorGroupJevents.php:30
9602
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:32
9603
  msgid "One time events"
9616
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:59
9617
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:64
9618
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:56
9619
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:71
9620
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:77
9621
  msgid "Offset value"
9622
  msgstr "Valor de compensación"
9623
 
9624
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:60
9625
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:65
9626
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:57
9627
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:72
9628
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:78
9629
  msgid ""
9630
  "Timezone offset in hours. For example: +2 or -7. If you leave it empty, "
9631
  "Joomla's System -> Global Configuration -> Server -> Server Time Zone "
9643
  msgid "Trashed"
9644
  msgstr "En la papelera"
9645
 
9646
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9647
  msgid "Ask down all product images"
9648
  msgstr "Preguntar por todas las imágenes de productos"
9649
 
9650
+ #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:244
9651
  msgid "View item"
9652
  msgstr "Ver ítem"
9653
 
9654
+ #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:54
9655
+ msgid "Viewed"
9656
+ msgstr "Visto"
9657
+
9658
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:117
9659
  msgid "View image"
9660
  msgstr "Ver imagen"
9671
  msgid "Discount price"
9672
  msgstr "Precio de descuento"
9673
 
9674
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:58
9675
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:72
9676
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:78
9677
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:84
9686
  msgid "Show parent products only"
9687
  msgstr "Mostrar solo los productos principales"
9688
 
 
 
 
 
9689
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/GeneratorGroupAllInOneEventCalendar.php:20
9690
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:24
9691
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/GeneratorGroupEventsManager.php:19
9760
  msgid "Creates slides by your custom settings."
9761
  msgstr "Crea slides para tus opciones personalizadas."
9762
 
9763
+ #: SmartSlider3Pro/Generator/WordPress/Custom/GeneratorGroupCustom.php:37
9764
+ #, fuzzy, php-format
9765
+ #| msgid ""
9766
+ #| "%2$s Check the documentation %3$s to learn how to configure your %1$s app."
9767
+ msgid ""
9768
+ "You don't have custom generators yet. %1$s Check the documentation %2$s to "
9769
+ "learn how to create your own generator."
9770
+ msgstr ""
9771
+ "%2$s Consulta la documentación %3$s para conocer como configurar tu "
9772
+ "aplicación de %1$s."
9773
+
9774
  #: SmartSlider3Pro/Generator/WordPress/Custom/Sources/CustomCustom.php:124
9775
  msgid "No options given"
9776
  msgstr "No se ingresaron opciones"
9912
  "Crea slides para tus categorías de WooCommerce. (No así a los productos "
9913
  "dentro de ellas.)"
9914
 
 
 
 
 
9915
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceCategory.php:26
9916
  msgid "Submenu limit"
9917
  msgstr "Limite de submenu"
10177
  msgid "Vertical pendulum 3D"
10178
  msgstr "Pendulo vertical 3D"
10179
 
10180
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:155
10181
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:206
10182
  msgid "Before text"
10183
  msgstr "Antes del texto"
10184
 
10185
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:159
10186
  msgid "Animated text"
10187
  msgstr "Texto animado"
10188
 
10189
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:164
10190
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:214
10191
  msgid "After text"
10192
  msgstr "Después del texto"
10193
 
10194
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:189
10195
  msgid "Rotating"
10196
  msgstr "Rotar"
10197
 
10198
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:190
10199
  msgid "Drop-in"
10200
  msgstr "Caer"
10201
 
10202
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:192
10203
  msgid "Slide down"
10204
  msgstr "Deslizar hacia abajo"
10205
 
10206
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:193
10207
+ msgid "Typewriter"
10208
+ msgstr "Máquina de escribir"
 
 
 
 
10209
 
10210
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:194
10211
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:55
10212
  msgid "Chars"
10213
  msgstr "Caracteres"
10214
 
10215
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:195
10216
  msgid "Chars 2"
10217
  msgstr "Caracteres 2"
10218
 
10219
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:222
10220
  msgid "Auto width"
10221
  msgstr "Ancho automático"
10222
 
10223
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:223
10224
  msgid "Cursor color"
10225
  msgstr "Color del cursor"
10226
 
10227
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:227
 
 
 
 
10228
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:279
10229
  msgctxt "Effect"
10230
  msgid "Loop"
10231
  msgstr "Loop"
10232
 
10233
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:242
10234
  msgid "Show duration"
10235
  msgstr "Mostrar duración"
10236
 
10237
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:273
10238
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:314
10239
  msgid "Class on the selected tag element."
10240
  msgstr "Clase en la etiqueta seleccionada."
10241
 
10242
+ #: SmartSlider3Pro/Renderable/Item/Area/Assets/area.js:22
10243
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:39
10244
  msgid "Area"
10245
  msgstr "Área"
10275
  "Audio autoplaying has a lot of limitations made by browsers. You can read "
10276
  "about them %1$shere%2$s."
10277
  msgstr ""
10278
+ "Audio autoplaying has a lot of limitations made by browsers. You can read "
10279
+ "about them %1$shere%2$s."
10280
 
10281
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:144
10282
  msgid "Starts the audio from the beginning when the slide is viewed again."
10294
  msgid "Full"
10295
  msgstr "Completo"
10296
 
10297
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:234
10298
  msgid "Scales up the image on hover"
10299
  msgstr "Agranda la escala de la imagen cuando se hace hover a la imagen"
10300
 
10301
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:238
10302
  msgid "Overlay background"
10303
  msgstr "Fondo de la superposición"
10304
 
10305
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:248
10306
  msgid "Positions the text inside the overlay."
10307
  msgstr "Coloca el texto dentro del overlay."
10308
 
10316
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
10317
  #: SmartSlider3Pro/Renderable/Item/Counter/Assets/counter.js:20
10318
  #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:40
10319
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:101
10320
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:111
10321
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:148
10322
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:126
10323
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
10324
  msgid "Counter"
10325
  msgstr "Contador"
10326
 
10327
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:126
10328
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:112
10329
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:127
10330
+ #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:63
10331
  msgid "Value"
10332
  msgstr "Valor"
10333
 
10334
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:129
10335
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:115
10336
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:130
10337
  msgid "Start from"
10338
  msgstr "Comenzar desde"
10352
  msgstr "Ancho del trazado"
10353
 
10354
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:160
10355
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:119
10356
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:145
10357
  msgid "Labels"
10358
  msgstr "Etiquetas"
10366
  msgstr "Dentro despúes"
10367
 
10368
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:172
10369
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:120
10370
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:156
10371
  msgid "Pre"
10372
  msgstr "Antes de"
10373
 
10374
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:180
10375
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:137
10376
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:164
 
10377
  msgid "Animation duration"
10378
  msgstr "Duración de la animación"
10379
 
10621
  msgid "Upper-roman"
10622
  msgstr "Superior-romano"
10623
 
10624
+ #: SmartSlider3Pro/Renderable/Item/Icon/Assets/icon2.js:37
10625
  msgid "Icon not found"
10626
  msgstr "Ícono no encontrado"
10627
 
10628
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:131
10629
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:132
10630
+ msgid "Aria label"
10631
+ msgstr "Etiqueta Aria"
10632
+
10633
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:133
10634
+ #, php-format
10635
+ msgid "Enter an %1$s aria-label attribute %2$s that describes the link."
10636
+ msgstr "Enter an %1$s aria-label attribute %2$s that describes the link."
10637
+
10638
+ #: SmartSlider3Pro/Renderable/Item/Iframe/Assets/iframe.js:22
10639
  msgid "Iframe"
10640
  msgstr "Iframe"
10641
 
10675
  msgid "Image area"
10676
  msgstr "Área de la imagen"
10677
 
10678
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/Assets/imagebox.js:22
10679
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:64
10680
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:176
10681
  msgid "Image box"
10682
  msgstr "Caja de imagen"
10683
 
10684
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:342
10685
  msgid ""
10686
  "Positions the text inside the layer. Only works with left and right layout."
10687
  msgstr ""
10787
  msgid "Back image alt tag"
10788
  msgstr "Etiqueta alt de imagen de fondo"
10789
 
10790
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:121
10791
  msgid "MP4 video"
10792
  msgstr "Video MP4"
10793
 
10794
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:221
10795
  msgid "Preload"
10796
  msgstr "Precarga"
10797
 
10811
  "personalizado que debes escribir, ¡te sugerimos que utilices esta capa solo "
10812
  "sí eres un desarrollador!"
10813
 
10814
+ #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:65
 
10815
  msgid "Position name or module ID"
10816
  msgstr "Nombre de la posición o ID del módulo"
10817
 
10818
+ #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:66
10819
  msgid ""
10820
  "The position name of your module (for Loadposition and Modulepos) or the "
10821
  "module's ID (Module)."
10887
  msgid "CSS selector (sum of heights)"
10888
  msgstr "Selector CSS (suma de las alturas)"
10889
 
10890
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10891
  msgctxt "Slider type"
10892
  msgid "Carousel slider"
10893
  msgstr "Slider carrusel"
10894
 
10895
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:41
10896
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:42
10897
  msgid "Slide size"
10898
  msgstr "Tamaño del slide"
10899
 
10900
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:68
10901
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:69
10902
  msgid "Max pane width"
10903
  msgstr "Ancho máximo del panel"
10904
 
10905
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:70
10906
  msgid ""
10907
  "You can use this option to limit how many slides can show up next to each "
10908
  "other."
10910
  "Puedes usar esta opción para limitar el número de slides que mostrarás "
10911
  "después de cada uno."
10912
 
10913
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:82
10914
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:83
10915
  msgid "Minimum slide distance"
10916
  msgstr "Distancia mínima del slide"
10917
 
10918
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:84
10919
  msgid "The minimum space between two slides."
10920
  msgstr "El espacio mínimo entre dos slides."
10921
 
10922
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:96
10923
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:108
10924
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:132
10925
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:156
10926
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:117
10927
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:129
10928
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:153
10929
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:177
10930
  msgid "Side spacing"
10931
  msgstr "Espaciado de costado"
10932
 
10933
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:104
10934
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:125
10935
  msgid "Desktop side spacing"
10936
  msgstr "Espaciado de costado para escritorio"
10937
 
10938
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:105
10939
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:129
10940
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:153
10941
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:126
10942
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:150
10943
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:174
10944
  msgid ""
10945
  "You can create a fix distance between the slider and the slides where your "
10946
  "controls are which appear on this device. This way your controls won't cover "
10950
  "controles aparecen en este dispositivo. De esta manera los controles no "
10951
  "cubrirán el contenido del slide."
10952
 
10953
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:128
10954
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:149
10955
  msgid "Tablet side spacing"
10956
  msgstr "Espaciado de costado de tabletas"
10957
 
10958
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:152
10959
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:173
10960
  msgid "Mobile side spacing"
10961
  msgstr "Espaciado de costado de móviles"
10962
 
10963
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:175
10964
  msgid "Slide background color"
10965
  msgstr "Color de fondo del slide"
10966
 
10967
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:180
10968
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:85
 
 
 
 
 
10969
  msgid "Slide border width"
10970
  msgstr "Ancho del borde del slide"
10971
 
10972
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:185
10973
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:90
10974
  msgid "Slide border color"
10975
  msgstr "Color del borde del slide"
10976
 
10977
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:188
10978
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:93
10979
  msgid "Slide border radius"
10980
  msgstr "Radio del borde del slider"
10981
 
10982
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:195
10983
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:103
10984
  msgid "Slider border width"
10985
  msgstr "Ancho del borde del slide"
10986
 
10987
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:200
10988
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:108
10989
  msgid "Slider border color"
10990
  msgstr "Color de borde del slide"
10991
 
10992
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:203
10993
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:111
10994
  msgid "Slider border radius"
10995
  msgstr "Radio del borde del slider"
10996
 
10997
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:212
10998
  msgid "The Single Switch setting can only move the slides horizontally!"
10999
  msgstr "¡Esta opción puede mover solo los slides horizontalmente!"
11000
 
11001
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:260
11002
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:701
11003
  msgid ""
11004
  "This option will create a complete round from your slides if you have enough "
11005
  "slides. If you don't have enough slides, you could consider duplicating all "
11009
  "los suficientes slides. Sí no los tienes, considera duplicar los que tengas "
11010
  "o bien agregar más hasta que tengas un giro completo del carrusel."
11011
 
11012
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:268
11013
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:269
11014
  msgid "Single switch"
11015
  msgstr "Interruptor simple"
11016
 
11017
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:270
11018
  msgid "It switches one slide instead of moving all the visible slides."
11019
  msgstr "Cambia a un slide en vez de mover todos los slides visibles."
11020
 
11021
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:277
11022
  msgid "Justify slides"
11023
  msgstr "Justificar slides"
11024
 
11025
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:33
11026
  msgctxt "Slider type"
11027
  msgid "Showcase slider"
11028
  msgstr "Slider tipo presentación"
11029
 
11030
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:69
11031
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:77
11032
  msgid "Slide distance"
11033
  msgstr "Distancia del slide"
11034
 
11035
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:78
11036
  msgid "Fix space between the slides."
11037
  msgstr "Espacio fijo entre los slides."
11038
 
11039
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:194
11040
  msgid "Slide CSS Preset"
11041
  msgstr "Preajustes CSS del slide"
11042
 
11043
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:256
11044
  msgid "Showcase animation"
11045
  msgstr "Animación de exhibición"
11046
 
11047
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:279
11048
  msgid "Horizontal showcase"
11049
  msgstr "Muestra horizontal"
11050
 
11051
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:295
11052
  msgid "Vertical showcase"
11053
  msgstr "Muestra vertical"
11054
 
11055
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:311
11056
  msgid "Horizontal cover flow"
11057
  msgstr "Flujo de cobertura horizontal"
11058
 
11059
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:327
11060
  msgid "Vertical cover flow"
11061
  msgstr "Flujo de cobertura vertical"
11062
 
11063
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:708
11064
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:709
11065
  msgid "Switch with next/previous slides"
11066
  msgstr "Cambiar los slides con anterior/siguiente"
11067
 
11068
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:710
11069
  msgid ""
11070
  "Clicking on any slide that's not in the middle will make the slider switch "
11071
  "to that slide. With this option you can disable this behavior, for example, "
11146
  msgid "Fullscreen"
11147
  msgstr "Pantalla completa"
11148
 
11149
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImageFrontend.php:137
11150
+ msgid "Exit full screen"
11151
+ msgstr "Salir de pantalla completa"
11152
+
11153
+ #: SmartSlider3Pro/Widget/FullScreen/FullScreenImage/FullScreenImageFrontend.php:141
11154
+ msgid "Enter Full screen"
11155
+ msgstr "Entrar en pantalla completa"
11156
+
11157
  #: SmartSlider3Pro/Widget/Group/FullScreen.php:53
11158
  #, php-format
11159
  msgid ""
11185
  msgid "Bar color"
11186
  msgstr "Color de la barra"
11187
 
11188
+ #~ msgid "jquery.framework"
11189
+ #~ msgstr "jquery.framework"
11190
+
11191
+ #~ msgid "Async"
11192
+ #~ msgstr "Asíncrono"
11193
+
11194
+ #~ msgid "Combine"
11195
+ #~ msgstr "Combinar"
11196
+
11197
+ #~ msgid "View record"
11198
+ #~ msgstr "Ver registro"
11199
+
11200
+ #~ msgid "Available by date"
11201
+ #~ msgstr "Disponible por fecha"
11202
+
11203
+ #~ msgid "Requires shipping"
11204
+ #~ msgstr "Requiere envío"
11205
+
11206
+ #~ msgid "Min order quantity"
11207
+ #~ msgstr "Cantidad mínima de órdenes"
11208
+
11209
+ #~ msgid "Approved"
11210
+ #~ msgstr "Aprovado"
11211
+
11212
+ #~ msgid "Show hidden"
11213
+ #~ msgstr "Mostrar ocultos"
11214
+
11215
+ #~ msgid "View group"
11216
+ #~ msgstr "Ver grupo"
11217
+
11218
+ #~ msgid "Priority"
11219
+ #~ msgstr "Prioridad"
11220
+
11221
+ #~ msgid "Accordion slide title"
11222
+ #~ msgstr "Título del slide acordeón"
11223
+
11224
+ #~ msgid "Tile"
11225
+ #~ msgstr "Mosaico"
11226
+
11227
+ #~ msgid "Generate"
11228
+ #~ msgstr "Generar"
11229
+
11230
+ #~ msgid "Desktop image is empty!"
11231
+ #~ msgstr "¡La imagen de escritorio está vacía!"
11232
+
11233
+ #~ msgid "Tablet retina"
11234
+ #~ msgstr "Tableta retina"
11235
+
11236
+ #~ msgid "Mobile retina"
11237
+ #~ msgstr "Móvil retina"
11238
+
11239
+ #~ msgid "Slide height probably too high"
11240
+ #~ msgstr "La altura del slide es probablemente muy alta"
11241
+
11242
+ #~ msgid ""
11243
+ #~ "The height of this slide is much higher than others so it will increase "
11244
+ #~ "the height of the other slides."
11245
+ #~ msgstr ""
11246
+ #~ "La altura de este slide es mucho más alta que la de otros, por lo que "
11247
+ #~ "debes incrementar la altura de esos otros slides."
11248
+
11249
+ #~ msgid "Slide height increased"
11250
+ #~ msgstr "Altura del slide incrementada"
11251
+
11252
+ #, javascript-format
11253
+ #~ msgid ""
11254
+ #~ "The height of this slide increased because the following slides are much "
11255
+ #~ "higher: %s."
11256
+ #~ msgstr ""
11257
+ #~ "La altura de este slide se incrementó ya que los siguientes slides son "
11258
+ #~ "mucho más grandes: %s."
11259
+
11260
+ #~ msgid ""
11261
+ #~ "Activation process is not supported in this browser. Please use Google "
11262
+ #~ "Chrome."
11263
+ #~ msgstr ""
11264
+ #~ "Este navegador no soporta el proceso de activación. Por favor utiliza "
11265
+ #~ "Google Chrome."
11266
+
11267
+ #~ msgid "Most important changes in version 3.4"
11268
+ #~ msgstr "Los cambios más importantes en la versión 3.4"
11269
+
11270
+ #~ msgid ""
11271
+ #~ "To help you get started with the new version, we've put together the most "
11272
+ #~ "important changes."
11273
+ #~ msgstr ""
11274
+ #~ "Para ayudarte a comenzar con la nueva versión, hemos agrupado los cambios "
11275
+ #~ "más importantes."
11276
+
11277
+ #~ msgid ""
11278
+ #~ "You can find the Slide Background option in the Layer Window! Click on "
11279
+ #~ "the Slide Label at the top of the Canvas to find them."
11280
+ #~ msgstr ""
11281
+ #~ "La opción para seleccionar el fondo del slide la puedes encontrar en la "
11282
+ #~ "ventana de capas. Has click en la etiqueta \"Slide\" de color azul en la "
11283
+ #~ "parte superior de la ventana de edición para cambiar esta opción."
11284
+
11285
+ #~ msgid "Watch video"
11286
+ #~ msgstr "Mirar video"
11287
+
11288
+ #~ msgid "Absolute position"
11289
+ #~ msgstr "Posición absoluta"
11290
+
11291
+ #~ msgid ""
11292
+ #~ "Canvas layers are now called Absolute! In the Add Panel switch to "
11293
+ #~ "Absolute before you create the layer."
11294
+ #~ msgstr ""
11295
+ #~ "Las capas del modo Canvas de anteriores versiones ahora se llaman modo "
11296
+ #~ "Absoluto. En el panel para agregar capas puedes cambiar el modo a "
11297
+ #~ "Absoluto y crear tu capa."
11298
+
11299
+ #~ msgid "Read docs"
11300
+ #~ msgstr "Leer más"
11301
+
11302
+ #~ msgid "Fade on scroll"
11303
+ #~ msgstr "Desvanecer al desplazarse"
11304
+
11305
+ #~ msgid ""
11306
+ #~ "If you turn off <b>Fade On Load</b>, the slider loading will be visible "
11307
+ #~ "as the browser builds up the slider. In most cases this looks bad, so we "
11308
+ #~ "don't suggest turning <b>Fade On Load</b> off."
11309
+ #~ msgstr ""
11310
+ #~ "Si desactivas <b>Desvanecer al cargar</b>, la carga del slider será "
11311
+ #~ "visible cuando el navegador cargar el slider. En la mayoría de los casos "
11312
+ #~ "esto no sugerimos desactivar <b>Desvanecer al cargar</b>."
11313
+
11314
+ #~ msgid "Loading animation"
11315
+ #~ msgstr "Animación de pre-carga"
11316
+
11317
+ #~ msgid "Spinner"
11318
+ #~ msgstr "Spinner"
11319
+
11320
+ #~ msgid "Hide until complete load"
11321
+ #~ msgstr "Ocultar hasta que la carga se complete"
11322
+
11323
+ #~ msgid ""
11324
+ #~ "When an image is used as the loading spinner, it takes time to load. This "
11325
+ #~ "can be visible, as the image being built up by the browser and moves to "
11326
+ #~ "the slider's center. You can hide the spinner during this image loading "
11327
+ #~ "part."
11328
+ #~ msgstr ""
11329
+ #~ "Cuando una imagen se utiliza como un spinner de carga, tarda tiempo en "
11330
+ #~ "cargar. Esta puede estar visible mientras la imagen se carga en el "
11331
+ #~ "navegador y se mueve al centro del slider. Puede ocultar el spinner "
11332
+ #~ "durante el proceso de carga de la imagen."
11333
+
11334
+ #~ msgid "Lazy load"
11335
+ #~ msgstr "Modo de carga"
11336
+
11337
+ #~ msgid "Optimize slide images"
11338
+ #~ msgstr "Optimizar imágenes de los slides"
11339
+
11340
+ #, php-format
11341
+ #~ msgid "Your current memory limit is %s."
11342
+ #~ msgstr "Tu límite de memoria actual es de %s."
11343
+
11344
+ #~ msgid ""
11345
+ #~ "This feature requires high memory limit. If you do not have enough memory "
11346
+ #~ "you will get a blank page on the frontend."
11347
+ #~ msgstr ""
11348
+ #~ "Esta característica requiere de un límite de memoria alto. Si no tienes "
11349
+ #~ "suficiente memoria en tu servidor obtendrás una pantalla en blanco en el "
11350
+ #~ "frontend."
11351
+
11352
+ #~ msgid "Resize background"
11353
+ #~ msgstr "Redimensionar fondo"
11354
+
11355
+ #~ msgid "Optimize layer images"
11356
+ #~ msgstr "Optimizar imágenes de capa"
11357
+
11358
+ #~ msgid "Tablet scale"
11359
+ #~ msgstr "Escala en tableta"
11360
+
11361
+ #~ msgid "Mobile scale"
11362
+ #~ msgstr "Escala móvil"
11363
+
11364
+ #~ msgid "Adaptive"
11365
+ #~ msgstr "Adaptativo"
11366
+
11367
+ #~ msgid ""
11368
+ #~ "Keeps the same size for your text on each device for best legibility. "
11369
+ #~ "It's enabled by default on the Content layer."
11370
+ #~ msgstr ""
11371
+ #~ "Mantiene el mismo tamaño para el texto en cada dispositivo para mejorar "
11372
+ #~ "la legibilidad. Está activado por defecto para la capa Contenido."
11373
+
11374
+ #~ msgid "Load jQuery on frontend"
11375
+ #~ msgstr "Cargar JQuery en el frontend"
11376
+
11377
+ #~ msgid "Load GSAP on frontend"
11378
+ #~ msgstr "Cargar GSAP en el frontend"
11379
+
11380
+ #~ msgid "CSS mode"
11381
+ #~ msgstr "Modo CSS"
11382
+
11383
+ #~ msgid "Inline"
11384
+ #~ msgstr "En línea"
11385
+
11386
+ #~ msgid "Inline at head"
11387
+ #~ msgstr "En línea en el encabezado"
11388
+
11389
+ #~ msgid "Parallax overlap"
11390
+ #~ msgstr "Superposición de parallax"
11391
+
11392
+ #~ msgid "Background image dynamic height"
11393
+ #~ msgstr "Altura dinámica de la imagen de fondo"
11394
+
11395
+ #~ msgid ""
11396
+ #~ "The height of your slides changes according to the height of the "
11397
+ #~ "background image."
11398
+ #~ msgstr ""
11399
+ #~ "La altura de tus slides cambia de acuerdo a la altura de la imagen de "
11400
+ #~ "fondo."
11401
+
11402
+ #~ msgid "Tablet size"
11403
+ #~ msgstr "Tamaño de tableta"
11404
+
11405
+ #~ msgid "Mobile size"
11406
+ #~ msgstr "Tamaño de móvil"
11407
+
11408
+ #~ msgid "Minimum thumbnail count"
11409
+ #~ msgstr "Conteo minimo de miniatura"
11410
+
11411
+ #~ msgid ""
11412
+ #~ "If your thumbnail is vertical, it hides the thumbnails when the set "
11413
+ #~ "number of thumbnails can't fit."
11414
+ #~ msgstr ""
11415
+ #~ "Si tu miniatura es vertical, oculta la miniatura cuando el número de "
11416
+ #~ "miniaturas no puede encajar."
11417
+
11418
+ #~ msgid ""
11419
+ #~ "If your thumbnail is horizontal, it starts resizing the thumbnails when "
11420
+ #~ "the set number of thumbnails can't fit."
11421
+ #~ msgstr ""
11422
+ #~ "Si tu miniatura es horizontal, redimensiona las miniaturas cuando el "
11423
+ #~ "número de miniaturas no pueden encajar."
11424
+
11425
+ #~ msgid "Invert group direction"
11426
+ #~ msgstr "Invertir dirección del grupo"
11427
+
11428
+ #~ msgid "Makes the thumbnail order follow the set orientation."
11429
+ #~ msgstr ""
11430
+ #~ "Establece el orden de las miniaturas siguiendo la orientación del set."
11431
+
11432
+ #~ msgid "Typewriter 2"
11433
+ #~ msgstr "Máquina de escribir 2"
11434
+
11435
+ #~ msgid "Text color"
11436
+ #~ msgstr "Color del texto"
11437
+
11438
+ #~ msgctxt "Slider type"
11439
+ #~ msgid "Accordion"
11440
+ #~ msgstr "Acordión"
11441
+
11442
+ #~ msgctxt "Slider type"
11443
+ #~ msgid "Accordion slider"
11444
+ #~ msgstr "Slider acordión"
11445
+
11446
+ #~ msgid "Dark"
11447
+ #~ msgstr "Oscuro"
11448
+
11449
+ #~ msgid "Border outer width"
11450
+ #~ msgstr "Ancho del borde exterior"
11451
+
11452
+ #~ msgid "Outer color"
11453
+ #~ msgstr "Color externo"
11454
+
11455
+ #~ msgid "Border inner width"
11456
+ #~ msgstr "Ancho del borde interior"
11457
+
11458
+ #~ msgid "Inner color"
11459
+ #~ msgstr "Color interno"
11460
+
11461
+ #~ msgid "Tab background"
11462
+ #~ msgstr "Fonde de la ficha"
11463
+
11464
+ #~ msgid "Tab background - Active"
11465
+ #~ msgstr "Pestaña fondo - Activa"
11466
+
11467
+ #~ msgid "Slide margin"
11468
+ #~ msgstr "Margen del slide"
11469
+
11470
+ #~ msgid "Title size"
11471
+ #~ msgstr "Tamaño del título"
11472
+
11473
+ #~ msgid "Title margin"
11474
+ #~ msgstr "Margen del título"
11475
+
11476
+ #~ msgid "Outer"
11477
+ #~ msgstr "Externo"
11478
+
11479
+ #~ msgid "Inner"
11480
+ #~ msgstr "Interno"
11481
+
11482
+ #~ msgid "Slider background color"
11483
+ #~ msgstr "Color de fondo del slider"
11484
+
11485
  #~ msgid "Show Joomla admin footer"
11486
  #~ msgstr "Mostrar el bloque administrativo inferior de Joomla"
11487
 
Nextend/Languages/fi_FI.mo CHANGED
Binary file
Nextend/Languages/fi_FI.po CHANGED
@@ -1,44 +1,40 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: VERSION\n"
4
- "POT-Creation-Date: 2020-10-16 11:28+0200\n"
5
- "PO-Revision-Date: 2020-10-16 11:29+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fi\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.1\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: n2_;n2_e;n2_n:1,2;n2_en:1,2;n2_x:1,2c;n2_ex:1,2c\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: Framework/Asset/Builder/cache\n"
19
 
20
- #: Framework/Api.php:117 Framework/Misc/HttpClient.php:81
21
  msgid "Debug error"
22
  msgstr ""
23
 
24
- #: Framework/Api.php:136 Framework/Misc/HttpClient.php:106
25
  msgid "CURL disabled in your php.ini configuration. Please enable it!"
26
  msgstr ""
27
 
28
- #: Framework/Api.php:144 Framework/Misc/HttpClient.php:112
29
  msgid "Unable to contact with the licensing server, please try again later!"
30
  msgstr ""
31
 
32
- #: Framework/Asset/Js/Js.php:70
33
- msgid "jquery.framework"
34
- msgstr ""
35
-
36
- #: Framework/Asset/Predefined.php:28
37
  msgctxt "Default Google font family for admin"
38
  msgid "Montserrat"
39
  msgstr ""
40
 
41
- #: Framework/Asset/Predefined.php:29
42
  msgctxt "Default Google font charset for admin"
43
  msgid "latin"
44
  msgstr ""
@@ -51,7 +47,7 @@ msgstr ""
51
  msgid "Folder is missing!"
52
  msgstr ""
53
 
54
- #: Framework/Content/Joomla/JoomlaContent.php:131
55
  msgid "Menu item"
56
  msgstr ""
57
 
@@ -79,8 +75,8 @@ msgstr ""
79
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:96
80
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:176
81
  #: Framework/Image/ControllerAjaxImage.php:34
82
- #: Framework/Image/ControllerAjaxImage.php:73
83
- #: Framework/Image/ControllerAjaxImage.php:109
84
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:33
85
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:99
86
  msgid "Unexpected error"
@@ -97,7 +93,7 @@ msgstr ""
97
 
98
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:136
99
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:156
100
- #: Framework/Image/ControllerAjaxImage.php:91
101
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:53
102
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:76
103
  msgid "Not editable"
@@ -126,37 +122,37 @@ msgstr ""
126
  msgid "Font manager"
127
  msgstr ""
128
 
129
- #: Framework/Font/FontRenderer.php:103 Framework/Font/FontRenderer.php:105
130
- #: Framework/Font/FontRenderer.php:117 Framework/Font/FontRenderer.php:119
131
- #: Framework/Font/FontRenderer.php:133 Framework/Font/FontRenderer.php:152
132
- #: Framework/Font/FontRenderer.php:187 Framework/Font/FontRenderer.php:205
133
- #: Framework/Font/FontRenderer.php:221 Framework/Font/FontRenderer.php:237
134
- #: Framework/Font/FontRenderer.php:255 Framework/Style/StyleRenderer.php:80
135
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:28
136
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
137
- #: SmartSlider3/Renderable/Item/Text/Assets/text.js:20
138
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:53
139
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:134
140
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:248
141
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:149
142
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:142
143
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:64
144
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:51
145
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:58
146
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:58
147
  msgid "Text"
148
  msgstr "Teksti"
149
 
150
- #: Framework/Font/FontRenderer.php:131 Framework/Font/FontRenderer.php:134
151
- #: Framework/Font/FontRenderer.php:153 Framework/Font/FontRenderer.php:189
152
- #: Framework/Font/FontRenderer.php:206 Framework/Font/FontRenderer.php:239
153
- #: Framework/Font/FontRenderer.php:257 Framework/Style/StyleRenderer.php:109
154
- #: Framework/Style/StyleRenderer.php:125 Framework/Style/StyleRenderer.php:144
155
- #: Framework/Style/StyleRenderer.php:196
156
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:74
157
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:108
158
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:42
159
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:63
160
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:139
161
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:171
162
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:187
@@ -167,27 +163,27 @@ msgstr "Teksti"
167
  msgid "Hover"
168
  msgstr "Leijua"
169
 
170
- #: Framework/Font/FontRenderer.php:139 Framework/Style/StyleRenderer.php:141
171
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:27
172
- #: SmartSlider3/Renderable/Item/Heading/Assets/heading.js:20
173
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:53
174
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
175
  #: SmartSlider3/Storage.php:65
176
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
177
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:306
178
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:100
179
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:249
180
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:264
181
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:203
182
  msgid "Heading"
183
  msgstr "Otsikko"
184
 
185
- #: Framework/Font/FontRenderer.php:150 Framework/Font/FontRenderer.php:188
186
- #: Framework/Font/FontRenderer.php:238
187
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:58
188
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:60
189
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:85
190
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:87
191
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:75
192
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:77
193
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:112
@@ -201,29 +197,29 @@ msgstr "Otsikko"
201
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:181
202
  #: SmartSlider3/Storage.php:877
203
  #: SmartSlider3Pro/Form/Element/ParticleSkin.php:18
 
204
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:169
205
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:170
206
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:188
207
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:189
208
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:180
209
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:181
210
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:218
211
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:219
212
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:114
213
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:115
214
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:136
215
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:137
216
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:280
217
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:281
 
218
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:138
219
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:139
220
  msgid "Link"
221
  msgstr "Linkitä"
222
 
223
- #: Framework/Font/FontRenderer.php:158 Framework/Font/FontRenderer.php:262
224
- #: Framework/Style/StyleRenderer.php:122 Framework/Style/StyleRenderer.php:201
225
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:30
226
- #: SmartSlider3/Renderable/Item/Button/Assets/button.js:20
227
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:50
228
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
229
  #: SmartSlider3/Storage.php:290 SmartSlider3/Widget/Group/Autoplay.php:49
@@ -237,72 +233,11 @@ msgstr "Linkitä"
237
  msgid "Button"
238
  msgstr "Nappi"
239
 
240
- #: Framework/Font/FontRenderer.php:169
241
- msgid "Accordion slide title"
242
- msgstr ""
243
-
244
- #: Framework/Font/FontRenderer.php:171
245
- #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:72
246
- #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:73
247
- #: Framework/Form/Element/Select/FontWeight.php:13
248
- #: Framework/Form/Element/Select/FontWeight.php:18
249
- #: Framework/Style/StyleRenderer.php:94 Framework/Style/StyleRenderer.php:108
250
- #: Framework/Style/StyleRenderer.php:124 Framework/Style/StyleRenderer.php:143
251
- #: Framework/Style/StyleRenderer.php:162 Framework/Style/StyleRenderer.php:178
252
- #: Framework/Style/StyleRenderer.php:194
253
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:148
254
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:62
255
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:149
256
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:61
257
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:72
258
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:173
259
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:184
260
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:153
261
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:186
262
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:197
263
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:377
264
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:411
265
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:427
266
- #: SmartSlider3Pro/SplitText/ModelSplitText.php:62
267
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:156
268
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:170
269
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:186
270
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:205
271
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:224
272
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:240
273
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:256
274
- msgid "Normal"
275
- msgstr "Normaali"
276
-
277
- #: Framework/Font/FontRenderer.php:172 Framework/Font/FontRenderer.php:222
278
- #: Framework/Style/StyleRenderer.php:163 Framework/Style/StyleRenderer.php:179
279
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:353
280
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:396
281
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:441
282
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:477
283
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:513
284
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:554
285
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:596
286
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:638
287
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:225
288
- #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:241
289
- msgid "Active"
290
- msgstr "Aktiivinen"
291
-
292
- #: Framework/Font/FontRenderer.php:177
293
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:57
294
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:92
295
- #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:31
296
- #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:79
297
- #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/Assets/Admin/arrow.js:11
298
- msgid "Slide title"
299
- msgstr ""
300
-
301
- #: Framework/Font/FontRenderer.php:185
302
  msgid "Paragraph"
303
  msgstr ""
304
 
305
- #: Framework/Font/FontRenderer.php:219 Framework/Style/StyleRenderer.php:176
306
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:49
307
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:238
308
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:51
@@ -310,7 +245,22 @@ msgstr ""
310
  msgid "Dot"
311
  msgstr ""
312
 
313
- #: Framework/Font/FontRenderer.php:235 SmartSlider3/Storage.php:529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  #: SmartSlider3Pro/Renderable/Item/HtmlList/Assets/list.js:20
315
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:56
316
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:76
@@ -319,8 +269,8 @@ msgstr ""
319
  msgid "List"
320
  msgstr "Lista"
321
 
322
- #: Framework/Font/FontRenderer.php:253 Framework/Font/FontRenderer.php:256
323
- #: Framework/Style/StyleRenderer.php:192 Framework/Style/StyleRenderer.php:195
324
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:234
325
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:254
326
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:257
@@ -347,29 +297,30 @@ msgid "Family"
347
  msgstr "Perhe"
348
 
349
  #: Framework/Font/ModelFont.php:40
350
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:170
351
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:54
352
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:197
353
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:304
354
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:438
355
  #: SmartSlider3/Form/Element/BackgroundImage.php:31
356
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:222
357
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:71
358
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:105
 
359
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:53
360
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:83
361
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:119
362
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:105
363
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:164
364
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:112
365
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:158
366
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:137
367
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:245
368
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:94
369
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:242
370
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:138
371
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:40
372
- #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:54
373
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:43
374
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:57
375
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:59
@@ -380,31 +331,28 @@ msgid "Color"
380
  msgstr "Väri"
381
 
382
  #: Framework/Font/ModelFont.php:44
383
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:413
384
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:416
385
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:418
 
386
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:52
387
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:192
388
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:84
389
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:216
390
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:166
391
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:58
392
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:59
393
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:182
394
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:150
395
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:88
396
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:217
397
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:129
398
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:132
399
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:149
400
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:202
401
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:204
402
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:174
403
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:143
404
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:101
405
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:234
406
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:191
407
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:92
408
  #: SmartSlider3Pro/Widget/Indicator/IndicatorPie/IndicatorPie.php:31
409
  msgid "Size"
410
  msgstr "Koko"
@@ -445,10 +393,11 @@ msgstr ""
445
  msgid "Transform"
446
  msgstr ""
447
 
448
- #: Framework/Font/ModelFont.php:86 Framework/Form/Element/Mixed/Border.php:39
449
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:163
 
450
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:116
451
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:190
452
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:91
453
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:46
454
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:105
@@ -456,16 +405,15 @@ msgstr ""
456
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:85
457
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:105
458
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:167
459
- #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:126
460
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:44
461
- #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:131
462
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:150
463
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:208
464
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:102
465
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:101
466
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:92
467
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:35
468
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:62
469
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:84
470
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:51
471
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:46
@@ -481,30 +429,21 @@ msgstr ""
481
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:54
482
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:55
483
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:38
484
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:52
485
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:118
486
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:86
487
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:69
488
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:51
489
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:78
490
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:69
491
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:56
492
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:56
493
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:28
494
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:63
495
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:62
496
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:63
497
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:51
498
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:45
499
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:56
500
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:84
501
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:66
502
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:56
503
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:38
504
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:36
505
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:151
506
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:137
507
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:223
508
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:39
509
  msgid "None"
510
  msgstr "Ei mitään"
@@ -530,14 +469,14 @@ msgid "Text shadow"
530
  msgstr ""
531
 
532
  #: Framework/Font/ModelFont.php:100 Framework/Image/ModelImage.php:35
533
- #: Framework/Image/ModelImage.php:58 Framework/Style/ModelStyle.php:94
534
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:83
535
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:61
536
- #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:111
537
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:77
538
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:38
539
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:115
540
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:218
541
  #: SmartSlider3/BackgroundAnimation/ModelBackgroundAnimation.php:41
542
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:78
543
  #: SmartSlider3Pro/PostBackgroundAnimation/ModelPostBackgroundAnimation.php:45
@@ -565,8 +504,8 @@ msgstr ""
565
 
566
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:64
567
  #: Framework/Form/Element/Style.php:50
568
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:161
569
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:188
570
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabStyle.php:20
571
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:57
572
  #: SmartSlider3/Widget/Group/Bullet.php:95
@@ -591,6 +530,38 @@ msgctxt "Font style"
591
  msgid "Italic"
592
  msgstr ""
593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
594
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:86
595
  msgid "Character set"
596
  msgstr ""
@@ -660,52 +631,53 @@ msgid "Choose"
660
  msgstr "Valitse"
661
 
662
  #: Framework/Form/Element/Breakpoint.php:39
663
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
664
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:75
665
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:194
666
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:52
667
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:80
668
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:80
669
  msgid "Orientation"
670
  msgstr "Orientaatio"
671
 
672
  #: Framework/Form/Element/Breakpoint.php:41
673
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
674
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:230
 
675
  msgid "Portrait"
676
  msgstr "Pystykuva"
677
 
678
  #: Framework/Form/Element/Breakpoint.php:42
679
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:411
680
  msgid "Landscape"
681
  msgstr "Vaakakuva"
682
 
683
  #: Framework/Form/Element/Breakpoint.php:51
684
- #: Framework/Form/Element/Breakpoint.php:86 Framework/Image/ModelImage.php:40
685
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:86
686
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:228
687
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:20
688
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:161
689
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:162
690
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:181
 
691
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:112
692
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:97
693
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:229
694
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:302
695
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:523
696
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:156
697
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:167
698
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:157
699
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:161
700
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:97
701
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:150
 
702
  msgid "Mobile"
703
  msgstr "Mobiili"
704
 
705
  #: Framework/Form/Element/Breakpoint.php:56
706
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:229
707
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:21
708
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:177
709
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:101
710
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:212
711
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:294
@@ -717,28 +689,29 @@ msgstr ""
717
 
718
  #: Framework/Form/Element/Breakpoint.php:61
719
  #: Framework/Form/Element/Breakpoint.php:91 Framework/Image/ModelImage.php:38
720
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:85
721
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:226
722
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:18
723
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:163
724
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:172
725
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:106
726
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:194
727
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:287
728
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:473
729
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:155
730
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:159
731
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:145
732
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:149
733
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:112
734
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:126
 
735
  msgid "Tablet"
736
  msgstr "Tabletti"
737
 
738
  #: Framework/Form/Element/Breakpoint.php:66
739
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:227
740
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:19
741
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:168
742
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:110
743
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:178
744
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:279
@@ -750,23 +723,24 @@ msgstr ""
750
 
751
  #: Framework/Form/Element/Breakpoint.php:71
752
  #: Framework/Form/Element/Breakpoint.php:96 Framework/Image/ModelImage.php:31
753
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:84
754
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:224
755
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:16
756
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:163
757
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:115
758
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:159
759
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:151
760
- #: SmartSlider3/Application/Admin/Preview/Template/Index.php:29
761
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:127
762
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:102
 
763
  msgid "Desktop"
764
  msgstr "Työpöytä"
765
 
766
  #: Framework/Form/Element/Breakpoint.php:76
767
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:225
768
- #: SmartSlider3/Application/Admin/Assets/js/preview.js:17
769
- #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:159
770
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:119
771
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:143
772
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:272
@@ -794,12 +768,11 @@ msgstr "Näytä pöytäkirjat"
794
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
795
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
796
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
797
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:146
798
- #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:149
799
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
800
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
801
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:179
802
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:161
803
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:85
804
  msgid "Font"
805
  msgstr "Fontti"
@@ -808,52 +781,52 @@ msgstr "Fontti"
808
  msgid "Warning"
809
  msgstr ""
810
 
811
- #: Framework/Form/Element/Mixed/Border.php:40
812
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:166
813
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:193
814
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:154
815
  msgid "Dotted"
816
  msgstr "Dotted"
817
 
818
- #: Framework/Form/Element/Mixed/Border.php:41
819
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:165
820
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:192
821
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:153
822
  msgid "Dashed"
823
  msgstr "Dashed"
824
 
825
- #: Framework/Form/Element/Mixed/Border.php:42
826
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:164
827
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:191
828
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:152
829
  msgid "Solid"
830
  msgstr "Kiinteä"
831
 
832
- #: Framework/Form/Element/Mixed/Border.php:43
833
  msgid "Double"
834
  msgstr "Tupla"
835
 
836
- #: Framework/Form/Element/Mixed/Border.php:44
837
  msgid "Groove"
838
  msgstr "Ura"
839
 
840
- #: Framework/Form/Element/Mixed/Border.php:45
841
  msgid "Ridge"
842
  msgstr "Harjanne"
843
 
844
- #: Framework/Form/Element/Mixed/Border.php:46
845
  msgid "Inset"
846
  msgstr "Upote"
847
 
848
- #: Framework/Form/Element/Mixed/Border.php:47
849
  msgid "Outset"
850
  msgstr "Uloke"
851
 
852
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:20
853
  msgid "Field"
854
  msgstr "Kenttä"
855
 
856
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:22
857
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:87
858
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:42
859
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:101
@@ -864,7 +837,6 @@ msgstr "Kenttä"
864
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:97
865
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:88
866
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:31
867
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Sources/CobaltRecords.php:58
868
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:80
869
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:47
870
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:42
@@ -879,24 +851,15 @@ msgstr "Kenttä"
879
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:50
880
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:51
881
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:34
882
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:48
883
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Sources/JcartProducts.php:114
884
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:82
885
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:65
886
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Sources/JmarketProducts.php:47
887
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialActivities.php:74
888
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialEvents.php:65
889
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:52
890
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialVideos.php:52
891
- #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:59
892
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Sources/JreviewsComments.php:58
893
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:59
894
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:47
895
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:41
896
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:52
897
- #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:80
898
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:62
899
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:52
900
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:68
901
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:91
902
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:34
@@ -907,24 +870,24 @@ msgstr "Kenttä"
907
  msgid "Order"
908
  msgstr "Järjestys"
909
 
910
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:24
911
  msgid "Ascending"
912
  msgstr "Nouseva"
913
 
914
- #: Framework/Form/Element/Mixed/GeneratorOrder.php:25
915
  msgid "Descending"
916
  msgstr "Laskeva"
917
 
918
  #: Framework/Form/Element/OnOff.php:22
919
  #: Framework/Form/Element/Select/Gradient.php:15
920
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:145
921
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:117
922
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:124
923
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:96
924
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:107
925
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:290
926
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:307
927
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:165
928
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:141
929
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:150
930
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:180
@@ -932,9 +895,9 @@ msgid "Off"
932
  msgstr "Pois"
933
 
934
  #: Framework/Form/Element/OnOff.php:22
935
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:146
936
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:308
937
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:166
938
  msgid "On"
939
  msgstr "On"
940
 
@@ -945,11 +908,10 @@ msgid ""
945
  msgstr ""
946
 
947
  #: Framework/Form/Element/Select/FillMode.php:15
948
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:239
949
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:107
950
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:240
951
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:130
952
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:208
953
  msgid "Fill"
954
  msgstr "Täytä"
955
 
@@ -958,45 +920,39 @@ msgid "Blur fit"
958
  msgstr ""
959
 
960
  #: Framework/Form/Element/Select/FillMode.php:17
961
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:240
962
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:108
963
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:241
964
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:131
965
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:209
966
  msgid "Fit"
967
  msgstr "Sovita"
968
 
969
  #: Framework/Form/Element/Select/FillMode.php:18
970
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:79
971
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:80
 
972
  msgid "Stretch"
973
  msgstr "Venytä"
974
 
975
  #: Framework/Form/Element/Select/FillMode.php:19
976
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:81
977
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:102
978
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:150
979
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:241
980
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:109
981
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:242
982
  #: SmartSlider3/Storage.php:710
983
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:103
984
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:71
985
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:71
986
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:235
987
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:337
988
- #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:307
989
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:67
990
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:76
991
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:76
992
  msgid "Center"
993
  msgstr "Keskelle"
994
 
995
- #: Framework/Form/Element/Select/FillMode.php:20
996
- msgid "Tile"
997
- msgstr "Laatta"
998
-
999
- #: Framework/Form/Element/Select/FillMode.php:26
1000
  msgid "Slider's default"
1001
  msgstr "Diaesityksen oletus"
1002
 
@@ -1010,7 +966,6 @@ msgstr "Diaesityksen oletus"
1010
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTags.php:17
1011
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTaxonomies.php:23
1012
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:39
1013
- #: SmartSlider3Pro/Generator/Joomla/Cobalt/Elements/CobaltCategories.php:39
1014
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsCategories.php:36
1015
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsLocations.php:36
1016
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsTypes.php:15
@@ -1036,27 +991,12 @@ msgstr "Diaesityksen oletus"
1036
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopTags.php:18
1037
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopWarehouses.php:18
1038
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Elements/IgnitegalleryCategories.php:33
1039
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Elements/JauctionCategories.php:35
1040
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Elements/JauctionLanguages.php:21
1041
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Elements/JcartCategories.php:33
1042
- #: SmartSlider3Pro/Generator/Joomla/Jcart/Elements/JcartLanguages.php:22
1043
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCalendars.php:17
1044
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCategories.php:34
1045
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:72
1046
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Elements/JmarketCategories.php:35
1047
- #: SmartSlider3Pro/Generator/Joomla/Jmarket/Elements/JmarketLanguages.php:21
1048
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialCategories.php:31
1049
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialEvents.php:17
1050
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialGroupcategories.php:31
1051
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialGroups.php:17
1052
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialProfiles.php:17
1053
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Elements/JomsocialVideotype.php:17
1054
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:46
1055
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingCategories.php:42
1056
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:27
1057
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingManufacturers.php:27
1058
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Elements/JreviewsArticles.php:21
1059
- #: SmartSlider3Pro/Generator/Joomla/Jreviews/Elements/JreviewsCategories.php:36
1060
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Categories.php:29
1061
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Tags.php:18
1062
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Elements/MijoshopCategories.php:49
@@ -1072,8 +1012,6 @@ msgstr "Diaesityksen oletus"
1072
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Elements/RseventsproTags.php:17
1073
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartCategories.php:34
1074
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartManufacturers.php:21
1075
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Elements/ZooCategories.php:24
1076
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Elements/ZooTags.php:17
1077
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarCategories.php:34
1078
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarTags.php:35
1079
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Elements/EventsManagerCategories.php:34
@@ -1106,7 +1044,6 @@ msgid "Extra light"
1106
  msgstr ""
1107
 
1108
  #: Framework/Form/Element/Select/FontWeight.php:17
1109
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:77
1110
  msgid "Light"
1111
  msgstr "Vaaela"
1112
 
@@ -1127,34 +1064,34 @@ msgid "New"
1127
  msgstr ""
1128
 
1129
  #: Framework/Form/Element/Select/LinkTarget.php:15
1130
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1150
1131
  msgid "Parent"
1132
  msgstr "Vanhempi"
1133
 
1134
  #: Framework/Form/Element/Select/LinkTarget.php:16
1135
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:75
1136
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:78
1137
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:81
1138
- #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:84
1139
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:176
1140
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:468
1141
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:472
1142
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:480
1143
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
1144
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
1145
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
1146
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:488
1147
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:511
1148
- #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:238
 
1149
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:106
1150
  #: SmartSlider3/Storage.php:979
1151
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:138
1152
- #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:73
1153
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:199
1154
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:217
1155
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:234
1156
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:299
1157
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:336
1158
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:105
1159
  msgid "Top"
1160
  msgstr "Ylhäällä"
@@ -1179,25 +1116,25 @@ msgstr ""
1179
  #: Framework/Form/Joomla/Element/Select/MenuItems.php:18
1180
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:119
1181
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:61
1182
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:150
1183
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:132
1184
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:507
1185
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:107
1186
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:49
1187
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:190
1188
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:237
1189
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:196
1190
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:58
1191
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:69
1192
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:170
1193
- #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:181
1194
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:183
1195
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:194
1196
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:373
1197
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:408
1198
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:424
1199
  #: SmartSlider3/Storage.php:552 SmartSlider3/Storage.php:928
1200
- #: SmartSlider3/Storage.php:1165 SmartSlider3/Storage.php:3954
1201
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:39
1202
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCategoryLanguage.php:20
1203
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCurrency.php:20
@@ -1207,25 +1144,17 @@ msgstr ""
1207
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:95
1208
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:80
1209
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:86
1210
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:218
1211
  msgid "Default"
1212
  msgstr "Oletus"
1213
 
1214
- #: Framework/Image/Admin/Assets/js/editor.js:142
1215
- msgid "Generate"
1216
- msgstr ""
1217
-
1218
- #: Framework/Image/Admin/Assets/js/editor.js:148
1219
- msgid "Desktop image is empty!"
1220
- msgstr ""
1221
-
1222
- #: Framework/Image/Admin/Assets/js/manager.js:44
1223
  msgid "The image is empty"
1224
  msgstr ""
1225
 
1226
- #: Framework/Image/Admin/Assets/js/manager.js:65
1227
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:86
1228
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:107
1229
  msgid "Empty"
1230
  msgstr ""
1231
 
@@ -1233,44 +1162,29 @@ msgstr ""
1233
  msgid "Image manager"
1234
  msgstr ""
1235
 
1236
- #: Framework/Image/Joomla/JoomlaImage.php:12
1237
- msgid "behavior.modal"
1238
- msgstr ""
1239
-
1240
  #: Framework/Image/ModelImage.php:37
1241
  #, fuzzy
1242
  #| msgid "Desktop"
1243
  msgid "Desktop retina"
1244
  msgstr "Työpöytä"
1245
 
1246
- #: Framework/Image/ModelImage.php:39
1247
- #, fuzzy
1248
- #| msgid "Tablet text"
1249
- msgid "Tablet retina"
1250
- msgstr "Tabletin teksti"
1251
-
1252
- #: Framework/Image/ModelImage.php:41
1253
- #, fuzzy
1254
- #| msgid "Mobile text"
1255
- msgid "Mobile retina"
1256
- msgstr "Mobiilin teksti"
1257
-
1258
- #: Framework/Image/ModelImage.php:55
1259
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:29
1260
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:19
1261
  #: SmartSlider3/Form/Element/BackgroundImage.php:29
1262
- #: SmartSlider3/Renderable/Item/Image/Assets/image.js:20
1263
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:43
1264
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:129
1265
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
1266
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:253
1267
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:262
1268
  #: SmartSlider3/Widget/Group/Bullet.php:64
1269
  #: SmartSlider3/Widget/Group/Thumbnail.php:63
1270
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:161
1271
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:110
1272
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:211
1273
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:216
 
1274
  msgid "Image"
1275
  msgstr "Kuva"
1276
 
@@ -1295,12 +1209,11 @@ msgid "Style settings"
1295
  msgstr ""
1296
 
1297
  #: Framework/Style/ModelStyle.php:35
1298
- #: SmartSlider3/Application/Admin/FormManager/Slider/SliderLoading.php:165
1299
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:112
1300
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:97
1301
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:139
1302
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:139
1303
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:225
1304
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:113
1305
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:89
1306
  msgid "Background color"
@@ -1308,193 +1221,167 @@ msgstr "Taustaväri"
1308
 
1309
  #: Framework/Style/ModelStyle.php:39
1310
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:143
1311
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:223
1312
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:288
1313
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:196
1314
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:335
1315
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:131
1316
  msgid "Opacity"
1317
  msgstr "Läpinäkyvyys"
1318
 
1319
  #: Framework/Style/ModelStyle.php:50
1320
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:203
1321
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:120
1322
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:189
1323
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:221
1324
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:150
1325
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:262
1326
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:317
1327
  msgid "Padding"
1328
  msgstr "Padding"
1329
 
1330
  #: Framework/Style/ModelStyle.php:72
1331
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:135
1332
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:140
1333
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:165
1334
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:169
1335
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:161
1336
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:167
1337
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:125
1338
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:127
1339
  msgid "Border"
1340
  msgstr "Reuna"
1341
 
1342
  #: Framework/Style/ModelStyle.php:74
1343
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:174
1344
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:171
1345
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:201
1346
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:280
 
1347
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:162
1348
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:117
1349
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:152
1350
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:153
1351
  msgid "Border radius"
1352
  msgstr "Reunan säde"
1353
 
1354
  #: Framework/Style/ModelStyle.php:87
1355
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:126
1356
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:157
1357
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:153
1358
  msgid "Box shadow"
1359
  msgstr "Laatikon varjostus"
1360
 
1361
- #: Framework/Style/StyleRenderer.php:78
1362
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:140
1363
  msgid "Single"
1364
  msgstr ""
1365
 
1366
- #: Framework/Style/StyleRenderer.php:92
1367
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:178
1368
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:38
1369
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:200
1370
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:154
1371
  msgid "Simple"
1372
  msgstr "Yksinkertainen"
1373
 
1374
- #: Framework/Style/StyleRenderer.php:106
1375
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:168
1376
  msgid "Box"
1377
  msgstr ""
1378
 
1379
- #: Framework/Style/StyleRenderer.php:160
1380
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:222
1381
  msgid "Heading active"
1382
  msgstr ""
1383
 
1384
  #: SmartSlider3/Application/Admin/ApplicationTypeAdmin.php:55
1385
- #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:301
1386
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:112
1387
- #: SmartSlider3/Application/Model/ModelSlidersXRef.php:150
1388
- #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:85
1389
  msgid "Dashboard"
1390
  msgstr "Hallintapaneeli"
1391
 
1392
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:79
1393
- msgid "Slide height probably too high"
1394
- msgstr ""
1395
-
1396
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:80
1397
- msgid ""
1398
- "The height of this slide is much higher than others so it will increase the "
1399
- "height of the other slides."
1400
- msgstr ""
1401
-
1402
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:84
1403
- msgid "Slide height increased"
1404
- msgstr ""
1405
-
1406
- #: SmartSlider3/Application/Admin/Assets/js/TallSlideDetector.js:89
1407
- #, javascript-format
1408
- msgid ""
1409
- "The height of this slide increased because the following slides are much "
1410
- "higher: %s."
1411
- msgstr ""
1412
-
1413
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:12
1414
  msgid "Drop files here or"
1415
  msgstr ""
1416
 
1417
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:12
1418
  msgid "Upload"
1419
  msgstr ""
1420
 
1421
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:19
1422
  msgid "Parent directory"
1423
  msgstr ""
1424
 
1425
- #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:105
1426
  msgid "Current path"
1427
  msgstr ""
1428
 
1429
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:32
1430
- #: SmartSlider3Pro/Slider/SliderType/Accordion/SliderTypeAccordionAdmin.php:59
1431
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:214
1432
  msgid "Preset"
1433
  msgstr "Esiasetus"
1434
 
1435
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:32
1436
  msgid ""
1437
  "You can use presets to save style settings for later use. Clicking on any "
1438
  "preset will load its styling to your current layer, and the previous style "
1439
  "settings will be lost."
1440
  msgstr ""
1441
 
1442
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:34
1443
  msgid ""
1444
  "Layer design options affect every device. If you need to make responsive "
1445
  "adjustments, look for the options with the device icon."
1446
  msgstr ""
1447
 
1448
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:41
1449
  msgid "Reset style to default"
1450
  msgstr ""
1451
 
1452
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:47
1453
  msgid "Save style as new preset"
1454
  msgstr ""
1455
 
1456
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:58
1457
  msgid "Load style"
1458
  msgstr ""
1459
 
1460
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:87
1461
  msgid "You have not created any presets for this layer yet."
1462
  msgstr ""
1463
 
1464
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:159
1465
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:166
1466
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:217
1467
  msgid "Save as"
1468
  msgstr ""
1469
 
1470
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:164
1471
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:222
1472
- #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:207
1473
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
1474
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
1475
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
1476
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:85
1477
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialUsers.php:84
1478
- #: SmartSlider3Pro/Generator/Joomla/Jomsocial/Sources/JomsocialGroups.php:57
1479
- #: SmartSlider3Pro/Generator/Joomla/Zoo/Sources/ZooItems.php:57
1480
  msgid "Name"
1481
  msgstr "Nimi"
1482
 
1483
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:174
1484
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:232
1485
  msgid "Please fill the name field!"
1486
  msgstr ""
1487
 
1488
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:199
1489
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:290
1490
  msgid "Preset saved."
1491
  msgstr ""
1492
 
1493
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:268
1494
  msgid "Overwrite preset"
1495
  msgstr ""
1496
 
1497
- #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:312
1498
  msgid "Preset deleted."
1499
  msgstr ""
1500
 
@@ -1503,13 +1390,13 @@ msgid "Choose folder"
1503
  msgstr ""
1504
 
1505
  #: SmartSlider3/Application/Admin/Assets/js/common/element/folders.js:46
1506
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:75
1507
  msgid "Select"
1508
  msgstr "Valitse"
1509
 
1510
- #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:135
1511
- #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:198
1512
- #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:69
1513
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:51
1514
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:142
1515
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:145
@@ -1521,31 +1408,31 @@ msgstr "Valitse"
1521
  msgid "Disabled"
1522
  msgstr "Poistettu käytöstä"
1523
 
1524
- #: SmartSlider3/Application/Admin/Assets/js/common/element/imagemanager.js:32
1525
  msgid "Image field can not be empty!"
1526
  msgstr ""
1527
 
1528
- #: SmartSlider3/Application/Admin/Assets/js/common/element/skin.js:56
1529
  msgid "Done"
1530
  msgstr ""
1531
 
1532
- #: SmartSlider3/Application/Admin/Assets/js/common/element/upload.js:39
1533
  msgid "No file selected."
1534
  msgstr ""
1535
 
1536
- #: SmartSlider3/Application/Admin/Assets/js/common/form-tip-manager.js:109
1537
  msgid "Open docs"
1538
  msgstr ""
1539
 
1540
- #: SmartSlider3/Application/Admin/Assets/js/common/form.js:113
1541
  msgid "The changes you made will be lost if you navigate away from this page."
1542
  msgstr ""
1543
 
1544
- #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:77
1545
  msgid "Icons"
1546
  msgstr ""
1547
 
1548
- #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:90
1549
  #: SmartSlider3/Application/Admin/Help/Template/Index.php:72
1550
  #: SmartSlider3Pro/Generator/Common/Flickr/GeneratorGroupFlickr.php:36
1551
  #: SmartSlider3Pro/Generator/Common/YouTube/GeneratorGroupYouTube.php:31
@@ -1555,40 +1442,40 @@ msgstr ""
1555
  msgid "Search"
1556
  msgstr "Etsi"
1557
 
1558
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:18
1559
  msgid "Are you sure?"
1560
  msgstr ""
1561
 
1562
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:22
1563
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonCancel.php:12
1564
  msgid "Cancel"
1565
  msgstr "Peru"
1566
 
1567
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:29
1568
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:99
1569
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:382
1570
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:181
1571
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1108
1572
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:112
1573
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:45
1574
  msgid "Delete"
1575
  msgstr "Poista"
1576
 
1577
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalLightbox.js:36
1578
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:95
1579
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:47
1580
  msgid "Close"
1581
  msgstr ""
1582
 
1583
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:16
1584
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:23
1585
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:41
1586
  #, fuzzy
1587
  #| msgid "Create"
1588
  msgid "Create group"
1589
  msgstr "Luo"
1590
 
1591
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:21
1592
  #, fuzzy
1593
  #| msgid "Product name"
1594
  msgid "Group name"
@@ -1598,91 +1485,88 @@ msgstr "Tuotteen nimi"
1598
  msgid "Group created"
1599
  msgstr ""
1600
 
1601
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/generator-record-viewer.js:52
1602
  msgid "Records"
1603
  msgstr ""
1604
 
1605
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:11
1606
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:62
1607
  msgid "Keyboard shortcuts"
1608
  msgstr ""
1609
 
1610
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:40
1611
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:37
1612
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:91
1613
- #: SmartSlider3/Application/Admin/Assets/js/slide/popup34.js:54
1614
  msgid "Got it"
1615
  msgstr ""
1616
 
1617
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:61
1618
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:46
1619
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:56
1620
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:68
1621
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:35
1622
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:33
1623
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:43
1624
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:56
1625
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:59
1626
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:139
1627
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:146
1628
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:127
1629
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:132
1630
- #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:109
1631
- #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:112
1632
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:204
1633
- #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:154
1634
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:113
1635
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:159
1636
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:204
1637
  #: SmartSlider3Pro/Renderable/Item/Html/ItemHtml.php:61
1638
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:125
1639
- #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:92
1640
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:64
1641
- #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:108
1642
- #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:181
1643
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:119
1644
- #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:114
1645
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:50
1646
  msgid "General"
1647
  msgstr "Yleinen"
1648
 
1649
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:62
1650
  #, fuzzy
1651
  #| msgid "Content"
1652
  msgid "Content tab"
1653
  msgstr "Sisältö"
1654
 
1655
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:63
1656
  #, fuzzy
1657
  #| msgid "Style"
1658
  msgid "Style tab"
1659
  msgstr "Tyyli"
1660
 
1661
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:69
1662
  #, fuzzy
1663
  #| msgid "Animation"
1664
  msgid "Animation tab"
1665
  msgstr "Animaatio"
1666
 
1667
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:73
1668
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:24
1669
  msgid "Add Layer"
1670
  msgstr ""
1671
 
1672
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:74
1673
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerWindow.js:79
1674
  msgid "Layer List"
1675
  msgstr "Tasolista"
1676
 
1677
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:78
1678
- #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerNavigation.js:50
1679
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:50
1680
  msgid "Timeline"
1681
  msgstr ""
1682
 
1683
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:82
1684
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleProject.php:49
1685
- #: SmartSlider3Pro/Generator/Common/Dribbble/Sources/DribbbleShots.php:37
1686
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:101
1687
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoGallery.php:100
1688
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoStream.php:91
@@ -1692,115 +1576,115 @@ msgstr ""
1692
  msgid "View"
1693
  msgstr "Näkymä"
1694
 
1695
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:91
1696
  msgid "Adjust"
1697
  msgstr ""
1698
 
1699
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1700
  msgid "Move (Absolute)"
1701
  msgstr ""
1702
 
1703
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1704
  #: SmartSlider3/Widget/Group/Arrow.php:44
1705
  msgid "Arrows"
1706
  msgstr "Nuolet"
1707
 
1708
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1709
  msgid "Align (Absolute)"
1710
  msgstr ""
1711
 
1712
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1713
  msgid "Numeric keys"
1714
  msgstr ""
1715
 
1716
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:98
1717
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:16
1718
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:20
1719
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:39
1720
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:60
1721
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:42
1722
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:41
1723
  msgid "Action"
1724
  msgstr "Toiminta"
1725
 
1726
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:100
1727
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:375
1728
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:174
1729
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1101
1730
- #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:79
1731
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:54
1732
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:43
1733
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:127
1734
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:148
1735
  msgid "Duplicate"
1736
  msgstr "Kopioi"
1737
 
1738
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:101
1739
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1131
1740
- #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:60
1741
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:44
1742
- #: SmartSlider3/Application/Model/ModelSliders.php:573
1743
  msgid "Copy"
1744
  msgstr "Kopioi"
1745
 
1746
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:102
1747
- #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1140
1748
  msgid "Paste"
1749
  msgstr ""
1750
 
1751
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:103
1752
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:200
1753
  msgid "Undo"
1754
  msgstr ""
1755
 
1756
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:104
1757
- #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:191
1758
  msgid "Redo"
1759
  msgstr ""
1760
 
1761
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:105
1762
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonSave.php:12
1763
  msgid "Save"
1764
  msgstr "Tallenna"
1765
 
1766
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:109
1767
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:42
1768
  #, fuzzy
1769
  #| msgid "Layer animations"
1770
  msgid "Play animations"
1771
  msgstr "Tasoanimaatiot"
1772
 
1773
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:114
1774
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:86
1775
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:89
1776
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:106
1777
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:109
1778
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:272
1779
- #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:171
1780
  msgid "Clear device specific settings"
1781
  msgstr ""
1782
 
1783
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:115
1784
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:89
1785
  msgid "Current layer, current device"
1786
  msgstr ""
1787
 
1788
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:116
1789
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:86
1790
  msgid "Current layer, all devices"
1791
  msgstr ""
1792
 
1793
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:117
1794
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:109
1795
  msgid "All layers, current device"
1796
  msgstr ""
1797
 
1798
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:118
1799
- #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:106
1800
  msgid "All layers, all devices"
1801
  msgstr ""
1802
 
1803
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/safe-html.js:15
1804
  msgid "Unexpected response"
1805
  msgstr ""
1806
 
@@ -1822,10 +1706,18 @@ msgid "Go to slide ID"
1822
  msgstr ""
1823
 
1824
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:21
 
 
 
 
1825
  msgid "Previous slide"
1826
  msgstr ""
1827
 
1828
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:22
 
 
 
 
1829
  msgid "Next slide"
1830
  msgstr ""
1831
 
@@ -1870,18 +1762,17 @@ msgstr ""
1870
 
1871
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:189
1872
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:257
1873
- #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:215
1874
- #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:325
1875
  msgid "Direction"
1876
  msgstr "Suunta"
1877
 
1878
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:190
1879
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:258
1880
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:93
1881
- #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:164
1882
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:77
1883
- #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:196
1884
- #: SmartSlider3Pro/Generator/Joomla/Jauction/Sources/JauctionAuctions.php:42
1885
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:76
1886
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:82
1887
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:82
@@ -1955,19 +1846,19 @@ msgstr ""
1955
  msgid "Autoplay duration"
1956
  msgstr ""
1957
 
1958
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:19
1959
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:18
1960
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:75
1961
  msgid "URL"
1962
  msgstr ""
1963
 
1964
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:24
1965
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:275
1966
  msgid "Search keyword"
1967
  msgstr ""
1968
 
1969
- #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:31
1970
- #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:283
1971
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:16
1972
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:30
1973
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/GeneratorGroupMultisitePost.php:29
@@ -1979,36 +1870,36 @@ msgid "Lightbox"
1979
  msgstr ""
1980
 
1981
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:34
1982
- #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:412
1983
- #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:15
1984
  msgid "Insert"
1985
  msgstr "Syötä"
1986
 
1987
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:26
1988
  msgid "Oops, Something Went Wrong"
1989
  msgstr ""
1990
 
1991
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:50
1992
  msgid "Success"
1993
  msgstr ""
1994
 
1995
- #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:56
1996
- #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:413
1997
  msgid "Notice"
1998
  msgstr ""
1999
 
2000
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:33
2001
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:68
2002
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:124
2003
  msgid "Select image"
2004
  msgstr ""
2005
 
2006
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:35
2007
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:70
2008
  msgid "Use Joomla selector"
2009
  msgstr ""
2010
 
2011
- #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:126
2012
  msgid "Use default selector"
2013
  msgstr ""
2014
 
@@ -2016,55 +1907,55 @@ msgstr ""
2016
  msgid "Deleted."
2017
  msgstr ""
2018
 
2019
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:101
2020
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/setsandmore.js:91
2021
  #: SmartSlider3Pro/SplitText/Admin/Assets/js/manager.js:71
2022
  msgid "Static"
2023
  msgstr "Staattinen"
2024
 
2025
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:224
2026
  msgid "Save as New"
2027
  msgstr ""
2028
 
2029
- #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:235
2030
  msgid "Saved."
2031
  msgstr ""
2032
 
2033
- #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:71
2034
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:140
2035
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: VERSION\n"
4
+ "POT-Creation-Date: 2021-05-03 16:53+0200\n"
5
+ "PO-Revision-Date: 2021-05-03 16:53+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fi\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.4.3\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: ;n2_;n2_e;n2_n:1,2;n2_en:1,2;n2_x:1,2c;n2_ex:1,2c\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPathExcluded-0: Framework/Asset/Builder/cache\n"
19
 
20
+ #: Framework/Api.php:125 Framework/Misc/HttpClient.php:81
21
  msgid "Debug error"
22
  msgstr ""
23
 
24
+ #: Framework/Api.php:144 Framework/Misc/HttpClient.php:106
25
  msgid "CURL disabled in your php.ini configuration. Please enable it!"
26
  msgstr ""
27
 
28
+ #: Framework/Api.php:152 Framework/Misc/HttpClient.php:112
29
  msgid "Unable to contact with the licensing server, please try again later!"
30
  msgstr ""
31
 
32
+ #: Framework/Asset/Predefined.php:45
 
 
 
 
33
  msgctxt "Default Google font family for admin"
34
  msgid "Montserrat"
35
  msgstr ""
36
 
37
+ #: Framework/Asset/Predefined.php:46
38
  msgctxt "Default Google font charset for admin"
39
  msgid "latin"
40
  msgstr ""
47
  msgid "Folder is missing!"
48
  msgstr ""
49
 
50
+ #: Framework/Content/Joomla/JoomlaContent.php:145
51
  msgid "Menu item"
52
  msgstr ""
53
 
75
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:96
76
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:176
77
  #: Framework/Image/ControllerAjaxImage.php:34
78
+ #: Framework/Image/ControllerAjaxImage.php:52
79
+ #: Framework/Image/ControllerAjaxImage.php:88
80
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:33
81
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:99
82
  msgid "Unexpected error"
93
 
94
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:136
95
  #: Framework/Controller/Admin/AdminVisualManagerAjaxController.php:156
96
+ #: Framework/Image/ControllerAjaxImage.php:70
97
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:53
98
  #: SmartSlider3/Application/Admin/Visuals/ControllerAjaxCss.php:76
99
  msgid "Not editable"
122
  msgid "Font manager"
123
  msgstr ""
124
 
125
+ #: Framework/Font/FontRenderer.php:104 Framework/Font/FontRenderer.php:106
126
+ #: Framework/Font/FontRenderer.php:118 Framework/Font/FontRenderer.php:120
127
+ #: Framework/Font/FontRenderer.php:134 Framework/Font/FontRenderer.php:153
128
+ #: Framework/Font/FontRenderer.php:172 Framework/Font/FontRenderer.php:190
129
+ #: Framework/Font/FontRenderer.php:206 Framework/Font/FontRenderer.php:222
130
+ #: Framework/Font/FontRenderer.php:240 Framework/Style/StyleRenderer.php:81
131
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:28
132
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
133
+ #: SmartSlider3/Renderable/Item/Text/Assets/text.js:21
134
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:53
135
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:134
136
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:249
137
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:149
138
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:142
139
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:63
140
  #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowText.php:51
141
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:58
142
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:58
143
  msgid "Text"
144
  msgstr "Teksti"
145
 
146
+ #: Framework/Font/FontRenderer.php:132 Framework/Font/FontRenderer.php:135
147
+ #: Framework/Font/FontRenderer.php:154 Framework/Font/FontRenderer.php:174
148
+ #: Framework/Font/FontRenderer.php:191 Framework/Font/FontRenderer.php:224
149
+ #: Framework/Font/FontRenderer.php:242 Framework/Style/StyleRenderer.php:110
150
+ #: Framework/Style/StyleRenderer.php:126 Framework/Style/StyleRenderer.php:145
151
+ #: Framework/Style/StyleRenderer.php:197
152
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:73
153
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:107
154
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:42
155
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:61
156
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:139
157
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:171
158
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:187
163
  msgid "Hover"
164
  msgstr "Leijua"
165
 
166
+ #: Framework/Font/FontRenderer.php:140 Framework/Style/StyleRenderer.php:142
167
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:27
168
+ #: SmartSlider3/Renderable/Item/Heading/Assets/heading.js:21
169
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:53
170
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:148
171
  #: SmartSlider3/Storage.php:65
172
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
173
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:306
174
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:100
175
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:250
176
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:265
177
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:203
178
  msgid "Heading"
179
  msgstr "Otsikko"
180
 
181
+ #: Framework/Font/FontRenderer.php:151 Framework/Font/FontRenderer.php:173
182
+ #: Framework/Font/FontRenderer.php:223
183
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:59
184
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:61
185
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:86
186
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:88
187
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:75
188
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:77
189
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:112
197
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:181
198
  #: SmartSlider3/Storage.php:877
199
  #: SmartSlider3Pro/Form/Element/ParticleSkin.php:18
200
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:168
201
  #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:169
 
202
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:188
203
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:189
204
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:180
205
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:181
206
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:218
207
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:219
 
208
  #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:115
209
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:116
210
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:141
211
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:142
212
  #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:281
213
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:282
214
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:138
215
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:139
216
  msgid "Link"
217
  msgstr "Linkitä"
218
 
219
+ #: Framework/Font/FontRenderer.php:159 Framework/Font/FontRenderer.php:247
220
+ #: Framework/Style/StyleRenderer.php:123 Framework/Style/StyleRenderer.php:202
221
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:30
222
+ #: SmartSlider3/Renderable/Item/Button/Assets/button.js:21
223
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:50
224
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:141
225
  #: SmartSlider3/Storage.php:290 SmartSlider3/Widget/Group/Autoplay.php:49
233
  msgid "Button"
234
  msgstr "Nappi"
235
 
236
+ #: Framework/Font/FontRenderer.php:170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  msgid "Paragraph"
238
  msgstr ""
239
 
240
+ #: Framework/Font/FontRenderer.php:204 Framework/Style/StyleRenderer.php:177
241
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:49
242
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:238
243
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:51
245
  msgid "Dot"
246
  msgstr ""
247
 
248
+ #: Framework/Font/FontRenderer.php:207 Framework/Style/StyleRenderer.php:164
249
+ #: Framework/Style/StyleRenderer.php:180
250
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:389
251
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:432
252
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:477
253
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:513
254
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:549
255
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:590
256
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:632
257
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:674
258
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:225
259
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:241
260
+ msgid "Active"
261
+ msgstr "Aktiivinen"
262
+
263
+ #: Framework/Font/FontRenderer.php:220 SmartSlider3/Storage.php:529
264
  #: SmartSlider3Pro/Renderable/Item/HtmlList/Assets/list.js:20
265
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:56
266
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:76
269
  msgid "List"
270
  msgstr "Lista"
271
 
272
+ #: Framework/Font/FontRenderer.php:238 Framework/Font/FontRenderer.php:241
273
+ #: Framework/Style/StyleRenderer.php:193 Framework/Style/StyleRenderer.php:196
274
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:234
275
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:254
276
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:257
297
  msgstr "Perhe"
298
 
299
  #: Framework/Font/ModelFont.php:40
300
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:177
301
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:54
302
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:204
303
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:310
304
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:439
305
  #: SmartSlider3/Form/Element/BackgroundImage.php:31
306
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:228
307
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:229
308
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:70
309
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:104
310
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:53
311
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:83
312
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:119
313
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:108
314
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:167
315
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:112
316
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:158
317
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:137
318
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:245
319
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:95
320
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:243
321
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:138
322
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:39
323
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrow.php:53
324
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:43
325
  #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBar.php:57
326
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:59
331
  msgstr "Väri"
332
 
333
  #: Framework/Font/ModelFont.php:44
334
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:414
335
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:417
336
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:419
337
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:154
338
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:52
339
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:199
340
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:84
341
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:215
342
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:165
343
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:58
344
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:59
345
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:182
346
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:150
347
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:127
348
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:130
349
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:147
350
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:184
351
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:186
 
 
352
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:174
353
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:143
354
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:102
355
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:235
 
 
356
  #: SmartSlider3Pro/Widget/Indicator/IndicatorPie/IndicatorPie.php:31
357
  msgid "Size"
358
  msgstr "Koko"
393
  msgid "Transform"
394
  msgstr ""
395
 
396
+ #: Framework/Font/ModelFont.php:86
397
+ #: Framework/Form/Element/MixedField/Border.php:39
398
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:170
399
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:116
400
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:197
401
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:91
402
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:46
403
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:105
405
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsPosts.php:85
406
  #: SmartSlider3/Platform/WordPress/Integration/ACF/AcfFieldSmartSlider3.php:105
407
  #: SmartSlider3/Platform/WordPress/Integration/BeaverBuilder/BeaverBuilder.php:167
408
+ #: SmartSlider3/Platform/WordPress/Widget/WidgetSmartSlider3.php:127
409
  #: SmartSlider3/Slider/ResponsiveType/FullWidth/ResponsiveTypeFullWidthAdmin.php:44
410
+ #: SmartSlider3/Widget/Arrow/ArrowImage/ArrowImage.php:130
411
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:153
412
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:211
413
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderImages.php:102
414
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:101
415
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:92
416
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:35
 
417
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:84
418
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:51
419
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:46
429
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:54
430
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:55
431
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:38
 
 
432
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:86
433
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:69
 
 
 
 
 
434
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:28
435
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:64
 
436
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:63
437
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:51
438
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:45
439
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:56
440
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:86
441
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:66
 
442
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:38
443
  #: SmartSlider3Pro/Generator/WordPress/WebdoradoPhotoGallery/Sources/WebdoradoPhotoGalleryImages.php:36
444
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:151
445
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:137
446
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:225
447
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:39
448
  msgid "None"
449
  msgstr "Ei mitään"
469
  msgstr ""
470
 
471
  #: Framework/Font/ModelFont.php:100 Framework/Image/ModelImage.php:35
472
+ #: Framework/Image/ModelImage.php:56 Framework/Style/ModelStyle.php:94
473
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:84
474
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:62
475
+ #: SmartSlider3/Application/Admin/Assets/js/slider/trash.js:112
476
  #: SmartSlider3/Application/Admin/Generator/ViewGeneratorEdit.php:77
477
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:38
478
  #: SmartSlider3/Application/Admin/Slider/ViewSliderEdit.php:115
479
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:216
480
  #: SmartSlider3/BackgroundAnimation/ModelBackgroundAnimation.php:41
481
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:78
482
  #: SmartSlider3Pro/PostBackgroundAnimation/ModelPostBackgroundAnimation.php:45
504
 
505
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:64
506
  #: Framework/Form/Element/Style.php:50
507
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:168
508
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:195
509
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabStyle.php:20
510
  #: SmartSlider3/Widget/Autoplay/AutoplayImage/AutoplayImage.php:57
511
  #: SmartSlider3/Widget/Group/Bullet.php:95
530
  msgid "Italic"
531
  msgstr ""
532
 
533
+ #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:72
534
+ #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:73
535
+ #: Framework/Form/Element/Select/FontWeight.php:13
536
+ #: Framework/Form/Element/Select/FontWeight.php:18
537
+ #: Framework/Style/StyleRenderer.php:95 Framework/Style/StyleRenderer.php:109
538
+ #: Framework/Style/StyleRenderer.php:125 Framework/Style/StyleRenderer.php:144
539
+ #: Framework/Style/StyleRenderer.php:163 Framework/Style/StyleRenderer.php:179
540
+ #: Framework/Style/StyleRenderer.php:195
541
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:192
542
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderOptimize.php:113
543
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:138
544
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:61
545
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:72
546
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:162
547
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:178
548
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:128
549
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:161
550
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:172
551
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:307
552
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:341
553
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:357
554
+ #: SmartSlider3Pro/SplitText/ModelSplitText.php:62
555
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:156
556
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:170
557
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:186
558
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:205
559
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:224
560
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:240
561
+ #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:256
562
+ msgid "Normal"
563
+ msgstr "Normaali"
564
+
565
  #: Framework/Font/Sources/GoogleFonts/GoogleFonts.php:86
566
  msgid "Character set"
567
  msgstr ""
631
  msgstr "Valitse"
632
 
633
  #: Framework/Form/Element/Breakpoint.php:39
634
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
635
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:75
636
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:176
 
637
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:80
638
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:80
639
  msgid "Orientation"
640
  msgstr "Orientaatio"
641
 
642
  #: Framework/Form/Element/Breakpoint.php:41
643
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
644
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:248
645
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:249
646
  msgid "Portrait"
647
  msgstr "Pystykuva"
648
 
649
  #: Framework/Form/Element/Breakpoint.php:42
650
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:412
651
  msgid "Landscape"
652
  msgstr "Vaakakuva"
653
 
654
  #: Framework/Form/Element/Breakpoint.php:51
655
+ #: Framework/Form/Element/Breakpoint.php:86 Framework/Image/ModelImage.php:39
656
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:87
657
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:228
658
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:21
 
659
  #: SmartSlider3/Application/Admin/Assets/js/preview.js:162
660
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:163
661
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:183
662
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:112
663
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:97
664
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:229
665
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:302
666
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:523
667
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:145
668
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:167
669
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:157
670
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:161
671
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:97
672
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:148
673
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:169
674
  msgid "Mobile"
675
  msgstr "Mobiili"
676
 
677
  #: Framework/Form/Element/Breakpoint.php:56
678
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:229
679
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:22
680
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:179
681
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:101
682
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:212
683
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:294
689
 
690
  #: Framework/Form/Element/Breakpoint.php:61
691
  #: Framework/Form/Element/Breakpoint.php:91 Framework/Image/ModelImage.php:38
692
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:86
693
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:226
694
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:19
695
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:164
696
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:174
697
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:106
698
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:194
699
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:287
700
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:473
701
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSlides.php:144
702
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:159
703
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:145
704
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:149
705
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:112
706
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:124
707
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:145
708
  msgid "Tablet"
709
  msgstr "Tabletti"
710
 
711
  #: Framework/Form/Element/Breakpoint.php:66
712
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:227
713
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:20
714
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:170
715
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:110
716
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:178
717
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:279
723
 
724
  #: Framework/Form/Element/Breakpoint.php:71
725
  #: Framework/Form/Element/Breakpoint.php:96 Framework/Image/ModelImage.php:31
726
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:85
727
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:224
728
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:17
729
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:165
730
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:115
731
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:159
732
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideBox/BlockSlideBox.php:151
733
+ #: SmartSlider3/Application/Admin/Preview/Template/Index.php:28
734
  #: SmartSlider3/Widget/Group/AbstractWidgetGroup.php:127
735
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:100
736
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:121
737
  msgid "Desktop"
738
  msgstr "Työpöytä"
739
 
740
  #: Framework/Form/Element/Breakpoint.php:76
741
  #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentCommonAbstract.js:225
742
+ #: SmartSlider3/Application/Admin/Assets/js/preview.js:18
743
+ #: SmartSlider3/Application/Admin/Assets/js/slide/edit.js:161
744
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:119
745
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:143
746
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderSize.php:272
768
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:176
769
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:191
770
  #: SmartSlider3Pro/Renderable/Item/CircleCounter/ItemCircleCounter.php:194
771
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:148
772
+ #: SmartSlider3Pro/Renderable/Item/Counter/ItemCounter.php:151
773
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:302
774
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:175
775
  #: SmartSlider3Pro/Renderable/Item/ProgressBar/ItemProgressBar.php:179
 
776
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:85
777
  msgid "Font"
778
  msgstr "Fontti"
781
  msgid "Warning"
782
  msgstr ""
783
 
784
+ #: Framework/Form/Element/MixedField/Border.php:40
785
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:173
786
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:200
787
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:154
788
  msgid "Dotted"
789
  msgstr "Dotted"
790
 
791
+ #: Framework/Form/Element/MixedField/Border.php:41
792
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:172
793
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:199
794
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:153
795
  msgid "Dashed"
796
  msgstr "Dashed"
797
 
798
+ #: Framework/Form/Element/MixedField/Border.php:42
799
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:171
800
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:198
801
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:152
802
  msgid "Solid"
803
  msgstr "Kiinteä"
804
 
805
+ #: Framework/Form/Element/MixedField/Border.php:43
806
  msgid "Double"
807
  msgstr "Tupla"
808
 
809
+ #: Framework/Form/Element/MixedField/Border.php:44
810
  msgid "Groove"
811
  msgstr "Ura"
812
 
813
+ #: Framework/Form/Element/MixedField/Border.php:45
814
  msgid "Ridge"
815
  msgstr "Harjanne"
816
 
817
+ #: Framework/Form/Element/MixedField/Border.php:46
818
  msgid "Inset"
819
  msgstr "Upote"
820
 
821
+ #: Framework/Form/Element/MixedField/Border.php:47
822
  msgid "Outset"
823
  msgstr "Uloke"
824
 
825
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:20
826
  msgid "Field"
827
  msgstr "Kenttä"
828
 
829
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:22
830
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentArticle.php:87
831
  #: SmartSlider3/Generator/Joomla/JoomlaContent/Sources/JoomlaContentCategory.php:42
832
  #: SmartSlider3/Generator/WordPress/Posts/Sources/PostsAllCustomPosts.php:101
837
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderSubfolders.php:97
838
  #: SmartSlider3Pro/Generator/Common/ImagesInFolder/Sources/ImagesInFolderVideos.php:88
839
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:31
 
840
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:80
841
  #: SmartSlider3Pro/Generator/Joomla/Easyblog/Sources/EasyblogPosts.php:47
842
  #: SmartSlider3Pro/Generator/Joomla/Easydiscuss/Sources/EasydiscussDiscussions.php:42
851
  #: SmartSlider3Pro/Generator/Joomla/Flexicontent/Sources/FlexicontentItems.php:50
852
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Sources/HikashopProducts.php:51
853
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Sources/IgnitegalleryImages.php:34
 
 
854
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:82
855
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsRepeatingevents.php:65
856
+ #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Sources/JoomshoppingProducts.php:60
 
 
 
 
 
 
857
  #: SmartSlider3Pro/Generator/Joomla/K2/Sources/K2Items.php:59
858
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Sources/MijoshopProducts.php:47
859
  #: SmartSlider3Pro/Generator/Joomla/Phocagallery/Sources/PhocagalleryImages.php:41
860
  #: SmartSlider3Pro/Generator/Joomla/Redshop/Sources/RedshopProducts.php:52
861
+ #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Sources/RseventsproEvents.php:82
862
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Sources/VirtuemartProducts.php:62
 
863
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Sources/AllinOneEventCalendarEvents.php:68
864
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:91
865
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/Sources/MultisitePostPosts.php:34
870
  msgid "Order"
871
  msgstr "Järjestys"
872
 
873
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:24
874
  msgid "Ascending"
875
  msgstr "Nouseva"
876
 
877
+ #: Framework/Form/Element/MixedField/GeneratorOrder.php:25
878
  msgid "Descending"
879
  msgstr "Laskeva"
880
 
881
  #: Framework/Form/Element/OnOff.php:22
882
  #: Framework/Form/Element/Select/Gradient.php:15
883
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:146
884
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:117
885
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAnimations.php:124
886
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:96
887
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderAutoplay.php:107
888
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:283
889
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:300
890
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:140
891
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:141
892
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderParticle.php:150
893
  #: SmartSlider3Pro/Renderable/Item/Input/ItemInput.php:180
895
  msgstr "Pois"
896
 
897
  #: Framework/Form/Element/OnOff.php:22
898
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:147
899
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:301
900
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:141
901
  msgid "On"
902
  msgstr "On"
903
 
908
  msgstr ""
909
 
910
  #: Framework/Form/Element/Select/FillMode.php:15
911
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:177
912
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:245
913
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:132
914
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:212
 
915
  msgid "Fill"
916
  msgstr "Täytä"
917
 
920
  msgstr ""
921
 
922
  #: Framework/Form/Element/Select/FillMode.php:17
923
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:178
924
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:246
925
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:133
926
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:213
 
927
  msgid "Fit"
928
  msgstr "Sovita"
929
 
930
  #: Framework/Form/Element/Select/FillMode.php:18
 
931
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:80
932
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:81
933
  msgid "Stretch"
934
  msgstr "Venytä"
935
 
936
  #: Framework/Form/Element/Select/FillMode.php:19
937
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:82
938
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:103
939
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:179
940
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:194
941
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:247
 
942
  #: SmartSlider3/Storage.php:710
943
  #: SmartSlider3/Widget/Bar/BarHorizontal/BarHorizontal.php:103
944
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:71
945
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:69
946
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:244
947
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:338
948
+ #: SmartSlider3Pro/Slider/SliderType/Carousel/SliderTypeCarouselAdmin.php:281
949
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:67
950
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:76
951
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:76
952
  msgid "Center"
953
  msgstr "Keskelle"
954
 
955
+ #: Framework/Form/Element/Select/FillMode.php:24
 
 
 
 
956
  msgid "Slider's default"
957
  msgstr "Diaesityksen oletus"
958
 
966
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTags.php:17
967
  #: SmartSlider3/Generator/WordPress/Posts/Elements/PostsTaxonomies.php:23
968
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPhotosSearch.php:39
 
969
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsCategories.php:36
970
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsLocations.php:36
971
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Elements/DjclassifiedsTypes.php:15
991
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopTags.php:18
992
  #: SmartSlider3Pro/Generator/Joomla/Hikashop/Elements/HikashopWarehouses.php:18
993
  #: SmartSlider3Pro/Generator/Joomla/Ignitegallery/Elements/IgnitegalleryCategories.php:33
 
 
 
 
994
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCalendars.php:17
995
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Elements/JeventsCategories.php:34
996
  #: SmartSlider3Pro/Generator/Joomla/Jevents/Sources/JeventsEvents.php:72
 
 
 
 
 
 
 
 
 
997
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingCategories.php:42
998
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingLabels.php:27
999
  #: SmartSlider3Pro/Generator/Joomla/Joomshopping/Elements/JoomshoppingManufacturers.php:27
 
 
1000
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Categories.php:29
1001
  #: SmartSlider3Pro/Generator/Joomla/K2/Elements/K2Tags.php:18
1002
  #: SmartSlider3Pro/Generator/Joomla/Mijoshop/Elements/MijoshopCategories.php:49
1012
  #: SmartSlider3Pro/Generator/Joomla/Rseventspro/Elements/RseventsproTags.php:17
1013
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartCategories.php:34
1014
  #: SmartSlider3Pro/Generator/Joomla/Virtuemart/Elements/VirtuemartManufacturers.php:21
 
 
1015
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarCategories.php:34
1016
  #: SmartSlider3Pro/Generator/WordPress/AllInOneEventCalendar/Elements/AllInOneEventCalendarTags.php:35
1017
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Elements/EventsManagerCategories.php:34
1044
  msgstr ""
1045
 
1046
  #: Framework/Form/Element/Select/FontWeight.php:17
 
1047
  msgid "Light"
1048
  msgstr "Vaaela"
1049
 
1064
  msgstr ""
1065
 
1066
  #: Framework/Form/Element/Select/LinkTarget.php:15
1067
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1152
1068
  msgid "Parent"
1069
  msgstr "Vanhempi"
1070
 
1071
  #: Framework/Form/Element/Select/LinkTarget.php:16
1072
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:76
1073
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:79
1074
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:82
1075
+ #: SmartSlider3/Application/Admin/Assets/js/element/widgetposition.js:85
1076
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:175
1077
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:469
1078
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:473
 
1079
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:481
1080
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:482
1081
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:483
1082
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:484
1083
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:489
1084
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:512
1085
+ #: SmartSlider3/Application/Admin/Settings/ViewSettingsGeneral.php:220
1086
  #: SmartSlider3/Form/Element/Group/WidgetPosition.php:106
1087
  #: SmartSlider3/Storage.php:979
1088
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/shapedividermanager.js:138
1089
+ #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderShapeDivider.php:76
1090
  #: SmartSlider3Pro/LayerAnimation/LayerAnimationStorage.php:199
1091
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:226
1092
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:243
1093
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:300
1094
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:337
1095
  #: SmartSlider3Pro/Slider/ResponsiveType/FullPage/ResponsiveTypeFullPageAdmin.php:105
1096
  msgid "Top"
1097
  msgstr "Ylhäällä"
1116
  #: Framework/Form/Joomla/Element/Select/MenuItems.php:18
1117
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:119
1118
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:61
1119
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:149
1120
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:138
1121
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:508
1122
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:107
1123
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEditAddSlide.php:49
1124
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:194
1125
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:258
1126
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:199
1127
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:58
1128
  #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:69
1129
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:159
1130
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:175
1131
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:158
1132
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:169
1133
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:303
1134
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:338
1135
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:354
1136
  #: SmartSlider3/Storage.php:552 SmartSlider3/Storage.php:928
1137
+ #: SmartSlider3/Storage.php:1165 SmartSlider3/Storage.php:3952
1138
  #: SmartSlider3Pro/Generator/Common/Vimeo/Sources/VimeoAlbum.php:39
1139
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCategoryLanguage.php:20
1140
  #: SmartSlider3Pro/Generator/Joomla/Eshop/Elements/EshopCurrency.php:20
1144
  #: SmartSlider3Pro/Generator/WordPress/EventsManager/Sources/EventsManagerEvents.php:95
1145
  #: SmartSlider3Pro/Generator/WordPress/TheEventsCalendar/Sources/TheEventsCalendarEvents.php:80
1146
  #: SmartSlider3Pro/Generator/WordPress/WooCommerce/Sources/WooCommerceProductsByFilter.php:86
1147
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:264
1148
  msgid "Default"
1149
  msgstr "Oletus"
1150
 
1151
+ #: Framework/Image/Admin/Assets/js/manager.js:45
 
 
 
 
 
 
 
 
1152
  msgid "The image is empty"
1153
  msgstr ""
1154
 
1155
+ #: Framework/Image/Admin/Assets/js/manager.js:66
1156
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:87
1157
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:108
1158
  msgid "Empty"
1159
  msgstr ""
1160
 
1162
  msgid "Image manager"
1163
  msgstr ""
1164
 
 
 
 
 
1165
  #: Framework/Image/ModelImage.php:37
1166
  #, fuzzy
1167
  #| msgid "Desktop"
1168
  msgid "Desktop retina"
1169
  msgstr "Työpöytä"
1170
 
1171
+ #: Framework/Image/ModelImage.php:53
 
 
 
 
 
 
 
 
 
 
 
 
1172
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:29
1173
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/AddSlide/AddSlide.php:19
1174
  #: SmartSlider3/Form/Element/BackgroundImage.php:29
1175
+ #: SmartSlider3/Renderable/Item/Image/Assets/image.js:21
1176
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:43
1177
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:129
1178
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:189
1179
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:276
1180
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:263
1181
  #: SmartSlider3/Widget/Group/Bullet.php:64
1182
  #: SmartSlider3/Widget/Group/Thumbnail.php:63
1183
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:161
1184
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:112
1185
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:212
1186
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:217
1187
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:256
1188
  msgid "Image"
1189
  msgstr "Kuva"
1190
 
1209
  msgstr ""
1210
 
1211
  #: Framework/Style/ModelStyle.php:35
1212
+ #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:162
1213
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:119
1214
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:97
1215
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:139
1216
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:146
 
1217
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:113
1218
  #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowReveal.php:89
1219
  msgid "Background color"
1221
 
1222
  #: Framework/Style/ModelStyle.php:39
1223
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:143
1224
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:229
1225
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:294
1226
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Tab/TabAnimation.php:197
1227
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:371
1228
  #: SmartSlider3Pro/SplitText/ModelSplitText.php:131
1229
  msgid "Opacity"
1230
  msgstr "Läpinäkyvyys"
1231
 
1232
  #: Framework/Style/ModelStyle.php:50
1233
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:210
1234
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:120
1235
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:189
1236
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:228
1237
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:156
1238
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:188
1239
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:318
1240
  msgid "Padding"
1241
  msgstr "Padding"
1242
 
1243
  #: Framework/Style/ModelStyle.php:72
1244
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:142
1245
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:147
1246
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:165
1247
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:169
1248
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:168
1249
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:174
1250
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:125
1251
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:127
1252
  msgid "Border"
1253
  msgstr "Reuna"
1254
 
1255
  #: Framework/Style/ModelStyle.php:74
1256
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:181
1257
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:171
1258
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:208
1259
+ #: SmartSlider3/Slider/SliderType/Block/SliderTypeBlockAdmin.php:90
1260
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:210
1261
  #: SmartSlider3Pro/Renderable/Item/Area/ItemArea.php:162
 
 
 
1262
  msgid "Border radius"
1263
  msgstr "Reunan säde"
1264
 
1265
  #: Framework/Style/ModelStyle.php:87
1266
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:133
1267
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsItemCommon.php:157
1268
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:160
1269
  msgid "Box shadow"
1270
  msgstr "Laatikon varjostus"
1271
 
1272
+ #: Framework/Style/StyleRenderer.php:79
1273
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:140
1274
  msgid "Single"
1275
  msgstr ""
1276
 
1277
+ #: Framework/Style/StyleRenderer.php:93
1278
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:179
1279
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:35
1280
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:200
1281
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:154
1282
  msgid "Simple"
1283
  msgstr "Yksinkertainen"
1284
 
1285
+ #: Framework/Style/StyleRenderer.php:107
1286
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:168
1287
  msgid "Box"
1288
  msgstr ""
1289
 
1290
+ #: Framework/Style/StyleRenderer.php:161
1291
  #: SmartSlider3Pro/SplitText/SplitTextRenderer.php:222
1292
  msgid "Heading active"
1293
  msgstr ""
1294
 
1295
  #: SmartSlider3/Application/Admin/ApplicationTypeAdmin.php:55
1296
+ #: SmartSlider3/Application/Admin/Assets/js/slider/manage.js:302
1297
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:110
1298
+ #: SmartSlider3/Application/Model/ModelSlidersXRef.php:154
1299
+ #: SmartSlider3/Platform/WordPress/Admin/AdminHelper.php:100
1300
  msgid "Dashboard"
1301
  msgstr "Hallintapaneeli"
1302
 
1303
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1304
  msgid "Drop files here or"
1305
  msgstr ""
1306
 
1307
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:13
1308
  msgid "Upload"
1309
  msgstr ""
1310
 
1311
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:20
1312
  msgid "Parent directory"
1313
  msgstr ""
1314
 
1315
+ #: SmartSlider3/Application/Admin/Assets/js/common/browse.js:106
1316
  msgid "Current path"
1317
  msgstr ""
1318
 
1319
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:33
1320
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:260
 
1321
  msgid "Preset"
1322
  msgstr "Esiasetus"
1323
 
1324
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:33
1325
  msgid ""
1326
  "You can use presets to save style settings for later use. Clicking on any "
1327
  "preset will load its styling to your current layer, and the previous style "
1328
  "settings will be lost."
1329
  msgstr ""
1330
 
1331
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:35
1332
  msgid ""
1333
  "Layer design options affect every device. If you need to make responsive "
1334
  "adjustments, look for the options with the device icon."
1335
  msgstr ""
1336
 
1337
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:42
1338
  msgid "Reset style to default"
1339
  msgstr ""
1340
 
1341
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:48
1342
  msgid "Save style as new preset"
1343
  msgstr ""
1344
 
1345
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:59
1346
  msgid "Load style"
1347
  msgstr ""
1348
 
1349
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:88
1350
  msgid "You have not created any presets for this layer yet."
1351
  msgstr ""
1352
 
1353
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:160
1354
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:167
1355
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:218
1356
  msgid "Save as"
1357
  msgstr ""
1358
 
1359
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:165
1360
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:223
1361
+ #: SmartSlider3/Application/Admin/Assets/js/slider/create.js:208
1362
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:73
1363
  #: SmartSlider3/Application/Admin/Slider/Template/SimpleEdit.php:49
1364
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:208
1365
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:85
1366
  #: SmartSlider3Pro/Generator/Joomla/Easysocial/Sources/EasysocialUsers.php:84
 
 
1367
  msgid "Name"
1368
  msgstr "Nimi"
1369
 
1370
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:175
1371
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:233
1372
  msgid "Please fill the name field!"
1373
  msgstr ""
1374
 
1375
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:200
1376
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:291
1377
  msgid "Preset saved."
1378
  msgstr ""
1379
 
1380
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:269
1381
  msgid "Overwrite preset"
1382
  msgstr ""
1383
 
1384
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/basiccss.js:313
1385
  msgid "Preset deleted."
1386
  msgstr ""
1387
 
1390
  msgstr ""
1391
 
1392
  #: SmartSlider3/Application/Admin/Assets/js/common/element/folders.js:46
1393
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:79
1394
  msgid "Select"
1395
  msgstr "Valitse"
1396
 
1397
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:136
1398
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/image-list.js:199
1399
+ #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:70
1400
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:51
1401
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:142
1402
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:145
1408
  msgid "Disabled"
1409
  msgstr "Poistettu käytöstä"
1410
 
1411
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/imagemanager.js:33
1412
  msgid "Image field can not be empty!"
1413
  msgstr ""
1414
 
1415
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/skin.js:57
1416
  msgid "Done"
1417
  msgstr ""
1418
 
1419
+ #: SmartSlider3/Application/Admin/Assets/js/common/element/upload.js:40
1420
  msgid "No file selected."
1421
  msgstr ""
1422
 
1423
+ #: SmartSlider3/Application/Admin/Assets/js/common/form-tip-manager.js:110
1424
  msgid "Open docs"
1425
  msgstr ""
1426
 
1427
+ #: SmartSlider3/Application/Admin/Assets/js/common/form.js:114
1428
  msgid "The changes you made will be lost if you navigate away from this page."
1429
  msgstr ""
1430
 
1431
+ #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:78
1432
  msgid "Icons"
1433
  msgstr ""
1434
 
1435
+ #: SmartSlider3/Application/Admin/Assets/js/common/icons.js:91
1436
  #: SmartSlider3/Application/Admin/Help/Template/Index.php:72
1437
  #: SmartSlider3Pro/Generator/Common/Flickr/GeneratorGroupFlickr.php:36
1438
  #: SmartSlider3Pro/Generator/Common/YouTube/GeneratorGroupYouTube.php:31
1442
  msgid "Search"
1443
  msgstr "Etsi"
1444
 
1445
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:19
1446
  msgid "Are you sure?"
1447
  msgstr ""
1448
 
1449
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:23
1450
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonCancel.php:12
1451
  msgid "Cancel"
1452
  msgstr "Peru"
1453
 
1454
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalDeleteConfirm.js:30
1455
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:100
1456
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:376
1457
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:178
1458
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1052
1459
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:113
1460
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:45
1461
  msgid "Delete"
1462
  msgstr "Poista"
1463
 
1464
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/ModalLightbox.js:37
1465
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/SlideManager.php:96
1466
  #: SmartSlider3/Application/Admin/Preview/ViewPreviewIndex.php:47
1467
  msgid "Close"
1468
  msgstr ""
1469
 
1470
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:17
1471
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:24
1472
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:41
1473
  #, fuzzy
1474
  #| msgid "Create"
1475
  msgid "Create group"
1476
  msgstr "Luo"
1477
 
1478
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/create-group.js:22
1479
  #, fuzzy
1480
  #| msgid "Product name"
1481
  msgid "Group name"
1485
  msgid "Group created"
1486
  msgstr ""
1487
 
1488
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/generator-record-viewer.js:53
1489
  msgid "Records"
1490
  msgstr ""
1491
 
1492
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:12
1493
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/settings.js:63
1494
  msgid "Keyboard shortcuts"
1495
  msgstr ""
1496
 
1497
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:41
1498
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:38
1499
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:92
 
1500
  msgid "Got it"
1501
  msgstr ""
1502
 
1503
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:62
1504
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderControls.php:46
1505
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:56
1506
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderGeneral.php:68
1507
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsColumn.php:36
1508
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsContent.php:33
1509
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsRow.php:44
1510
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:56
1511
  #: SmartSlider3/Application/Admin/Settings/AbstractViewSettings.php:59
1512
  #: SmartSlider3/Renderable/Item/Button/ItemButton.php:139
1513
  #: SmartSlider3/Renderable/Item/Heading/ItemHeading.php:146
1514
  #: SmartSlider3/Renderable/Item/Image/ItemImage.php:127
1515
  #: SmartSlider3/Renderable/Item/Text/ItemText.php:132
1516
+ #: SmartSlider3/Renderable/Item/Vimeo/ItemVimeo.php:113
1517
+ #: SmartSlider3/Renderable/Item/YouTube/ItemYouTube.php:115
1518
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:204
1519
+ #: SmartSlider3Pro/Renderable/Item/AnimatedHeading/ItemAnimatedHeading.php:153
1520
  #: SmartSlider3Pro/Renderable/Item/Audio/ItemAudio.php:113
1521
  #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:159
1522
  #: SmartSlider3Pro/Renderable/Item/HighlightedHeading/ItemHighlightedHeading.php:204
1523
  #: SmartSlider3Pro/Renderable/Item/Html/ItemHtml.php:61
1524
  #: SmartSlider3Pro/Renderable/Item/HtmlList/ItemHtmlList.php:125
1525
+ #: SmartSlider3Pro/Renderable/Item/Icon/ItemIcon.php:93
1526
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:64
1527
+ #: SmartSlider3Pro/Renderable/Item/ImageArea/ItemImageArea.php:110
1528
+ #: SmartSlider3Pro/Renderable/Item/ImageBox/ItemImageBox.php:182
1529
  #: SmartSlider3Pro/Renderable/Item/Transition/ItemTransition.php:119
1530
+ #: SmartSlider3Pro/Renderable/Item/Video/ItemVideo.php:119
1531
  #: SmartSlider3Pro/Renderable/Joomla/Item/JoomlaModule/ItemJoomlaModule.php:50
1532
  msgid "General"
1533
  msgstr "Yleinen"
1534
 
1535
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:63
1536
  #, fuzzy
1537
  #| msgid "Content"
1538
  msgid "Content tab"
1539
  msgstr "Sisältö"
1540
 
1541
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:64
1542
  #, fuzzy
1543
  #| msgid "Style"
1544
  msgid "Style tab"
1545
  msgstr "Tyyli"
1546
 
1547
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:70
1548
  #, fuzzy
1549
  #| msgid "Animation"
1550
  msgid "Animation tab"
1551
  msgstr "Animaatio"
1552
 
1553
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:74
1554
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:24
1555
  msgid "Add Layer"
1556
  msgstr ""
1557
 
1558
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:75
1559
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerWindow.js:80
1560
  msgid "Layer List"
1561
  msgstr "Tasolista"
1562
 
1563
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:79
1564
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/ui/layerNavigation.js:51
1565
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:50
1566
  msgid "Timeline"
1567
  msgstr ""
1568
 
1569
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:83
 
 
1570
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeopleAlbum.php:101
1571
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoGallery.php:100
1572
  #: SmartSlider3Pro/Generator/Common/Flickr/Sources/FlickrPeoplePhotoStream.php:91
1576
  msgid "View"
1577
  msgstr "Näkymä"
1578
 
1579
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:92
1580
  msgid "Adjust"
1581
  msgstr ""
1582
 
1583
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1584
  msgid "Move (Absolute)"
1585
  msgstr ""
1586
 
1587
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:93
1588
  #: SmartSlider3/Widget/Group/Arrow.php:44
1589
  msgid "Arrows"
1590
  msgstr "Nuolet"
1591
 
1592
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:94
1593
  msgid "Align (Absolute)"
1594
  msgstr ""
1595
 
1596
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:94
1597
  msgid "Numeric keys"
1598
  msgstr ""
1599
 
1600
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:99
1601
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:16
1602
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:20
1603
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:39
1604
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:58
1605
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:42
1606
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:41
1607
  msgid "Action"
1608
  msgstr "Toiminta"
1609
 
1610
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:101
1611
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/col.js:369
1612
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/layer.js:171
1613
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/row.js:1045
1614
+ #: SmartSlider3/Application/Admin/Assets/js/slider/slider.js:80
1615
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:55
1616
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:43
1617
  #: SmartSlider3/Application/Admin/Layout/Block/Slider/SliderManager/ActionBar/BlockActionBar.php:127
1618
  #: SmartSlider3Pro/Application/Admin/Slider/ViewSliderEditGroup.php:148
1619
  msgid "Duplicate"
1620
  msgstr "Kopioi"
1621
 
1622
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:102
1623
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1133
1624
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slide.js:61
1625
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/SlideManager/ActionBar/BlockActionBar.php:44
1626
+ #: SmartSlider3/Application/Model/ModelSliders.php:579
1627
  msgid "Copy"
1628
  msgstr "Kopioi"
1629
 
1630
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:103
1631
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/components/ComponentAbstract.js:1142
1632
  msgid "Paste"
1633
  msgstr ""
1634
 
1635
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:104
1636
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:198
1637
  msgid "Undo"
1638
  msgstr ""
1639
 
1640
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:105
1641
+ #: SmartSlider3/Application/Admin/Slides/ViewSlidesEdit.php:189
1642
  msgid "Redo"
1643
  msgstr ""
1644
 
1645
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:106
1646
  #: SmartSlider3/Application/Admin/Layout/Block/Forms/Button/BlockButtonSave.php:12
1647
  msgid "Save"
1648
  msgstr "Tallenna"
1649
 
1650
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:110
1651
  #: SmartSlider3/Application/Admin/Layout/Block/Slide/AddLayer/AddLayer.php:42
1652
  #, fuzzy
1653
  #| msgid "Layer animations"
1654
  msgid "Play animations"
1655
  msgstr "Tasoanimaatiot"
1656
 
1657
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:115
1658
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:87
1659
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:90
1660
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:107
1661
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:110
1662
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsCommon.php:265
1663
+ #: SmartSlider3/Application/Admin/Layout/Block/Slide/LayerWindow/Settings/LayerWindowSettingsSlide.php:177
1664
  msgid "Clear device specific settings"
1665
  msgstr ""
1666
 
1667
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:116
1668
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:90
1669
  msgid "Current layer, current device"
1670
  msgstr ""
1671
 
1672
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:117
1673
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:87
1674
  msgid "Current layer, all devices"
1675
  msgstr ""
1676
 
1677
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:118
1678
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:110
1679
  msgid "All layers, current device"
1680
  msgstr ""
1681
 
1682
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/hotkey.js:119
1683
+ #: SmartSlider3/Application/Admin/Assets/js/fragment/editor-hotkey.js:107
1684
  msgid "All layers, all devices"
1685
  msgstr ""
1686
 
1687
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/safe-html.js:16
1688
  msgid "Unexpected response"
1689
  msgstr ""
1690
 
1706
  msgstr ""
1707
 
1708
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:21
1709
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrowFrontend.php:177
1710
+ #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBarFrontend.php:171
1711
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowRevealFrontend.php:186
1712
+ #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowTextFrontend.php:115
1713
  msgid "Previous slide"
1714
  msgstr ""
1715
 
1716
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:22
1717
+ #: SmartSlider3Pro/Widget/Arrow/ArrowGrow/ArrowGrowFrontend.php:180
1718
+ #: SmartSlider3Pro/Widget/Arrow/ArrowImageBar/ArrowImageBarFrontend.php:174
1719
+ #: SmartSlider3Pro/Widget/Arrow/ArrowReveal/ArrowRevealFrontend.php:189
1720
+ #: SmartSlider3Pro/Widget/Arrow/ArrowText/ArrowTextFrontend.php:118
1721
  msgid "Next slide"
1722
  msgstr ""
1723
 
1762
 
1763
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:189
1764
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:257
1765
+ #: SmartSlider3Pro/Renderable/Item/Caption/ItemCaption.php:224
1766
+ #: SmartSlider3Pro/Slider/SliderType/Showcase/SliderTypeShowcaseAdmin.php:361
1767
  msgid "Direction"
1768
  msgstr "Suunta"
1769
 
1770
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:190
1771
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-action.js:258
1772
  #: SmartSlider3/Application/Admin/FormManager/Slider/SliderDeveloper.php:93
1773
+ #: SmartSlider3/Slider/SliderType/Simple/SliderTypeSimpleAdmin.php:139
1774
  #: SmartSlider3/Widget/Bullet/BulletTransition/BulletTransition.php:77
1775
+ #: SmartSlider3/Widget/Thumbnail/Basic/ThumbnailBasic.php:178
 
1776
  #: SmartSlider3Pro/Renderable/Item/Iframe/ItemIframe.php:76
1777
  #: SmartSlider3Pro/Widget/Bullet/BulletNumbers/BulletNumbers.php:82
1778
  #: SmartSlider3Pro/Widget/Bullet/BulletText/BulletText.php:82
1846
  msgid "Autoplay duration"
1847
  msgstr ""
1848
 
1849
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:20
1850
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:18
1851
  #: SmartSlider3Pro/Generator/Joomla/Djclassifieds/Sources/DjclassifiedsItems.php:75
1852
  msgid "URL"
1853
  msgstr ""
1854
 
1855
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:25
1856
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:276
1857
  msgid "Search keyword"
1858
  msgstr ""
1859
 
1860
+ #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url-tab-url.js:32
1861
+ #: SmartSlider3/Application/Admin/Assets/js/slides/slides.js:284
1862
  #: SmartSlider3/Generator/WordPress/Posts/GeneratorGroupPosts.php:16
1863
  #: SmartSlider3Pro/Generator/Common/Facebook/Sources/FacebookPostsByPage.php:30
1864
  #: SmartSlider3Pro/Generator/WordPress/MultisitePost/GeneratorGroupMultisitePost.php:29
1870
  msgstr ""
1871
 
1872
  #: SmartSlider3/Application/Admin/Assets/js/common/modal/modals/url.js:34
1873
+ #: SmartSlider3/Application/Admin/Assets/js/slide/generator.js:413
1874
+ #: SmartSlider3/Application/Admin/Assets/js/slider/select-modal.js:16
1875
  msgid "Insert"
1876
  msgstr "Syötä"
1877
 
1878
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:27
1879
  msgid "Oops, Something Went Wrong"
1880
  msgstr ""
1881
 
1882
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:51
1883
  msgid "Success"
1884
  msgstr ""
1885
 
1886
+ #: SmartSlider3/Application/Admin/Assets/js/common/notificationcenter/notification.js:57
1887
+ #: SmartSlider3/Application/Admin/Assets/js/common/ui.js:414
1888
  msgid "Notice"
1889
  msgstr ""
1890
 
1891
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:34
1892
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:70
1893
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:130
1894
  msgid "Select image"
1895
  msgstr ""
1896
 
1897
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:37
1898
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:73
1899
  msgid "Use Joomla selector"
1900
  msgstr ""
1901
 
1902
+ #: SmartSlider3/Application/Admin/Assets/js/common/platform/joomla/image-choose.js:132
1903
  msgid "Use default selector"
1904
  msgstr ""
1905
 
1907
  msgid "Deleted."
1908
  msgstr ""
1909
 
1910
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:102
1911
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/setsandmore.js:93
1912
  #: SmartSlider3Pro/SplitText/Admin/Assets/js/manager.js:71
1913
  msgid "Static"
1914
  msgstr "Staattinen"
1915
 
1916
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:225
1917
  msgid "Save as New"
1918
  msgstr ""
1919
 
1920
+ #: SmartSlider3/Application/Admin/Assets/js/common/visuals/manager/core.js:236
1921
  msgid "Saved."
1922
  msgstr ""
1923
 
1924
+ #: SmartSlider3/Application/Admin/Assets/js/element/animationmanagerelement.js:72
1925
  #: SmartSlider3Pro/Application/Admin/Assets/js/element/particlemanager.js:140
1926