Version Description
Download this release
Release Info
Developer | bravenewcode |
Plugin | WPtouch |
Version | 4.3.5 |
Comparing to | |
See all releases |
Code changes from version 4.3.4 to 4.3.5
- admin/js/wptouch-admin-4.js +3 -12
- core/class-array-iterator.php +2 -2
- core/class-bncapi.php +1 -1
- core/class-wptouch-pro-debug.php +1 -1
- core/class-wptouch-pro-settings.php +4 -4
- core/class-wptouch-pro.php +3 -3
- lang/wptouch.pot +2 -2
- readme.txt +7 -2
- release.pot +2229 -0
- themes/bauhaus/default/style.css +23 -17
- themes/bauhaus/readme.txt +5 -1
- themes/bauhaus/root-functions.php +1 -1
- wptouch-pro.pot +2229 -0
- wptouch.php +2 -2
admin/js/wptouch-admin-4.js
CHANGED
@@ -954,17 +954,8 @@ function showCustomizerWindow(){
|
|
954 |
// The Preview Pop-Up Window
|
955 |
function wptouchPreviewWindow(){
|
956 |
|
957 |
-
jQuery( 'input#wptouch-preview-theme' ).on( 'click', function( e ) {
|
958 |
-
|
959 |
-
previewCounter++;
|
960 |
-
jQuery.cookie( 'wptouch-preview-count', previewCounter );
|
961 |
-
|
962 |
-
if ( jQuery.cookie( 'wptouch-preview-count' ) == 5 || jQuery.cookie( 'wptouch-preview-count' ) %20 == 0 ) {
|
963 |
-
showCustomizerWindow();
|
964 |
-
showPreviewWindow();
|
965 |
-
} else {
|
966 |
-
showPreviewWindow();
|
967 |
-
}
|
968 |
e.preventDefault();
|
969 |
});
|
970 |
}
|
@@ -1022,4 +1013,4 @@ function wptouchAdminReady() {
|
|
1022 |
|
1023 |
jQuery( document ).ready( function() {
|
1024 |
wptouchAdminReady();
|
1025 |
-
});
|
954 |
// The Preview Pop-Up Window
|
955 |
function wptouchPreviewWindow(){
|
956 |
|
957 |
+
jQuery( 'input#wptouch-preview-theme' ).on( 'click', function( e ) {
|
958 |
+
showPreviewWindow();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
959 |
e.preventDefault();
|
960 |
});
|
961 |
}
|
1013 |
|
1014 |
jQuery( document ).ready( function() {
|
1015 |
wptouchAdminReady();
|
1016 |
+
});
|
core/class-array-iterator.php
CHANGED
@@ -6,7 +6,7 @@ class WPtouchArrayIterator {
|
|
6 |
var $count;
|
7 |
var $cur_key;
|
8 |
|
9 |
-
function
|
10 |
$this->array = $a;
|
11 |
$this->cur_pos = 0;
|
12 |
$this->count = count( $a );
|
@@ -58,4 +58,4 @@ class WPtouchArrayIterator {
|
|
58 |
function the_key() {
|
59 |
return $this->cur_key;
|
60 |
}
|
61 |
-
}
|
6 |
var $count;
|
7 |
var $cur_key;
|
8 |
|
9 |
+
function __construct( $a ) {
|
10 |
$this->array = $a;
|
11 |
$this->cur_pos = 0;
|
12 |
$this->count = count( $a );
|
58 |
function the_key() {
|
59 |
return $this->cur_key;
|
60 |
}
|
61 |
+
}
|
core/class-bncapi.php
CHANGED
@@ -17,7 +17,7 @@ class BNCAPI {
|
|
17 |
var $might_have_license;
|
18 |
var $product_name;
|
19 |
|
20 |
-
function
|
21 |
$this->bncid = $bncid;
|
22 |
$this->license_key = $license_key;
|
23 |
$this->credentials_invalid = false;
|
17 |
var $might_have_license;
|
18 |
var $product_name;
|
19 |
|
20 |
+
function __construct( $bncid, $license_key ) {
|
21 |
$this->bncid = $bncid;
|
22 |
$this->license_key = $license_key;
|
23 |
$this->credentials_invalid = false;
|
core/class-wptouch-pro-debug.php
CHANGED
@@ -20,7 +20,7 @@ class WPtouchProDebug {
|
|
20 |
var $enabled;
|
21 |
var $log_level;
|
22 |
|
23 |
-
function
|
24 |
$this->debug_file = false;
|
25 |
$this->enabled = false;
|
26 |
}
|
20 |
var $enabled;
|
21 |
var $log_level;
|
22 |
|
23 |
+
function __construct() {
|
24 |
$this->debug_file = false;
|
25 |
$this->enabled = false;
|
26 |
}
|
core/class-wptouch-pro-settings.php
CHANGED
@@ -17,7 +17,7 @@ class WPtouchSettings extends stdClass {
|
|
17 |
|
18 |
// These settings should never be adjusted, but rather should be augmented at a later time */
|
19 |
class WPtouchDefaultSettings30 extends WPtouchSettings {
|
20 |
-
function
|
21 |
|
22 |
// Wizard
|
23 |
$this->show_wizard = true;
|
@@ -117,7 +117,7 @@ class WPtouchDefaultSettings30 extends WPtouchSettings {
|
|
117 |
};
|
118 |
|
119 |
class WPtouchDefaultSettingsBNCID30 extends WPtouchSettings {
|
120 |
-
function
|
121 |
// License Information
|
122 |
$this->bncid = '';
|
123 |
$this->wptouch_license_key = '';
|
@@ -139,14 +139,14 @@ class WPtouchDefaultSettingsBNCID30 extends WPtouchSettings {
|
|
139 |
};
|
140 |
|
141 |
class WPtouchDefaultSettingsCompat extends WPtouchSettings {
|
142 |
-
function
|
143 |
$this->plugin_hooks = '';
|
144 |
$this->enabled_plugins = array();
|
145 |
}
|
146 |
};
|
147 |
|
148 |
class WPtouchDefaultSettingsMultisite extends WPtouchSettings {
|
149 |
-
function
|
150 |
$this->multisite_use_master_settings = false;
|
151 |
$this->multisite_master_site = 1;
|
152 |
$this->multisite_show_general_settings = true;
|
17 |
|
18 |
// These settings should never be adjusted, but rather should be augmented at a later time */
|
19 |
class WPtouchDefaultSettings30 extends WPtouchSettings {
|
20 |
+
function __construct() {
|
21 |
|
22 |
// Wizard
|
23 |
$this->show_wizard = true;
|
117 |
};
|
118 |
|
119 |
class WPtouchDefaultSettingsBNCID30 extends WPtouchSettings {
|
120 |
+
function __construct() {
|
121 |
// License Information
|
122 |
$this->bncid = '';
|
123 |
$this->wptouch_license_key = '';
|
139 |
};
|
140 |
|
141 |
class WPtouchDefaultSettingsCompat extends WPtouchSettings {
|
142 |
+
function __construct() {
|
143 |
$this->plugin_hooks = '';
|
144 |
$this->enabled_plugins = array();
|
145 |
}
|
146 |
};
|
147 |
|
148 |
class WPtouchDefaultSettingsMultisite extends WPtouchSettings {
|
149 |
+
function __construct() {
|
150 |
$this->multisite_use_master_settings = false;
|
151 |
$this->multisite_master_site = 1;
|
152 |
$this->multisite_show_general_settings = true;
|
core/class-wptouch-pro.php
CHANGED
@@ -62,9 +62,9 @@ class WPtouchProFour {
|
|
62 |
var $cache_smash;
|
63 |
|
64 |
// Shortcodes that must process before AJAX shortcode request
|
65 |
-
var $preprocess_shortcodes = array( 'gallery', 'new_royalslider', 'contact-form-7', 'metaslider' );
|
66 |
|
67 |
-
function
|
68 |
$this->is_mobile_device = false;
|
69 |
$this->showing_mobile_theme = false;
|
70 |
|
@@ -1916,7 +1916,7 @@ class WPtouchProFour {
|
|
1916 |
}
|
1917 |
|
1918 |
uksort( $addons, 'strnatcasecmp' );
|
1919 |
-
|
1920 |
return $addons;
|
1921 |
}
|
1922 |
|
62 |
var $cache_smash;
|
63 |
|
64 |
// Shortcodes that must process before AJAX shortcode request
|
65 |
+
var $preprocess_shortcodes = array( 'gallery', 'new_royalslider', 'contact-form-7', 'metaslider', 'wdi_feed' );
|
66 |
|
67 |
+
function __construct() {
|
68 |
$this->is_mobile_device = false;
|
69 |
$this->showing_mobile_theme = false;
|
70 |
|
1916 |
}
|
1917 |
|
1918 |
uksort( $addons, 'strnatcasecmp' );
|
1919 |
+
|
1920 |
return $addons;
|
1921 |
}
|
1922 |
|
lang/wptouch.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the WPtouch Mobile Plugin package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPtouch Mobile Plugin 4.3.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n"
|
7 |
-
"POT-Creation-Date: 2016-10-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the WPtouch Mobile Plugin package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPtouch Mobile Plugin 4.3.5\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n"
|
7 |
+
"POT-Creation-Date: 2016-10-27 19:00:57+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== Plugin Name ===
|
2 |
-
Contributors: kbmcardle, bravenewcode, duanestorey, dalemugford, adamdipardo,
|
3 |
Tags: wptouch, iphone, ipod, bravenewcode, mobile, mobile-friendly, android, blackberry, smartphone, responsive, design, mobile plugin, ios, mobile theme
|
4 |
Requires at least: 4.2
|
5 |
-
Stable tag: 4.3.
|
6 |
Tested up to: 4.6
|
7 |
License: GPLv2
|
8 |
|
@@ -33,6 +33,11 @@ For more information visit [WPtouch.com](http://www.wptouch.com/?utm_campaign=wp
|
|
33 |
|
34 |
== Changelog ==
|
35 |
|
|
|
|
|
|
|
|
|
|
|
36 |
= Version 4.3.4 (October 13, 2016) =
|
37 |
|
38 |
* Added: Support for adding the featured post slider to a page
|
1 |
=== Plugin Name ===
|
2 |
+
Contributors: kbmcardle, bravenewcode, duanestorey, dalemugford, adamdipardo,
|
3 |
Tags: wptouch, iphone, ipod, bravenewcode, mobile, mobile-friendly, android, blackberry, smartphone, responsive, design, mobile plugin, ios, mobile theme
|
4 |
Requires at least: 4.2
|
5 |
+
Stable tag: 4.3.5
|
6 |
Tested up to: 4.6
|
7 |
License: GPLv2
|
8 |
|
33 |
|
34 |
== Changelog ==
|
35 |
|
36 |
+
= Version 4.3.5 (October 27, 2016) =
|
37 |
+
|
38 |
+
* Fixed: Warnings that appeared for sites running PHP 7
|
39 |
+
* Fixed: Minor bugs and issues reported by customers and users
|
40 |
+
|
41 |
= Version 4.3.4 (October 13, 2016) =
|
42 |
|
43 |
* Added: Support for adding the featured post slider to a page
|
release.pot
ADDED
@@ -0,0 +1,2229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2016
|
2 |
+
# This file is distributed under the same license as the package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: \n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/release\n"
|
7 |
+
"POT-Creation-Date: 2016-10-25 21:11:56+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
|
15 |
+
#: admin/customizer/wptouch-customizer.php:590
|
16 |
+
msgid "Device Orientation"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: admin/customizer/wptouch-customizer.php:617
|
20 |
+
msgid "Switch to Mobile Theme"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: admin/customizer/wptouch-customizer.php:618
|
24 |
+
msgid "Switch to Desktop Theme"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: admin/html/license-modals.php:7
|
28 |
+
msgid "Activating License"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: admin/html/license-modals.php:17
|
32 |
+
msgid "Server Unavailable."
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: admin/html/license-modals.php:18
|
36 |
+
msgid ""
|
37 |
+
"Our server cannot authorize your license. This could be caused by your "
|
38 |
+
"webhost blocking the connection, or a temporary issue with our server."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: admin/html/license-modals.php:19
|
42 |
+
msgid "E-Mail Support"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: admin/html/license-modals.php:24
|
46 |
+
msgid "E-mail Address/License Key Rejected"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: admin/html/license-modals.php:25
|
50 |
+
msgid "Our server rejected your E-Mail Address/License Key."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: admin/html/license-modals.php:26
|
54 |
+
msgid "Please check that they are correct and try again."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: admin/html/license-modals.php:27
|
58 |
+
msgid "Try Again"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: admin/html/license-modals.php:32
|
62 |
+
msgid "Your license has expired"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: admin/html/license-modals.php:33
|
66 |
+
msgid ""
|
67 |
+
"%sRenew your license%s to continue to receive product updates and support."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: admin/html/license-modals.php:34
|
71 |
+
#: admin/pages/custom/wptouch-admin-license.php:78
|
72 |
+
msgid "Renew License"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: admin/html/license-modals.php:39
|
76 |
+
msgid "No licenses remaining"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: admin/html/license-modals.php:40
|
80 |
+
msgid ""
|
81 |
+
"You have no licenses remaining. You can remove a license from another "
|
82 |
+
"domain, or purchase an additional site license."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: admin/html/license-modals.php:41
|
86 |
+
msgid "Manage Licenses"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: admin/html/license-modals.php:42
|
90 |
+
msgid "Purchase Additional License"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: admin/html/license-modals.php:46
|
94 |
+
msgid "License Activation Complete!"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: admin/html/license-modals.php:47
|
98 |
+
msgid ""
|
99 |
+
"Thanks for purchasing WPtouch Pro! Your installation is activated, you can "
|
100 |
+
"receive support and product updates for this website."
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: admin/html/license-modals.php:54
|
104 |
+
msgid "Upgrading installation..."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: admin/html/license-modals.php:57
|
108 |
+
msgid "Upgrade to Pro Complete!"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: admin/html/license-modals.php:58
|
112 |
+
msgid ""
|
113 |
+
"Your installation has been activated and replaced by WPtouch Pro. Next "
|
114 |
+
"you'll be taken to the WPtouch Pro wizard to get setup."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: admin/html/license-modals.php:64
|
118 |
+
msgid "Upgrade to Pro Failed"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: admin/html/license-modals.php:65
|
122 |
+
msgid ""
|
123 |
+
"Your license was activated, however your installation could not be "
|
124 |
+
"automatically upgraded to WPtouch Pro."
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: admin/html/license-modals.php:66
|
128 |
+
msgid "Please %sfollow the steps in this article%s to fix the issue."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: admin/html/plugin-area.php:11
|
132 |
+
msgid ""
|
133 |
+
"A new product version (%s) is available. %sRenew your license%s to download "
|
134 |
+
"this update and receive additional product support."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: admin/html/plugin-area.php:13
|
138 |
+
msgid ""
|
139 |
+
"A new product version (%s) is available. Please %sactivate your license%s, "
|
140 |
+
"or %spurchase a new license%s to enable updates and full product support."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: admin/html/plugin-area.php:30
|
144 |
+
msgid ""
|
145 |
+
"%sRenew your license%s to receive future product updates and product support."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: admin/html/plugin-area.php:44
|
149 |
+
msgid ""
|
150 |
+
"Please %sactivate your license%s, or %spurchase a license%s to fully enable "
|
151 |
+
"product updates and product support."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: admin/pages/custom/wptouch-admin-go-pro.php:9
|
155 |
+
#: admin/pages/custom/wptouch-admin-license.php:72
|
156 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:77
|
157 |
+
msgid "Account E-Mail Address"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: admin/pages/custom/wptouch-admin-go-pro.php:11
|
161 |
+
#: admin/pages/custom/wptouch-admin-license.php:74
|
162 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:79
|
163 |
+
msgid "Product License Key"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: admin/pages/custom/wptouch-admin-go-pro.php:14
|
167 |
+
msgid "Activate WPtouch Pro"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: admin/pages/custom/wptouch-admin-license.php:32
|
171 |
+
msgid "Account & License"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: admin/pages/custom/wptouch-admin-license.php:80
|
175 |
+
#: admin/settings/html/theme-browser-item-detail.php:5
|
176 |
+
#: core/admin-extensions.php:367
|
177 |
+
msgid "Activate"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: admin/pages/custom/wptouch-admin-license.php:83
|
181 |
+
msgid "Clear License"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: admin/pages/custom/wptouch-admin-license.php:91
|
185 |
+
msgid "Site License"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: admin/pages/custom/wptouch-admin-license.php:92
|
189 |
+
#: admin/settings/html/extension-browser-item-detail.php:46
|
190 |
+
#: admin/settings/html/extension-browser-item-detail.php:75
|
191 |
+
msgid "Deactivate"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: admin/pages/custom/wptouch-admin-license.php:95
|
195 |
+
msgid "Licenses used"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: admin/pages/custom/wptouch-admin-license.php:96
|
199 |
+
msgid "Manage"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: admin/pages/custom/wptouch-admin-license.php:100
|
203 |
+
msgid "License expiry"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: admin/pages/custom/wptouch-admin-license.php:108
|
207 |
+
msgid "Support"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin/pages/custom/wptouch-admin-license.php:114
|
211 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:322
|
212 |
+
msgid "Find support guides, file tickets and access our knowledgebase here."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: admin/pages/custom/wptouch-admin-license.php:118
|
216 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:27
|
217 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:38
|
218 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:58
|
219 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:247
|
220 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:266
|
221 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:320
|
222 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:325
|
223 |
+
msgid "Ornamental Image"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: admin/pages/custom/wptouch-admin-license.php:120
|
227 |
+
msgid "WPtouch Pro Account"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: admin/pages/custom/wptouch-admin-license.php:121
|
231 |
+
msgid ""
|
232 |
+
"Access your WPtouch Pro account to mange your license, access support "
|
233 |
+
"resources, or upgrade your license."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: admin/pages/custom/wptouch-admin-license.php:128
|
237 |
+
msgid "Installation"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: admin/pages/custom/wptouch-admin-license.php:133
|
241 |
+
msgid "Download Settings"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: admin/pages/custom/wptouch-admin-license.php:134
|
245 |
+
msgid "Download a copy of WPtouch Pro settings"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: admin/pages/custom/wptouch-admin-license.php:139
|
249 |
+
msgid "Restore Settings"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: admin/pages/custom/wptouch-admin-license.php:143
|
253 |
+
msgid "Restore a WPtouch Pro settings file"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: admin/pages/custom/wptouch-admin-license.php:148
|
257 |
+
msgid "Erase Settings"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: admin/pages/custom/wptouch-admin-license.php:149
|
261 |
+
msgid "Erases WPtouch Pro settings without deleting files"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: admin/pages/custom/wptouch-admin-license.php:153
|
265 |
+
msgid "Delete & Erase"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: admin/pages/custom/wptouch-admin-license.php:154
|
269 |
+
msgid ""
|
270 |
+
"Deletes the %s folder in your %s folder on disk, and erases WPtouch Pro "
|
271 |
+
"settings"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: admin/pages/custom/wptouch-admin-license.php:157
|
275 |
+
msgid "Delete, Erase & Deactivate"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin/pages/custom/wptouch-admin-license.php:158
|
279 |
+
msgid ""
|
280 |
+
"Deletes the %s folder, erases WPtouch settings and deactivates WPtouch Pro"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:25
|
284 |
+
msgid "Thanks for Upgrading!"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:28
|
288 |
+
msgid ""
|
289 |
+
"From all of us at BraveNewCode, we want to say thanks. You keep us working "
|
290 |
+
"hard to make this product great."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:29
|
294 |
+
msgid "Click the arrow below to get started with setup."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:36
|
298 |
+
msgid "Choose a Language"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:37
|
302 |
+
msgid "Setting Language..."
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:59
|
306 |
+
msgid "Welcome to WPtouch Pro 4"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:60
|
310 |
+
msgid ""
|
311 |
+
"The most elegant and powerful way to create great mobile experiences for "
|
312 |
+
"your website visitors. This guide will help you configure important WPtouch "
|
313 |
+
"Pro settings before customizing your theme."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:68
|
317 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:82
|
318 |
+
msgid "Activate License"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:69
|
322 |
+
msgid ""
|
323 |
+
"Adding a license is required to activate product updates and support, and "
|
324 |
+
"provides access to more themes and extensions."
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:88
|
328 |
+
msgid ""
|
329 |
+
"You can find your license key in the purchase receipt e-mail we sent you "
|
330 |
+
"when you purchased WPtouch Pro. %s If you have lost your license e-mail, or "
|
331 |
+
"are having issues activating WPtouch Pro please send an e-mail to %s"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:92
|
335 |
+
msgid "License Activation Complete"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:94
|
339 |
+
msgid "Thank you for purchasing a %s licence!"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:100
|
343 |
+
msgid "Multisite Network"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:101
|
347 |
+
msgid ""
|
348 |
+
"Since you have network activated WPtouch Pro, you can configure the way "
|
349 |
+
"themes and extensions are controlled in your environment."
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:103
|
353 |
+
msgid ""
|
354 |
+
"By default network activations of WPtouch Pro mean that the Network Admin "
|
355 |
+
"controls theme and extension downloads and updates. You can also choose to "
|
356 |
+
"allow sub-sites to behave like independent installations, and control themes "
|
357 |
+
"and extensions themselves."
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:105
|
361 |
+
msgid "Control theme and extension downloads and updates"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:115
|
365 |
+
msgid "Download / Upload a Theme"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:116
|
369 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:168
|
370 |
+
msgid ""
|
371 |
+
"We were unable to install automatically for you on this server. Instead, you "
|
372 |
+
"can download and upload manually. To learn more about enabling automatic "
|
373 |
+
"downloads, %sread this article on support.wptouch.com%s."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:128
|
377 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:179
|
378 |
+
#: admin/settings/html/theme-browser-item-detail.php:52
|
379 |
+
#: admin/settings/html/updates-available.php:35
|
380 |
+
#: admin/settings/html/updates-available.php:71 core/class-wptouch-pro.php:967
|
381 |
+
msgid "Download"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:130
|
385 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:181
|
386 |
+
#: admin/settings/html/extension-browser-item.php:10
|
387 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:13
|
388 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:26
|
389 |
+
#: admin/settings/html/theme-browser-item.php:12
|
390 |
+
#: core/class-wptouch-pro.php:966
|
391 |
+
msgid "Installed"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:136
|
395 |
+
msgid "Theme Uploaded!"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:136
|
399 |
+
msgid "Upload A Theme"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:136
|
403 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:187
|
404 |
+
#: admin/settings/html/image-upload.php:13
|
405 |
+
msgid "Upload"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:136
|
409 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:187
|
410 |
+
msgid "Uploading..."
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:137
|
414 |
+
msgid "You can activate your theme in the next step"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:144
|
418 |
+
msgid "Choose a Theme"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:145
|
422 |
+
msgid ""
|
423 |
+
"Select a theme which best suits your website. %s Themes are flexible— "
|
424 |
+
"colors, fonts, layout and more can be changed for each theme."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:167
|
428 |
+
msgid "Download / Upload Extensions"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:187
|
432 |
+
msgid "Extension Uploaded!"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:187
|
436 |
+
msgid "Upload Extension"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:188
|
440 |
+
msgid "You can activate extensions in the next step"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:205
|
444 |
+
msgid "Activate Extensions"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:206
|
448 |
+
msgid ""
|
449 |
+
"Extensions are like mini-plugins that help you extend WPtouch Pro. You can "
|
450 |
+
"also manage Extensions at any time from the WPtouch Pro settings panel."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:237
|
454 |
+
msgid "Posts Page"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:239
|
458 |
+
msgid "Home Page & Posts"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:241
|
462 |
+
msgid ""
|
463 |
+
"By default WPtouch Pro uses your WordPress settings for its homepage and "
|
464 |
+
"blog settings. You can choose a different setup here."
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:254
|
468 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:273
|
469 |
+
#: admin/pages/wptouch-admin-general-settings.php:133
|
470 |
+
#: admin/settings/include/custom-latest-posts.php:11
|
471 |
+
msgid "WordPress Reading Settings"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:262
|
475 |
+
msgid "Mobile home page"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:278
|
479 |
+
msgid "Mobile posts listing"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:286
|
483 |
+
msgid "Google Analytics"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:287
|
487 |
+
msgid ""
|
488 |
+
"WPtouch Pro supports analytics and usage statistics collection from Google "
|
489 |
+
"Analytics."
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:288
|
493 |
+
msgid "WPtouch Pro can scan your site html and add it automatically."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:292
|
497 |
+
msgid "Searching..."
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:292
|
501 |
+
msgid "Scan for Analytics Code"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:302
|
505 |
+
msgid "WPtouch Love"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:303
|
509 |
+
msgid ""
|
510 |
+
"Share your love for WPtouch Pro by including a small text link in your "
|
511 |
+
"website's footer. Including the link helps us find new customers who will "
|
512 |
+
"love WPtouch Pro like you do!"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:306
|
516 |
+
msgid "Show powered by WPtouch Pro"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:315
|
520 |
+
msgid "WPtouch Pro Support"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:316
|
524 |
+
msgid ""
|
525 |
+
"WPtouch Pro 4 includes great support resources to help you get the most out "
|
526 |
+
"of it."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:327
|
530 |
+
msgid ""
|
531 |
+
"Access your WPtouch Pro account to manage your license, access support "
|
532 |
+
"resources, or upgrade your license."
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:335
|
536 |
+
msgid "Setup Complete!"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:337
|
540 |
+
msgid " Next you can configure your theme."
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:339
|
544 |
+
msgid " Next you can customize your theme, or configure advanced settings."
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:341
|
548 |
+
msgid " Next you can configure network settings."
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:348
|
552 |
+
msgid "Customize your Theme"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:354
|
556 |
+
msgid "Configure Settings"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: admin/pages/wptouch-admin-general-settings.php:28 core/admin-render.php:68
|
560 |
+
#: core/config.php:88
|
561 |
+
msgid "Updates Available"
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: admin/pages/wptouch-admin-general-settings.php:54
|
565 |
+
msgid "Mobile Site Title"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: admin/pages/wptouch-admin-general-settings.php:60
|
569 |
+
msgid "WPtouch Pro site title"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: admin/pages/wptouch-admin-general-settings.php:73
|
573 |
+
msgid "If disabled WPtouch Pro will be off for visitors but can be configured."
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: admin/pages/wptouch-admin-general-settings.php:75
|
577 |
+
msgid ""
|
578 |
+
"If disabled WPtouch Pro will be off for visitors but can be configured in "
|
579 |
+
"the Customizer."
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: admin/pages/wptouch-admin-general-settings.php:80
|
583 |
+
msgid "Display"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: admin/pages/wptouch-admin-general-settings.php:86
|
587 |
+
msgid "Display WPtouch Pro for mobile visitors"
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: admin/pages/wptouch-admin-general-settings.php:94
|
591 |
+
msgid "URL filtering"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: admin/pages/wptouch-admin-general-settings.php:99
|
595 |
+
msgid "Show WPtouch Pro for all URLs"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: admin/pages/wptouch-admin-general-settings.php:100
|
599 |
+
msgid "Exclude WPtouch Pro on these URLs"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/pages/wptouch-admin-general-settings.php:101
|
603 |
+
msgid "Only show WPtouch Pro on these URLs"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: admin/pages/wptouch-admin-general-settings.php:107
|
607 |
+
msgid "Apply filter to these URLs/Pages"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: admin/pages/wptouch-admin-general-settings.php:115
|
611 |
+
msgid "Require exact match"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: admin/pages/wptouch-admin-general-settings.php:128
|
615 |
+
msgid "Mobile front page"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: admin/pages/wptouch-admin-general-settings.php:129
|
619 |
+
msgid "You can set a different front page for WPtouch Pro visitors."
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: admin/pages/wptouch-admin-general-settings.php:134
|
623 |
+
msgid "Redirect to a page"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: admin/pages/wptouch-admin-general-settings.php:135
|
627 |
+
msgctxt "Refers to a custom landing page"
|
628 |
+
msgid "Redirect to a custom URL"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: admin/pages/wptouch-admin-general-settings.php:141
|
632 |
+
msgid "Custom Slug or URL"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: admin/pages/wptouch-admin-general-settings.php:142
|
636 |
+
msgid "Enter a Slug (i.e. \"/home\") or a full URL path"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: admin/pages/wptouch-admin-general-settings.php:160
|
640 |
+
msgid "Landing Pages"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: admin/pages/wptouch-admin-general-settings.php:169
|
644 |
+
msgid "Desktop / Mobile Switching"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: admin/pages/wptouch-admin-general-settings.php:175
|
648 |
+
msgctxt "switches between desktop and mobile themes"
|
649 |
+
msgid "Theme switch toggle"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: admin/pages/wptouch-admin-general-settings.php:184
|
653 |
+
msgid ""
|
654 |
+
"Shows a toggle in both the desktop mobile theme footers allowing users to "
|
655 |
+
"switch between them."
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: admin/pages/wptouch-admin-general-settings.php:189
|
659 |
+
msgid "Page Zoom"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: admin/pages/wptouch-admin-general-settings.php:195
|
663 |
+
msgid "Allow mobile browser zooming"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: admin/pages/wptouch-admin-general-settings.php:196
|
667 |
+
msgid "By default WPtouch Pro disables browser zooming."
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: admin/pages/wptouch-admin-general-settings.php:207
|
671 |
+
msgid "Smart App Banner"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: admin/pages/wptouch-admin-general-settings.php:222
|
675 |
+
msgid "Find your ID from the %siTunes Link Maker%s."
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: admin/pages/wptouch-admin-general-settings.php:227
|
679 |
+
msgid "Analytics"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: admin/pages/wptouch-admin-general-settings.php:233
|
683 |
+
msgid "Analytics Code"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: admin/pages/wptouch-admin-general-settings.php:238
|
687 |
+
#: admin/pages/wptouch-admin-general-settings.php:629
|
688 |
+
msgid "None"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: admin/pages/wptouch-admin-general-settings.php:240
|
692 |
+
msgid "Custom"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: admin/pages/wptouch-admin-general-settings.php:247
|
696 |
+
msgid "Site ID"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: admin/pages/wptouch-admin-general-settings.php:268
|
700 |
+
msgid "WPtouch Pro Love"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: admin/pages/wptouch-admin-general-settings.php:274
|
704 |
+
msgid "Show powered by WPtouch Pro link in theme footer"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: admin/pages/wptouch-admin-general-settings.php:286
|
708 |
+
msgid "Language"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: admin/pages/wptouch-admin-general-settings.php:292
|
712 |
+
msgid "Theme Language"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: admin/pages/wptouch-admin-general-settings.php:301
|
716 |
+
msgid "Also applies to admin"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: admin/pages/wptouch-admin-general-settings.php:320
|
720 |
+
msgctxt ""
|
721 |
+
"shortcodes are pieces of code [like_this] that users can drop into textareas "
|
722 |
+
"that will convert to longer pieces of code"
|
723 |
+
msgid "Shortcodes"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: admin/pages/wptouch-admin-general-settings.php:326
|
727 |
+
msgid "Process desktop theme shortcodes"
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
#: admin/pages/wptouch-admin-general-settings.php:334
|
731 |
+
msgid "Filter out shortcodes"
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: admin/pages/wptouch-admin-general-settings.php:335
|
735 |
+
msgid "Filters out shortcodes from displaying when WPtouch Pro is active."
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: admin/pages/wptouch-admin-general-settings.php:349
|
739 |
+
msgid "Active Plugins"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: admin/pages/wptouch-admin-general-settings.php:360
|
743 |
+
msgid ""
|
744 |
+
"Attempts to disable plugins for mobile visitors. Some plugins don‘t support "
|
745 |
+
"this feature due to the way they load in WordPress."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: admin/pages/wptouch-admin-general-settings.php:372
|
749 |
+
msgid "Mobile Devices & Browsers"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: admin/pages/wptouch-admin-general-settings.php:432
|
753 |
+
msgid "Tablets"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: admin/pages/wptouch-admin-general-settings.php:490
|
757 |
+
msgid "Tablet Devices & Browsers"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: admin/pages/wptouch-admin-general-settings.php:505
|
761 |
+
msgid ""
|
762 |
+
"If your theme supports tablets, devices and browsers WPtouch Pro can be "
|
763 |
+
"enabled for will be listed below."
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: admin/pages/wptouch-admin-general-settings.php:511
|
767 |
+
msgid "Additional User Agents"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: admin/pages/wptouch-admin-general-settings.php:517
|
771 |
+
msgid "User agents to add"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: admin/pages/wptouch-admin-general-settings.php:518
|
775 |
+
msgid "You can enter partial i.e. \"nokia\" or full agent strings"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: admin/pages/wptouch-admin-general-settings.php:535
|
779 |
+
msgid "Menu Setup"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: admin/pages/wptouch-admin-general-settings.php:553
|
783 |
+
msgid "Menu Options"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: admin/pages/wptouch-admin-general-settings.php:559
|
787 |
+
msgid "Enable parent items as links"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: admin/pages/wptouch-admin-general-settings.php:560
|
791 |
+
msgid "If disabled, parent menu items will only toggle child items."
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: admin/pages/wptouch-admin-general-settings.php:567
|
795 |
+
msgid "Use menu icons"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: admin/pages/wptouch-admin-general-settings.php:568
|
799 |
+
msgid "Adds the ability to associate icons with menu items"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: admin/pages/wptouch-admin-general-settings.php:579
|
803 |
+
msgid "Menu Icon Sets"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: admin/pages/wptouch-admin-general-settings.php:592
|
807 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:4
|
808 |
+
#: core/class-wptouch-pro.php:2162 core/class-wptouch-pro.php:2163
|
809 |
+
#: core/config.php:54
|
810 |
+
msgid "Custom Icons"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: admin/pages/wptouch-admin-general-settings.php:623
|
814 |
+
msgid "WordPress Pages"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: admin/pages/wptouch-admin-general-settings.php:641 core/admin-render.php:78
|
818 |
+
#: core/admin-render.php:109 core/config.php:93
|
819 |
+
msgid "Customize Theme"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: admin/settings/html/auto_configure.php:4
|
823 |
+
msgid ""
|
824 |
+
"This extension doesn’t currently require configuration. All of its settings "
|
825 |
+
"are inherited from your WPtouch Pro configuration automatically."
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: admin/settings/html/button.php:6 admin/settings/html/callback.php:8
|
829 |
+
#: admin/settings/html/checkbox.php:4 admin/settings/html/checklist.php:6
|
830 |
+
#: admin/settings/html/color.php:8 admin/settings/html/list.php:8
|
831 |
+
#: admin/settings/html/multiline-comma.php:9
|
832 |
+
#: admin/settings/html/multiline-newline.php:7
|
833 |
+
#: admin/settings/html/numeric.php:10 admin/settings/html/radiolist.php:17
|
834 |
+
#: admin/settings/html/text.php:8 admin/settings/html/textarea.php:11
|
835 |
+
msgid "New"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: admin/settings/html/checkbox.php:8 admin/settings/html/list.php:12
|
839 |
+
#: admin/settings/html/multiline-comma.php:13
|
840 |
+
#: admin/settings/html/multiline-newline.php:11
|
841 |
+
#: admin/settings/html/plugin-compat-ajax.php:14
|
842 |
+
#: admin/settings/html/text.php:12
|
843 |
+
msgid "Pro"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: admin/settings/html/custom-latest-posts.php:1
|
847 |
+
msgid "Posts page"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: admin/settings/html/custom_icon_management.php:3
|
851 |
+
msgid "No icons have been uploaded yet"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: admin/settings/html/custom_icon_upload.php:3
|
855 |
+
msgid "Upload Icon"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: admin/settings/html/customizing_in_customizer.php:9
|
859 |
+
msgid ""
|
860 |
+
"These settings are handled in the WordPress %s %sAppearance -> Customize%s "
|
861 |
+
"settings."
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: admin/settings/html/customizing_in_customizer.php:10
|
865 |
+
msgid "%sGo to the Customizer%s"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: admin/settings/html/debuginfo.php:13
|
869 |
+
msgid "View Debug File"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: admin/settings/html/debuginfo.php:18
|
873 |
+
msgid "Server Configuration"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: admin/settings/html/extension-browser-item-detail.php:5
|
877 |
+
msgid "Back to extensions"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: admin/settings/html/extension-browser-item-detail.php:29
|
881 |
+
#: admin/settings/html/extension-browser-item-detail.php:54
|
882 |
+
#: admin/settings/html/theme-browser-item-detail.php:42
|
883 |
+
msgid "Add to License"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: admin/settings/html/extension-browser-item-detail.php:60
|
887 |
+
msgid "Must be activated from Network Admin"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: admin/settings/html/extension-browser-item-detail.php:82
|
891 |
+
#: admin/settings/html/theme-browser-item-detail.php:58
|
892 |
+
msgid "Learn More"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: admin/settings/html/extension-browser-item-detail.php:118
|
896 |
+
#: admin/settings/html/theme-browser-item-detail.php:81
|
897 |
+
#: core/menu-walkers.php:365
|
898 |
+
msgid "Description"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: admin/settings/html/extension-browser-item-detail.php:123
|
902 |
+
#: admin/settings/html/theme-browser-item-detail.php:88
|
903 |
+
msgid "Changelog"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: admin/settings/html/extension-browser.php:3
|
907 |
+
#: admin/settings/html/theme-browser.php:3
|
908 |
+
#: admin/settings/html/updates-available.php:4
|
909 |
+
msgid ""
|
910 |
+
"Your server configuration is preventing WPtouch Pro from installing and "
|
911 |
+
"updating from the Cloud. %sPlease visit %sthis article%s to follow the steps "
|
912 |
+
"to enable Cloud install, or you can manually download and install into the "
|
913 |
+
"wptouch-data/%s directory."
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: admin/settings/html/extension-browser.php:28
|
917 |
+
msgid "No extensions available"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: admin/settings/html/image-upload.php:7 core/class-wptouch-pro.php:959
|
921 |
+
msgid "Upload Complete!"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: admin/settings/html/image-upload.php:17
|
925 |
+
msgid "Delete"
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: admin/settings/html/installed_icon_sets.php:3
|
929 |
+
msgid "Loading icon sets"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: admin/settings/html/installed_icon_sets.php:7
|
933 |
+
msgid ""
|
934 |
+
"The %s%s%s directory is not writable. %sPlease fix this issue to install "
|
935 |
+
"additional icon sets."
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:25
|
939 |
+
#: core/class-wptouch-pro.php:965
|
940 |
+
msgid "Installing"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:25
|
944 |
+
#: admin/settings/html/theme-browser-item-detail.php:3
|
945 |
+
#: core/admin-extensions.php:363 core/class-wptouch-pro.php:964
|
946 |
+
msgid "Install"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:27
|
950 |
+
msgid "Unable to Install"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: admin/settings/html/menus_in_menus.php:9
|
954 |
+
msgid ""
|
955 |
+
"These settings are handled in the WordPress %s %sAppearance -> Menus%s Menu "
|
956 |
+
"Location settings"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: admin/settings/html/menus_in_menus.php:10
|
960 |
+
msgid "%sGo to Menu Settings%s"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: admin/settings/html/no_tablet_support.php:6
|
964 |
+
msgid "You're using %s, which currently does not support tablets."
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: admin/settings/html/plugin-compat-ajax.php:10
|
968 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:183
|
969 |
+
msgid "%s"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: admin/settings/html/plugin-compat-ajax.php:22
|
973 |
+
msgid "No plugins activated to disable."
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: admin/settings/html/plugin-compat.php:3
|
977 |
+
msgid "Your active plugin list is refreshing"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: admin/settings/html/redirect.php:1
|
981 |
+
msgid "Redirect target"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: admin/settings/html/theme-browser-item-detail.php:11
|
985 |
+
msgid "Back to themes"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: admin/settings/html/theme-browser-item-detail.php:35
|
989 |
+
msgid "Customize"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: admin/settings/html/theme-browser-item-detail.php:66
|
993 |
+
msgid "Screenshots"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: admin/settings/html/theme-browser.php:27
|
997 |
+
msgid "No themes available"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: admin/settings/html/touchboard.php:6
|
1001 |
+
msgid "Quick Links"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: admin/settings/html/touchboard.php:8
|
1005 |
+
msgid "What's New Changelog"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: admin/settings/html/touchboard.php:11
|
1009 |
+
msgid "Knowledgebase & Support"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: admin/settings/html/touchboard.php:12
|
1013 |
+
msgid "Manage Account & License"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: admin/settings/html/touchboard.php:14
|
1017 |
+
msgid "WPtouch User Guide"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: admin/settings/html/touchboard.php:15
|
1021 |
+
msgid "Mobile-Friendly Guide"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: admin/settings/html/touchboard.php:17
|
1025 |
+
msgid "WPtouch on Twitter"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: admin/settings/html/touchboard.php:20
|
1029 |
+
msgid "Look at Pro Themes"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: admin/settings/html/touchboard.php:21
|
1033 |
+
msgid "Look at Pro Extensions"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: admin/settings/html/touchboard.php:22
|
1037 |
+
msgid "Look at Pro Features"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: admin/settings/html/touchboard.php:29
|
1041 |
+
msgid "WPtouch News"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: admin/settings/html/touchboard.php:30
|
1045 |
+
msgid "Read More"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: admin/settings/html/touchboard.php:42
|
1049 |
+
msgid "%s Change Log"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: admin/settings/html/updates-available.php:7
|
1053 |
+
msgid "Updating"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: admin/settings/html/updates-available.php:7
|
1057 |
+
msgid "Update All"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: admin/settings/html/updates-available.php:12
|
1061 |
+
msgid "Core Plugin Updates"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: admin/settings/html/updates-available.php:17
|
1065 |
+
#: admin/settings/html/updates-available.php:44
|
1066 |
+
#: admin/settings/html/updates-available.php:67
|
1067 |
+
msgid "Upgrade to %s"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: admin/settings/html/updates-available.php:27
|
1071 |
+
msgid "Theme Updates"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: admin/settings/html/updates-available.php:55
|
1075 |
+
msgid "Extension Updates"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: admin/settings/include/sites.php:17
|
1079 |
+
msgid "Select All"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: admin/settings/include/sites.php:18
|
1083 |
+
msgid "Select None"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: admin/settings/include/sites.php:19
|
1087 |
+
msgid "Deploy to Sites"
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: admin/settings/include/sites.php:28 core/admin-render.php:54
|
1091 |
+
msgid "Deployment"
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: admin/settings/include/sites.php:29
|
1095 |
+
msgid ""
|
1096 |
+
"WARNING: Deploying to sub sites will overwrite sub site WPtouch Pro settings."
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: admin/settings/include/sites.php:29
|
1100 |
+
msgid "Your selected options are being deployed to sub sites"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: admin/settings/include/sites.php:29
|
1104 |
+
msgid "Deploy Complete"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: admin/settings/include/sites.php:30
|
1108 |
+
msgid "Deploy Now"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: core/addon-theme-installer.php:172
|
1112 |
+
msgid "No server support for directly downloading new Cloud packages."
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: core/addon-theme-installer.php:177
|
1116 |
+
msgid ""
|
1117 |
+
"Unable to write to directory %s. Try relaxing permissions to allow writing "
|
1118 |
+
"to this location."
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: core/addon-theme-installer.php:182
|
1122 |
+
msgid "No server support for unzipping files."
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: core/addon-theme-installer.php:197
|
1126 |
+
msgid "Unable to download the Cloud package."
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: core/admin-ajax.php:106
|
1130 |
+
msgid "Version %s"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: core/admin-ajax.php:112
|
1134 |
+
msgid ""
|
1135 |
+
"There is a temporary issue retrieving the change-log. Please try again "
|
1136 |
+
"later."
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: core/admin-ajax.php:200
|
1140 |
+
msgid "Code found! %s Analytics was automatically configured for you."
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: core/admin-ajax.php:219
|
1144 |
+
msgid ""
|
1145 |
+
"Unable to find your Google Analytics code. You can enter it manually in the "
|
1146 |
+
"settings later."
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: core/admin-extensions.php:365
|
1150 |
+
msgid "Site Activate"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: core/admin-menu.php:48
|
1154 |
+
msgid "Setup Wizard"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: core/admin-menu.php:49 core/class-wptouch-pro.php:1634
|
1158 |
+
msgid "Settings"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: core/admin-menu.php:50
|
1162 |
+
msgid "License %s Support"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: core/admin-menu.php:69
|
1166 |
+
msgid "Multisite Setup"
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: core/admin-page-templates.php:19
|
1170 |
+
msgid "Mobile Page Template"
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: core/admin-render.php:4
|
1174 |
+
msgid ""
|
1175 |
+
"Your WPtouch Pro license has expired. Renew now at a discount to continue "
|
1176 |
+
"receiving product updates and support."
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: core/admin-render.php:4
|
1180 |
+
msgid "Renew Now"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: core/admin-render.php:10
|
1184 |
+
msgid "This copy of %s is currently unlicensed."
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: core/admin-render.php:13
|
1188 |
+
msgid "Add a license %s"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: core/admin-render.php:37
|
1192 |
+
msgid "Preview Theme"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: core/admin-render.php:47 core/admin-render.php:63
|
1196 |
+
msgid "Setup"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: core/admin-render.php:49 core/multisite.php:180
|
1200 |
+
msgid "General Options"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: core/admin-render.php:52
|
1204 |
+
msgid "Tools"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: core/admin-render.php:73 core/admin-render.php:82 core/config.php:89
|
1208 |
+
msgid "General"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: core/admin-render.php:74 core/admin-render.php:86 core/multisite.php:259
|
1212 |
+
#: core/multisite.php:352
|
1213 |
+
msgid "Site Compatibility"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: core/admin-render.php:75 core/admin-render.php:90 core/config.php:91
|
1217 |
+
#: core/multisite.php:267 core/multisite.php:360
|
1218 |
+
msgid "Devices"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: core/admin-render.php:76 core/admin-render.php:94 core/config.php:92
|
1222 |
+
#: core/multisite.php:275 core/multisite.php:368
|
1223 |
+
msgid "Menu Settings"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: core/admin-render.php:101 core/admin-render.php:103
|
1227 |
+
#: core/admin-render.php:141 core/config.php:95 core/multisite.php:283
|
1228 |
+
#: core/multisite.php:376
|
1229 |
+
msgid "Themes"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: core/admin-render.php:106 themes/foundation/root-functions.php:9
|
1233 |
+
msgid "Theme Settings"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: core/admin-render.php:116 core/admin-render.php:118
|
1237 |
+
#: core/admin-render.php:142 core/config.php:96 core/multisite.php:291
|
1238 |
+
#: core/multisite.php:384
|
1239 |
+
msgid "Extensions"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: core/admin-render.php:139
|
1243 |
+
msgid "Available for WPtouch Pro"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: core/admin-render.php:190
|
1247 |
+
msgid "Reset Settings"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: core/class-wptouch-pro.php:644
|
1251 |
+
msgid ""
|
1252 |
+
"Automatic theme migration from wp-content/uploads/wptouch-data directory "
|
1253 |
+
"failed. Please manually move these folders to wp-content/wptouch-data: %s"
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: core/class-wptouch-pro.php:663
|
1257 |
+
msgid ""
|
1258 |
+
"%sWPtouch: %s was recently disabled, but is still affecting your website and "
|
1259 |
+
"caching pages.%s"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: core/class-wptouch-pro.php:664
|
1263 |
+
msgid ""
|
1264 |
+
"%sPlease reactivate the plugin, disable page caching, then deactivate the "
|
1265 |
+
"plugin again to correct this issue.%s"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: core/class-wptouch-pro.php:665 core/class-wptouch-pro.php:674
|
1269 |
+
msgid ""
|
1270 |
+
"%sFixing this issue prevents cached desktop pages being served to mobile "
|
1271 |
+
"devices and vice-versa.%s"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: core/class-wptouch-pro.php:666 core/class-wptouch-pro.php:675
|
1275 |
+
msgid ""
|
1276 |
+
"%sOnce fixed, this message will be dismissed automatically. Until fixed, "
|
1277 |
+
"%sWPtouch will not be shown%s to mobile visitors, and cannot be previewed.%s"
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: core/class-wptouch-pro.php:673
|
1281 |
+
msgid "%sWPtouch: %s needs to be configured to work correctly with WPtouch.%s"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: core/class-wptouch-pro.php:676
|
1285 |
+
msgid ""
|
1286 |
+
"%sTo fix the issue, follow our %sstep-by-step setup guide%s on support."
|
1287 |
+
"wptouch.com%s"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: core/class-wptouch-pro.php:688
|
1291 |
+
msgid "WPtouch Repair Required"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: core/class-wptouch-pro.php:695
|
1295 |
+
msgid "Your mobile theme was either broken or missing."
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: core/class-wptouch-pro.php:696
|
1299 |
+
msgid "We downloaded a fresh copy for you."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: core/class-wptouch-pro.php:697 core/class-wptouch-pro.php:707
|
1303 |
+
msgid "OK"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: core/class-wptouch-pro.php:700
|
1307 |
+
msgid ""
|
1308 |
+
"We were unable to install your WPtouch Pro theme from the Cloud. %s Please "
|
1309 |
+
"visit %sthis article%s for more information."
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: core/class-wptouch-pro.php:703
|
1313 |
+
msgid "WPtouch Server Issue"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: core/class-wptouch-pro.php:705
|
1317 |
+
msgid ""
|
1318 |
+
"Your server setup is preventing WPtouch Pro from installing from the Cloud. "
|
1319 |
+
"%s Please visit %sthis article%s for more information on how to fix it."
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: core/class-wptouch-pro.php:954
|
1323 |
+
msgid ""
|
1324 |
+
"This will reset all WPtouch Pro settings.\n"
|
1325 |
+
"Are you sure?"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: core/class-wptouch-pro.php:955
|
1329 |
+
msgid ""
|
1330 |
+
"This will reset all WPtouch Pro settings and delete the wptouch-data "
|
1331 |
+
"folder.\n"
|
1332 |
+
"Are you sure?"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: core/class-wptouch-pro.php:956
|
1336 |
+
msgid ""
|
1337 |
+
"This will reset all WPtouch Pro settings, delete the wptouch-data folder, "
|
1338 |
+
"and deactivate the plugin. Are you sure?"
|
1339 |
+
msgstr ""
|
1340 |
+
|
1341 |
+
#: core/class-wptouch-pro.php:957
|
1342 |
+
msgid "The item failed to download for this reason: %reason%"
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: core/class-wptouch-pro.php:958
|
1346 |
+
msgid "You are about to reset your license information. Proceed?"
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: core/class-wptouch-pro.php:960
|
1350 |
+
msgid "Upload Failed: Not a valid image."
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: core/class-wptouch-pro.php:961
|
1354 |
+
msgid ""
|
1355 |
+
"WPtouch is saving settings. Please do not refresh the page while saving."
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: core/class-wptouch-pro.php:962
|
1359 |
+
msgid "Install Themes"
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: core/class-wptouch-pro.php:963
|
1363 |
+
msgid "Install Extensions"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: core/class-wptouch-pro.php:1671
|
1367 |
+
msgid "%s Changelog"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: core/class-wptouch-pro.php:3088
|
1371 |
+
msgid "Directory Problem"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: core/class-wptouch-pro.php:3089
|
1375 |
+
msgid "One or more required directories could not be created"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: core/config.php:90
|
1379 |
+
msgid "Compatibility"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: core/config.php:94
|
1383 |
+
msgid "Go Pro"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: core/globals.php:190
|
1387 |
+
msgid "smartphone"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: core/globals.php:192
|
1391 |
+
msgid "tablet"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: core/globals.php:452
|
1395 |
+
msgid "Auto-detect"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#. translators: %s: title of menu item which is invalid
|
1399 |
+
#: core/menu-walkers.php:270
|
1400 |
+
msgid "%s (Invalid)"
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#. translators: %s: title of menu item in draft status
|
1404 |
+
#: core/menu-walkers.php:274
|
1405 |
+
msgid "%s (Pending)"
|
1406 |
+
msgstr ""
|
1407 |
+
|
1408 |
+
#: core/menu-walkers.php:287
|
1409 |
+
msgid "sub item"
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: core/menu-walkers.php:302
|
1413 |
+
msgid "Move up"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: core/menu-walkers.php:315
|
1417 |
+
msgid "Move down"
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: core/menu-walkers.php:317 core/menu-walkers.php:319
|
1421 |
+
msgid "Edit Menu Item"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: core/menu-walkers.php:328
|
1425 |
+
msgid "URL"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: core/menu-walkers.php:335
|
1429 |
+
msgid "Navigation Label"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: core/menu-walkers.php:341
|
1433 |
+
msgid "Title Attribute"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: core/menu-walkers.php:348
|
1437 |
+
msgid "Open link in a new window/tab"
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: core/menu-walkers.php:353
|
1441 |
+
msgid "CSS Classes (optional)"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: core/menu-walkers.php:359
|
1445 |
+
msgid "Link Relationship (XFN)"
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: core/menu-walkers.php:367
|
1449 |
+
msgid ""
|
1450 |
+
"The description will be displayed in the menu if the current theme supports "
|
1451 |
+
"it."
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: core/menu-walkers.php:377
|
1455 |
+
msgid "Mobile Menu Icon"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: core/menu-walkers.php:381
|
1459 |
+
msgid "WPtouch Icons"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: core/menu-walkers.php:381
|
1463 |
+
msgid "Change Icon"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: core/menu-walkers.php:382
|
1467 |
+
msgid "Use Default"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: core/menu-walkers.php:390
|
1471 |
+
msgid "Move"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: core/menu-walkers.php:391
|
1475 |
+
msgid "Up one"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: core/menu-walkers.php:392
|
1479 |
+
msgid "Down one"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: core/menu-walkers.php:395
|
1483 |
+
msgid "To the top"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: core/menu-walkers.php:402
|
1487 |
+
msgid "Original: %s"
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: core/menu-walkers.php:415
|
1491 |
+
msgid "Remove"
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: core/menu-walkers.php:416 themes/foundation/default/comments.php:48
|
1495 |
+
msgid "Cancel"
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: core/menu-walkers.php:645
|
1499 |
+
msgid "Feed for all posts filed under %s"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: core/multisite.php:186
|
1503 |
+
msgid "Admin Language"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: core/multisite.php:196
|
1507 |
+
msgid "Control themes and extension downloads and updates"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: core/multisite.php:197
|
1511 |
+
msgid ""
|
1512 |
+
"If enabled, sub-sites can only activate/deactivate themes and extensions "
|
1513 |
+
"that have been downloaded in the network admin."
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: core/multisite.php:216
|
1517 |
+
msgid "Network Defaults"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: core/multisite.php:222
|
1521 |
+
msgid "Use my settings for new sites"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: core/multisite.php:230 core/multisite.php:335
|
1525 |
+
msgid "Source site"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: core/multisite.php:240
|
1529 |
+
msgid ""
|
1530 |
+
"Configure WPtouch to use a site for defaults on new network sites instead of "
|
1531 |
+
"its defaults"
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: core/multisite.php:245
|
1535 |
+
msgid "Subsite Customizable Settings"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: core/multisite.php:251 core/multisite.php:344
|
1539 |
+
msgid "General Settings"
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: core/multisite.php:299 core/multisite.php:392
|
1543 |
+
msgid "Colors"
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: core/multisite.php:307 core/multisite.php:400
|
1547 |
+
#: themes/foundation/modules/social-links/social-links.php:9
|
1548 |
+
msgid "Social Media Links"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: core/multisite.php:315 core/multisite.php:408
|
1552 |
+
#: themes/foundation/modules/sharing/sharing.php:95
|
1553 |
+
msgid "Social Sharing"
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: core/multisite.php:324
|
1557 |
+
msgid ""
|
1558 |
+
"Select which settings sections are available to users in network subsites "
|
1559 |
+
"(network admins always see settings)."
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: core/multisite.php:329
|
1563 |
+
msgid "Source Site"
|
1564 |
+
msgstr ""
|
1565 |
+
|
1566 |
+
#: core/multisite.php:420
|
1567 |
+
msgid "Destination Sites"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: free/wptouch.php:154
|
1571 |
+
msgid ""
|
1572 |
+
"%sSign-up to to get WPtouch news, updates and changes via your user email "
|
1573 |
+
"address:%s"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: free/wptouch.php:160
|
1577 |
+
msgid ""
|
1578 |
+
"%sNEW! WPtouch now supports live editing in the WordPress Customizer!%s "
|
1579 |
+
"Check it out: <a href=\"%s?"
|
1580 |
+
"wptouch_free_message_419=1&utm_source=free_admin&utm_medium=website&utm_term=dale&utm_campaign=admin_notice"
|
1581 |
+
"\">Customize WPtouch Now →</a> %s"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: free/wptouch.php:161
|
1585 |
+
msgid "%sSign-up to to get WPtouch news, updates and changes via email:%s"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: include/html/desktop-switch.php:2
|
1589 |
+
msgid "Desktop Version"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: include/html/desktop-switch.php:2
|
1593 |
+
msgid "Switch To Mobile Version"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: include/html/footer.php:7
|
1597 |
+
msgid "Powered by<br/>%s%s%s"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: include/html/load-times.php:2
|
1601 |
+
msgid "%d queries in %0.1f ms"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: include/html/page-template.php:8
|
1605 |
+
msgid "Default Template"
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: pro/professional.php:17
|
1609 |
+
msgid "Show WPML language switcher in theme footer"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: pro/professional.php:144 pro/professional.php:170
|
1613 |
+
msgid "Unknown error"
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: pro/professional.php:617
|
1617 |
+
msgid "Some themes or extensions could not be updated."
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: pro/professional.php:651
|
1621 |
+
msgid "Some extensions could not be updated."
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: themes/foundation/default/404.php:6
|
1625 |
+
msgid "404 Not Found"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: themes/foundation/default/404.php:8
|
1629 |
+
msgid "The post or page you requested is no longer available."
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: themes/foundation/default/attachment.php:10
|
1633 |
+
msgid "Back to %s"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: themes/foundation/default/attachment.php:47
|
1637 |
+
msgid "« previous in gallery"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: themes/foundation/default/attachment.php:49
|
1641 |
+
msgid "next in gallery »"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: themes/foundation/default/comments.php:10
|
1645 |
+
msgid "no responses"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: themes/foundation/default/comments.php:10
|
1649 |
+
msgid "1 response"
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: themes/foundation/default/comments.php:10
|
1653 |
+
msgid "% responses"
|
1654 |
+
msgstr ""
|
1655 |
+
|
1656 |
+
#: themes/foundation/default/comments.php:20
|
1657 |
+
#: themes/foundation/default/comments.php:26
|
1658 |
+
msgid "Load More Comments…"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: themes/foundation/default/comments.php:38
|
1662 |
+
msgid "Comments are closed"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: themes/foundation/default/comments.php:51
|
1666 |
+
msgid "Leave a Reply"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: themes/foundation/default/comments.php:51
|
1670 |
+
msgid "Leave a Reply to %s"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: themes/foundation/default/comments.php:54
|
1674 |
+
msgid "You must be %slogged in%s to post a comment."
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: themes/foundation/default/comments.php:61
|
1678 |
+
msgid "Logged in as"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: themes/foundation/default/comments.php:61
|
1682 |
+
msgid "Log out"
|
1683 |
+
msgstr ""
|
1684 |
+
|
1685 |
+
#: themes/foundation/default/comments.php:65
|
1686 |
+
msgid "Name"
|
1687 |
+
msgstr ""
|
1688 |
+
|
1689 |
+
#: themes/foundation/default/comments.php:67
|
1690 |
+
#: themes/foundation/modules/social-links/social-links.php:95
|
1691 |
+
msgid "E-Mail"
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: themes/foundation/default/comments.php:69
|
1695 |
+
msgid "Website"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: themes/foundation/default/comments.php:77
|
1699 |
+
msgid "Publish"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: themes/foundation/default/footer.php:10
|
1703 |
+
msgid "Back to top"
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: themes/foundation/default/formerror.php:6
|
1707 |
+
msgid "Comment Error"
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: themes/foundation/default/formerror.php:8
|
1711 |
+
msgid "Please enter all fields correctly to post a comment."
|
1712 |
+
msgstr ""
|
1713 |
+
|
1714 |
+
#: themes/foundation/default/formerror.php:9
|
1715 |
+
msgid "Go back"
|
1716 |
+
msgstr ""
|
1717 |
+
|
1718 |
+
#: themes/foundation/default/index.php:33
|
1719 |
+
msgid "newer posts"
|
1720 |
+
msgstr ""
|
1721 |
+
|
1722 |
+
#: themes/foundation/default/index.php:33
|
1723 |
+
msgid "older posts"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: themes/foundation/default/nav-bar.php:6
|
1727 |
+
msgid "previous post"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: themes/foundation/default/nav-bar.php:12
|
1731 |
+
msgid "next post"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: themes/foundation/default/one-comment.php:17
|
1735 |
+
msgid "Your comment is awaiting moderation"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: themes/foundation/default/one-comment.php:21
|
1739 |
+
msgid "Reply"
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: themes/foundation/default/related-posts.php:4
|
1743 |
+
msgid "Related"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: themes/foundation/default/search.php:6
|
1747 |
+
msgid "You searched for \"%s\""
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: themes/foundation/default/search.php:16
|
1751 |
+
msgid "%s results"
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: themes/foundation/default/search.php:34
|
1755 |
+
msgid "No search results found"
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: themes/foundation/default/search.php:43
|
1759 |
+
msgid "Load more %s results"
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: themes/foundation/default/sharing.php:2
|
1763 |
+
msgid "Share"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: themes/foundation/default/sharing.php:3
|
1767 |
+
msgid "Tweet"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: themes/foundation/default/sharing.php:4
|
1771 |
+
msgid "Pin"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: themes/foundation/default/sharing.php:5
|
1775 |
+
msgid "Mail"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: themes/foundation/default/single.php:13
|
1779 |
+
msgid "By"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: themes/foundation/default/switch-link.php:8
|
1783 |
+
msgid "mobile"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: themes/foundation/default/switch-link.php:9
|
1787 |
+
msgid "desktop"
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: themes/foundation/modules/base/base.php:64
|
1791 |
+
msgid "Loading"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:163
|
1795 |
+
msgid "Custom Post Support"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:169
|
1799 |
+
msgid "Enable custom post-type support"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:196
|
1803 |
+
msgid "Include custom post-type posts in blog index"
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:204
|
1807 |
+
msgid "Custom Post Types"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:210
|
1811 |
+
msgid ""
|
1812 |
+
"Select which custom post types WPtouch Pro should load when displaying your "
|
1813 |
+
"site."
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: themes/foundation/modules/featured/featured.php:329
|
1817 |
+
msgid "Show on blog"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: themes/foundation/modules/featured/featured.php:337
|
1821 |
+
msgid "Show on homepage"
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: themes/foundation/modules/featured/featured.php:345
|
1825 |
+
msgid "Featured slider style"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: themes/foundation/modules/featured/featured.php:350
|
1829 |
+
msgid "Enhanced"
|
1830 |
+
msgstr ""
|
1831 |
+
|
1832 |
+
#: themes/foundation/modules/featured/featured.php:351
|
1833 |
+
msgid "Streamlined"
|
1834 |
+
msgstr ""
|
1835 |
+
|
1836 |
+
#: themes/foundation/modules/featured/featured.php:363
|
1837 |
+
msgid "Slide transition Delay"
|
1838 |
+
msgstr ""
|
1839 |
+
|
1840 |
+
#: themes/foundation/modules/featured/featured.php:368
|
1841 |
+
msgid "Long"
|
1842 |
+
msgstr ""
|
1843 |
+
|
1844 |
+
#: themes/foundation/modules/featured/featured.php:369
|
1845 |
+
msgid "Normal"
|
1846 |
+
msgstr ""
|
1847 |
+
|
1848 |
+
#: themes/foundation/modules/featured/featured.php:370
|
1849 |
+
msgid "Short"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: themes/foundation/modules/featured/featured.php:376
|
1853 |
+
msgid "Number of posts in slider"
|
1854 |
+
msgstr ""
|
1855 |
+
|
1856 |
+
#: themes/foundation/modules/featured/featured.php:389
|
1857 |
+
msgid "Show # of comments"
|
1858 |
+
msgstr ""
|
1859 |
+
|
1860 |
+
#: themes/foundation/modules/featured/featured.php:397
|
1861 |
+
msgid "Slide automatically"
|
1862 |
+
msgstr ""
|
1863 |
+
|
1864 |
+
#: themes/foundation/modules/featured/featured.php:405
|
1865 |
+
msgid "Slides repeat"
|
1866 |
+
msgstr ""
|
1867 |
+
|
1868 |
+
#: themes/foundation/modules/featured/featured.php:413
|
1869 |
+
msgid "Make images grayscale"
|
1870 |
+
msgstr ""
|
1871 |
+
|
1872 |
+
#: themes/foundation/modules/featured/featured.php:421
|
1873 |
+
msgid "Slider posts also show in listings"
|
1874 |
+
msgstr ""
|
1875 |
+
|
1876 |
+
#: themes/foundation/modules/featured/featured.php:429
|
1877 |
+
msgid "Posts to display"
|
1878 |
+
msgstr ""
|
1879 |
+
|
1880 |
+
#: themes/foundation/modules/featured/featured.php:434
|
1881 |
+
msgid "Show latest posts"
|
1882 |
+
msgstr ""
|
1883 |
+
|
1884 |
+
#: themes/foundation/modules/featured/featured.php:435
|
1885 |
+
msgid "Show posts from a specific tag"
|
1886 |
+
msgstr ""
|
1887 |
+
|
1888 |
+
#: themes/foundation/modules/featured/featured.php:436
|
1889 |
+
msgid "Show posts from a specific category"
|
1890 |
+
msgstr ""
|
1891 |
+
|
1892 |
+
#: themes/foundation/modules/featured/featured.php:437
|
1893 |
+
msgid "Show posts from a specific post type"
|
1894 |
+
msgstr ""
|
1895 |
+
|
1896 |
+
#: themes/foundation/modules/featured/featured.php:438
|
1897 |
+
msgid "Show only specific posts or pages"
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: themes/foundation/modules/featured/featured.php:444
|
1901 |
+
msgid "Only this tag"
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: themes/foundation/modules/featured/featured.php:445
|
1905 |
+
#: themes/foundation/modules/featured/featured.php:454
|
1906 |
+
msgid "Enter the tag/category slug name"
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: themes/foundation/modules/featured/featured.php:453
|
1910 |
+
msgid "Only this category"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: themes/foundation/modules/featured/featured.php:462
|
1914 |
+
msgid "Comma-separated list of post/page IDs"
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: themes/foundation/modules/featured/featured.php:473
|
1918 |
+
msgid "Only this post type"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: themes/foundation/modules/featured/featured.php:483
|
1922 |
+
msgid "Featured Slider"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: themes/foundation/modules/featured/featured.php:490
|
1926 |
+
msgid "Enable featured slider"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: themes/foundation/modules/google-fonts/google-fonts.php:21
|
1930 |
+
msgid "Browser Default Fonts"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: themes/foundation/modules/google-fonts/google-fonts.php:29
|
1934 |
+
msgid "Typography"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: themes/foundation/modules/google-fonts/google-fonts.php:35
|
1938 |
+
msgid "Font Pairing"
|
1939 |
+
msgstr ""
|
1940 |
+
|
1941 |
+
#: themes/foundation/modules/google-fonts/google-fonts.php:36
|
1942 |
+
msgid ""
|
1943 |
+
"Choose a Google font pairing designed for this theme, or default browser "
|
1944 |
+
"fonts."
|
1945 |
+
msgstr ""
|
1946 |
+
|
1947 |
+
#: themes/foundation/modules/login/login-html.php:7
|
1948 |
+
msgid "Remember Me"
|
1949 |
+
msgstr ""
|
1950 |
+
|
1951 |
+
#: themes/foundation/modules/login/login-html.php:9
|
1952 |
+
msgid "Log In"
|
1953 |
+
msgstr ""
|
1954 |
+
|
1955 |
+
#: themes/foundation/modules/login/login-html.php:20
|
1956 |
+
msgid "Login"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: themes/foundation/modules/login/login-html.php:30
|
1960 |
+
msgid "Sign-up"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: themes/foundation/modules/login/login-html.php:31
|
1964 |
+
msgid "Lost password?"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: themes/foundation/modules/login/login.php:10
|
1968 |
+
msgid "Show login in menu"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: themes/foundation/modules/login/login.php:11
|
1972 |
+
msgid "Will add login/out links"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: themes/foundation/modules/media/media.php:34
|
1976 |
+
msgid "Video Handling"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: themes/foundation/modules/media/media.php:40
|
1980 |
+
msgid "Use FitVids to automatically scale videos"
|
1981 |
+
msgstr ""
|
1982 |
+
|
1983 |
+
#: themes/foundation/modules/media/media.php:41
|
1984 |
+
msgid ""
|
1985 |
+
"FitVids is a small JavaScript helper that will detect videos from a variety "
|
1986 |
+
"of web sources and automatically scale them to fill the container and format "
|
1987 |
+
"them with the correct aspect ratio."
|
1988 |
+
msgstr ""
|
1989 |
+
|
1990 |
+
#: themes/foundation/modules/sharing/sharing.php:101
|
1991 |
+
msgid "Show sharing links on posts"
|
1992 |
+
msgstr ""
|
1993 |
+
|
1994 |
+
#: themes/foundation/modules/sharing/sharing.php:102
|
1995 |
+
msgid "Will show Facebook, Twitter, Pinterest and Email buttons."
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
+
#: themes/foundation/modules/sharing/sharing.php:109
|
1999 |
+
msgid "Also show on pages"
|
2000 |
+
msgstr ""
|
2001 |
+
|
2002 |
+
#: themes/foundation/modules/sharing/sharing.php:117
|
2003 |
+
msgid "Sharing links location"
|
2004 |
+
msgstr ""
|
2005 |
+
|
2006 |
+
#: themes/foundation/modules/sharing/sharing.php:122
|
2007 |
+
msgid "Above post content"
|
2008 |
+
msgstr ""
|
2009 |
+
|
2010 |
+
#: themes/foundation/modules/sharing/sharing.php:123
|
2011 |
+
msgid "Below post content"
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: themes/foundation/modules/sharing/sharing.php:129
|
2015 |
+
msgid "Color scheme"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: themes/foundation/modules/sharing/sharing.php:134
|
2019 |
+
msgid "Theme colors"
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: themes/foundation/modules/sharing/sharing.php:135
|
2023 |
+
msgid "Social network colors"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: themes/foundation/modules/social-links/social-links.php:16
|
2027 |
+
msgid "Full URL to your Facebook page"
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: themes/foundation/modules/social-links/social-links.php:24
|
2031 |
+
msgid "Full URL to your Twitter profile"
|
2032 |
+
msgstr ""
|
2033 |
+
|
2034 |
+
#: themes/foundation/modules/social-links/social-links.php:32
|
2035 |
+
msgid "Full URL to your Google+ profile"
|
2036 |
+
msgstr ""
|
2037 |
+
|
2038 |
+
#: themes/foundation/modules/social-links/social-links.php:40
|
2039 |
+
msgid "Full URL to your Instagram profile"
|
2040 |
+
msgstr ""
|
2041 |
+
|
2042 |
+
#: themes/foundation/modules/social-links/social-links.php:47
|
2043 |
+
msgid "Tumblr"
|
2044 |
+
msgstr ""
|
2045 |
+
|
2046 |
+
#: themes/foundation/modules/social-links/social-links.php:48
|
2047 |
+
msgid "Full URL to your Tumblr profile"
|
2048 |
+
msgstr ""
|
2049 |
+
|
2050 |
+
#: themes/foundation/modules/social-links/social-links.php:56
|
2051 |
+
msgid "Full URL to your Pinterest page"
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: themes/foundation/modules/social-links/social-links.php:64
|
2055 |
+
msgid "Full URL to your Vimeo page"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: themes/foundation/modules/social-links/social-links.php:72
|
2059 |
+
msgid "Full URL to your %s profile"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: themes/foundation/modules/social-links/social-links.php:79
|
2063 |
+
msgid "LinkedIn"
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: themes/foundation/modules/social-links/social-links.php:80
|
2067 |
+
msgid "Full URL to your LinkedIn profile"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: themes/foundation/modules/social-links/social-links.php:88
|
2071 |
+
msgid "Full URL to your Yelp profile"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: themes/foundation/modules/social-links/social-links.php:96
|
2075 |
+
msgid "E-Mail address"
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
#: themes/foundation/modules/social-links/social-links.php:104
|
2079 |
+
msgid "Full URL to your RSS feed"
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: themes/foundation/modules/tablets/tablets.php:58
|
2083 |
+
msgid "iPad"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: themes/foundation/modules/tablets/tablets.php:64
|
2087 |
+
#: themes/foundation/root-functions.php:466
|
2088 |
+
msgid "%d by %d pixels (PNG)"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: themes/foundation/root-functions.php:10
|
2092 |
+
msgid "Branding"
|
2093 |
+
msgstr ""
|
2094 |
+
|
2095 |
+
#: themes/foundation/root-functions.php:11
|
2096 |
+
msgid "Media Handling"
|
2097 |
+
msgstr ""
|
2098 |
+
|
2099 |
+
#: themes/foundation/root-functions.php:12
|
2100 |
+
msgid "Bookmark Icons"
|
2101 |
+
msgstr ""
|
2102 |
+
|
2103 |
+
#: themes/foundation/root-functions.php:13
|
2104 |
+
msgid "Custom Content"
|
2105 |
+
msgstr ""
|
2106 |
+
|
2107 |
+
#: themes/foundation/root-functions.php:51
|
2108 |
+
msgid "Language: "
|
2109 |
+
msgstr ""
|
2110 |
+
|
2111 |
+
#: themes/foundation/root-functions.php:390
|
2112 |
+
msgid "Theme Colors"
|
2113 |
+
msgstr ""
|
2114 |
+
|
2115 |
+
#: themes/foundation/root-functions.php:406
|
2116 |
+
msgid "Number of posts in post listings"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: themes/foundation/root-functions.php:407
|
2120 |
+
msgid ""
|
2121 |
+
"Overrides the WordPress Reading settings for \"Blog pages show at most\""
|
2122 |
+
msgstr ""
|
2123 |
+
|
2124 |
+
#: themes/foundation/root-functions.php:419
|
2125 |
+
msgid "Excluded categories"
|
2126 |
+
msgstr ""
|
2127 |
+
|
2128 |
+
#: themes/foundation/root-functions.php:420
|
2129 |
+
msgid "Comma separated by category name"
|
2130 |
+
msgstr ""
|
2131 |
+
|
2132 |
+
#: themes/foundation/root-functions.php:427
|
2133 |
+
msgid "Excluded tags"
|
2134 |
+
msgstr ""
|
2135 |
+
|
2136 |
+
#: themes/foundation/root-functions.php:428
|
2137 |
+
msgid "Comma separated by tag name"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: themes/foundation/root-functions.php:439
|
2141 |
+
msgid "Blog"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: themes/foundation/root-functions.php:449
|
2145 |
+
#: themes/foundation/root-functions.php:1221
|
2146 |
+
msgid "Pages"
|
2147 |
+
msgstr ""
|
2148 |
+
|
2149 |
+
#: themes/foundation/root-functions.php:460
|
2150 |
+
msgid "Site Icon"
|
2151 |
+
msgstr ""
|
2152 |
+
|
2153 |
+
#: themes/foundation/root-functions.php:484
|
2154 |
+
msgid "Site Logo"
|
2155 |
+
msgstr ""
|
2156 |
+
|
2157 |
+
#: themes/foundation/root-functions.php:496
|
2158 |
+
msgid "Header"
|
2159 |
+
msgstr ""
|
2160 |
+
|
2161 |
+
#: themes/foundation/root-functions.php:508
|
2162 |
+
msgid "Footer"
|
2163 |
+
msgstr ""
|
2164 |
+
|
2165 |
+
#: themes/foundation/root-functions.php:514
|
2166 |
+
msgid "Custom footer content (HTML is allowed)"
|
2167 |
+
msgstr ""
|
2168 |
+
|
2169 |
+
#: themes/foundation/root-functions.php:529
|
2170 |
+
msgid "Custom CSS"
|
2171 |
+
msgstr ""
|
2172 |
+
|
2173 |
+
#: themes/foundation/root-functions.php:535
|
2174 |
+
msgid "Custom CSS Declarations"
|
2175 |
+
msgstr ""
|
2176 |
+
|
2177 |
+
#: themes/foundation/root-functions.php:886
|
2178 |
+
msgid "search results for '%s'"
|
2179 |
+
msgstr ""
|
2180 |
+
|
2181 |
+
#: themes/foundation/root-functions.php:888
|
2182 |
+
msgid "%sCategories ›%s %s"
|
2183 |
+
msgstr ""
|
2184 |
+
|
2185 |
+
#: themes/foundation/root-functions.php:890
|
2186 |
+
msgid "Tags › %s"
|
2187 |
+
msgstr ""
|
2188 |
+
|
2189 |
+
#: themes/foundation/root-functions.php:892
|
2190 |
+
#: themes/foundation/root-functions.php:894
|
2191 |
+
#: themes/foundation/root-functions.php:896
|
2192 |
+
msgid "Archives › %s"
|
2193 |
+
msgstr ""
|
2194 |
+
|
2195 |
+
#: themes/foundation/root-functions.php:911
|
2196 |
+
msgid "Load more from this category"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: themes/foundation/root-functions.php:913
|
2200 |
+
msgid "Load more tagged like this"
|
2201 |
+
msgstr ""
|
2202 |
+
|
2203 |
+
#: themes/foundation/root-functions.php:915
|
2204 |
+
msgid "Load more from this day"
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: themes/foundation/root-functions.php:917
|
2208 |
+
msgid "Load more from this month"
|
2209 |
+
msgstr ""
|
2210 |
+
|
2211 |
+
#: themes/foundation/root-functions.php:919
|
2212 |
+
msgid "Load more from this year"
|
2213 |
+
msgstr ""
|
2214 |
+
|
2215 |
+
#: themes/foundation/root-functions.php:921
|
2216 |
+
msgid "Load more in this section"
|
2217 |
+
msgstr ""
|
2218 |
+
|
2219 |
+
#: themes/foundation/root-functions.php:923
|
2220 |
+
msgid "Load more entries"
|
2221 |
+
msgstr ""
|
2222 |
+
|
2223 |
+
#: themes/foundation/root-functions.php:1170
|
2224 |
+
msgid "Post"
|
2225 |
+
msgstr ""
|
2226 |
+
|
2227 |
+
#: themes/foundation/root-functions.php:1172
|
2228 |
+
msgid "Page"
|
2229 |
+
msgstr ""
|
themes/bauhaus/default/style.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/* @override
|
2 |
http://wptp3.local.com/wp-content/wptouch-data/themes/bauhaus/default/style.css?ver=a16b0b39889181577ded41b49cd80b1b
|
3 |
http://wptp3.local.com/wp-content/plugins/wptouch/themes/bauhaus/default/style.css?ver=a16b0b39889181577ded41b49cd80b1b
|
4 |
*/
|
@@ -216,6 +216,12 @@ header img {
|
|
216 |
height: 220px;
|
217 |
margin-top: 0px;
|
218 |
margin-bottom: 0px;
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
}
|
220 |
|
221 |
.list-view .list-carousel .carousel-cell {
|
@@ -227,16 +233,16 @@ header img {
|
|
227 |
|
228 |
.list-view .list-carousel .carousel-cell img {
|
229 |
position: absolute;
|
230 |
-
top: 50%;
|
231 |
left: 50%;
|
232 |
-webkit-transform: translateX(-50%) translateY(-50%);
|
233 |
transform: translateX(-50%) translateY(-50%);
|
234 |
min-width: 120%;
|
235 |
max-width: 120%;
|
236 |
min-height: 100%;
|
237 |
-
width: auto;
|
238 |
height: auto;
|
239 |
-
z-index: -1;
|
240 |
overflow: hidden;
|
241 |
}
|
242 |
|
@@ -456,7 +462,7 @@ header img {
|
|
456 |
/* @group Latest Only */
|
457 |
|
458 |
.slider-latest-only.blog .wptouch-showcase {
|
459 |
-
-webkit-backdrop-filter: blur(5px);
|
460 |
position: absolute;
|
461 |
top: 55px;
|
462 |
z-index: 1;
|
@@ -485,7 +491,7 @@ header img {
|
|
485 |
|
486 |
.slider-latest-only.blog header h1, .slider-latest-only.blog header > .tappable {
|
487 |
color: #fff !important;
|
488 |
-
|
489 |
}
|
490 |
|
491 |
.slider-latest-only.blog #search-dropper {
|
@@ -514,15 +520,15 @@ header img {
|
|
514 |
|
515 |
.slider-latest-only.blog .carousel-cell img {
|
516 |
position: absolute;
|
517 |
-
top: 50%;
|
518 |
left: 50%;
|
519 |
-webkit-transform: translateX(-50%) translateY(-50%);
|
520 |
transform: translateX(-50%) translateY(-50%);
|
521 |
-
min-width: 200%;
|
522 |
-
min-height: 100%;
|
523 |
-
width: auto;
|
524 |
height: auto;
|
525 |
-
z-index: -1;
|
526 |
overflow: hidden;
|
527 |
}
|
528 |
|
@@ -754,15 +760,15 @@ header img {
|
|
754 |
|
755 |
.post-page-head-area.bauhaus .post-page-thumbnail {
|
756 |
position: absolute;
|
757 |
-
top: 50%;
|
758 |
left: 50%;
|
759 |
-webkit-transform: translateX(-50%) translateY(-50%);
|
760 |
transform: translateX(-50%) translateY(-50%);
|
761 |
-
min-width: 200%;
|
762 |
-
min-height: 100%;
|
763 |
-
width: auto;
|
764 |
height: auto;
|
765 |
-
z-index: -1;
|
766 |
overflow: hidden;
|
767 |
opacity: .4;
|
768 |
}
|
@@ -1229,4 +1235,4 @@ form#commentform button#submit {
|
|
1229 |
border: none;
|
1230 |
}
|
1231 |
|
1232 |
-
/* @end */
|
1 |
+
/* @override
|
2 |
http://wptp3.local.com/wp-content/wptouch-data/themes/bauhaus/default/style.css?ver=a16b0b39889181577ded41b49cd80b1b
|
3 |
http://wptp3.local.com/wp-content/plugins/wptouch/themes/bauhaus/default/style.css?ver=a16b0b39889181577ded41b49cd80b1b
|
4 |
*/
|
216 |
height: 220px;
|
217 |
margin-top: 0px;
|
218 |
margin-bottom: 0px;
|
219 |
+
position: relative;
|
220 |
+
visibility: hidden;
|
221 |
+
}
|
222 |
+
|
223 |
+
.list-view .carousel.list-carousel.flickity-enabled {
|
224 |
+
visibility: visible;
|
225 |
}
|
226 |
|
227 |
.list-view .list-carousel .carousel-cell {
|
233 |
|
234 |
.list-view .list-carousel .carousel-cell img {
|
235 |
position: absolute;
|
236 |
+
top: 50%;
|
237 |
left: 50%;
|
238 |
-webkit-transform: translateX(-50%) translateY(-50%);
|
239 |
transform: translateX(-50%) translateY(-50%);
|
240 |
min-width: 120%;
|
241 |
max-width: 120%;
|
242 |
min-height: 100%;
|
243 |
+
width: auto;
|
244 |
height: auto;
|
245 |
+
z-index: -1;
|
246 |
overflow: hidden;
|
247 |
}
|
248 |
|
462 |
/* @group Latest Only */
|
463 |
|
464 |
.slider-latest-only.blog .wptouch-showcase {
|
465 |
+
-webkit-backdrop-filter: blur(5px);
|
466 |
position: absolute;
|
467 |
top: 55px;
|
468 |
z-index: 1;
|
491 |
|
492 |
.slider-latest-only.blog header h1, .slider-latest-only.blog header > .tappable {
|
493 |
color: #fff !important;
|
494 |
+
|
495 |
}
|
496 |
|
497 |
.slider-latest-only.blog #search-dropper {
|
520 |
|
521 |
.slider-latest-only.blog .carousel-cell img {
|
522 |
position: absolute;
|
523 |
+
top: 50%;
|
524 |
left: 50%;
|
525 |
-webkit-transform: translateX(-50%) translateY(-50%);
|
526 |
transform: translateX(-50%) translateY(-50%);
|
527 |
+
min-width: 200%;
|
528 |
+
min-height: 100%;
|
529 |
+
width: auto;
|
530 |
height: auto;
|
531 |
+
z-index: -1;
|
532 |
overflow: hidden;
|
533 |
}
|
534 |
|
760 |
|
761 |
.post-page-head-area.bauhaus .post-page-thumbnail {
|
762 |
position: absolute;
|
763 |
+
top: 50%;
|
764 |
left: 50%;
|
765 |
-webkit-transform: translateX(-50%) translateY(-50%);
|
766 |
transform: translateX(-50%) translateY(-50%);
|
767 |
+
min-width: 200%;
|
768 |
+
min-height: 100%;
|
769 |
+
width: auto;
|
770 |
height: auto;
|
771 |
+
z-index: -1;
|
772 |
overflow: hidden;
|
773 |
opacity: .4;
|
774 |
}
|
1235 |
border: none;
|
1236 |
}
|
1237 |
|
1238 |
+
/* @end */
|
themes/bauhaus/readme.txt
CHANGED
@@ -2,7 +2,7 @@ Theme Name: Bauhaus
|
|
2 |
Theme URI: http://www.wptouch.com/themes/bauhaus
|
3 |
Author: BraveNewCode Inc.
|
4 |
Description: Clean, modern, functional design. Great for all types of WordPress sites.
|
5 |
-
Version: 2.0.
|
6 |
Depends on: 4.3
|
7 |
Framework: 2.0
|
8 |
Tags: smartphone
|
@@ -25,6 +25,10 @@ Bauhaus is one of our more flexible themes, and is designed to easily take on th
|
|
25 |
|
26 |
== Changelog ==
|
27 |
|
|
|
|
|
|
|
|
|
28 |
= Version 2.0.2 =
|
29 |
|
30 |
* Added: Support for adding the featured post slider to a page
|
2 |
Theme URI: http://www.wptouch.com/themes/bauhaus
|
3 |
Author: BraveNewCode Inc.
|
4 |
Description: Clean, modern, functional design. Great for all types of WordPress sites.
|
5 |
+
Version: 2.0.3
|
6 |
Depends on: 4.3
|
7 |
Framework: 2.0
|
8 |
Tags: smartphone
|
25 |
|
26 |
== Changelog ==
|
27 |
|
28 |
+
= Version 2.0.3 =
|
29 |
+
|
30 |
+
* Fixed: Minor CSS tweaks
|
31 |
+
|
32 |
= Version 2.0.2 =
|
33 |
|
34 |
* Added: Support for adding the featured post slider to a page
|
themes/bauhaus/root-functions.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
define( 'BAUHAUS_THEME_VERSION', '2.0.
|
4 |
define( 'BAUHAUS_SETTING_DOMAIN', 'bauhaus' );
|
5 |
define( 'BAUHAUS_DIR', wptouch_get_bloginfo( 'theme_root_directory' ) );
|
6 |
define( 'BAUHAUS_URL', wptouch_get_bloginfo( 'theme_parent_url' ) );
|
1 |
<?php
|
2 |
|
3 |
+
define( 'BAUHAUS_THEME_VERSION', '2.0.3' );
|
4 |
define( 'BAUHAUS_SETTING_DOMAIN', 'bauhaus' );
|
5 |
define( 'BAUHAUS_DIR', wptouch_get_bloginfo( 'theme_root_directory' ) );
|
6 |
define( 'BAUHAUS_URL', wptouch_get_bloginfo( 'theme_parent_url' ) );
|
wptouch-pro.pot
ADDED
@@ -0,0 +1,2229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2016
|
2 |
+
# This file is distributed under the same license as the package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: \n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/release\n"
|
7 |
+
"POT-Creation-Date: 2016-10-25 21:11:56+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
|
15 |
+
#: admin/customizer/wptouch-customizer.php:590
|
16 |
+
msgid "Device Orientation"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: admin/customizer/wptouch-customizer.php:617
|
20 |
+
msgid "Switch to Mobile Theme"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: admin/customizer/wptouch-customizer.php:618
|
24 |
+
msgid "Switch to Desktop Theme"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: admin/html/license-modals.php:7
|
28 |
+
msgid "Activating License"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: admin/html/license-modals.php:17
|
32 |
+
msgid "Server Unavailable."
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: admin/html/license-modals.php:18
|
36 |
+
msgid ""
|
37 |
+
"Our server cannot authorize your license. This could be caused by your "
|
38 |
+
"webhost blocking the connection, or a temporary issue with our server."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: admin/html/license-modals.php:19
|
42 |
+
msgid "E-Mail Support"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: admin/html/license-modals.php:24
|
46 |
+
msgid "E-mail Address/License Key Rejected"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: admin/html/license-modals.php:25
|
50 |
+
msgid "Our server rejected your E-Mail Address/License Key."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: admin/html/license-modals.php:26
|
54 |
+
msgid "Please check that they are correct and try again."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: admin/html/license-modals.php:27
|
58 |
+
msgid "Try Again"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: admin/html/license-modals.php:32
|
62 |
+
msgid "Your license has expired"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: admin/html/license-modals.php:33
|
66 |
+
msgid ""
|
67 |
+
"%sRenew your license%s to continue to receive product updates and support."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: admin/html/license-modals.php:34
|
71 |
+
#: admin/pages/custom/wptouch-admin-license.php:78
|
72 |
+
msgid "Renew License"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: admin/html/license-modals.php:39
|
76 |
+
msgid "No licenses remaining"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: admin/html/license-modals.php:40
|
80 |
+
msgid ""
|
81 |
+
"You have no licenses remaining. You can remove a license from another "
|
82 |
+
"domain, or purchase an additional site license."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: admin/html/license-modals.php:41
|
86 |
+
msgid "Manage Licenses"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: admin/html/license-modals.php:42
|
90 |
+
msgid "Purchase Additional License"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: admin/html/license-modals.php:46
|
94 |
+
msgid "License Activation Complete!"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: admin/html/license-modals.php:47
|
98 |
+
msgid ""
|
99 |
+
"Thanks for purchasing WPtouch Pro! Your installation is activated, you can "
|
100 |
+
"receive support and product updates for this website."
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: admin/html/license-modals.php:54
|
104 |
+
msgid "Upgrading installation..."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: admin/html/license-modals.php:57
|
108 |
+
msgid "Upgrade to Pro Complete!"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: admin/html/license-modals.php:58
|
112 |
+
msgid ""
|
113 |
+
"Your installation has been activated and replaced by WPtouch Pro. Next "
|
114 |
+
"you'll be taken to the WPtouch Pro wizard to get setup."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: admin/html/license-modals.php:64
|
118 |
+
msgid "Upgrade to Pro Failed"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: admin/html/license-modals.php:65
|
122 |
+
msgid ""
|
123 |
+
"Your license was activated, however your installation could not be "
|
124 |
+
"automatically upgraded to WPtouch Pro."
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: admin/html/license-modals.php:66
|
128 |
+
msgid "Please %sfollow the steps in this article%s to fix the issue."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: admin/html/plugin-area.php:11
|
132 |
+
msgid ""
|
133 |
+
"A new product version (%s) is available. %sRenew your license%s to download "
|
134 |
+
"this update and receive additional product support."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: admin/html/plugin-area.php:13
|
138 |
+
msgid ""
|
139 |
+
"A new product version (%s) is available. Please %sactivate your license%s, "
|
140 |
+
"or %spurchase a new license%s to enable updates and full product support."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: admin/html/plugin-area.php:30
|
144 |
+
msgid ""
|
145 |
+
"%sRenew your license%s to receive future product updates and product support."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: admin/html/plugin-area.php:44
|
149 |
+
msgid ""
|
150 |
+
"Please %sactivate your license%s, or %spurchase a license%s to fully enable "
|
151 |
+
"product updates and product support."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: admin/pages/custom/wptouch-admin-go-pro.php:9
|
155 |
+
#: admin/pages/custom/wptouch-admin-license.php:72
|
156 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:77
|
157 |
+
msgid "Account E-Mail Address"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: admin/pages/custom/wptouch-admin-go-pro.php:11
|
161 |
+
#: admin/pages/custom/wptouch-admin-license.php:74
|
162 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:79
|
163 |
+
msgid "Product License Key"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: admin/pages/custom/wptouch-admin-go-pro.php:14
|
167 |
+
msgid "Activate WPtouch Pro"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: admin/pages/custom/wptouch-admin-license.php:32
|
171 |
+
msgid "Account & License"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: admin/pages/custom/wptouch-admin-license.php:80
|
175 |
+
#: admin/settings/html/theme-browser-item-detail.php:5
|
176 |
+
#: core/admin-extensions.php:367
|
177 |
+
msgid "Activate"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: admin/pages/custom/wptouch-admin-license.php:83
|
181 |
+
msgid "Clear License"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: admin/pages/custom/wptouch-admin-license.php:91
|
185 |
+
msgid "Site License"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: admin/pages/custom/wptouch-admin-license.php:92
|
189 |
+
#: admin/settings/html/extension-browser-item-detail.php:46
|
190 |
+
#: admin/settings/html/extension-browser-item-detail.php:75
|
191 |
+
msgid "Deactivate"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: admin/pages/custom/wptouch-admin-license.php:95
|
195 |
+
msgid "Licenses used"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: admin/pages/custom/wptouch-admin-license.php:96
|
199 |
+
msgid "Manage"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: admin/pages/custom/wptouch-admin-license.php:100
|
203 |
+
msgid "License expiry"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: admin/pages/custom/wptouch-admin-license.php:108
|
207 |
+
msgid "Support"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin/pages/custom/wptouch-admin-license.php:114
|
211 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:322
|
212 |
+
msgid "Find support guides, file tickets and access our knowledgebase here."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: admin/pages/custom/wptouch-admin-license.php:118
|
216 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:27
|
217 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:38
|
218 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:58
|
219 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:247
|
220 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:266
|
221 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:320
|
222 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:325
|
223 |
+
msgid "Ornamental Image"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: admin/pages/custom/wptouch-admin-license.php:120
|
227 |
+
msgid "WPtouch Pro Account"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: admin/pages/custom/wptouch-admin-license.php:121
|
231 |
+
msgid ""
|
232 |
+
"Access your WPtouch Pro account to mange your license, access support "
|
233 |
+
"resources, or upgrade your license."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: admin/pages/custom/wptouch-admin-license.php:128
|
237 |
+
msgid "Installation"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: admin/pages/custom/wptouch-admin-license.php:133
|
241 |
+
msgid "Download Settings"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: admin/pages/custom/wptouch-admin-license.php:134
|
245 |
+
msgid "Download a copy of WPtouch Pro settings"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: admin/pages/custom/wptouch-admin-license.php:139
|
249 |
+
msgid "Restore Settings"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: admin/pages/custom/wptouch-admin-license.php:143
|
253 |
+
msgid "Restore a WPtouch Pro settings file"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: admin/pages/custom/wptouch-admin-license.php:148
|
257 |
+
msgid "Erase Settings"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: admin/pages/custom/wptouch-admin-license.php:149
|
261 |
+
msgid "Erases WPtouch Pro settings without deleting files"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: admin/pages/custom/wptouch-admin-license.php:153
|
265 |
+
msgid "Delete & Erase"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: admin/pages/custom/wptouch-admin-license.php:154
|
269 |
+
msgid ""
|
270 |
+
"Deletes the %s folder in your %s folder on disk, and erases WPtouch Pro "
|
271 |
+
"settings"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: admin/pages/custom/wptouch-admin-license.php:157
|
275 |
+
msgid "Delete, Erase & Deactivate"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin/pages/custom/wptouch-admin-license.php:158
|
279 |
+
msgid ""
|
280 |
+
"Deletes the %s folder, erases WPtouch settings and deactivates WPtouch Pro"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:25
|
284 |
+
msgid "Thanks for Upgrading!"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:28
|
288 |
+
msgid ""
|
289 |
+
"From all of us at BraveNewCode, we want to say thanks. You keep us working "
|
290 |
+
"hard to make this product great."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:29
|
294 |
+
msgid "Click the arrow below to get started with setup."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:36
|
298 |
+
msgid "Choose a Language"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:37
|
302 |
+
msgid "Setting Language..."
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:59
|
306 |
+
msgid "Welcome to WPtouch Pro 4"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:60
|
310 |
+
msgid ""
|
311 |
+
"The most elegant and powerful way to create great mobile experiences for "
|
312 |
+
"your website visitors. This guide will help you configure important WPtouch "
|
313 |
+
"Pro settings before customizing your theme."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:68
|
317 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:82
|
318 |
+
msgid "Activate License"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:69
|
322 |
+
msgid ""
|
323 |
+
"Adding a license is required to activate product updates and support, and "
|
324 |
+
"provides access to more themes and extensions."
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:88
|
328 |
+
msgid ""
|
329 |
+
"You can find your license key in the purchase receipt e-mail we sent you "
|
330 |
+
"when you purchased WPtouch Pro. %s If you have lost your license e-mail, or "
|
331 |
+
"are having issues activating WPtouch Pro please send an e-mail to %s"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:92
|
335 |
+
msgid "License Activation Complete"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:94
|
339 |
+
msgid "Thank you for purchasing a %s licence!"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:100
|
343 |
+
msgid "Multisite Network"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:101
|
347 |
+
msgid ""
|
348 |
+
"Since you have network activated WPtouch Pro, you can configure the way "
|
349 |
+
"themes and extensions are controlled in your environment."
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:103
|
353 |
+
msgid ""
|
354 |
+
"By default network activations of WPtouch Pro mean that the Network Admin "
|
355 |
+
"controls theme and extension downloads and updates. You can also choose to "
|
356 |
+
"allow sub-sites to behave like independent installations, and control themes "
|
357 |
+
"and extensions themselves."
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:105
|
361 |
+
msgid "Control theme and extension downloads and updates"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:115
|
365 |
+
msgid "Download / Upload a Theme"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:116
|
369 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:168
|
370 |
+
msgid ""
|
371 |
+
"We were unable to install automatically for you on this server. Instead, you "
|
372 |
+
"can download and upload manually. To learn more about enabling automatic "
|
373 |
+
"downloads, %sread this article on support.wptouch.com%s."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:128
|
377 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:179
|
378 |
+
#: admin/settings/html/theme-browser-item-detail.php:52
|
379 |
+
#: admin/settings/html/updates-available.php:35
|
380 |
+
#: admin/settings/html/updates-available.php:71 core/class-wptouch-pro.php:967
|
381 |
+
msgid "Download"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:130
|
385 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:181
|
386 |
+
#: admin/settings/html/extension-browser-item.php:10
|
387 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:13
|
388 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:26
|
389 |
+
#: admin/settings/html/theme-browser-item.php:12
|
390 |
+
#: core/class-wptouch-pro.php:966
|
391 |
+
msgid "Installed"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:136
|
395 |
+
msgid "Theme Uploaded!"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:136
|
399 |
+
msgid "Upload A Theme"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:136
|
403 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:187
|
404 |
+
#: admin/settings/html/image-upload.php:13
|
405 |
+
msgid "Upload"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:136
|
409 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:187
|
410 |
+
msgid "Uploading..."
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:137
|
414 |
+
msgid "You can activate your theme in the next step"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:144
|
418 |
+
msgid "Choose a Theme"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:145
|
422 |
+
msgid ""
|
423 |
+
"Select a theme which best suits your website. %s Themes are flexible— "
|
424 |
+
"colors, fonts, layout and more can be changed for each theme."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:167
|
428 |
+
msgid "Download / Upload Extensions"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:187
|
432 |
+
msgid "Extension Uploaded!"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:187
|
436 |
+
msgid "Upload Extension"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:188
|
440 |
+
msgid "You can activate extensions in the next step"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:205
|
444 |
+
msgid "Activate Extensions"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:206
|
448 |
+
msgid ""
|
449 |
+
"Extensions are like mini-plugins that help you extend WPtouch Pro. You can "
|
450 |
+
"also manage Extensions at any time from the WPtouch Pro settings panel."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:237
|
454 |
+
msgid "Posts Page"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:239
|
458 |
+
msgid "Home Page & Posts"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:241
|
462 |
+
msgid ""
|
463 |
+
"By default WPtouch Pro uses your WordPress settings for its homepage and "
|
464 |
+
"blog settings. You can choose a different setup here."
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:254
|
468 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:273
|
469 |
+
#: admin/pages/wptouch-admin-general-settings.php:133
|
470 |
+
#: admin/settings/include/custom-latest-posts.php:11
|
471 |
+
msgid "WordPress Reading Settings"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:262
|
475 |
+
msgid "Mobile home page"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:278
|
479 |
+
msgid "Mobile posts listing"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:286
|
483 |
+
msgid "Google Analytics"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:287
|
487 |
+
msgid ""
|
488 |
+
"WPtouch Pro supports analytics and usage statistics collection from Google "
|
489 |
+
"Analytics."
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:288
|
493 |
+
msgid "WPtouch Pro can scan your site html and add it automatically."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:292
|
497 |
+
msgid "Searching..."
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:292
|
501 |
+
msgid "Scan for Analytics Code"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:302
|
505 |
+
msgid "WPtouch Love"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:303
|
509 |
+
msgid ""
|
510 |
+
"Share your love for WPtouch Pro by including a small text link in your "
|
511 |
+
"website's footer. Including the link helps us find new customers who will "
|
512 |
+
"love WPtouch Pro like you do!"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:306
|
516 |
+
msgid "Show powered by WPtouch Pro"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:315
|
520 |
+
msgid "WPtouch Pro Support"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:316
|
524 |
+
msgid ""
|
525 |
+
"WPtouch Pro 4 includes great support resources to help you get the most out "
|
526 |
+
"of it."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:327
|
530 |
+
msgid ""
|
531 |
+
"Access your WPtouch Pro account to manage your license, access support "
|
532 |
+
"resources, or upgrade your license."
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:335
|
536 |
+
msgid "Setup Complete!"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:337
|
540 |
+
msgid " Next you can configure your theme."
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:339
|
544 |
+
msgid " Next you can customize your theme, or configure advanced settings."
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:341
|
548 |
+
msgid " Next you can configure network settings."
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:348
|
552 |
+
msgid "Customize your Theme"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: admin/pages/custom/wptouch-admin-wizard.php:354
|
556 |
+
msgid "Configure Settings"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: admin/pages/wptouch-admin-general-settings.php:28 core/admin-render.php:68
|
560 |
+
#: core/config.php:88
|
561 |
+
msgid "Updates Available"
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: admin/pages/wptouch-admin-general-settings.php:54
|
565 |
+
msgid "Mobile Site Title"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: admin/pages/wptouch-admin-general-settings.php:60
|
569 |
+
msgid "WPtouch Pro site title"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: admin/pages/wptouch-admin-general-settings.php:73
|
573 |
+
msgid "If disabled WPtouch Pro will be off for visitors but can be configured."
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: admin/pages/wptouch-admin-general-settings.php:75
|
577 |
+
msgid ""
|
578 |
+
"If disabled WPtouch Pro will be off for visitors but can be configured in "
|
579 |
+
"the Customizer."
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: admin/pages/wptouch-admin-general-settings.php:80
|
583 |
+
msgid "Display"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: admin/pages/wptouch-admin-general-settings.php:86
|
587 |
+
msgid "Display WPtouch Pro for mobile visitors"
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: admin/pages/wptouch-admin-general-settings.php:94
|
591 |
+
msgid "URL filtering"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: admin/pages/wptouch-admin-general-settings.php:99
|
595 |
+
msgid "Show WPtouch Pro for all URLs"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: admin/pages/wptouch-admin-general-settings.php:100
|
599 |
+
msgid "Exclude WPtouch Pro on these URLs"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/pages/wptouch-admin-general-settings.php:101
|
603 |
+
msgid "Only show WPtouch Pro on these URLs"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: admin/pages/wptouch-admin-general-settings.php:107
|
607 |
+
msgid "Apply filter to these URLs/Pages"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: admin/pages/wptouch-admin-general-settings.php:115
|
611 |
+
msgid "Require exact match"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: admin/pages/wptouch-admin-general-settings.php:128
|
615 |
+
msgid "Mobile front page"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: admin/pages/wptouch-admin-general-settings.php:129
|
619 |
+
msgid "You can set a different front page for WPtouch Pro visitors."
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: admin/pages/wptouch-admin-general-settings.php:134
|
623 |
+
msgid "Redirect to a page"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: admin/pages/wptouch-admin-general-settings.php:135
|
627 |
+
msgctxt "Refers to a custom landing page"
|
628 |
+
msgid "Redirect to a custom URL"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: admin/pages/wptouch-admin-general-settings.php:141
|
632 |
+
msgid "Custom Slug or URL"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: admin/pages/wptouch-admin-general-settings.php:142
|
636 |
+
msgid "Enter a Slug (i.e. \"/home\") or a full URL path"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: admin/pages/wptouch-admin-general-settings.php:160
|
640 |
+
msgid "Landing Pages"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: admin/pages/wptouch-admin-general-settings.php:169
|
644 |
+
msgid "Desktop / Mobile Switching"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: admin/pages/wptouch-admin-general-settings.php:175
|
648 |
+
msgctxt "switches between desktop and mobile themes"
|
649 |
+
msgid "Theme switch toggle"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: admin/pages/wptouch-admin-general-settings.php:184
|
653 |
+
msgid ""
|
654 |
+
"Shows a toggle in both the desktop mobile theme footers allowing users to "
|
655 |
+
"switch between them."
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: admin/pages/wptouch-admin-general-settings.php:189
|
659 |
+
msgid "Page Zoom"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: admin/pages/wptouch-admin-general-settings.php:195
|
663 |
+
msgid "Allow mobile browser zooming"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: admin/pages/wptouch-admin-general-settings.php:196
|
667 |
+
msgid "By default WPtouch Pro disables browser zooming."
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: admin/pages/wptouch-admin-general-settings.php:207
|
671 |
+
msgid "Smart App Banner"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: admin/pages/wptouch-admin-general-settings.php:222
|
675 |
+
msgid "Find your ID from the %siTunes Link Maker%s."
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: admin/pages/wptouch-admin-general-settings.php:227
|
679 |
+
msgid "Analytics"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: admin/pages/wptouch-admin-general-settings.php:233
|
683 |
+
msgid "Analytics Code"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: admin/pages/wptouch-admin-general-settings.php:238
|
687 |
+
#: admin/pages/wptouch-admin-general-settings.php:629
|
688 |
+
msgid "None"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: admin/pages/wptouch-admin-general-settings.php:240
|
692 |
+
msgid "Custom"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: admin/pages/wptouch-admin-general-settings.php:247
|
696 |
+
msgid "Site ID"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: admin/pages/wptouch-admin-general-settings.php:268
|
700 |
+
msgid "WPtouch Pro Love"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: admin/pages/wptouch-admin-general-settings.php:274
|
704 |
+
msgid "Show powered by WPtouch Pro link in theme footer"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: admin/pages/wptouch-admin-general-settings.php:286
|
708 |
+
msgid "Language"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: admin/pages/wptouch-admin-general-settings.php:292
|
712 |
+
msgid "Theme Language"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: admin/pages/wptouch-admin-general-settings.php:301
|
716 |
+
msgid "Also applies to admin"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: admin/pages/wptouch-admin-general-settings.php:320
|
720 |
+
msgctxt ""
|
721 |
+
"shortcodes are pieces of code [like_this] that users can drop into textareas "
|
722 |
+
"that will convert to longer pieces of code"
|
723 |
+
msgid "Shortcodes"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: admin/pages/wptouch-admin-general-settings.php:326
|
727 |
+
msgid "Process desktop theme shortcodes"
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
#: admin/pages/wptouch-admin-general-settings.php:334
|
731 |
+
msgid "Filter out shortcodes"
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: admin/pages/wptouch-admin-general-settings.php:335
|
735 |
+
msgid "Filters out shortcodes from displaying when WPtouch Pro is active."
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: admin/pages/wptouch-admin-general-settings.php:349
|
739 |
+
msgid "Active Plugins"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: admin/pages/wptouch-admin-general-settings.php:360
|
743 |
+
msgid ""
|
744 |
+
"Attempts to disable plugins for mobile visitors. Some plugins don‘t support "
|
745 |
+
"this feature due to the way they load in WordPress."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: admin/pages/wptouch-admin-general-settings.php:372
|
749 |
+
msgid "Mobile Devices & Browsers"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: admin/pages/wptouch-admin-general-settings.php:432
|
753 |
+
msgid "Tablets"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: admin/pages/wptouch-admin-general-settings.php:490
|
757 |
+
msgid "Tablet Devices & Browsers"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: admin/pages/wptouch-admin-general-settings.php:505
|
761 |
+
msgid ""
|
762 |
+
"If your theme supports tablets, devices and browsers WPtouch Pro can be "
|
763 |
+
"enabled for will be listed below."
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: admin/pages/wptouch-admin-general-settings.php:511
|
767 |
+
msgid "Additional User Agents"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: admin/pages/wptouch-admin-general-settings.php:517
|
771 |
+
msgid "User agents to add"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: admin/pages/wptouch-admin-general-settings.php:518
|
775 |
+
msgid "You can enter partial i.e. \"nokia\" or full agent strings"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: admin/pages/wptouch-admin-general-settings.php:535
|
779 |
+
msgid "Menu Setup"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: admin/pages/wptouch-admin-general-settings.php:553
|
783 |
+
msgid "Menu Options"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: admin/pages/wptouch-admin-general-settings.php:559
|
787 |
+
msgid "Enable parent items as links"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: admin/pages/wptouch-admin-general-settings.php:560
|
791 |
+
msgid "If disabled, parent menu items will only toggle child items."
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: admin/pages/wptouch-admin-general-settings.php:567
|
795 |
+
msgid "Use menu icons"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: admin/pages/wptouch-admin-general-settings.php:568
|
799 |
+
msgid "Adds the ability to associate icons with menu items"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: admin/pages/wptouch-admin-general-settings.php:579
|
803 |
+
msgid "Menu Icon Sets"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: admin/pages/wptouch-admin-general-settings.php:592
|
807 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:4
|
808 |
+
#: core/class-wptouch-pro.php:2162 core/class-wptouch-pro.php:2163
|
809 |
+
#: core/config.php:54
|
810 |
+
msgid "Custom Icons"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: admin/pages/wptouch-admin-general-settings.php:623
|
814 |
+
msgid "WordPress Pages"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: admin/pages/wptouch-admin-general-settings.php:641 core/admin-render.php:78
|
818 |
+
#: core/admin-render.php:109 core/config.php:93
|
819 |
+
msgid "Customize Theme"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: admin/settings/html/auto_configure.php:4
|
823 |
+
msgid ""
|
824 |
+
"This extension doesn’t currently require configuration. All of its settings "
|
825 |
+
"are inherited from your WPtouch Pro configuration automatically."
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: admin/settings/html/button.php:6 admin/settings/html/callback.php:8
|
829 |
+
#: admin/settings/html/checkbox.php:4 admin/settings/html/checklist.php:6
|
830 |
+
#: admin/settings/html/color.php:8 admin/settings/html/list.php:8
|
831 |
+
#: admin/settings/html/multiline-comma.php:9
|
832 |
+
#: admin/settings/html/multiline-newline.php:7
|
833 |
+
#: admin/settings/html/numeric.php:10 admin/settings/html/radiolist.php:17
|
834 |
+
#: admin/settings/html/text.php:8 admin/settings/html/textarea.php:11
|
835 |
+
msgid "New"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: admin/settings/html/checkbox.php:8 admin/settings/html/list.php:12
|
839 |
+
#: admin/settings/html/multiline-comma.php:13
|
840 |
+
#: admin/settings/html/multiline-newline.php:11
|
841 |
+
#: admin/settings/html/plugin-compat-ajax.php:14
|
842 |
+
#: admin/settings/html/text.php:12
|
843 |
+
msgid "Pro"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: admin/settings/html/custom-latest-posts.php:1
|
847 |
+
msgid "Posts page"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: admin/settings/html/custom_icon_management.php:3
|
851 |
+
msgid "No icons have been uploaded yet"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: admin/settings/html/custom_icon_upload.php:3
|
855 |
+
msgid "Upload Icon"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: admin/settings/html/customizing_in_customizer.php:9
|
859 |
+
msgid ""
|
860 |
+
"These settings are handled in the WordPress %s %sAppearance -> Customize%s "
|
861 |
+
"settings."
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: admin/settings/html/customizing_in_customizer.php:10
|
865 |
+
msgid "%sGo to the Customizer%s"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: admin/settings/html/debuginfo.php:13
|
869 |
+
msgid "View Debug File"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: admin/settings/html/debuginfo.php:18
|
873 |
+
msgid "Server Configuration"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: admin/settings/html/extension-browser-item-detail.php:5
|
877 |
+
msgid "Back to extensions"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: admin/settings/html/extension-browser-item-detail.php:29
|
881 |
+
#: admin/settings/html/extension-browser-item-detail.php:54
|
882 |
+
#: admin/settings/html/theme-browser-item-detail.php:42
|
883 |
+
msgid "Add to License"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: admin/settings/html/extension-browser-item-detail.php:60
|
887 |
+
msgid "Must be activated from Network Admin"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: admin/settings/html/extension-browser-item-detail.php:82
|
891 |
+
#: admin/settings/html/theme-browser-item-detail.php:58
|
892 |
+
msgid "Learn More"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: admin/settings/html/extension-browser-item-detail.php:118
|
896 |
+
#: admin/settings/html/theme-browser-item-detail.php:81
|
897 |
+
#: core/menu-walkers.php:365
|
898 |
+
msgid "Description"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: admin/settings/html/extension-browser-item-detail.php:123
|
902 |
+
#: admin/settings/html/theme-browser-item-detail.php:88
|
903 |
+
msgid "Changelog"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: admin/settings/html/extension-browser.php:3
|
907 |
+
#: admin/settings/html/theme-browser.php:3
|
908 |
+
#: admin/settings/html/updates-available.php:4
|
909 |
+
msgid ""
|
910 |
+
"Your server configuration is preventing WPtouch Pro from installing and "
|
911 |
+
"updating from the Cloud. %sPlease visit %sthis article%s to follow the steps "
|
912 |
+
"to enable Cloud install, or you can manually download and install into the "
|
913 |
+
"wptouch-data/%s directory."
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: admin/settings/html/extension-browser.php:28
|
917 |
+
msgid "No extensions available"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: admin/settings/html/image-upload.php:7 core/class-wptouch-pro.php:959
|
921 |
+
msgid "Upload Complete!"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: admin/settings/html/image-upload.php:17
|
925 |
+
msgid "Delete"
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: admin/settings/html/installed_icon_sets.php:3
|
929 |
+
msgid "Loading icon sets"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: admin/settings/html/installed_icon_sets.php:7
|
933 |
+
msgid ""
|
934 |
+
"The %s%s%s directory is not writable. %sPlease fix this issue to install "
|
935 |
+
"additional icon sets."
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:25
|
939 |
+
#: core/class-wptouch-pro.php:965
|
940 |
+
msgid "Installing"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:25
|
944 |
+
#: admin/settings/html/theme-browser-item-detail.php:3
|
945 |
+
#: core/admin-extensions.php:363 core/class-wptouch-pro.php:964
|
946 |
+
msgid "Install"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: admin/settings/html/installed_icon_sets_ajax.php:27
|
950 |
+
msgid "Unable to Install"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: admin/settings/html/menus_in_menus.php:9
|
954 |
+
msgid ""
|
955 |
+
"These settings are handled in the WordPress %s %sAppearance -> Menus%s Menu "
|
956 |
+
"Location settings"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: admin/settings/html/menus_in_menus.php:10
|
960 |
+
msgid "%sGo to Menu Settings%s"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: admin/settings/html/no_tablet_support.php:6
|
964 |
+
msgid "You're using %s, which currently does not support tablets."
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: admin/settings/html/plugin-compat-ajax.php:10
|
968 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:183
|
969 |
+
msgid "%s"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: admin/settings/html/plugin-compat-ajax.php:22
|
973 |
+
msgid "No plugins activated to disable."
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: admin/settings/html/plugin-compat.php:3
|
977 |
+
msgid "Your active plugin list is refreshing"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: admin/settings/html/redirect.php:1
|
981 |
+
msgid "Redirect target"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: admin/settings/html/theme-browser-item-detail.php:11
|
985 |
+
msgid "Back to themes"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: admin/settings/html/theme-browser-item-detail.php:35
|
989 |
+
msgid "Customize"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: admin/settings/html/theme-browser-item-detail.php:66
|
993 |
+
msgid "Screenshots"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: admin/settings/html/theme-browser.php:27
|
997 |
+
msgid "No themes available"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: admin/settings/html/touchboard.php:6
|
1001 |
+
msgid "Quick Links"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: admin/settings/html/touchboard.php:8
|
1005 |
+
msgid "What's New Changelog"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: admin/settings/html/touchboard.php:11
|
1009 |
+
msgid "Knowledgebase & Support"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: admin/settings/html/touchboard.php:12
|
1013 |
+
msgid "Manage Account & License"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: admin/settings/html/touchboard.php:14
|
1017 |
+
msgid "WPtouch User Guide"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: admin/settings/html/touchboard.php:15
|
1021 |
+
msgid "Mobile-Friendly Guide"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: admin/settings/html/touchboard.php:17
|
1025 |
+
msgid "WPtouch on Twitter"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: admin/settings/html/touchboard.php:20
|
1029 |
+
msgid "Look at Pro Themes"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: admin/settings/html/touchboard.php:21
|
1033 |
+
msgid "Look at Pro Extensions"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: admin/settings/html/touchboard.php:22
|
1037 |
+
msgid "Look at Pro Features"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: admin/settings/html/touchboard.php:29
|
1041 |
+
msgid "WPtouch News"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: admin/settings/html/touchboard.php:30
|
1045 |
+
msgid "Read More"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: admin/settings/html/touchboard.php:42
|
1049 |
+
msgid "%s Change Log"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: admin/settings/html/updates-available.php:7
|
1053 |
+
msgid "Updating"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: admin/settings/html/updates-available.php:7
|
1057 |
+
msgid "Update All"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: admin/settings/html/updates-available.php:12
|
1061 |
+
msgid "Core Plugin Updates"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: admin/settings/html/updates-available.php:17
|
1065 |
+
#: admin/settings/html/updates-available.php:44
|
1066 |
+
#: admin/settings/html/updates-available.php:67
|
1067 |
+
msgid "Upgrade to %s"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: admin/settings/html/updates-available.php:27
|
1071 |
+
msgid "Theme Updates"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: admin/settings/html/updates-available.php:55
|
1075 |
+
msgid "Extension Updates"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: admin/settings/include/sites.php:17
|
1079 |
+
msgid "Select All"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: admin/settings/include/sites.php:18
|
1083 |
+
msgid "Select None"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: admin/settings/include/sites.php:19
|
1087 |
+
msgid "Deploy to Sites"
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: admin/settings/include/sites.php:28 core/admin-render.php:54
|
1091 |
+
msgid "Deployment"
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: admin/settings/include/sites.php:29
|
1095 |
+
msgid ""
|
1096 |
+
"WARNING: Deploying to sub sites will overwrite sub site WPtouch Pro settings."
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: admin/settings/include/sites.php:29
|
1100 |
+
msgid "Your selected options are being deployed to sub sites"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: admin/settings/include/sites.php:29
|
1104 |
+
msgid "Deploy Complete"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: admin/settings/include/sites.php:30
|
1108 |
+
msgid "Deploy Now"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: core/addon-theme-installer.php:172
|
1112 |
+
msgid "No server support for directly downloading new Cloud packages."
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: core/addon-theme-installer.php:177
|
1116 |
+
msgid ""
|
1117 |
+
"Unable to write to directory %s. Try relaxing permissions to allow writing "
|
1118 |
+
"to this location."
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: core/addon-theme-installer.php:182
|
1122 |
+
msgid "No server support for unzipping files."
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: core/addon-theme-installer.php:197
|
1126 |
+
msgid "Unable to download the Cloud package."
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: core/admin-ajax.php:106
|
1130 |
+
msgid "Version %s"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: core/admin-ajax.php:112
|
1134 |
+
msgid ""
|
1135 |
+
"There is a temporary issue retrieving the change-log. Please try again "
|
1136 |
+
"later."
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: core/admin-ajax.php:200
|
1140 |
+
msgid "Code found! %s Analytics was automatically configured for you."
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: core/admin-ajax.php:219
|
1144 |
+
msgid ""
|
1145 |
+
"Unable to find your Google Analytics code. You can enter it manually in the "
|
1146 |
+
"settings later."
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: core/admin-extensions.php:365
|
1150 |
+
msgid "Site Activate"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: core/admin-menu.php:48
|
1154 |
+
msgid "Setup Wizard"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: core/admin-menu.php:49 core/class-wptouch-pro.php:1634
|
1158 |
+
msgid "Settings"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: core/admin-menu.php:50
|
1162 |
+
msgid "License %s Support"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: core/admin-menu.php:69
|
1166 |
+
msgid "Multisite Setup"
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: core/admin-page-templates.php:19
|
1170 |
+
msgid "Mobile Page Template"
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: core/admin-render.php:4
|
1174 |
+
msgid ""
|
1175 |
+
"Your WPtouch Pro license has expired. Renew now at a discount to continue "
|
1176 |
+
"receiving product updates and support."
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: core/admin-render.php:4
|
1180 |
+
msgid "Renew Now"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: core/admin-render.php:10
|
1184 |
+
msgid "This copy of %s is currently unlicensed."
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: core/admin-render.php:13
|
1188 |
+
msgid "Add a license %s"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: core/admin-render.php:37
|
1192 |
+
msgid "Preview Theme"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: core/admin-render.php:47 core/admin-render.php:63
|
1196 |
+
msgid "Setup"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: core/admin-render.php:49 core/multisite.php:180
|
1200 |
+
msgid "General Options"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: core/admin-render.php:52
|
1204 |
+
msgid "Tools"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: core/admin-render.php:73 core/admin-render.php:82 core/config.php:89
|
1208 |
+
msgid "General"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: core/admin-render.php:74 core/admin-render.php:86 core/multisite.php:259
|
1212 |
+
#: core/multisite.php:352
|
1213 |
+
msgid "Site Compatibility"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: core/admin-render.php:75 core/admin-render.php:90 core/config.php:91
|
1217 |
+
#: core/multisite.php:267 core/multisite.php:360
|
1218 |
+
msgid "Devices"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: core/admin-render.php:76 core/admin-render.php:94 core/config.php:92
|
1222 |
+
#: core/multisite.php:275 core/multisite.php:368
|
1223 |
+
msgid "Menu Settings"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: core/admin-render.php:101 core/admin-render.php:103
|
1227 |
+
#: core/admin-render.php:141 core/config.php:95 core/multisite.php:283
|
1228 |
+
#: core/multisite.php:376
|
1229 |
+
msgid "Themes"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: core/admin-render.php:106 themes/foundation/root-functions.php:9
|
1233 |
+
msgid "Theme Settings"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: core/admin-render.php:116 core/admin-render.php:118
|
1237 |
+
#: core/admin-render.php:142 core/config.php:96 core/multisite.php:291
|
1238 |
+
#: core/multisite.php:384
|
1239 |
+
msgid "Extensions"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: core/admin-render.php:139
|
1243 |
+
msgid "Available for WPtouch Pro"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: core/admin-render.php:190
|
1247 |
+
msgid "Reset Settings"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: core/class-wptouch-pro.php:644
|
1251 |
+
msgid ""
|
1252 |
+
"Automatic theme migration from wp-content/uploads/wptouch-data directory "
|
1253 |
+
"failed. Please manually move these folders to wp-content/wptouch-data: %s"
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: core/class-wptouch-pro.php:663
|
1257 |
+
msgid ""
|
1258 |
+
"%sWPtouch: %s was recently disabled, but is still affecting your website and "
|
1259 |
+
"caching pages.%s"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: core/class-wptouch-pro.php:664
|
1263 |
+
msgid ""
|
1264 |
+
"%sPlease reactivate the plugin, disable page caching, then deactivate the "
|
1265 |
+
"plugin again to correct this issue.%s"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: core/class-wptouch-pro.php:665 core/class-wptouch-pro.php:674
|
1269 |
+
msgid ""
|
1270 |
+
"%sFixing this issue prevents cached desktop pages being served to mobile "
|
1271 |
+
"devices and vice-versa.%s"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: core/class-wptouch-pro.php:666 core/class-wptouch-pro.php:675
|
1275 |
+
msgid ""
|
1276 |
+
"%sOnce fixed, this message will be dismissed automatically. Until fixed, "
|
1277 |
+
"%sWPtouch will not be shown%s to mobile visitors, and cannot be previewed.%s"
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: core/class-wptouch-pro.php:673
|
1281 |
+
msgid "%sWPtouch: %s needs to be configured to work correctly with WPtouch.%s"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: core/class-wptouch-pro.php:676
|
1285 |
+
msgid ""
|
1286 |
+
"%sTo fix the issue, follow our %sstep-by-step setup guide%s on support."
|
1287 |
+
"wptouch.com%s"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: core/class-wptouch-pro.php:688
|
1291 |
+
msgid "WPtouch Repair Required"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: core/class-wptouch-pro.php:695
|
1295 |
+
msgid "Your mobile theme was either broken or missing."
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: core/class-wptouch-pro.php:696
|
1299 |
+
msgid "We downloaded a fresh copy for you."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: core/class-wptouch-pro.php:697 core/class-wptouch-pro.php:707
|
1303 |
+
msgid "OK"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: core/class-wptouch-pro.php:700
|
1307 |
+
msgid ""
|
1308 |
+
"We were unable to install your WPtouch Pro theme from the Cloud. %s Please "
|
1309 |
+
"visit %sthis article%s for more information."
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: core/class-wptouch-pro.php:703
|
1313 |
+
msgid "WPtouch Server Issue"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: core/class-wptouch-pro.php:705
|
1317 |
+
msgid ""
|
1318 |
+
"Your server setup is preventing WPtouch Pro from installing from the Cloud. "
|
1319 |
+
"%s Please visit %sthis article%s for more information on how to fix it."
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: core/class-wptouch-pro.php:954
|
1323 |
+
msgid ""
|
1324 |
+
"This will reset all WPtouch Pro settings.\n"
|
1325 |
+
"Are you sure?"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: core/class-wptouch-pro.php:955
|
1329 |
+
msgid ""
|
1330 |
+
"This will reset all WPtouch Pro settings and delete the wptouch-data "
|
1331 |
+
"folder.\n"
|
1332 |
+
"Are you sure?"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: core/class-wptouch-pro.php:956
|
1336 |
+
msgid ""
|
1337 |
+
"This will reset all WPtouch Pro settings, delete the wptouch-data folder, "
|
1338 |
+
"and deactivate the plugin. Are you sure?"
|
1339 |
+
msgstr ""
|
1340 |
+
|
1341 |
+
#: core/class-wptouch-pro.php:957
|
1342 |
+
msgid "The item failed to download for this reason: %reason%"
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: core/class-wptouch-pro.php:958
|
1346 |
+
msgid "You are about to reset your license information. Proceed?"
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: core/class-wptouch-pro.php:960
|
1350 |
+
msgid "Upload Failed: Not a valid image."
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: core/class-wptouch-pro.php:961
|
1354 |
+
msgid ""
|
1355 |
+
"WPtouch is saving settings. Please do not refresh the page while saving."
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: core/class-wptouch-pro.php:962
|
1359 |
+
msgid "Install Themes"
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: core/class-wptouch-pro.php:963
|
1363 |
+
msgid "Install Extensions"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: core/class-wptouch-pro.php:1671
|
1367 |
+
msgid "%s Changelog"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: core/class-wptouch-pro.php:3088
|
1371 |
+
msgid "Directory Problem"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: core/class-wptouch-pro.php:3089
|
1375 |
+
msgid "One or more required directories could not be created"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: core/config.php:90
|
1379 |
+
msgid "Compatibility"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: core/config.php:94
|
1383 |
+
msgid "Go Pro"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: core/globals.php:190
|
1387 |
+
msgid "smartphone"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: core/globals.php:192
|
1391 |
+
msgid "tablet"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: core/globals.php:452
|
1395 |
+
msgid "Auto-detect"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#. translators: %s: title of menu item which is invalid
|
1399 |
+
#: core/menu-walkers.php:270
|
1400 |
+
msgid "%s (Invalid)"
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#. translators: %s: title of menu item in draft status
|
1404 |
+
#: core/menu-walkers.php:274
|
1405 |
+
msgid "%s (Pending)"
|
1406 |
+
msgstr ""
|
1407 |
+
|
1408 |
+
#: core/menu-walkers.php:287
|
1409 |
+
msgid "sub item"
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: core/menu-walkers.php:302
|
1413 |
+
msgid "Move up"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: core/menu-walkers.php:315
|
1417 |
+
msgid "Move down"
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: core/menu-walkers.php:317 core/menu-walkers.php:319
|
1421 |
+
msgid "Edit Menu Item"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: core/menu-walkers.php:328
|
1425 |
+
msgid "URL"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: core/menu-walkers.php:335
|
1429 |
+
msgid "Navigation Label"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: core/menu-walkers.php:341
|
1433 |
+
msgid "Title Attribute"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: core/menu-walkers.php:348
|
1437 |
+
msgid "Open link in a new window/tab"
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: core/menu-walkers.php:353
|
1441 |
+
msgid "CSS Classes (optional)"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: core/menu-walkers.php:359
|
1445 |
+
msgid "Link Relationship (XFN)"
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: core/menu-walkers.php:367
|
1449 |
+
msgid ""
|
1450 |
+
"The description will be displayed in the menu if the current theme supports "
|
1451 |
+
"it."
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: core/menu-walkers.php:377
|
1455 |
+
msgid "Mobile Menu Icon"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: core/menu-walkers.php:381
|
1459 |
+
msgid "WPtouch Icons"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: core/menu-walkers.php:381
|
1463 |
+
msgid "Change Icon"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: core/menu-walkers.php:382
|
1467 |
+
msgid "Use Default"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: core/menu-walkers.php:390
|
1471 |
+
msgid "Move"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: core/menu-walkers.php:391
|
1475 |
+
msgid "Up one"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: core/menu-walkers.php:392
|
1479 |
+
msgid "Down one"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: core/menu-walkers.php:395
|
1483 |
+
msgid "To the top"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: core/menu-walkers.php:402
|
1487 |
+
msgid "Original: %s"
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: core/menu-walkers.php:415
|
1491 |
+
msgid "Remove"
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: core/menu-walkers.php:416 themes/foundation/default/comments.php:48
|
1495 |
+
msgid "Cancel"
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: core/menu-walkers.php:645
|
1499 |
+
msgid "Feed for all posts filed under %s"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: core/multisite.php:186
|
1503 |
+
msgid "Admin Language"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: core/multisite.php:196
|
1507 |
+
msgid "Control themes and extension downloads and updates"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: core/multisite.php:197
|
1511 |
+
msgid ""
|
1512 |
+
"If enabled, sub-sites can only activate/deactivate themes and extensions "
|
1513 |
+
"that have been downloaded in the network admin."
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: core/multisite.php:216
|
1517 |
+
msgid "Network Defaults"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: core/multisite.php:222
|
1521 |
+
msgid "Use my settings for new sites"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: core/multisite.php:230 core/multisite.php:335
|
1525 |
+
msgid "Source site"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: core/multisite.php:240
|
1529 |
+
msgid ""
|
1530 |
+
"Configure WPtouch to use a site for defaults on new network sites instead of "
|
1531 |
+
"its defaults"
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: core/multisite.php:245
|
1535 |
+
msgid "Subsite Customizable Settings"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: core/multisite.php:251 core/multisite.php:344
|
1539 |
+
msgid "General Settings"
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: core/multisite.php:299 core/multisite.php:392
|
1543 |
+
msgid "Colors"
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: core/multisite.php:307 core/multisite.php:400
|
1547 |
+
#: themes/foundation/modules/social-links/social-links.php:9
|
1548 |
+
msgid "Social Media Links"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: core/multisite.php:315 core/multisite.php:408
|
1552 |
+
#: themes/foundation/modules/sharing/sharing.php:95
|
1553 |
+
msgid "Social Sharing"
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: core/multisite.php:324
|
1557 |
+
msgid ""
|
1558 |
+
"Select which settings sections are available to users in network subsites "
|
1559 |
+
"(network admins always see settings)."
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: core/multisite.php:329
|
1563 |
+
msgid "Source Site"
|
1564 |
+
msgstr ""
|
1565 |
+
|
1566 |
+
#: core/multisite.php:420
|
1567 |
+
msgid "Destination Sites"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: free/wptouch.php:154
|
1571 |
+
msgid ""
|
1572 |
+
"%sSign-up to to get WPtouch news, updates and changes via your user email "
|
1573 |
+
"address:%s"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: free/wptouch.php:160
|
1577 |
+
msgid ""
|
1578 |
+
"%sNEW! WPtouch now supports live editing in the WordPress Customizer!%s "
|
1579 |
+
"Check it out: <a href=\"%s?"
|
1580 |
+
"wptouch_free_message_419=1&utm_source=free_admin&utm_medium=website&utm_term=dale&utm_campaign=admin_notice"
|
1581 |
+
"\">Customize WPtouch Now →</a> %s"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: free/wptouch.php:161
|
1585 |
+
msgid "%sSign-up to to get WPtouch news, updates and changes via email:%s"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: include/html/desktop-switch.php:2
|
1589 |
+
msgid "Desktop Version"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: include/html/desktop-switch.php:2
|
1593 |
+
msgid "Switch To Mobile Version"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: include/html/footer.php:7
|
1597 |
+
msgid "Powered by<br/>%s%s%s"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: include/html/load-times.php:2
|
1601 |
+
msgid "%d queries in %0.1f ms"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: include/html/page-template.php:8
|
1605 |
+
msgid "Default Template"
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: pro/professional.php:17
|
1609 |
+
msgid "Show WPML language switcher in theme footer"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: pro/professional.php:144 pro/professional.php:170
|
1613 |
+
msgid "Unknown error"
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: pro/professional.php:617
|
1617 |
+
msgid "Some themes or extensions could not be updated."
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: pro/professional.php:651
|
1621 |
+
msgid "Some extensions could not be updated."
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: themes/foundation/default/404.php:6
|
1625 |
+
msgid "404 Not Found"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: themes/foundation/default/404.php:8
|
1629 |
+
msgid "The post or page you requested is no longer available."
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: themes/foundation/default/attachment.php:10
|
1633 |
+
msgid "Back to %s"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: themes/foundation/default/attachment.php:47
|
1637 |
+
msgid "« previous in gallery"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: themes/foundation/default/attachment.php:49
|
1641 |
+
msgid "next in gallery »"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: themes/foundation/default/comments.php:10
|
1645 |
+
msgid "no responses"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: themes/foundation/default/comments.php:10
|
1649 |
+
msgid "1 response"
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: themes/foundation/default/comments.php:10
|
1653 |
+
msgid "% responses"
|
1654 |
+
msgstr ""
|
1655 |
+
|
1656 |
+
#: themes/foundation/default/comments.php:20
|
1657 |
+
#: themes/foundation/default/comments.php:26
|
1658 |
+
msgid "Load More Comments…"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: themes/foundation/default/comments.php:38
|
1662 |
+
msgid "Comments are closed"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: themes/foundation/default/comments.php:51
|
1666 |
+
msgid "Leave a Reply"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: themes/foundation/default/comments.php:51
|
1670 |
+
msgid "Leave a Reply to %s"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: themes/foundation/default/comments.php:54
|
1674 |
+
msgid "You must be %slogged in%s to post a comment."
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: themes/foundation/default/comments.php:61
|
1678 |
+
msgid "Logged in as"
|
1679 |
+
msgstr ""
|
1680 |
+
|
1681 |
+
#: themes/foundation/default/comments.php:61
|
1682 |
+
msgid "Log out"
|
1683 |
+
msgstr ""
|
1684 |
+
|
1685 |
+
#: themes/foundation/default/comments.php:65
|
1686 |
+
msgid "Name"
|
1687 |
+
msgstr ""
|
1688 |
+
|
1689 |
+
#: themes/foundation/default/comments.php:67
|
1690 |
+
#: themes/foundation/modules/social-links/social-links.php:95
|
1691 |
+
msgid "E-Mail"
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: themes/foundation/default/comments.php:69
|
1695 |
+
msgid "Website"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: themes/foundation/default/comments.php:77
|
1699 |
+
msgid "Publish"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: themes/foundation/default/footer.php:10
|
1703 |
+
msgid "Back to top"
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: themes/foundation/default/formerror.php:6
|
1707 |
+
msgid "Comment Error"
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: themes/foundation/default/formerror.php:8
|
1711 |
+
msgid "Please enter all fields correctly to post a comment."
|
1712 |
+
msgstr ""
|
1713 |
+
|
1714 |
+
#: themes/foundation/default/formerror.php:9
|
1715 |
+
msgid "Go back"
|
1716 |
+
msgstr ""
|
1717 |
+
|
1718 |
+
#: themes/foundation/default/index.php:33
|
1719 |
+
msgid "newer posts"
|
1720 |
+
msgstr ""
|
1721 |
+
|
1722 |
+
#: themes/foundation/default/index.php:33
|
1723 |
+
msgid "older posts"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: themes/foundation/default/nav-bar.php:6
|
1727 |
+
msgid "previous post"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: themes/foundation/default/nav-bar.php:12
|
1731 |
+
msgid "next post"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: themes/foundation/default/one-comment.php:17
|
1735 |
+
msgid "Your comment is awaiting moderation"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: themes/foundation/default/one-comment.php:21
|
1739 |
+
msgid "Reply"
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: themes/foundation/default/related-posts.php:4
|
1743 |
+
msgid "Related"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: themes/foundation/default/search.php:6
|
1747 |
+
msgid "You searched for \"%s\""
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: themes/foundation/default/search.php:16
|
1751 |
+
msgid "%s results"
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: themes/foundation/default/search.php:34
|
1755 |
+
msgid "No search results found"
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: themes/foundation/default/search.php:43
|
1759 |
+
msgid "Load more %s results"
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: themes/foundation/default/sharing.php:2
|
1763 |
+
msgid "Share"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: themes/foundation/default/sharing.php:3
|
1767 |
+
msgid "Tweet"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: themes/foundation/default/sharing.php:4
|
1771 |
+
msgid "Pin"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: themes/foundation/default/sharing.php:5
|
1775 |
+
msgid "Mail"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: themes/foundation/default/single.php:13
|
1779 |
+
msgid "By"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: themes/foundation/default/switch-link.php:8
|
1783 |
+
msgid "mobile"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: themes/foundation/default/switch-link.php:9
|
1787 |
+
msgid "desktop"
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: themes/foundation/modules/base/base.php:64
|
1791 |
+
msgid "Loading"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:163
|
1795 |
+
msgid "Custom Post Support"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:169
|
1799 |
+
msgid "Enable custom post-type support"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:196
|
1803 |
+
msgid "Include custom post-type posts in blog index"
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:204
|
1807 |
+
msgid "Custom Post Types"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: themes/foundation/modules/custom-posts/custom-posts.php:210
|
1811 |
+
msgid ""
|
1812 |
+
"Select which custom post types WPtouch Pro should load when displaying your "
|
1813 |
+
"site."
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: themes/foundation/modules/featured/featured.php:329
|
1817 |
+
msgid "Show on blog"
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: themes/foundation/modules/featured/featured.php:337
|
1821 |
+
msgid "Show on homepage"
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: themes/foundation/modules/featured/featured.php:345
|
1825 |
+
msgid "Featured slider style"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: themes/foundation/modules/featured/featured.php:350
|
1829 |
+
msgid "Enhanced"
|
1830 |
+
msgstr ""
|
1831 |
+
|
1832 |
+
#: themes/foundation/modules/featured/featured.php:351
|
1833 |
+
msgid "Streamlined"
|
1834 |
+
msgstr ""
|
1835 |
+
|
1836 |
+
#: themes/foundation/modules/featured/featured.php:363
|
1837 |
+
msgid "Slide transition Delay"
|
1838 |
+
msgstr ""
|
1839 |
+
|
1840 |
+
#: themes/foundation/modules/featured/featured.php:368
|
1841 |
+
msgid "Long"
|
1842 |
+
msgstr ""
|
1843 |
+
|
1844 |
+
#: themes/foundation/modules/featured/featured.php:369
|
1845 |
+
msgid "Normal"
|
1846 |
+
msgstr ""
|
1847 |
+
|
1848 |
+
#: themes/foundation/modules/featured/featured.php:370
|
1849 |
+
msgid "Short"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: themes/foundation/modules/featured/featured.php:376
|
1853 |
+
msgid "Number of posts in slider"
|
1854 |
+
msgstr ""
|
1855 |
+
|
1856 |
+
#: themes/foundation/modules/featured/featured.php:389
|
1857 |
+
msgid "Show # of comments"
|
1858 |
+
msgstr ""
|
1859 |
+
|
1860 |
+
#: themes/foundation/modules/featured/featured.php:397
|
1861 |
+
msgid "Slide automatically"
|
1862 |
+
msgstr ""
|
1863 |
+
|
1864 |
+
#: themes/foundation/modules/featured/featured.php:405
|
1865 |
+
msgid "Slides repeat"
|
1866 |
+
msgstr ""
|
1867 |
+
|
1868 |
+
#: themes/foundation/modules/featured/featured.php:413
|
1869 |
+
msgid "Make images grayscale"
|
1870 |
+
msgstr ""
|
1871 |
+
|
1872 |
+
#: themes/foundation/modules/featured/featured.php:421
|
1873 |
+
msgid "Slider posts also show in listings"
|
1874 |
+
msgstr ""
|
1875 |
+
|
1876 |
+
#: themes/foundation/modules/featured/featured.php:429
|
1877 |
+
msgid "Posts to display"
|
1878 |
+
msgstr ""
|
1879 |
+
|
1880 |
+
#: themes/foundation/modules/featured/featured.php:434
|
1881 |
+
msgid "Show latest posts"
|
1882 |
+
msgstr ""
|
1883 |
+
|
1884 |
+
#: themes/foundation/modules/featured/featured.php:435
|
1885 |
+
msgid "Show posts from a specific tag"
|
1886 |
+
msgstr ""
|
1887 |
+
|
1888 |
+
#: themes/foundation/modules/featured/featured.php:436
|
1889 |
+
msgid "Show posts from a specific category"
|
1890 |
+
msgstr ""
|
1891 |
+
|
1892 |
+
#: themes/foundation/modules/featured/featured.php:437
|
1893 |
+
msgid "Show posts from a specific post type"
|
1894 |
+
msgstr ""
|
1895 |
+
|
1896 |
+
#: themes/foundation/modules/featured/featured.php:438
|
1897 |
+
msgid "Show only specific posts or pages"
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: themes/foundation/modules/featured/featured.php:444
|
1901 |
+
msgid "Only this tag"
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: themes/foundation/modules/featured/featured.php:445
|
1905 |
+
#: themes/foundation/modules/featured/featured.php:454
|
1906 |
+
msgid "Enter the tag/category slug name"
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: themes/foundation/modules/featured/featured.php:453
|
1910 |
+
msgid "Only this category"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: themes/foundation/modules/featured/featured.php:462
|
1914 |
+
msgid "Comma-separated list of post/page IDs"
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: themes/foundation/modules/featured/featured.php:473
|
1918 |
+
msgid "Only this post type"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: themes/foundation/modules/featured/featured.php:483
|
1922 |
+
msgid "Featured Slider"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: themes/foundation/modules/featured/featured.php:490
|
1926 |
+
msgid "Enable featured slider"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: themes/foundation/modules/google-fonts/google-fonts.php:21
|
1930 |
+
msgid "Browser Default Fonts"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: themes/foundation/modules/google-fonts/google-fonts.php:29
|
1934 |
+
msgid "Typography"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: themes/foundation/modules/google-fonts/google-fonts.php:35
|
1938 |
+
msgid "Font Pairing"
|
1939 |
+
msgstr ""
|
1940 |
+
|
1941 |
+
#: themes/foundation/modules/google-fonts/google-fonts.php:36
|
1942 |
+
msgid ""
|
1943 |
+
"Choose a Google font pairing designed for this theme, or default browser "
|
1944 |
+
"fonts."
|
1945 |
+
msgstr ""
|
1946 |
+
|
1947 |
+
#: themes/foundation/modules/login/login-html.php:7
|
1948 |
+
msgid "Remember Me"
|
1949 |
+
msgstr ""
|
1950 |
+
|
1951 |
+
#: themes/foundation/modules/login/login-html.php:9
|
1952 |
+
msgid "Log In"
|
1953 |
+
msgstr ""
|
1954 |
+
|
1955 |
+
#: themes/foundation/modules/login/login-html.php:20
|
1956 |
+
msgid "Login"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: themes/foundation/modules/login/login-html.php:30
|
1960 |
+
msgid "Sign-up"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: themes/foundation/modules/login/login-html.php:31
|
1964 |
+
msgid "Lost password?"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: themes/foundation/modules/login/login.php:10
|
1968 |
+
msgid "Show login in menu"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: themes/foundation/modules/login/login.php:11
|
1972 |
+
msgid "Will add login/out links"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: themes/foundation/modules/media/media.php:34
|
1976 |
+
msgid "Video Handling"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: themes/foundation/modules/media/media.php:40
|
1980 |
+
msgid "Use FitVids to automatically scale videos"
|
1981 |
+
msgstr ""
|
1982 |
+
|
1983 |
+
#: themes/foundation/modules/media/media.php:41
|
1984 |
+
msgid ""
|
1985 |
+
"FitVids is a small JavaScript helper that will detect videos from a variety "
|
1986 |
+
"of web sources and automatically scale them to fill the container and format "
|
1987 |
+
"them with the correct aspect ratio."
|
1988 |
+
msgstr ""
|
1989 |
+
|
1990 |
+
#: themes/foundation/modules/sharing/sharing.php:101
|
1991 |
+
msgid "Show sharing links on posts"
|
1992 |
+
msgstr ""
|
1993 |
+
|
1994 |
+
#: themes/foundation/modules/sharing/sharing.php:102
|
1995 |
+
msgid "Will show Facebook, Twitter, Pinterest and Email buttons."
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
+
#: themes/foundation/modules/sharing/sharing.php:109
|
1999 |
+
msgid "Also show on pages"
|
2000 |
+
msgstr ""
|
2001 |
+
|
2002 |
+
#: themes/foundation/modules/sharing/sharing.php:117
|
2003 |
+
msgid "Sharing links location"
|
2004 |
+
msgstr ""
|
2005 |
+
|
2006 |
+
#: themes/foundation/modules/sharing/sharing.php:122
|
2007 |
+
msgid "Above post content"
|
2008 |
+
msgstr ""
|
2009 |
+
|
2010 |
+
#: themes/foundation/modules/sharing/sharing.php:123
|
2011 |
+
msgid "Below post content"
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: themes/foundation/modules/sharing/sharing.php:129
|
2015 |
+
msgid "Color scheme"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: themes/foundation/modules/sharing/sharing.php:134
|
2019 |
+
msgid "Theme colors"
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: themes/foundation/modules/sharing/sharing.php:135
|
2023 |
+
msgid "Social network colors"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: themes/foundation/modules/social-links/social-links.php:16
|
2027 |
+
msgid "Full URL to your Facebook page"
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: themes/foundation/modules/social-links/social-links.php:24
|
2031 |
+
msgid "Full URL to your Twitter profile"
|
2032 |
+
msgstr ""
|
2033 |
+
|
2034 |
+
#: themes/foundation/modules/social-links/social-links.php:32
|
2035 |
+
msgid "Full URL to your Google+ profile"
|
2036 |
+
msgstr ""
|
2037 |
+
|
2038 |
+
#: themes/foundation/modules/social-links/social-links.php:40
|
2039 |
+
msgid "Full URL to your Instagram profile"
|
2040 |
+
msgstr ""
|
2041 |
+
|
2042 |
+
#: themes/foundation/modules/social-links/social-links.php:47
|
2043 |
+
msgid "Tumblr"
|
2044 |
+
msgstr ""
|
2045 |
+
|
2046 |
+
#: themes/foundation/modules/social-links/social-links.php:48
|
2047 |
+
msgid "Full URL to your Tumblr profile"
|
2048 |
+
msgstr ""
|
2049 |
+
|
2050 |
+
#: themes/foundation/modules/social-links/social-links.php:56
|
2051 |
+
msgid "Full URL to your Pinterest page"
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: themes/foundation/modules/social-links/social-links.php:64
|
2055 |
+
msgid "Full URL to your Vimeo page"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: themes/foundation/modules/social-links/social-links.php:72
|
2059 |
+
msgid "Full URL to your %s profile"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: themes/foundation/modules/social-links/social-links.php:79
|
2063 |
+
msgid "LinkedIn"
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: themes/foundation/modules/social-links/social-links.php:80
|
2067 |
+
msgid "Full URL to your LinkedIn profile"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: themes/foundation/modules/social-links/social-links.php:88
|
2071 |
+
msgid "Full URL to your Yelp profile"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: themes/foundation/modules/social-links/social-links.php:96
|
2075 |
+
msgid "E-Mail address"
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
#: themes/foundation/modules/social-links/social-links.php:104
|
2079 |
+
msgid "Full URL to your RSS feed"
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: themes/foundation/modules/tablets/tablets.php:58
|
2083 |
+
msgid "iPad"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: themes/foundation/modules/tablets/tablets.php:64
|
2087 |
+
#: themes/foundation/root-functions.php:466
|
2088 |
+
msgid "%d by %d pixels (PNG)"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: themes/foundation/root-functions.php:10
|
2092 |
+
msgid "Branding"
|
2093 |
+
msgstr ""
|
2094 |
+
|
2095 |
+
#: themes/foundation/root-functions.php:11
|
2096 |
+
msgid "Media Handling"
|
2097 |
+
msgstr ""
|
2098 |
+
|
2099 |
+
#: themes/foundation/root-functions.php:12
|
2100 |
+
msgid "Bookmark Icons"
|
2101 |
+
msgstr ""
|
2102 |
+
|
2103 |
+
#: themes/foundation/root-functions.php:13
|
2104 |
+
msgid "Custom Content"
|
2105 |
+
msgstr ""
|
2106 |
+
|
2107 |
+
#: themes/foundation/root-functions.php:51
|
2108 |
+
msgid "Language: "
|
2109 |
+
msgstr ""
|
2110 |
+
|
2111 |
+
#: themes/foundation/root-functions.php:390
|
2112 |
+
msgid "Theme Colors"
|
2113 |
+
msgstr ""
|
2114 |
+
|
2115 |
+
#: themes/foundation/root-functions.php:406
|
2116 |
+
msgid "Number of posts in post listings"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: themes/foundation/root-functions.php:407
|
2120 |
+
msgid ""
|
2121 |
+
"Overrides the WordPress Reading settings for \"Blog pages show at most\""
|
2122 |
+
msgstr ""
|
2123 |
+
|
2124 |
+
#: themes/foundation/root-functions.php:419
|
2125 |
+
msgid "Excluded categories"
|
2126 |
+
msgstr ""
|
2127 |
+
|
2128 |
+
#: themes/foundation/root-functions.php:420
|
2129 |
+
msgid "Comma separated by category name"
|
2130 |
+
msgstr ""
|
2131 |
+
|
2132 |
+
#: themes/foundation/root-functions.php:427
|
2133 |
+
msgid "Excluded tags"
|
2134 |
+
msgstr ""
|
2135 |
+
|
2136 |
+
#: themes/foundation/root-functions.php:428
|
2137 |
+
msgid "Comma separated by tag name"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: themes/foundation/root-functions.php:439
|
2141 |
+
msgid "Blog"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: themes/foundation/root-functions.php:449
|
2145 |
+
#: themes/foundation/root-functions.php:1221
|
2146 |
+
msgid "Pages"
|
2147 |
+
msgstr ""
|
2148 |
+
|
2149 |
+
#: themes/foundation/root-functions.php:460
|
2150 |
+
msgid "Site Icon"
|
2151 |
+
msgstr ""
|
2152 |
+
|
2153 |
+
#: themes/foundation/root-functions.php:484
|
2154 |
+
msgid "Site Logo"
|
2155 |
+
msgstr ""
|
2156 |
+
|
2157 |
+
#: themes/foundation/root-functions.php:496
|
2158 |
+
msgid "Header"
|
2159 |
+
msgstr ""
|
2160 |
+
|
2161 |
+
#: themes/foundation/root-functions.php:508
|
2162 |
+
msgid "Footer"
|
2163 |
+
msgstr ""
|
2164 |
+
|
2165 |
+
#: themes/foundation/root-functions.php:514
|
2166 |
+
msgid "Custom footer content (HTML is allowed)"
|
2167 |
+
msgstr ""
|
2168 |
+
|
2169 |
+
#: themes/foundation/root-functions.php:529
|
2170 |
+
msgid "Custom CSS"
|
2171 |
+
msgstr ""
|
2172 |
+
|
2173 |
+
#: themes/foundation/root-functions.php:535
|
2174 |
+
msgid "Custom CSS Declarations"
|
2175 |
+
msgstr ""
|
2176 |
+
|
2177 |
+
#: themes/foundation/root-functions.php:886
|
2178 |
+
msgid "search results for '%s'"
|
2179 |
+
msgstr ""
|
2180 |
+
|
2181 |
+
#: themes/foundation/root-functions.php:888
|
2182 |
+
msgid "%sCategories ›%s %s"
|
2183 |
+
msgstr ""
|
2184 |
+
|
2185 |
+
#: themes/foundation/root-functions.php:890
|
2186 |
+
msgid "Tags › %s"
|
2187 |
+
msgstr ""
|
2188 |
+
|
2189 |
+
#: themes/foundation/root-functions.php:892
|
2190 |
+
#: themes/foundation/root-functions.php:894
|
2191 |
+
#: themes/foundation/root-functions.php:896
|
2192 |
+
msgid "Archives › %s"
|
2193 |
+
msgstr ""
|
2194 |
+
|
2195 |
+
#: themes/foundation/root-functions.php:911
|
2196 |
+
msgid "Load more from this category"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: themes/foundation/root-functions.php:913
|
2200 |
+
msgid "Load more tagged like this"
|
2201 |
+
msgstr ""
|
2202 |
+
|
2203 |
+
#: themes/foundation/root-functions.php:915
|
2204 |
+
msgid "Load more from this day"
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: themes/foundation/root-functions.php:917
|
2208 |
+
msgid "Load more from this month"
|
2209 |
+
msgstr ""
|
2210 |
+
|
2211 |
+
#: themes/foundation/root-functions.php:919
|
2212 |
+
msgid "Load more from this year"
|
2213 |
+
msgstr ""
|
2214 |
+
|
2215 |
+
#: themes/foundation/root-functions.php:921
|
2216 |
+
msgid "Load more in this section"
|
2217 |
+
msgstr ""
|
2218 |
+
|
2219 |
+
#: themes/foundation/root-functions.php:923
|
2220 |
+
msgid "Load more entries"
|
2221 |
+
msgstr ""
|
2222 |
+
|
2223 |
+
#: themes/foundation/root-functions.php:1170
|
2224 |
+
msgid "Post"
|
2225 |
+
msgstr ""
|
2226 |
+
|
2227 |
+
#: themes/foundation/root-functions.php:1172
|
2228 |
+
msgid "Page"
|
2229 |
+
msgstr ""
|
wptouch.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: WPtouch Mobile Plugin
|
4 |
Plugin URI: http://www.wptouch.com/
|
5 |
-
Version: 4.3.
|
6 |
Description: Make a beautiful mobile-friendly version of your website with just a few clicks
|
7 |
Author: BraveNewCode Inc.
|
8 |
Author URI: http://www.bravenewcode.com/
|
@@ -14,7 +14,7 @@
|
|
14 |
|
15 |
function wptouch_create_four_object() {
|
16 |
if ( !defined( 'WPTOUCH_IS_PRO' ) ) {
|
17 |
-
define( 'WPTOUCH_VERSION', '4.3.
|
18 |
|
19 |
define( 'WPTOUCH_BASE_NAME', basename( __FILE__, '.php' ) . '.php' );
|
20 |
define( 'WPTOUCH_DIR', WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . basename( __FILE__, '.php' ) );
|
2 |
/*
|
3 |
Plugin Name: WPtouch Mobile Plugin
|
4 |
Plugin URI: http://www.wptouch.com/
|
5 |
+
Version: 4.3.5
|
6 |
Description: Make a beautiful mobile-friendly version of your website with just a few clicks
|
7 |
Author: BraveNewCode Inc.
|
8 |
Author URI: http://www.bravenewcode.com/
|
14 |
|
15 |
function wptouch_create_four_object() {
|
16 |
if ( !defined( 'WPTOUCH_IS_PRO' ) ) {
|
17 |
+
define( 'WPTOUCH_VERSION', '4.3.5' );
|
18 |
|
19 |
define( 'WPTOUCH_BASE_NAME', basename( __FILE__, '.php' ) . '.php' );
|
20 |
define( 'WPTOUCH_DIR', WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . basename( __FILE__, '.php' ) );
|