Version Description
- Updated language template and de_DE files
- Fix: case where child stylesheet link was not being added resulting in "This child theme does not load a Configurator stylesheet" notice
- Fix: fatal error in debug mode
- Minor bug fixes
Download this release
Release Info
Developer | lilaeamedia |
Plugin | Child Theme Configurator |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0.0 to 2.0.1
- child-theme-configurator.php +3 -3
- includes/class-ctc-admin.php +27 -89
- includes/class-ctc-css.php +2 -2
- includes/class-ctc-ui.php +4 -4
- includes/class-ctc.php +1 -1
- includes/forms/parent-child.php +6 -7
- js/chldthmcfg.js +2 -2
- js/spectrum.js +1 -1
- lang/child-theme-configurator-de_DE.mo +0 -0
- lang/child-theme-configurator-de_DE.po +262 -134
- lang/child-theme-configurator.pot +184 -119
- readme.txt +10 -3
child-theme-configurator.php
CHANGED
@@ -5,14 +5,14 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
5 |
/*
|
6 |
Plugin Name: Child Theme Configurator
|
7 |
Plugin URI: http://www.childthemeconfigurator.com
|
8 |
-
Description: When the Customizer is not enough - Create child themes and customize styles, templates, functions and more.
|
9 |
-
Version: 2.0.
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com
|
12 |
Text Domain: chld_thm_cfg
|
13 |
Domain Path: /lang
|
14 |
License: GPLv2
|
15 |
-
Copyright (C) 2014-
|
16 |
*/
|
17 |
|
18 |
defined( 'CHLD_THM_CFG_DIR' ) or
|
5 |
/*
|
6 |
Plugin Name: Child Theme Configurator
|
7 |
Plugin URI: http://www.childthemeconfigurator.com
|
8 |
+
Description: When using the Customizer is not enough - Create child themes and customize styles, templates, functions and more.
|
9 |
+
Version: 2.0.1
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com
|
12 |
Text Domain: chld_thm_cfg
|
13 |
Domain Path: /lang
|
14 |
License: GPLv2
|
15 |
+
Copyright (C) 2014-2016 Lilaea Media
|
16 |
*/
|
17 |
|
18 |
defined( 'CHLD_THM_CFG_DIR' ) or
|
includes/class-ctc-admin.php
CHANGED
@@ -6,18 +6,17 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
6 |
Class: Child_Theme_Configurator
|
7 |
Plugin URI: http://www.childthemeconfigurator.com/
|
8 |
Description: Main Controller Class
|
9 |
-
Version: 2.0.
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com/
|
12 |
Text Domain: child-theme-configurator
|
13 |
Domain Path: /lang
|
14 |
License: GPLv2
|
15 |
-
Copyright (C) 2014-
|
16 |
*/
|
17 |
class ChildThemeConfiguratorAdmin {
|
18 |
|
19 |
// state
|
20 |
-
var $reset;
|
21 |
var $genesis;
|
22 |
var $reorder;
|
23 |
var $processdone;
|
@@ -96,9 +95,9 @@ class ChildThemeConfiguratorAdmin {
|
|
96 |
|
97 |
function __construct() {
|
98 |
$this->processdone = FALSE;
|
99 |
-
$this->reset = FALSE;
|
100 |
$this->genesis = FALSE;
|
101 |
$this->reorder = FALSE;
|
|
|
102 |
$this->encoding = WP_Http_Encoding::is_available();
|
103 |
$this->menuName = CHLD_THM_CFG_MENU; // backward compatability for plugins extension
|
104 |
$this->is_post = ( 'POST' == $_SERVER[ 'REQUEST_METHOD' ] );
|
@@ -114,6 +113,8 @@ class ChildThemeConfiguratorAdmin {
|
|
114 |
function ctc_page_init () {
|
115 |
// get all available themes
|
116 |
$this->get_themes();
|
|
|
|
|
117 |
// load config data and validate
|
118 |
$this->load_config();
|
119 |
// perform any checks prior to processing config data
|
@@ -233,6 +234,7 @@ class ChildThemeConfiguratorAdmin {
|
|
233 |
// by comparing owner of plugin to owner of child theme:
|
234 |
if ( fileowner( $this->css->get_child_target( '' ) ) != fileowner( CHLD_THM_CFG_DIR ) )
|
235 |
add_action( 'admin_notices', array( $this, 'owner_notice' ) );
|
|
|
236 |
endif;
|
237 |
}
|
238 |
|
@@ -508,6 +510,9 @@ class ChildThemeConfiguratorAdmin {
|
|
508 |
preg_replace( "/\s+/s", ' ', sanitize_text_field( $_POST[ 'ctc_' . $configfield ] ) );
|
509 |
$this->debug( 'Extracting var ' . $varname . ' from ctc_' . $configfield . ' value: ' . ${$varname} , __FUNCTION__ );
|
510 |
endforeach;
|
|
|
|
|
|
|
511 |
// legacy plugin extension needs parent/new values but this version disables the inputs
|
512 |
// so get we them from current css object
|
513 |
if ( !$this->is_theme( $configtype ) && $this->is_legacy() ):
|
@@ -562,7 +567,6 @@ class ChildThemeConfiguratorAdmin {
|
|
562 |
|
563 |
// load or reset config
|
564 |
if ( 'reset' == $type ):
|
565 |
-
$this->reset = TRUE;
|
566 |
$this->debug( 'resetting child theme', __FUNCTION__ );
|
567 |
$this->reset_child_theme();
|
568 |
$this->enqueue_parent_css( $this );
|
@@ -867,7 +871,8 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
867 |
$cssnotheme = $this->get( 'cssnotheme' );
|
868 |
$ignoreparnt= $this->get( 'ignoreparnt' );
|
869 |
$this->debug( 'deps: ' . print_r( $deps, TRUE ) . ' enq: ' . $enq . ' handling: ' . $handling
|
870 |
-
. ' hasstyles: ' . $hasstyles . ' parntloaded: ' . $parntloaded . ' childloaded: ' . $childloaded
|
|
|
871 |
// enqueue parent stylesheet
|
872 |
if ( 'enqueue' == $enq && $hasstyles && !$parntloaded && !$ignoreparnt ):
|
873 |
$code .= "
|
@@ -905,7 +910,9 @@ add_action( 'wp_head', 'chld_thm_cfg_add_parent_dep', 2 );
|
|
905 |
endforeach;
|
906 |
endif;
|
907 |
// if child not loaded, enqueue it and add it to dependencies
|
908 |
-
if ( ( $csswphead || $cssunreg || $cssnotheme )
|
|
|
|
|
909 |
$deps = array_merge( $deps, $this->get( 'child_deps' ) );
|
910 |
$enqueues[] = " wp_enqueue_style( 'chld_thm_cfg_child', trailingslashit( get_stylesheet_directory_uri() ) . 'style.css', array( " . implode( ',', $deps ) . " ) );";
|
911 |
// if loading child theme stylesheet, reset deps and add child stylesheet
|
@@ -940,7 +947,7 @@ defined( 'CHLD_THM_CFG_IGNORE_PARENT' ) or define( 'CHLD_THM_CFG_IGNORE_PARENT',
|
|
940 |
if ( $filename = $this->css->is_file_ok( $this->css->get_child_target( 'functions.php' ), 'write' ) ):
|
941 |
$this->insert_with_markers( $filename, $marker, $insertion, $getexternals );
|
942 |
/// FIXME - reset for Pro version
|
943 |
-
if ( !$getexternals && $this->
|
944 |
$marker = 'CTC ENQUEUE PLUGIN ACTION';
|
945 |
$this->insert_with_markers( $filename, $marker, array() );
|
946 |
endif;
|
@@ -1020,7 +1027,7 @@ defined( 'CHLD_THM_CFG_IGNORE_PARENT' ) or define( 'CHLD_THM_CFG_IGNORE_PARENT',
|
|
1020 |
endif;
|
1021 |
endif;
|
1022 |
if ( strpos( $markerline, '// END ' . $marker ) !== FALSE ):
|
1023 |
-
if (
|
1024 |
$newfile .= "// BEGIN {$marker}\n";
|
1025 |
if ( is_array( $insertion ) )
|
1026 |
foreach ( $insertion as $insertline )
|
@@ -1038,7 +1045,7 @@ defined( 'CHLD_THM_CFG_IGNORE_PARENT' ) or define( 'CHLD_THM_CFG_IGNORE_PARENT',
|
|
1038 |
if ( $foundit ):
|
1039 |
$this->debug( 'Found marker, replaced inline', __FUNCTION__ );
|
1040 |
else:
|
1041 |
-
if (
|
1042 |
// verify there is no PHP close tag at end of file
|
1043 |
if ( ! $phpopen ):
|
1044 |
$this->debug( 'PHP not open', __FUNCTION__ );
|
@@ -1597,26 +1604,7 @@ defined( 'CHLD_THM_CFG_IGNORE_PARENT' ) or define( 'CHLD_THM_CFG_IGNORE_PARENT',
|
|
1597 |
// otherwise use stylesheet value
|
1598 |
else return get_stylesheet();
|
1599 |
}
|
1600 |
-
|
1601 |
-
/* returns new or existing */
|
1602 |
-
function get_current_childtype() {
|
1603 |
-
return isset( $this->childtype ) ? $this->childtype : ( count( $this->themes[ 'child' ] ) ? 'existing' : 'new' );
|
1604 |
-
}
|
1605 |
-
|
1606 |
-
/* returns true if current parent different than saved parent or current child different than saved child */
|
1607 |
-
function is_new_theme() {
|
1608 |
-
return ( $this->get_current_child() != $this->get( 'child' ) || $this->get_current_parent() != $this->get( 'parnt' ) );
|
1609 |
-
}
|
1610 |
-
|
1611 |
-
/* debug backtrace with extraneous steps (missing class, function or line) removed */
|
1612 |
-
function backtrace_summary() {
|
1613 |
-
$bt = debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS );
|
1614 |
-
$thisstep = array_shift( $bt );
|
1615 |
-
foreach ( $bt as $ndx => $step )
|
1616 |
-
if ( isset( $step[ 'class' ] ) && isset( $step[ 'function' ] ) && isset( $step[ 'line' ] ) )
|
1617 |
-
echo $ndx . ': ' . $step[ 'class' ] . ' ' . $step[ 'function' ] . ' ' . $step[ 'line' ] . LF;
|
1618 |
-
}
|
1619 |
-
|
1620 |
function toggle_debug() {
|
1621 |
$debug = '';
|
1622 |
if ( $_POST[ 'ctc_is_debug' ] ):
|
@@ -1637,53 +1625,8 @@ defined( 'CHLD_THM_CFG_IGNORE_PARENT' ) or define( 'CHLD_THM_CFG_IGNORE_PARENT',
|
|
1637 |
$this->debug .= ( isset( $fn ) ? $fn . ': ' : '' ) . ( isset( $msg ) ? $msg . LF : '' );
|
1638 |
}
|
1639 |
|
1640 |
-
function set_benchmark( $step, $key, $label ) {
|
1641 |
-
$this->memory[ $key ][ $label ][ $step ][ 'memory' ] = memory_get_usage();
|
1642 |
-
$this->memory[ $key ][ $label ][ $step ][ 'peak' ] = memory_get_peak_usage();
|
1643 |
-
|
1644 |
-
$this->memory[ $key ][ $label ][ $step ][ 'selectors' ] = isset( $this->css ) ? $this->css->qskey : 0;
|
1645 |
-
}
|
1646 |
-
|
1647 |
-
/**
|
1648 |
-
* Future use
|
1649 |
-
*
|
1650 |
-
function calc_memory_usage() {
|
1651 |
-
//$this->debug( print_r( $this->memory, TRUE ), __FUNCTION__ );
|
1652 |
-
|
1653 |
-
$results = array();
|
1654 |
-
foreach ( $this->memory as $key => $labels ):
|
1655 |
-
if ( !is_array( $labels ) ) continue;
|
1656 |
-
foreach ( $labels as $label => $steps ):
|
1657 |
-
//if ( isset( $steps[ 'before' ] ) && isset( $steps[ 'after ' ] ) ):
|
1658 |
-
$results[] = $key . '|' . $label . '|'
|
1659 |
-
. ( $steps[ 'after' ][ 'memory' ] - $steps[ 'before' ][ 'memory' ] ) . '|'
|
1660 |
-
. ( $steps[ 'after' ][ 'peak' ] - $steps[ 'before' ][ 'peak' ] ) . '|'
|
1661 |
-
. ( $steps[ 'after' ][ 'peak' ] - $steps[ 'before' ][ 'memory' ] ) . '|'
|
1662 |
-
. $steps[ 'after' ][ 'selectors' ] . '|'
|
1663 |
-
. ( $steps[ 'after' ][ 'selectors' ] - $steps[ 'before' ][ 'selectors' ] );
|
1664 |
-
//endif;
|
1665 |
-
endforeach;
|
1666 |
-
endforeach;
|
1667 |
-
//$this->debug( "\n" . implode( "\n", $results ), __FUNCTION__ );
|
1668 |
-
}
|
1669 |
-
*/
|
1670 |
-
|
1671 |
-
/**
|
1672 |
-
* Future use
|
1673 |
-
*
|
1674 |
-
function get_free_memory() {
|
1675 |
-
|
1676 |
-
if ( function_exists( 'memory_get_peak_usage' ) ) {
|
1677 |
-
$used = memory_get_peak_usage();
|
1678 |
-
} else {
|
1679 |
-
$used = memory_get_usage();
|
1680 |
-
}
|
1681 |
-
if ( !$this->mem_limit ) $this->get_real_limit();
|
1682 |
-
return $this->mem_limit - $used;
|
1683 |
-
}
|
1684 |
-
*/
|
1685 |
function print_debug( $noecho = FALSE ) {
|
1686 |
-
$this->
|
1687 |
// save debug data for 1 hour
|
1688 |
set_site_transient( CHLD_THM_CFG_OPTIONS . '_debug', $this->debug, 3600 );
|
1689 |
$debug = '<textarea style="width:100%;height:200px">' . LF . $this->debug . LF . '</textarea>' . LF;
|
@@ -1943,7 +1886,7 @@ defined( 'CHLD_THM_CFG_IGNORE_PARENT' ) or define( 'CHLD_THM_CFG_IGNORE_PARENT',
|
|
1943 |
$handling = $this->get( 'handling' );
|
1944 |
if ( 'separate' == $handling )
|
1945 |
return 'ctc-style.css';
|
1946 |
-
elseif ( $this->
|
1947 |
return FALSE;
|
1948 |
else
|
1949 |
return 'style.css';
|
@@ -2069,16 +2012,11 @@ defined( 'CHLD_THM_CFG_IGNORE_PARENT' ) or define( 'CHLD_THM_CFG_IGNORE_PARENT',
|
|
2069 |
$this->genesis = TRUE;
|
2070 |
endif;
|
2071 |
}
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
$this->debug( 'Free memory: ' . $this->bytes_free . ' max selectors: ' . $this->sel_limit, __FUNCTION__ );
|
2080 |
-
//$this->set_benchmark( 'before', 'execute', 'program' );
|
2081 |
-
$divisor = 1024 * 1024;
|
2082 |
-
}
|
2083 |
-
*/
|
2084 |
}
|
6 |
Class: Child_Theme_Configurator
|
7 |
Plugin URI: http://www.childthemeconfigurator.com/
|
8 |
Description: Main Controller Class
|
9 |
+
Version: 2.0.1
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com/
|
12 |
Text Domain: child-theme-configurator
|
13 |
Domain Path: /lang
|
14 |
License: GPLv2
|
15 |
+
Copyright (C) 2014-2016 Lilaea Media
|
16 |
*/
|
17 |
class ChildThemeConfiguratorAdmin {
|
18 |
|
19 |
// state
|
|
|
20 |
var $genesis;
|
21 |
var $reorder;
|
22 |
var $processdone;
|
95 |
|
96 |
function __construct() {
|
97 |
$this->processdone = FALSE;
|
|
|
98 |
$this->genesis = FALSE;
|
99 |
$this->reorder = FALSE;
|
100 |
+
$this->is_new = FALSE;
|
101 |
$this->encoding = WP_Http_Encoding::is_available();
|
102 |
$this->menuName = CHLD_THM_CFG_MENU; // backward compatability for plugins extension
|
103 |
$this->is_post = ( 'POST' == $_SERVER[ 'REQUEST_METHOD' ] );
|
113 |
function ctc_page_init () {
|
114 |
// get all available themes
|
115 |
$this->get_themes();
|
116 |
+
$this->childtype = count( $this->themes[ 'child' ] ) ? 'existing' : 'new';
|
117 |
+
|
118 |
// load config data and validate
|
119 |
$this->load_config();
|
120 |
// perform any checks prior to processing config data
|
234 |
// by comparing owner of plugin to owner of child theme:
|
235 |
if ( fileowner( $this->css->get_child_target( '' ) ) != fileowner( CHLD_THM_CFG_DIR ) )
|
236 |
add_action( 'admin_notices', array( $this, 'owner_notice' ) );
|
237 |
+
//add_action( 'admin_footer', array( $this, 'dump_css_object' ) );
|
238 |
endif;
|
239 |
}
|
240 |
|
510 |
preg_replace( "/\s+/s", ' ', sanitize_text_field( $_POST[ 'ctc_' . $configfield ] ) );
|
511 |
$this->debug( 'Extracting var ' . $varname . ' from ctc_' . $configfield . ' value: ' . ${$varname} , __FUNCTION__ );
|
512 |
endforeach;
|
513 |
+
|
514 |
+
if ( isset( $type ) ) $this->childtype = $type;
|
515 |
+
|
516 |
// legacy plugin extension needs parent/new values but this version disables the inputs
|
517 |
// so get we them from current css object
|
518 |
if ( !$this->is_theme( $configtype ) && $this->is_legacy() ):
|
567 |
|
568 |
// load or reset config
|
569 |
if ( 'reset' == $type ):
|
|
|
570 |
$this->debug( 'resetting child theme', __FUNCTION__ );
|
571 |
$this->reset_child_theme();
|
572 |
$this->enqueue_parent_css( $this );
|
871 |
$cssnotheme = $this->get( 'cssnotheme' );
|
872 |
$ignoreparnt= $this->get( 'ignoreparnt' );
|
873 |
$this->debug( 'deps: ' . print_r( $deps, TRUE ) . ' enq: ' . $enq . ' handling: ' . $handling
|
874 |
+
. ' hasstyles: ' . $hasstyles . ' parntloaded: ' . $parntloaded . ' childloaded: ' . $childloaded
|
875 |
+
. ' ignoreparnt: ' . $ignoreparnt . ' childtype: ' . $this->childtype, __FUNCTION__ );
|
876 |
// enqueue parent stylesheet
|
877 |
if ( 'enqueue' == $enq && $hasstyles && !$parntloaded && !$ignoreparnt ):
|
878 |
$code .= "
|
910 |
endforeach;
|
911 |
endif;
|
912 |
// if child not loaded, enqueue it and add it to dependencies
|
913 |
+
if ( 'separate' != $handling && ( ( $csswphead || $cssunreg || $cssnotheme )
|
914 |
+
|| ( 'new' != $this->childtype && !$childloaded )
|
915 |
+
) ):
|
916 |
$deps = array_merge( $deps, $this->get( 'child_deps' ) );
|
917 |
$enqueues[] = " wp_enqueue_style( 'chld_thm_cfg_child', trailingslashit( get_stylesheet_directory_uri() ) . 'style.css', array( " . implode( ',', $deps ) . " ) );";
|
918 |
// if loading child theme stylesheet, reset deps and add child stylesheet
|
947 |
if ( $filename = $this->css->is_file_ok( $this->css->get_child_target( 'functions.php' ), 'write' ) ):
|
948 |
$this->insert_with_markers( $filename, $marker, $insertion, $getexternals );
|
949 |
/// FIXME - reset for Pro version
|
950 |
+
if ( !$getexternals && 'reset' == $this->childtype ):
|
951 |
$marker = 'CTC ENQUEUE PLUGIN ACTION';
|
952 |
$this->insert_with_markers( $filename, $marker, array() );
|
953 |
endif;
|
1027 |
endif;
|
1028 |
endif;
|
1029 |
if ( strpos( $markerline, '// END ' . $marker ) !== FALSE ):
|
1030 |
+
if ( 'reset' != $this->childtype ):
|
1031 |
$newfile .= "// BEGIN {$marker}\n";
|
1032 |
if ( is_array( $insertion ) )
|
1033 |
foreach ( $insertion as $insertline )
|
1045 |
if ( $foundit ):
|
1046 |
$this->debug( 'Found marker, replaced inline', __FUNCTION__ );
|
1047 |
else:
|
1048 |
+
if ( 'reset' != $this->childtype ):
|
1049 |
// verify there is no PHP close tag at end of file
|
1050 |
if ( ! $phpopen ):
|
1051 |
$this->debug( 'PHP not open', __FUNCTION__ );
|
1604 |
// otherwise use stylesheet value
|
1605 |
else return get_stylesheet();
|
1606 |
}
|
1607 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1608 |
function toggle_debug() {
|
1609 |
$debug = '';
|
1610 |
if ( $_POST[ 'ctc_is_debug' ] ):
|
1625 |
$this->debug .= ( isset( $fn ) ? $fn . ': ' : '' ) . ( isset( $msg ) ? $msg . LF : '' );
|
1626 |
}
|
1627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1628 |
function print_debug( $noecho = FALSE ) {
|
1629 |
+
$this->debug( '*** END OF REQUEST ***', __FUNCTION__ );
|
1630 |
// save debug data for 1 hour
|
1631 |
set_site_transient( CHLD_THM_CFG_OPTIONS . '_debug', $this->debug, 3600 );
|
1632 |
$debug = '<textarea style="width:100%;height:200px">' . LF . $this->debug . LF . '</textarea>' . LF;
|
1886 |
$handling = $this->get( 'handling' );
|
1887 |
if ( 'separate' == $handling )
|
1888 |
return 'ctc-style.css';
|
1889 |
+
elseif ( 'reset' == $this->childtype )
|
1890 |
return FALSE;
|
1891 |
else
|
1892 |
return 'style.css';
|
2012 |
$this->genesis = TRUE;
|
2013 |
endif;
|
2014 |
}
|
2015 |
+
|
2016 |
+
|
2017 |
+
function dump_css_object(){
|
2018 |
+
echo '<!-- CSS OBJECT:' . LF . LF;
|
2019 |
+
print_r( $this->css );;
|
2020 |
+
echo LF . LF . '-->' . LF;
|
2021 |
+
}
|
|
|
|
|
|
|
|
|
|
|
2022 |
}
|
includes/class-ctc-css.php
CHANGED
@@ -6,13 +6,13 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
6 |
Class: ChildThemeConfiguratorCSS
|
7 |
Plugin URI: http://www.childthemeconfigurator.com/
|
8 |
Description: Handles all CSS input, output, parsing, normalization and storage
|
9 |
-
Version: 2.0.
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com/
|
12 |
Text Domain: chld_thm_cfg
|
13 |
Domain Path: /lang
|
14 |
License: GPLv2
|
15 |
-
Copyright (C) 2014-
|
16 |
*/
|
17 |
class ChildThemeConfiguratorCSS {
|
18 |
|
6 |
Class: ChildThemeConfiguratorCSS
|
7 |
Plugin URI: http://www.childthemeconfigurator.com/
|
8 |
Description: Handles all CSS input, output, parsing, normalization and storage
|
9 |
+
Version: 2.0.1
|
10 |
Author: Lilaea Media
|
11 |
Author URI: http://www.lilaeamedia.com/
|
12 |
Text Domain: chld_thm_cfg
|
13 |
Domain Path: /lang
|
14 |
License: GPLv2
|
15 |
+
Copyright (C) 2014-2016 Lilaea Media
|
16 |
*/
|
17 |
class ChildThemeConfiguratorCSS {
|
18 |
|
includes/class-ctc-ui.php
CHANGED
@@ -5,13 +5,13 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
5 |
Class: Child_Theme_Configurator_UI
|
6 |
Plugin URI: http://www.childthemeconfigurator.com/
|
7 |
Description: Handles the plugin User Interface
|
8 |
-
Version: 2.0.
|
9 |
Author: Lilaea Media
|
10 |
Author URI: http://www.lilaeamedia.com/
|
11 |
Text Domain: chld_thm_cfg
|
12 |
Domain Path: /lang
|
13 |
License: GPLv2
|
14 |
-
Copyright (C) 2014-
|
15 |
*/
|
16 |
class ChildThemeConfiguratorUI {
|
17 |
|
@@ -245,7 +245,7 @@ class ChildThemeConfiguratorUI {
|
|
245 |
}
|
246 |
|
247 |
function enqueue_scripts() {
|
248 |
-
wp_enqueue_style( 'chld-thm-cfg-admin', CHLD_THM_CFG_URL . 'css/chldthmcfg.css', array(), '2.0.
|
249 |
|
250 |
// we need to use local jQuery UI Widget/Menu/Selectmenu 1.11.2 because selectmenu is not included in < 1.11.2
|
251 |
// this will be updated in a later release to use WP Core scripts when it is widely adopted
|
@@ -333,7 +333,7 @@ class ChildThemeConfiguratorUI {
|
|
333 |
'anlz23_txt' => __( 'This theme loads additional stylesheets after the <code>style.css</code> file:', 'child-theme-configurator' ),
|
334 |
'anlz24_txt' => __( '<p>Consider saving new custom styles to a "Separate stylesheet" (see step 5, below) so that you can customize these styles.</p>', 'child-theme-configurator' ),
|
335 |
'anlz25_txt' => __( "The parent theme's <code>style.css</code> file is being loaded automatically.", 'child-theme-configurator' ),
|
336 |
-
'anlz26_txt' => __( '<p>"Do not add any parent stylesheet handling"
|
337 |
'anlz27_txt' => __( "This theme does not require the parent theme's <code>style.css</code> file for its appearance.", 'child-theme-configurator' ),
|
338 |
'anlz28_txt' => __( "This Child Theme was configured with an earlier version.", 'child-theme-configurator' ),
|
339 |
'anlz29_txt' => __( '<p>The selected stylesheet handling method is no longer used. Please update the configuration using the "Repair header template" option (see step 6, "Additional handling options", below).</p>', 'child-theme-configurator' ),
|
5 |
Class: Child_Theme_Configurator_UI
|
6 |
Plugin URI: http://www.childthemeconfigurator.com/
|
7 |
Description: Handles the plugin User Interface
|
8 |
+
Version: 2.0.1
|
9 |
Author: Lilaea Media
|
10 |
Author URI: http://www.lilaeamedia.com/
|
11 |
Text Domain: chld_thm_cfg
|
12 |
Domain Path: /lang
|
13 |
License: GPLv2
|
14 |
+
Copyright (C) 2014-2016 Lilaea Media
|
15 |
*/
|
16 |
class ChildThemeConfiguratorUI {
|
17 |
|
245 |
}
|
246 |
|
247 |
function enqueue_scripts() {
|
248 |
+
wp_enqueue_style( 'chld-thm-cfg-admin', CHLD_THM_CFG_URL . 'css/chldthmcfg.css', array(), '2.0.1' );
|
249 |
|
250 |
// we need to use local jQuery UI Widget/Menu/Selectmenu 1.11.2 because selectmenu is not included in < 1.11.2
|
251 |
// this will be updated in a later release to use WP Core scripts when it is widely adopted
|
333 |
'anlz23_txt' => __( 'This theme loads additional stylesheets after the <code>style.css</code> file:', 'child-theme-configurator' ),
|
334 |
'anlz24_txt' => __( '<p>Consider saving new custom styles to a "Separate stylesheet" (see step 5, below) so that you can customize these styles.</p>', 'child-theme-configurator' ),
|
335 |
'anlz25_txt' => __( "The parent theme's <code>style.css</code> file is being loaded automatically.", 'child-theme-configurator' ),
|
336 |
+
'anlz26_txt' => __( '<p>The Configurator selected "Do not add any parent stylesheet handling" for the "Parent stylesheet handling" option (see step 6, below).</p>', 'child-theme-configurator' ),
|
337 |
'anlz27_txt' => __( "This theme does not require the parent theme's <code>style.css</code> file for its appearance.", 'child-theme-configurator' ),
|
338 |
'anlz28_txt' => __( "This Child Theme was configured with an earlier version.", 'child-theme-configurator' ),
|
339 |
'anlz29_txt' => __( '<p>The selected stylesheet handling method is no longer used. Please update the configuration using the "Repair header template" option (see step 6, "Additional handling options", below).</p>', 'child-theme-configurator' ),
|
includes/class-ctc.php
CHANGED
@@ -95,7 +95,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
95 |
define( 'LILAEAMEDIA_URL', "http://www.lilaeamedia.com" );
|
96 |
defined( 'CHLD_THM_CFG_DOCS_URL' ) or
|
97 |
define( 'CHLD_THM_CFG_DOCS_URL', "http://www.childthemeconfigurator.com" );
|
98 |
-
define( 'CHLD_THM_CFG_VERSION', '2.0.
|
99 |
define( 'CHLD_THM_CFG_PREV_VERSION', '1.7.9.1' );
|
100 |
define( 'CHLD_THM_CFG_MIN_WP_VERSION', '3.7' );
|
101 |
defined( 'CHLD_THM_CFG_BPSEL' ) or
|
95 |
define( 'LILAEAMEDIA_URL', "http://www.lilaeamedia.com" );
|
96 |
defined( 'CHLD_THM_CFG_DOCS_URL' ) or
|
97 |
define( 'CHLD_THM_CFG_DOCS_URL', "http://www.childthemeconfigurator.com" );
|
98 |
+
define( 'CHLD_THM_CFG_VERSION', '2.0.1' );
|
99 |
define( 'CHLD_THM_CFG_PREV_VERSION', '1.7.9.1' );
|
100 |
define( 'CHLD_THM_CFG_MIN_WP_VERSION', '3.7' );
|
101 |
defined( 'CHLD_THM_CFG_BPSEL' ) or
|
includes/forms/parent-child.php
CHANGED
@@ -6,7 +6,6 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
6 |
<div id="parent_child_options_panel" class="ctc-option-panel<?php echo 'parent_child_options' == $active_tab ? ' ctc-option-panel-active' : ''; ?>">
|
7 |
<form id="ctc_load_form" method="post" action="">
|
8 |
|
9 |
-
|
10 |
<?php if ( $this->ctc()->is_theme() ): ?>
|
11 |
|
12 |
<?php // theme inputs
|
@@ -24,7 +23,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
24 |
<div class="ctc-input-cell-wide">
|
25 |
<label>
|
26 |
<input class="ctc-radio ctc-themeonly" id="ctc_child_type_new" name="ctc_child_type" type="radio" value="new"
|
27 |
-
<?php
|
28 |
<strong>
|
29 |
<?php _e( 'CREATE a new Child Theme', 'child-theme-configurator' ); ?>
|
30 |
</strong>
|
@@ -38,7 +37,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
38 |
<div class="ctc-input-cell-wide" -->
|
39 |
<label>
|
40 |
<input class="ctc-radio ctc-themeonly" id="ctc_child_type_existing" name="ctc_child_type" type="radio" value="existing"
|
41 |
-
<?php
|
42 |
<strong>
|
43 |
<?php _e( 'CONFIGURE an existing Child Theme', 'child-theme-configurator' ); ?>
|
44 |
</strong>
|
@@ -126,10 +125,10 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
126 |
</div>
|
127 |
</div>
|
128 |
<?php
|
129 |
-
$handling = $this->ctc()->
|
130 |
-
$ignoreparnt = $this->ctc()->
|
131 |
-
$enqueue = $this->ctc()->
|
132 |
-
$this->ctc()->debug( 'handling: ' . $handling . ' ignore: ' . $ignoreparnt . ' enqueue: ' . $enqueue
|
133 |
?>
|
134 |
<div class="ctc-input-row clearfix ctc-themeonly-container<?php echo $disabledclass; ?>" id="input_row_stylesheet_handling_container">
|
135 |
<div class="ctc-input-cell clear" id="input_row_stylesheet_handling" title="<?php _e( 'Click to expand', 'child-theme-configurator' ); ?>"><span class="ctc-step ctc-step-number">5</span><strong class="shift">
|
6 |
<div id="parent_child_options_panel" class="ctc-option-panel<?php echo 'parent_child_options' == $active_tab ? ' ctc-option-panel-active' : ''; ?>">
|
7 |
<form id="ctc_load_form" method="post" action="">
|
8 |
|
|
|
9 |
<?php if ( $this->ctc()->is_theme() ): ?>
|
10 |
|
11 |
<?php // theme inputs
|
23 |
<div class="ctc-input-cell-wide">
|
24 |
<label>
|
25 |
<input class="ctc-radio ctc-themeonly" id="ctc_child_type_new" name="ctc_child_type" type="radio" value="new"
|
26 |
+
<?php echo ( 'new' == $this->ctc()->childtype ? 'checked' : '' ); ?> />
|
27 |
<strong>
|
28 |
<?php _e( 'CREATE a new Child Theme', 'child-theme-configurator' ); ?>
|
29 |
</strong>
|
37 |
<div class="ctc-input-cell-wide" -->
|
38 |
<label>
|
39 |
<input class="ctc-radio ctc-themeonly" id="ctc_child_type_existing" name="ctc_child_type" type="radio" value="existing"
|
40 |
+
<?php echo ( 'new' != $this->ctc()->childtype ? 'checked' : '' ); ?> />
|
41 |
<strong>
|
42 |
<?php _e( 'CONFIGURE an existing Child Theme', 'child-theme-configurator' ); ?>
|
43 |
</strong>
|
125 |
</div>
|
126 |
</div>
|
127 |
<?php
|
128 |
+
$handling = $this->ctc()->get( 'handling' );
|
129 |
+
$ignoreparnt = $this->ctc()->get( 'ignoreparnt' );
|
130 |
+
$enqueue = $this->ctc()->get( 'enqueue' );
|
131 |
+
$this->ctc()->debug( 'handling: ' . $handling . ' ignore: ' . $ignoreparnt . ' enqueue: ' . $enqueue, 'parent-child.php' );
|
132 |
?>
|
133 |
<div class="ctc-input-row clearfix ctc-themeonly-container<?php echo $disabledclass; ?>" id="input_row_stylesheet_handling_container">
|
134 |
<div class="ctc-input-cell clear" id="input_row_stylesheet_handling" title="<?php _e( 'Click to expand', 'child-theme-configurator' ); ?>"><span class="ctc-step ctc-step-number">5</span><strong class="shift">
|
js/chldthmcfg.js
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
* Script: chldthmcfg.js
|
3 |
* Plugin URI: http://www.childthemeconfigurator.com/
|
4 |
* Description: Handles jQuery, AJAX and other UI
|
5 |
-
* Version: 2.0.
|
6 |
* Author: Lilaea Media
|
7 |
* Author URI: http://www.lilaeamedia.com/
|
8 |
* License: GPLv2
|
9 |
-
* Copyright (C) 2014-
|
10 |
*/
|
11 |
|
12 |
// ** for muliple property values: **
|
2 |
* Script: chldthmcfg.js
|
3 |
* Plugin URI: http://www.childthemeconfigurator.com/
|
4 |
* Description: Handles jQuery, AJAX and other UI
|
5 |
+
* Version: 2.0.1
|
6 |
* Author: Lilaea Media
|
7 |
* Author URI: http://www.lilaeamedia.com/
|
8 |
* License: GPLv2
|
9 |
+
* Copyright (C) 2014-2016 Lilaea Media
|
10 |
*/
|
11 |
|
12 |
// ** for muliple property values: **
|
js/spectrum.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
// https://github.com/bgrins/spectrum
|
3 |
// Author: Brian Grinstead
|
4 |
// License: MIT
|
5 |
-
// Modifications for CTC (c)
|
6 |
|
7 |
(function (factory) {
|
8 |
"use strict";
|
2 |
// https://github.com/bgrins/spectrum
|
3 |
// Author: Brian Grinstead
|
4 |
// License: MIT
|
5 |
+
// Modifications for CTC (c) 2016 Lilaea Media LLC
|
6 |
|
7 |
(function (factory) {
|
8 |
"use strict";
|
lang/child-theme-configurator-de_DE.mo
CHANGED
Binary file
|
lang/child-theme-configurator-de_DE.po
CHANGED
@@ -4,46 +4,46 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Child Theme Configurator 2.0.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/child-theme-configurator\n"
|
7 |
-
"POT-Creation-Date: 2016-03-
|
|
|
|
|
|
|
|
|
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-03-25 11:34+0100\n"
|
12 |
-
"Language-Team: \n"
|
13 |
"X-Generator: Poedit 1.8.6\n"
|
14 |
-
"Last-Translator: \n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"Language: de_DE\n"
|
17 |
|
18 |
-
#: includes/class-ctc-admin.php:
|
19 |
msgid "Zip file creation failed."
|
20 |
msgstr "ZIP-Dateierstellung fehlgeschlagen."
|
21 |
|
22 |
-
#: includes/class-ctc-admin.php:
|
23 |
msgid "The Functions file is required and cannot be deleted."
|
24 |
msgstr "Die Funktionendatei wird benötigt und kann nicht gelöscht werden."
|
25 |
|
26 |
-
#: includes/class-ctc-admin.php:
|
27 |
msgid "You do not have permission to configure child themes."
|
28 |
msgstr "Sie haben keine Berechtigung, Kindthemen zu konfigurieren."
|
29 |
|
30 |
-
#: includes/class-ctc-admin.php:
|
31 |
msgid "%s does not exist. Please select a valid Parent Theme."
|
32 |
msgstr "%s existiert nicht. Bitte wählen Sie ein gültiges Elternthema."
|
33 |
|
34 |
-
#: includes/class-ctc-admin.php:
|
35 |
msgid "Please select a valid Parent Theme."
|
36 |
msgstr "Bitte wählen Sie ein gültiges Elternthema."
|
37 |
|
38 |
-
#: includes/class-ctc-admin.php:
|
39 |
msgid "Please select a valid Child Theme."
|
40 |
msgstr "Bitte wählen Sie ein gültiges Kindthema."
|
41 |
|
42 |
-
#: includes/class-ctc-admin.php:
|
43 |
msgid "Please enter a valid Child Theme directory name."
|
44 |
msgstr "Bitte geben Sie ein gültiges Kindthema-Verzeichnis ein."
|
45 |
|
46 |
-
#: includes/class-ctc-admin.php:
|
47 |
msgid ""
|
48 |
"<strong>%s</strong> exists. Please enter a different Child Theme template "
|
49 |
"name."
|
@@ -51,39 +51,39 @@ msgstr ""
|
|
51 |
"<strong>%s</strong> existiert. Bitte geben Sie einen anderen Kindthema-"
|
52 |
"Vorlagennamen ein."
|
53 |
|
54 |
-
#: includes/class-ctc-admin.php:
|
55 |
msgid "Your theme directories are not writable."
|
56 |
msgstr "Ihr Themenverzeichnis ist schreibgeschützt."
|
57 |
|
58 |
-
#: includes/class-ctc-admin.php:
|
|
|
|
|
|
|
|
|
59 |
msgid "Your stylesheet is not writable."
|
60 |
msgstr "Ihre Formatvorlage ist schreibgeschützt."
|
61 |
|
62 |
-
#: includes/class-ctc-admin.php:
|
63 |
msgid "Could not set write permissions."
|
64 |
msgstr "Konnte Schreibberechtigungen nicht setzen."
|
65 |
|
66 |
-
#: includes/class-ctc-admin.php:
|
67 |
msgid "There were errors while resetting permissions."
|
68 |
msgstr "Beim Zurücksetzen der Berechtigungen traten Fehler auf."
|
69 |
|
70 |
-
#: includes/class-ctc-admin.php:
|
71 |
msgid "Could not upload file."
|
72 |
msgstr "Konnte Datei nicht hochladen."
|
73 |
|
74 |
-
#: includes/class-ctc-
|
75 |
-
msgid "Could not copy file"
|
76 |
-
msgstr "Konnte Datei nicht kopieren"
|
77 |
-
|
78 |
-
#: includes/class-ctc-ui.php:33
|
79 |
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
80 |
msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
81 |
|
82 |
-
#: includes/class-ctc-ui.php:
|
83 |
msgid "Child Theme files modified successfully."
|
84 |
msgstr "Kindthema-Dateien erfolgreich geändert."
|
85 |
|
86 |
-
#: includes/class-ctc-ui.php:
|
87 |
msgid ""
|
88 |
"Child Theme <strong>%s</strong> has been reset. Please configure it using "
|
89 |
"the settings below."
|
@@ -91,67 +91,67 @@ msgstr ""
|
|
91 |
"Kindthema <strong>%s</strong> zurückgesetzt. Bitte mit den Einstellungen "
|
92 |
"unten konfigurieren."
|
93 |
|
94 |
-
#: includes/class-ctc-ui.php:
|
95 |
msgid "Child Theme <strong>%s</strong> has been generated successfully."
|
96 |
msgstr "Kindthema <strong>%s</strong> wurde erfolgreich erstellt."
|
97 |
|
98 |
-
#: includes/class-ctc-ui.php:
|
99 |
msgid "IMPORTANT:"
|
100 |
msgstr "WICHTIG:"
|
101 |
|
102 |
-
#: includes/class-ctc-ui.php:
|
103 |
msgid "Go to Themes"
|
104 |
msgstr "Gehe zu Themen"
|
105 |
|
106 |
-
#: includes/class-ctc-ui.php:
|
107 |
msgid "Network enable"
|
108 |
msgstr "Netzwerkfähig machen"
|
109 |
|
110 |
-
#: includes/class-ctc-ui.php:
|
111 |
msgid "your child theme."
|
112 |
msgstr "Ihr Kindthema"
|
113 |
|
114 |
-
#: includes/class-ctc-ui.php:
|
115 |
msgid "Live Preview"
|
116 |
msgstr "Live-Vorschau"
|
117 |
|
118 |
-
#: includes/class-ctc-ui.php:
|
119 |
msgid "Preview your child theme"
|
120 |
msgstr "Vorschau Ihres Kindthemas"
|
121 |
|
122 |
-
#: includes/class-ctc-ui.php:
|
123 |
msgid "before activating."
|
124 |
msgstr "vor der Aktivierung."
|
125 |
|
126 |
-
#: includes/class-ctc-ui.php:
|
127 |
msgid "URL/None"
|
128 |
msgstr "URL/Keine"
|
129 |
|
130 |
-
#: includes/class-ctc-ui.php:
|
131 |
msgid "Origin"
|
132 |
msgstr "Quelle"
|
133 |
|
134 |
-
#: includes/class-ctc-ui.php:
|
135 |
msgid "Color 1"
|
136 |
msgstr "Farbe 1"
|
137 |
|
138 |
-
#: includes/class-ctc-ui.php:
|
139 |
msgid "Color 2"
|
140 |
msgstr "Farbe 2"
|
141 |
|
142 |
-
#: includes/class-ctc-ui.php:
|
143 |
msgid "Width/None"
|
144 |
msgstr "Breite/Keine"
|
145 |
|
146 |
-
#: includes/class-ctc-ui.php:
|
147 |
msgid "Style"
|
148 |
msgstr "Stil"
|
149 |
|
150 |
-
#: includes/class-ctc-ui.php:
|
151 |
msgid "Color"
|
152 |
msgstr "Farbe"
|
153 |
|
154 |
-
#: includes/class-ctc-ui.php:
|
155 |
msgid ""
|
156 |
"Are you sure you wish to RESET? This will destroy any work you have done in "
|
157 |
"the Configurator."
|
@@ -159,98 +159,98 @@ msgstr ""
|
|
159 |
"Möchten Sie wirklich zurücksetzen? Dies wird jegliche Arbeit im Konfigurator "
|
160 |
"überschreiben."
|
161 |
|
162 |
-
#: includes/class-ctc-ui.php:
|
163 |
msgid "<span style=\"font-size:10px\">!</span>"
|
164 |
msgstr "<span style=\"font-size:10px\">!</span>"
|
165 |
|
166 |
-
#: includes/class-ctc-ui.php:
|
167 |
msgid "Selectors"
|
168 |
msgstr "Selektoren"
|
169 |
|
170 |
-
#: includes/class-ctc-ui.php:
|
171 |
msgid "Close"
|
172 |
msgstr "Schließen"
|
173 |
|
174 |
-
#: includes/class-ctc-ui.php:
|
175 |
msgid "Edit Selector"
|
176 |
msgstr "Selektor wählen"
|
177 |
|
178 |
-
#: includes/class-ctc-ui.php:
|
179 |
msgid "Cancel"
|
180 |
msgstr "Abbrechen"
|
181 |
|
182 |
-
#: includes/class-ctc-ui.php:
|
183 |
msgid "Rename"
|
184 |
msgstr "Umbennen"
|
185 |
|
186 |
-
#: includes/class-ctc-ui.php:
|
187 |
msgid "The stylesheet cannot be displayed."
|
188 |
msgstr "Die Formatvorlage kann nicht angezeigt werden."
|
189 |
|
190 |
-
#: includes/class-ctc-ui.php:
|
191 |
msgid "(Child Only)"
|
192 |
msgstr "(Nur Kind)"
|
193 |
|
194 |
-
#: includes/class-ctc-ui.php:
|
195 |
msgid "Please enter a valid Child Theme."
|
196 |
msgstr "Bitte gültiges Kindthema eingeben."
|
197 |
|
198 |
-
#: includes/class-ctc-ui.php:
|
199 |
msgid "Please enter a valid Child Theme name."
|
200 |
msgstr "Bitte gültigen Kindthema-Namen eingeben."
|
201 |
|
202 |
-
#: includes/class-ctc-ui.php:
|
203 |
msgid "<strong>%s</strong> exists. Please enter a different Child Theme"
|
204 |
msgstr "<strong>%s</strong> existiert. Bitte anderen Kindthema-Namen eingeben"
|
205 |
|
206 |
-
#: includes/class-ctc-ui.php:
|
207 |
msgid "The page could not be loaded correctly."
|
208 |
msgstr "Die Seite konnte nicht korrekt geladen werden."
|
209 |
|
210 |
-
#: includes/class-ctc-ui.php:
|
211 |
msgid ""
|
212 |
"Conflicting or out-of-date jQuery libraries were loaded by another plugin:"
|
213 |
msgstr ""
|
214 |
"jQuery-Bibliotheken-Konflikt oder veraltete wurden von anderem Plugin "
|
215 |
"geladen."
|
216 |
|
217 |
-
#: includes/class-ctc-ui.php:
|
218 |
msgid "Deactivating or replacing plugins may resolve this issue."
|
219 |
msgstr "Deaktivieren oder Ersetzen von Plugins könnte das Problem lösen."
|
220 |
|
221 |
-
#: includes/class-ctc-ui.php:
|
222 |
msgid "%sWhy am I seeing this?%s"
|
223 |
msgstr "%sWieso sehe ich das?%s"
|
224 |
|
225 |
-
#: includes/class-ctc-ui.php:
|
226 |
msgid "No Styles Available. Check Parent/Child settings."
|
227 |
msgstr "Keine Stile verfügbar. Prüfen Sie Eltern/Kind-Einstellungen."
|
228 |
|
229 |
-
#: includes/class-ctc-ui.php:
|
230 |
msgid "Updating"
|
231 |
msgstr "Aktualisiere"
|
232 |
|
233 |
-
#: includes/class-ctc-ui.php:
|
234 |
msgid "Checking"
|
235 |
msgstr "Prüfe"
|
236 |
|
237 |
-
#: includes/class-ctc-ui.php:
|
238 |
msgid "The theme \"%s\" generated unexpected PHP debug output."
|
239 |
msgstr "Das Thema \"%s\" erzeugte unerwartete PHP-Debug-Ausgabe."
|
240 |
|
241 |
-
#: includes/class-ctc-ui.php:
|
242 |
msgid "The theme \"%s\" could not be loaded."
|
243 |
msgstr "Das Thema \"%s\" konnte nicht geladen werden."
|
244 |
|
245 |
-
#: includes/class-ctc-ui.php:
|
246 |
msgid "<p>Please verify the theme has been installed correctly.</p>"
|
247 |
msgstr "<p>Bitte prüfen Sie, ob das Thema korrekt installiert wurde.</p>"
|
248 |
|
249 |
-
#: includes/class-ctc-ui.php:
|
250 |
msgid "Show Debug Output"
|
251 |
msgstr "Zeige Debug-Ausgabe"
|
252 |
|
253 |
-
#: includes/class-ctc-ui.php:
|
254 |
msgid ""
|
255 |
"<p>You may not be able to use this Theme as a Child Theme while these "
|
256 |
"conditions exist.</p><p>It is possible that this theme has specific "
|
@@ -266,15 +266,15 @@ msgstr ""
|
|
266 |
"Themas zu benutzen. Falls ja, kontaktieren Sie den Themenautor und melden "
|
267 |
"Sie den obigen Fehler.</p>"
|
268 |
|
269 |
-
#: includes/class-ctc-ui.php:
|
270 |
msgid "Do Not Activate \"%s\"! A PHP FATAL ERROR has been detected."
|
271 |
msgstr "Aktivieren Sie nicht \"%s\"! Ein PHP FATAL ERROR wurde entdeckt."
|
272 |
|
273 |
-
#: includes/class-ctc-ui.php:
|
274 |
msgid "This theme loads stylesheets after the wp_styles queue."
|
275 |
msgstr "Dieses Thema lädt Formatvorlagen nach der wp_styles Warteschlange."
|
276 |
|
277 |
-
#: includes/class-ctc-ui.php:
|
278 |
msgid ""
|
279 |
"<p>This makes it difficult for plugins to override these styles. You can try "
|
280 |
"to resolve this using the \"Repair header template\" option (Step 6, "
|
@@ -284,7 +284,7 @@ msgstr ""
|
|
284 |
"können dies eventuell mit der \"Reparieren Header-Vorlage\"-Option beheben "
|
285 |
"(Schritt 6, \"Zusätzliche Behandlungsoptionen\", unten)</p>"
|
286 |
|
287 |
-
#: includes/class-ctc-ui.php:
|
288 |
msgid ""
|
289 |
"This theme loads the parent theme's <code>style.css</code> file outside the "
|
290 |
"wp_styles queue."
|
@@ -292,7 +292,7 @@ msgstr ""
|
|
292 |
"Dieses Thema lädt die Elternthema <code>style.css</code>-Datei außerhalb der "
|
293 |
"wp_styles-Warteschlange."
|
294 |
|
295 |
-
#: includes/class-ctc-ui.php:
|
296 |
msgid ""
|
297 |
"<p>This is common with older themes but requires the use of <code>@import</"
|
298 |
"code>, which is no longer recommended. You can try to resolve this using the "
|
@@ -304,11 +304,11 @@ msgstr ""
|
|
304 |
"der \"Reparieren Header-Vorlage\"-Option beheben (Schritt 6, \"Zusätzliche "
|
305 |
"Behandlungsoptionen\", unten)</p>"
|
306 |
|
307 |
-
#: includes/class-ctc-ui.php:
|
308 |
msgid "This child theme does not load a Configurator stylesheet."
|
309 |
msgstr "Dieses Kindthema lädt keine Konfigurator-Formatvorlage."
|
310 |
|
311 |
-
#: includes/class-ctc-ui.php:
|
312 |
msgid ""
|
313 |
"<p>If you want to customize styles using this plugin, please click "
|
314 |
"\"Configure Child Theme\" again to add this to the settings.</p>"
|
@@ -317,7 +317,7 @@ msgstr ""
|
|
317 |
"erneut \"Kindthema konfigurieren\", um dies zu den Einstellungen "
|
318 |
"hinzuzufügen.</p>"
|
319 |
|
320 |
-
#: includes/class-ctc-ui.php:
|
321 |
msgid ""
|
322 |
"This child theme uses the parent stylesheet but does not load the parent "
|
323 |
"theme's <code>style.css</code> file."
|
@@ -325,7 +325,7 @@ msgstr ""
|
|
325 |
"Dieses Kindthema benutzt die Eltern-Formatvorlage, aber lädt nicht die "
|
326 |
"Elternthema <code>style.css</code>-Datei."
|
327 |
|
328 |
-
#: includes/class-ctc-ui.php:
|
329 |
msgid ""
|
330 |
"<p>Please select a stylesheet handling method or check \"Ignore parent theme "
|
331 |
"stylesheets\" (see step 6, below).</p>"
|
@@ -333,19 +333,19 @@ msgstr ""
|
|
333 |
"<p>Bitte wählen Sie eine Formatvorlage-Behandlungsmethode oder kreuzen Sie "
|
334 |
"\"Elternthema-Formatvorlagen ignorieren\" an (siehe Schritt 6 unten).</p>"
|
335 |
|
336 |
-
#: includes/class-ctc-ui.php:
|
337 |
msgid "This child theme appears to be functioning correctly."
|
338 |
msgstr "Dieses Kindthema scheint korrekt zu funktionieren."
|
339 |
|
340 |
-
#: includes/class-ctc-ui.php:
|
341 |
msgid "This theme appears OK to use as a Child theme."
|
342 |
msgstr "Dieses Thema scheint als Kindthema OK zu sein."
|
343 |
|
344 |
-
#: includes/class-ctc-ui.php:
|
345 |
msgid "This Child Theme has not been configured for this plugin."
|
346 |
msgstr "Dieses Kindthema wurde für dieses Plugin nicht konfiguriert."
|
347 |
|
348 |
-
#: includes/class-ctc-ui.php:
|
349 |
msgid ""
|
350 |
"<p>The Configurator makes significant modifications to the child theme, "
|
351 |
"including stylesheet changes and additional php functions. Please consider "
|
@@ -357,7 +357,7 @@ msgstr ""
|
|
357 |
"die DUPLIZIEREN-Option für Kindthemen in Betracht (siehe Schritt 1 oben), um "
|
358 |
"das Original als Backup zu behalten.</p>"
|
359 |
|
360 |
-
#: includes/class-ctc-ui.php:
|
361 |
msgid ""
|
362 |
"This child theme uses <code>@import</code> to load the parent theme's "
|
363 |
"<code>style.css</code> file."
|
@@ -365,7 +365,7 @@ msgstr ""
|
|
365 |
"Dieses Thema benutzt das Elternthema <code>@import</code>, um die Eltern "
|
366 |
"<code>style.css</code>-Datei zu laden."
|
367 |
|
368 |
-
#: includes/class-ctc-ui.php:
|
369 |
msgid ""
|
370 |
"<p>Please consider selecting \"Use the WordPress style queue\" for the "
|
371 |
"parent stylesheet handling option (see step 6, below).</p>"
|
@@ -374,7 +374,7 @@ msgstr ""
|
|
374 |
"Warteschlange\" in Betracht für die Formatvorlage-Behandlung (siehe Schritt "
|
375 |
"6 unten)</p>"
|
376 |
|
377 |
-
#: includes/class-ctc-ui.php:
|
378 |
msgid ""
|
379 |
"This theme loads additional stylesheets after the <code>style.css</code> "
|
380 |
"file:"
|
@@ -382,7 +382,7 @@ msgstr ""
|
|
382 |
"Dieses Thema lädt zusätzliche Formatvorlagen nach der <code>style.css</code>-"
|
383 |
"Datei."
|
384 |
|
385 |
-
#: includes/class-ctc-ui.php:
|
386 |
msgid ""
|
387 |
"<p>Consider saving new custom styles to a \"Separate stylesheet\" (see step "
|
388 |
"5, below) so that you can customize these styles.</p>"
|
@@ -390,21 +390,23 @@ msgstr ""
|
|
390 |
"<p>Ziehen Sie in Betracht, neue Stile in eine separate Formatvorlage zu "
|
391 |
"sichern (siehe Schritt 5 unten), so dass Sie die Stile anpassen können.</p>"
|
392 |
|
393 |
-
#: includes/class-ctc-ui.php:
|
394 |
msgid ""
|
395 |
"The parent theme's <code>style.css</code> file is being loaded automatically."
|
396 |
msgstr ""
|
397 |
"Die Elternthema-Datei <code>style.css</code> wird automatisch geladen."
|
398 |
|
399 |
-
#: includes/class-ctc-ui.php:
|
400 |
msgid ""
|
401 |
-
"<p
|
402 |
-
"\"Parent stylesheet handling\" (see step 6, below)
|
|
|
403 |
msgstr ""
|
404 |
-
"<p
|
405 |
-
"\"
|
|
|
406 |
|
407 |
-
#: includes/class-ctc-ui.php:
|
408 |
msgid ""
|
409 |
"This theme does not require the parent theme's <code>style.css</code> file "
|
410 |
"for its appearance."
|
@@ -412,11 +414,11 @@ msgstr ""
|
|
412 |
"Dieses Thema benötigt die <code>style.css</code>-Datei des Elternthemas "
|
413 |
"nicht für die Anzeige."
|
414 |
|
415 |
-
#: includes/class-ctc-ui.php:
|
416 |
msgid "This Child Theme was configured with an earlier version."
|
417 |
msgstr "Dieses Kindthema wurde mit einer früheren Version konfiguriert."
|
418 |
|
419 |
-
#: includes/class-ctc-ui.php:
|
420 |
msgid ""
|
421 |
"<p>The selected stylesheet handling method is no longer used. Please update "
|
422 |
"the configuration using the \"Repair header template\" option (see step 6, "
|
@@ -426,11 +428,29 @@ msgstr ""
|
|
426 |
"Bitte aktualisieren Sie die Konfiguration mit der \"Reparieren Header-Vorlage"
|
427 |
"\"-Option (siehe Schritt 6 unten, \"Zusätzliche Behandlungsoptionen\").</p>"
|
428 |
|
429 |
-
#: includes/class-ctc-ui.php:
|
430 |
msgid "Show Analysis Object"
|
431 |
msgstr "Zeige Analyse von Objekt"
|
432 |
|
433 |
-
#: includes/class-ctc-ui.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
msgid ""
|
435 |
"The child theme is in read-only mode and Child Theme Configurator cannot "
|
436 |
"apply changes. Click to see options"
|
@@ -438,7 +458,7 @@ msgstr ""
|
|
438 |
"Dieses Kindthema ist im Nur-Lese-Modus und der Kindthemen-Konfigurator kann "
|
439 |
"die Änderungen nicht anwenden. Klicken Sie für Optionen"
|
440 |
|
441 |
-
#: includes/class-ctc-ui.php:
|
442 |
msgid ""
|
443 |
"<li>Temporarily set write permissions by clicking the button below. When you "
|
444 |
"are finished editing, revert to read-only by clicking \"Make read-only\" "
|
@@ -448,11 +468,11 @@ msgstr ""
|
|
448 |
"Schaltfläche). Wenn Sie mit der Bearbeitung fertig sind, können Sie \"Nur "
|
449 |
"lesbar\" klicken (Dateien-Tab), um zum alten Zustand zurück zu kehren.</li>"
|
450 |
|
451 |
-
#: includes/class-ctc-ui.php:
|
452 |
msgid "Make files writable"
|
453 |
msgstr "Dateien beschreibbar machen"
|
454 |
|
455 |
-
#: includes/class-ctc-ui.php:
|
456 |
msgid ""
|
457 |
"<li><a target=\"_blank\" href=\"http://codex.wordpress.org/Editing_wp-"
|
458 |
"config.php#WordPress_Upgrade_Constants\" title=\"Editin wp-config.php\">Add "
|
@@ -462,7 +482,7 @@ msgstr ""
|
|
462 |
"config.php#WordPress_Upgrade_Constants\" title=\"Editin wp-config.php\">Add "
|
463 |
"your FTP/SSH credentials to the WordPress config file</a>.</li>"
|
464 |
|
465 |
-
#: includes/class-ctc-ui.php:
|
466 |
msgid ""
|
467 |
"<li><a target=\"_blank\" href=\"http://technet.microsoft.com/en-us/library/"
|
468 |
"cc771170\" title=\"Setting Application Pool Identity\">Assign WordPress to "
|
@@ -474,7 +494,7 @@ msgstr ""
|
|
474 |
"an application pool that has write permissions</a> (Windows IIS systems).</"
|
475 |
"li>"
|
476 |
|
477 |
-
#: includes/class-ctc-ui.php:
|
478 |
msgid ""
|
479 |
"<li><a target=\"_blank\" href=\"http://codex.wordpress.org/"
|
480 |
"Changing_File_Permissions\" title=\"Changing File Permissions\">Set write "
|
@@ -484,13 +504,13 @@ msgstr ""
|
|
484 |
"Changing_File_Permissions\" title=\"Changing File Permissions\">Set write "
|
485 |
"permissions on the server manually</a> (not recommended).</li>"
|
486 |
|
487 |
-
#: includes/class-ctc-ui.php:
|
488 |
msgid "<li>Run PHP under Apache with suEXEC (contact your web host).</li>"
|
489 |
msgstr ""
|
490 |
"<li>PHP unter Apache mit suEXEC laufen lassen (kontaktieren Sie Ihren "
|
491 |
"Provider).</li>"
|
492 |
|
493 |
-
#: includes/class-ctc-ui.php:
|
494 |
msgid ""
|
495 |
"This Child Theme is not owned by your website account. It may have been "
|
496 |
"created by a prior version of this plugin or by another program. Moving "
|
@@ -504,7 +524,7 @@ msgstr ""
|
|
504 |
"Kindthema-Konfigurator wird versuchen, dies zu korrigieren, wenn Sie die "
|
505 |
"Schaltfläche unten klicken."
|
506 |
|
507 |
-
#: includes/class-ctc-ui.php:
|
508 |
msgid ""
|
509 |
"Child Theme Configurator needs to update its internal data. Please set your "
|
510 |
"preferences below and click \"Generate Child Theme Files\" to update your "
|
@@ -514,7 +534,7 @@ msgstr ""
|
|
514 |
"Sie Ihre Voreinstellungen unten und klicken Sie auf \"Erzeuge Kindthemen-"
|
515 |
"Dateien\", um die Konfiguration zu aktualisieren."
|
516 |
|
517 |
-
#: includes/class-ctc-ui.php:
|
518 |
msgid ""
|
519 |
"<strong>However, some styles could not be parsed due to memory limits.</"
|
520 |
"strong> Try deselecting \"Additional Stylesheets\" below and click "
|
@@ -525,28 +545,80 @@ msgstr ""
|
|
525 |
"Formatvorlagen\" unten und klicken Sie auf \"Erzeugen/Neuaufbau Kindthemen-"
|
526 |
"Dateien\". %sWieso sehe ich das?%s"
|
527 |
|
528 |
-
#: includes/class-ctc-ui.php:
|
529 |
msgid ""
|
530 |
"Child Theme Configurator did not detect any configuration data because a "
|
531 |
-
"previously configured Child Theme has been removed. Please
|
532 |
-
"
|
533 |
msgstr ""
|
534 |
-
"Der Kindthema-Konfigurator
|
535 |
-
"
|
536 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
|
538 |
#. Plugin Name of the plugin/theme
|
539 |
-
#: includes/class-ctc.php:
|
540 |
-
#: includes/forms/main.php:
|
541 |
msgid "Child Theme Configurator"
|
542 |
msgstr "Kindthema-Konfigurator"
|
543 |
|
544 |
-
#: includes/class-ctc.php:
|
545 |
-
#: includes/class-ctc.php:
|
546 |
msgid "Child Themes"
|
547 |
msgstr "Kindthemen"
|
548 |
|
549 |
-
#: includes/class-ctc.php:
|
550 |
msgid "Child Theme Configurator requires WordPress version %s or later."
|
551 |
msgstr "Kindthema-Konfigurator benötigt WordPress-Version %s oder neuer."
|
552 |
|
@@ -620,7 +692,7 @@ msgstr ""
|
|
620 |
"Menüoptionen ausbrechen und gibt Ihnen komplette Kontrolle über die "
|
621 |
"Benutzererfahrung."
|
622 |
|
623 |
-
#: includes/forms/addl_panels.php:19
|
624 |
msgid "Learn more about CTC Pro"
|
625 |
msgstr "Mehr über CTC Pro erfahren"
|
626 |
|
@@ -851,19 +923,15 @@ msgstr ""
|
|
851 |
"Der Themen-Screenshot sollte das Format 4:3 haben (bspw. 880px x 660px) JPG, "
|
852 |
"PNG oder GIF. Es wird umbenannt zu <code>screenshot</code>."
|
853 |
|
854 |
-
#: includes/forms/files.php:
|
855 |
msgid "Export Child Theme as Zip Archive"
|
856 |
msgstr "Kindthema als ZIP-Archiv exportieren"
|
857 |
|
858 |
-
#: includes/forms/files.php:
|
859 |
-
msgid "Export"
|
860 |
-
msgstr "Exportieren"
|
861 |
-
|
862 |
-
#: includes/forms/files.php:73
|
863 |
msgid "Secure Child Theme"
|
864 |
msgstr "Kindthema absichern"
|
865 |
|
866 |
-
#: includes/forms/files.php:
|
867 |
msgid ""
|
868 |
"Attempt to reset child theme permissions to user ownership and read-only "
|
869 |
"access."
|
@@ -871,7 +939,7 @@ msgstr ""
|
|
871 |
"Versuche, die Kindthema-Berechtigungen zurückzusetzen (auf Nur-Lese-Zugriff "
|
872 |
"und Benutzerbesitz)."
|
873 |
|
874 |
-
#: includes/forms/files.php:
|
875 |
msgid "Make read-only"
|
876 |
msgstr "Nur-Lesbar machen"
|
877 |
|
@@ -883,11 +951,15 @@ msgstr "Kindthemen-Bilder"
|
|
883 |
msgid "Delete child theme images by selecting them here."
|
884 |
msgstr "Auswahl der Kindthemen-Bilder zum Löschen."
|
885 |
|
886 |
-
#: includes/forms/main.php:
|
|
|
|
|
|
|
|
|
887 |
msgid "Debug"
|
888 |
msgstr "Debug"
|
889 |
|
890 |
-
#: includes/forms/main.php:
|
891 |
msgid "Currently Loaded"
|
892 |
msgstr "Aktuell geladen"
|
893 |
|
@@ -960,6 +1032,10 @@ msgstr "Elternthema auswählen:"
|
|
960 |
msgid "Analyze"
|
961 |
msgstr "Analysieren"
|
962 |
|
|
|
|
|
|
|
|
|
963 |
#: includes/forms/parent-child.php:85 includes/forms/parent-child.php:98
|
964 |
msgid ""
|
965 |
"Click \"Analyze\" to determine stylesheet dependencies and other potential "
|
@@ -1174,17 +1250,21 @@ msgstr "Version"
|
|
1174 |
|
1175 |
#: includes/forms/parent-child.php:299
|
1176 |
msgid ""
|
1177 |
-
"Copy
|
1178 |
-
"Theme:"
|
1179 |
msgstr ""
|
1180 |
-
"
|
1181 |
-
"Kindthema:"
|
1182 |
|
1183 |
#: includes/forms/parent-child.php:309
|
1184 |
-
msgid "
|
|
|
|
|
|
|
1185 |
msgstr ""
|
1186 |
-
"
|
1187 |
-
"
|
|
|
1188 |
|
1189 |
#: includes/forms/parent-child.php:316 includes/forms/parent-child.php:353
|
1190 |
msgid "Click to run the Configurator:"
|
@@ -1360,17 +1440,21 @@ msgstr ""
|
|
1360 |
"identifizieren und sie in <code><link></code> Tags zu konvertieren. "
|
1361 |
"<strong>Beispiel:</strong>"
|
1362 |
|
|
|
|
|
|
|
|
|
1363 |
#. Plugin URI of the plugin/theme
|
1364 |
msgid "http://www.childthemeconfigurator.com"
|
1365 |
msgstr "http://www.childthemeconfigurator.com"
|
1366 |
|
1367 |
#. Description of the plugin/theme
|
1368 |
msgid ""
|
1369 |
-
"Create child themes and customize
|
1370 |
-
"
|
1371 |
msgstr ""
|
1372 |
-
"
|
1373 |
-
"
|
1374 |
|
1375 |
#. Author of the plugin/theme
|
1376 |
msgid "Lilaea Media"
|
@@ -1379,3 +1463,47 @@ msgstr "Lilaea Media"
|
|
1379 |
#. Author URI of the plugin/theme
|
1380 |
msgid "http://www.lilaeamedia.com"
|
1381 |
msgstr "http://www.lilaeamedia.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Child Theme Configurator 2.0.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/child-theme-configurator\n"
|
7 |
+
"POT-Creation-Date: 2016-03-29 17:45+0200\n"
|
8 |
+
"PO-Revision-Date: 2016-03-29 19:31+0200\n"
|
9 |
+
"Last-Translator: \n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: de_DE\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
15 |
"X-Generator: Poedit 1.8.6\n"
|
|
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
17 |
|
18 |
+
#: includes/class-ctc-admin.php:373
|
19 |
msgid "Zip file creation failed."
|
20 |
msgstr "ZIP-Dateierstellung fehlgeschlagen."
|
21 |
|
22 |
+
#: includes/class-ctc-admin.php:409
|
23 |
msgid "The Functions file is required and cannot be deleted."
|
24 |
msgstr "Die Funktionendatei wird benötigt und kann nicht gelöscht werden."
|
25 |
|
26 |
+
#: includes/class-ctc-admin.php:493
|
27 |
msgid "You do not have permission to configure child themes."
|
28 |
msgstr "Sie haben keine Berechtigung, Kindthemen zu konfigurieren."
|
29 |
|
30 |
+
#: includes/class-ctc-admin.php:522
|
31 |
msgid "%s does not exist. Please select a valid Parent Theme."
|
32 |
msgstr "%s existiert nicht. Bitte wählen Sie ein gültiges Elternthema."
|
33 |
|
34 |
+
#: includes/class-ctc-admin.php:525
|
35 |
msgid "Please select a valid Parent Theme."
|
36 |
msgstr "Bitte wählen Sie ein gültiges Elternthema."
|
37 |
|
38 |
+
#: includes/class-ctc-admin.php:530
|
39 |
msgid "Please select a valid Child Theme."
|
40 |
msgstr "Bitte wählen Sie ein gültiges Kindthema."
|
41 |
|
42 |
+
#: includes/class-ctc-admin.php:534
|
43 |
msgid "Please enter a valid Child Theme directory name."
|
44 |
msgstr "Bitte geben Sie ein gültiges Kindthema-Verzeichnis ein."
|
45 |
|
46 |
+
#: includes/class-ctc-admin.php:539
|
47 |
msgid ""
|
48 |
"<strong>%s</strong> exists. Please enter a different Child Theme template "
|
49 |
"name."
|
51 |
"<strong>%s</strong> existiert. Bitte geben Sie einen anderen Kindthema-"
|
52 |
"Vorlagennamen ein."
|
53 |
|
54 |
+
#: includes/class-ctc-admin.php:558
|
55 |
msgid "Your theme directories are not writable."
|
56 |
msgstr "Ihr Themenverzeichnis ist schreibgeschützt."
|
57 |
|
58 |
+
#: includes/class-ctc-admin.php:632
|
59 |
+
msgid "Could not upgrade child theme"
|
60 |
+
msgstr "Konnte das Kindthema nicht aktualisieren"
|
61 |
+
|
62 |
+
#: includes/class-ctc-admin.php:722
|
63 |
msgid "Your stylesheet is not writable."
|
64 |
msgstr "Ihre Formatvorlage ist schreibgeschützt."
|
65 |
|
66 |
+
#: includes/class-ctc-admin.php:1283
|
67 |
msgid "Could not set write permissions."
|
68 |
msgstr "Konnte Schreibberechtigungen nicht setzen."
|
69 |
|
70 |
+
#: includes/class-ctc-admin.php:1384
|
71 |
msgid "There were errors while resetting permissions."
|
72 |
msgstr "Beim Zurücksetzen der Berechtigungen traten Fehler auf."
|
73 |
|
74 |
+
#: includes/class-ctc-admin.php:1426
|
75 |
msgid "Could not upload file."
|
76 |
msgstr "Konnte Datei nicht hochladen."
|
77 |
|
78 |
+
#: includes/class-ctc-ui.php:35
|
|
|
|
|
|
|
|
|
79 |
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
80 |
msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
81 |
|
82 |
+
#: includes/class-ctc-ui.php:166
|
83 |
msgid "Child Theme files modified successfully."
|
84 |
msgstr "Kindthema-Dateien erfolgreich geändert."
|
85 |
|
86 |
+
#: includes/class-ctc-ui.php:168
|
87 |
msgid ""
|
88 |
"Child Theme <strong>%s</strong> has been reset. Please configure it using "
|
89 |
"the settings below."
|
91 |
"Kindthema <strong>%s</strong> zurückgesetzt. Bitte mit den Einstellungen "
|
92 |
"unten konfigurieren."
|
93 |
|
94 |
+
#: includes/class-ctc-ui.php:170
|
95 |
msgid "Child Theme <strong>%s</strong> has been generated successfully."
|
96 |
msgstr "Kindthema <strong>%s</strong> wurde erfolgreich erstellt."
|
97 |
|
98 |
+
#: includes/class-ctc-ui.php:172
|
99 |
msgid "IMPORTANT:"
|
100 |
msgstr "WICHTIG:"
|
101 |
|
102 |
+
#: includes/class-ctc-ui.php:174 includes/forms/themepreview.php:20
|
103 |
msgid "Go to Themes"
|
104 |
msgstr "Gehe zu Themen"
|
105 |
|
106 |
+
#: includes/class-ctc-ui.php:174
|
107 |
msgid "Network enable"
|
108 |
msgstr "Netzwerkfähig machen"
|
109 |
|
110 |
+
#: includes/class-ctc-ui.php:174
|
111 |
msgid "your child theme."
|
112 |
msgstr "Ihr Kindthema"
|
113 |
|
114 |
+
#: includes/class-ctc-ui.php:176 includes/forms/themepreview.php:18
|
115 |
msgid "Live Preview"
|
116 |
msgstr "Live-Vorschau"
|
117 |
|
118 |
+
#: includes/class-ctc-ui.php:176
|
119 |
msgid "Preview your child theme"
|
120 |
msgstr "Vorschau Ihres Kindthemas"
|
121 |
|
122 |
+
#: includes/class-ctc-ui.php:176
|
123 |
msgid "before activating."
|
124 |
msgstr "vor der Aktivierung."
|
125 |
|
126 |
+
#: includes/class-ctc-ui.php:284
|
127 |
msgid "URL/None"
|
128 |
msgstr "URL/Keine"
|
129 |
|
130 |
+
#: includes/class-ctc-ui.php:285
|
131 |
msgid "Origin"
|
132 |
msgstr "Quelle"
|
133 |
|
134 |
+
#: includes/class-ctc-ui.php:286
|
135 |
msgid "Color 1"
|
136 |
msgstr "Farbe 1"
|
137 |
|
138 |
+
#: includes/class-ctc-ui.php:287
|
139 |
msgid "Color 2"
|
140 |
msgstr "Farbe 2"
|
141 |
|
142 |
+
#: includes/class-ctc-ui.php:288
|
143 |
msgid "Width/None"
|
144 |
msgstr "Breite/Keine"
|
145 |
|
146 |
+
#: includes/class-ctc-ui.php:289
|
147 |
msgid "Style"
|
148 |
msgstr "Stil"
|
149 |
|
150 |
+
#: includes/class-ctc-ui.php:290
|
151 |
msgid "Color"
|
152 |
msgstr "Farbe"
|
153 |
|
154 |
+
#: includes/class-ctc-ui.php:292
|
155 |
msgid ""
|
156 |
"Are you sure you wish to RESET? This will destroy any work you have done in "
|
157 |
"the Configurator."
|
159 |
"Möchten Sie wirklich zurücksetzen? Dies wird jegliche Arbeit im Konfigurator "
|
160 |
"überschreiben."
|
161 |
|
162 |
+
#: includes/class-ctc-ui.php:293
|
163 |
msgid "<span style=\"font-size:10px\">!</span>"
|
164 |
msgstr "<span style=\"font-size:10px\">!</span>"
|
165 |
|
166 |
+
#: includes/class-ctc-ui.php:294 includes/forms/rule-value.php:32
|
167 |
msgid "Selectors"
|
168 |
msgstr "Selektoren"
|
169 |
|
170 |
+
#: includes/class-ctc-ui.php:295
|
171 |
msgid "Close"
|
172 |
msgstr "Schließen"
|
173 |
|
174 |
+
#: includes/class-ctc-ui.php:296
|
175 |
msgid "Edit Selector"
|
176 |
msgstr "Selektor wählen"
|
177 |
|
178 |
+
#: includes/class-ctc-ui.php:297
|
179 |
msgid "Cancel"
|
180 |
msgstr "Abbrechen"
|
181 |
|
182 |
+
#: includes/class-ctc-ui.php:298
|
183 |
msgid "Rename"
|
184 |
msgstr "Umbennen"
|
185 |
|
186 |
+
#: includes/class-ctc-ui.php:299
|
187 |
msgid "The stylesheet cannot be displayed."
|
188 |
msgstr "Die Formatvorlage kann nicht angezeigt werden."
|
189 |
|
190 |
+
#: includes/class-ctc-ui.php:300
|
191 |
msgid "(Child Only)"
|
192 |
msgstr "(Nur Kind)"
|
193 |
|
194 |
+
#: includes/class-ctc-ui.php:301
|
195 |
msgid "Please enter a valid Child Theme."
|
196 |
msgstr "Bitte gültiges Kindthema eingeben."
|
197 |
|
198 |
+
#: includes/class-ctc-ui.php:302
|
199 |
msgid "Please enter a valid Child Theme name."
|
200 |
msgstr "Bitte gültigen Kindthema-Namen eingeben."
|
201 |
|
202 |
+
#: includes/class-ctc-ui.php:303
|
203 |
msgid "<strong>%s</strong> exists. Please enter a different Child Theme"
|
204 |
msgstr "<strong>%s</strong> existiert. Bitte anderen Kindthema-Namen eingeben"
|
205 |
|
206 |
+
#: includes/class-ctc-ui.php:304
|
207 |
msgid "The page could not be loaded correctly."
|
208 |
msgstr "Die Seite konnte nicht korrekt geladen werden."
|
209 |
|
210 |
+
#: includes/class-ctc-ui.php:305
|
211 |
msgid ""
|
212 |
"Conflicting or out-of-date jQuery libraries were loaded by another plugin:"
|
213 |
msgstr ""
|
214 |
"jQuery-Bibliotheken-Konflikt oder veraltete wurden von anderem Plugin "
|
215 |
"geladen."
|
216 |
|
217 |
+
#: includes/class-ctc-ui.php:306
|
218 |
msgid "Deactivating or replacing plugins may resolve this issue."
|
219 |
msgstr "Deaktivieren oder Ersetzen von Plugins könnte das Problem lösen."
|
220 |
|
221 |
+
#: includes/class-ctc-ui.php:307
|
222 |
msgid "%sWhy am I seeing this?%s"
|
223 |
msgstr "%sWieso sehe ich das?%s"
|
224 |
|
225 |
+
#: includes/class-ctc-ui.php:310
|
226 |
msgid "No Styles Available. Check Parent/Child settings."
|
227 |
msgstr "Keine Stile verfügbar. Prüfen Sie Eltern/Kind-Einstellungen."
|
228 |
|
229 |
+
#: includes/class-ctc-ui.php:311
|
230 |
msgid "Updating"
|
231 |
msgstr "Aktualisiere"
|
232 |
|
233 |
+
#: includes/class-ctc-ui.php:312
|
234 |
msgid "Checking"
|
235 |
msgstr "Prüfe"
|
236 |
|
237 |
+
#: includes/class-ctc-ui.php:313
|
238 |
msgid "The theme \"%s\" generated unexpected PHP debug output."
|
239 |
msgstr "Das Thema \"%s\" erzeugte unerwartete PHP-Debug-Ausgabe."
|
240 |
|
241 |
+
#: includes/class-ctc-ui.php:314
|
242 |
msgid "The theme \"%s\" could not be loaded."
|
243 |
msgstr "Das Thema \"%s\" konnte nicht geladen werden."
|
244 |
|
245 |
+
#: includes/class-ctc-ui.php:315
|
246 |
msgid "<p>Please verify the theme has been installed correctly.</p>"
|
247 |
msgstr "<p>Bitte prüfen Sie, ob das Thema korrekt installiert wurde.</p>"
|
248 |
|
249 |
+
#: includes/class-ctc-ui.php:316
|
250 |
msgid "Show Debug Output"
|
251 |
msgstr "Zeige Debug-Ausgabe"
|
252 |
|
253 |
+
#: includes/class-ctc-ui.php:317
|
254 |
msgid ""
|
255 |
"<p>You may not be able to use this Theme as a Child Theme while these "
|
256 |
"conditions exist.</p><p>It is possible that this theme has specific "
|
266 |
"Themas zu benutzen. Falls ja, kontaktieren Sie den Themenautor und melden "
|
267 |
"Sie den obigen Fehler.</p>"
|
268 |
|
269 |
+
#: includes/class-ctc-ui.php:318
|
270 |
msgid "Do Not Activate \"%s\"! A PHP FATAL ERROR has been detected."
|
271 |
msgstr "Aktivieren Sie nicht \"%s\"! Ein PHP FATAL ERROR wurde entdeckt."
|
272 |
|
273 |
+
#: includes/class-ctc-ui.php:319
|
274 |
msgid "This theme loads stylesheets after the wp_styles queue."
|
275 |
msgstr "Dieses Thema lädt Formatvorlagen nach der wp_styles Warteschlange."
|
276 |
|
277 |
+
#: includes/class-ctc-ui.php:320
|
278 |
msgid ""
|
279 |
"<p>This makes it difficult for plugins to override these styles. You can try "
|
280 |
"to resolve this using the \"Repair header template\" option (Step 6, "
|
284 |
"können dies eventuell mit der \"Reparieren Header-Vorlage\"-Option beheben "
|
285 |
"(Schritt 6, \"Zusätzliche Behandlungsoptionen\", unten)</p>"
|
286 |
|
287 |
+
#: includes/class-ctc-ui.php:321
|
288 |
msgid ""
|
289 |
"This theme loads the parent theme's <code>style.css</code> file outside the "
|
290 |
"wp_styles queue."
|
292 |
"Dieses Thema lädt die Elternthema <code>style.css</code>-Datei außerhalb der "
|
293 |
"wp_styles-Warteschlange."
|
294 |
|
295 |
+
#: includes/class-ctc-ui.php:322
|
296 |
msgid ""
|
297 |
"<p>This is common with older themes but requires the use of <code>@import</"
|
298 |
"code>, which is no longer recommended. You can try to resolve this using the "
|
304 |
"der \"Reparieren Header-Vorlage\"-Option beheben (Schritt 6, \"Zusätzliche "
|
305 |
"Behandlungsoptionen\", unten)</p>"
|
306 |
|
307 |
+
#: includes/class-ctc-ui.php:323
|
308 |
msgid "This child theme does not load a Configurator stylesheet."
|
309 |
msgstr "Dieses Kindthema lädt keine Konfigurator-Formatvorlage."
|
310 |
|
311 |
+
#: includes/class-ctc-ui.php:324
|
312 |
msgid ""
|
313 |
"<p>If you want to customize styles using this plugin, please click "
|
314 |
"\"Configure Child Theme\" again to add this to the settings.</p>"
|
317 |
"erneut \"Kindthema konfigurieren\", um dies zu den Einstellungen "
|
318 |
"hinzuzufügen.</p>"
|
319 |
|
320 |
+
#: includes/class-ctc-ui.php:325
|
321 |
msgid ""
|
322 |
"This child theme uses the parent stylesheet but does not load the parent "
|
323 |
"theme's <code>style.css</code> file."
|
325 |
"Dieses Kindthema benutzt die Eltern-Formatvorlage, aber lädt nicht die "
|
326 |
"Elternthema <code>style.css</code>-Datei."
|
327 |
|
328 |
+
#: includes/class-ctc-ui.php:326
|
329 |
msgid ""
|
330 |
"<p>Please select a stylesheet handling method or check \"Ignore parent theme "
|
331 |
"stylesheets\" (see step 6, below).</p>"
|
333 |
"<p>Bitte wählen Sie eine Formatvorlage-Behandlungsmethode oder kreuzen Sie "
|
334 |
"\"Elternthema-Formatvorlagen ignorieren\" an (siehe Schritt 6 unten).</p>"
|
335 |
|
336 |
+
#: includes/class-ctc-ui.php:327
|
337 |
msgid "This child theme appears to be functioning correctly."
|
338 |
msgstr "Dieses Kindthema scheint korrekt zu funktionieren."
|
339 |
|
340 |
+
#: includes/class-ctc-ui.php:328
|
341 |
msgid "This theme appears OK to use as a Child theme."
|
342 |
msgstr "Dieses Thema scheint als Kindthema OK zu sein."
|
343 |
|
344 |
+
#: includes/class-ctc-ui.php:329
|
345 |
msgid "This Child Theme has not been configured for this plugin."
|
346 |
msgstr "Dieses Kindthema wurde für dieses Plugin nicht konfiguriert."
|
347 |
|
348 |
+
#: includes/class-ctc-ui.php:330
|
349 |
msgid ""
|
350 |
"<p>The Configurator makes significant modifications to the child theme, "
|
351 |
"including stylesheet changes and additional php functions. Please consider "
|
357 |
"die DUPLIZIEREN-Option für Kindthemen in Betracht (siehe Schritt 1 oben), um "
|
358 |
"das Original als Backup zu behalten.</p>"
|
359 |
|
360 |
+
#: includes/class-ctc-ui.php:331
|
361 |
msgid ""
|
362 |
"This child theme uses <code>@import</code> to load the parent theme's "
|
363 |
"<code>style.css</code> file."
|
365 |
"Dieses Thema benutzt das Elternthema <code>@import</code>, um die Eltern "
|
366 |
"<code>style.css</code>-Datei zu laden."
|
367 |
|
368 |
+
#: includes/class-ctc-ui.php:332
|
369 |
msgid ""
|
370 |
"<p>Please consider selecting \"Use the WordPress style queue\" for the "
|
371 |
"parent stylesheet handling option (see step 6, below).</p>"
|
374 |
"Warteschlange\" in Betracht für die Formatvorlage-Behandlung (siehe Schritt "
|
375 |
"6 unten)</p>"
|
376 |
|
377 |
+
#: includes/class-ctc-ui.php:333
|
378 |
msgid ""
|
379 |
"This theme loads additional stylesheets after the <code>style.css</code> "
|
380 |
"file:"
|
382 |
"Dieses Thema lädt zusätzliche Formatvorlagen nach der <code>style.css</code>-"
|
383 |
"Datei."
|
384 |
|
385 |
+
#: includes/class-ctc-ui.php:334
|
386 |
msgid ""
|
387 |
"<p>Consider saving new custom styles to a \"Separate stylesheet\" (see step "
|
388 |
"5, below) so that you can customize these styles.</p>"
|
390 |
"<p>Ziehen Sie in Betracht, neue Stile in eine separate Formatvorlage zu "
|
391 |
"sichern (siehe Schritt 5 unten), so dass Sie die Stile anpassen können.</p>"
|
392 |
|
393 |
+
#: includes/class-ctc-ui.php:335
|
394 |
msgid ""
|
395 |
"The parent theme's <code>style.css</code> file is being loaded automatically."
|
396 |
msgstr ""
|
397 |
"Die Elternthema-Datei <code>style.css</code> wird automatisch geladen."
|
398 |
|
399 |
+
#: includes/class-ctc-ui.php:336
|
400 |
msgid ""
|
401 |
+
"<p>The Configurator has been selected \"Do not add any parent stylesheet "
|
402 |
+
"handling\" for the \"Parent stylesheet handling\" option (see step 6, below)."
|
403 |
+
"</p>"
|
404 |
msgstr ""
|
405 |
+
"<p> Im Konfigurator wurde für \"Eltern-Formatvorlagen-Behandlung\" "
|
406 |
+
"ausgewählt \"Keine Eltern-Formatvorlagen-Behandlung hinzufügen\" (siehe "
|
407 |
+
"Schritt 6 unten).</p>"
|
408 |
|
409 |
+
#: includes/class-ctc-ui.php:337
|
410 |
msgid ""
|
411 |
"This theme does not require the parent theme's <code>style.css</code> file "
|
412 |
"for its appearance."
|
414 |
"Dieses Thema benötigt die <code>style.css</code>-Datei des Elternthemas "
|
415 |
"nicht für die Anzeige."
|
416 |
|
417 |
+
#: includes/class-ctc-ui.php:338
|
418 |
msgid "This Child Theme was configured with an earlier version."
|
419 |
msgstr "Dieses Kindthema wurde mit einer früheren Version konfiguriert."
|
420 |
|
421 |
+
#: includes/class-ctc-ui.php:339
|
422 |
msgid ""
|
423 |
"<p>The selected stylesheet handling method is no longer used. Please update "
|
424 |
"the configuration using the \"Repair header template\" option (see step 6, "
|
428 |
"Bitte aktualisieren Sie die Konfiguration mit der \"Reparieren Header-Vorlage"
|
429 |
"\"-Option (siehe Schritt 6 unten, \"Zusätzliche Behandlungsoptionen\").</p>"
|
430 |
|
431 |
+
#: includes/class-ctc-ui.php:340
|
432 |
msgid "Show Analysis Object"
|
433 |
msgstr "Zeige Analyse von Objekt"
|
434 |
|
435 |
+
#: includes/class-ctc-ui.php:341
|
436 |
+
msgid ""
|
437 |
+
"This child theme was configured using the CTC Pro \"Genesis stylesheet "
|
438 |
+
"handling\" method."
|
439 |
+
msgstr ""
|
440 |
+
"Dieses Kindthema wurde mit der CTC Pro \"Genesis Formatvorlagen Behandlungs"
|
441 |
+
"\"-Methode konfiguriert."
|
442 |
+
|
443 |
+
#: includes/class-ctc-ui.php:342
|
444 |
+
msgid ""
|
445 |
+
"<p>This method has been replaced by the \"Separate stylesheet\" and \"Ignore "
|
446 |
+
"Parent Theme\" options ( selected below ) for broader framework "
|
447 |
+
"compatability.</p>"
|
448 |
+
msgstr ""
|
449 |
+
"<p>Diese Methode wurde für breitere Kompatibilität durch die \"Separate "
|
450 |
+
"Formatvorlage\" und \"Ignorieren Elternthema\"-Optionen ersetzt (unten "
|
451 |
+
"ausgewählt)</p>."
|
452 |
+
|
453 |
+
#: includes/class-ctc-ui.php:362
|
454 |
msgid ""
|
455 |
"The child theme is in read-only mode and Child Theme Configurator cannot "
|
456 |
"apply changes. Click to see options"
|
458 |
"Dieses Kindthema ist im Nur-Lese-Modus und der Kindthemen-Konfigurator kann "
|
459 |
"die Änderungen nicht anwenden. Klicken Sie für Optionen"
|
460 |
|
461 |
+
#: includes/class-ctc-ui.php:365
|
462 |
msgid ""
|
463 |
"<li>Temporarily set write permissions by clicking the button below. When you "
|
464 |
"are finished editing, revert to read-only by clicking \"Make read-only\" "
|
468 |
"Schaltfläche). Wenn Sie mit der Bearbeitung fertig sind, können Sie \"Nur "
|
469 |
"lesbar\" klicken (Dateien-Tab), um zum alten Zustand zurück zu kehren.</li>"
|
470 |
|
471 |
+
#: includes/class-ctc-ui.php:368
|
472 |
msgid "Make files writable"
|
473 |
msgstr "Dateien beschreibbar machen"
|
474 |
|
475 |
+
#: includes/class-ctc-ui.php:369
|
476 |
msgid ""
|
477 |
"<li><a target=\"_blank\" href=\"http://codex.wordpress.org/Editing_wp-"
|
478 |
"config.php#WordPress_Upgrade_Constants\" title=\"Editin wp-config.php\">Add "
|
482 |
"config.php#WordPress_Upgrade_Constants\" title=\"Editin wp-config.php\">Add "
|
483 |
"your FTP/SSH credentials to the WordPress config file</a>.</li>"
|
484 |
|
485 |
+
#: includes/class-ctc-ui.php:371
|
486 |
msgid ""
|
487 |
"<li><a target=\"_blank\" href=\"http://technet.microsoft.com/en-us/library/"
|
488 |
"cc771170\" title=\"Setting Application Pool Identity\">Assign WordPress to "
|
494 |
"an application pool that has write permissions</a> (Windows IIS systems).</"
|
495 |
"li>"
|
496 |
|
497 |
+
#: includes/class-ctc-ui.php:372
|
498 |
msgid ""
|
499 |
"<li><a target=\"_blank\" href=\"http://codex.wordpress.org/"
|
500 |
"Changing_File_Permissions\" title=\"Changing File Permissions\">Set write "
|
504 |
"Changing_File_Permissions\" title=\"Changing File Permissions\">Set write "
|
505 |
"permissions on the server manually</a> (not recommended).</li>"
|
506 |
|
507 |
+
#: includes/class-ctc-ui.php:374
|
508 |
msgid "<li>Run PHP under Apache with suEXEC (contact your web host).</li>"
|
509 |
msgstr ""
|
510 |
"<li>PHP unter Apache mit suEXEC laufen lassen (kontaktieren Sie Ihren "
|
511 |
"Provider).</li>"
|
512 |
|
513 |
+
#: includes/class-ctc-ui.php:383
|
514 |
msgid ""
|
515 |
"This Child Theme is not owned by your website account. It may have been "
|
516 |
"created by a prior version of this plugin or by another program. Moving "
|
524 |
"Kindthema-Konfigurator wird versuchen, dies zu korrigieren, wenn Sie die "
|
525 |
"Schaltfläche unten klicken."
|
526 |
|
527 |
+
#: includes/class-ctc-ui.php:391
|
528 |
msgid ""
|
529 |
"Child Theme Configurator needs to update its internal data. Please set your "
|
530 |
"preferences below and click \"Generate Child Theme Files\" to update your "
|
534 |
"Sie Ihre Voreinstellungen unten und klicken Sie auf \"Erzeuge Kindthemen-"
|
535 |
"Dateien\", um die Konfiguration zu aktualisieren."
|
536 |
|
537 |
+
#: includes/class-ctc-ui.php:397
|
538 |
msgid ""
|
539 |
"<strong>However, some styles could not be parsed due to memory limits.</"
|
540 |
"strong> Try deselecting \"Additional Stylesheets\" below and click "
|
545 |
"Formatvorlagen\" unten und klicken Sie auf \"Erzeugen/Neuaufbau Kindthemen-"
|
546 |
"Dateien\". %sWieso sehe ich das?%s"
|
547 |
|
548 |
+
#: includes/class-ctc-ui.php:405
|
549 |
msgid ""
|
550 |
"Child Theme Configurator did not detect any configuration data because a "
|
551 |
+
"previously configured Child Theme has been removed. Please follow the steps "
|
552 |
+
"for \"CONFIGURE an existing Child Theme\" under the \"Parent/Child\" Tab."
|
553 |
msgstr ""
|
554 |
+
"Der Kindthema-Konfigurator fand keinerlei Konfigurationsdaten, da ein früher "
|
555 |
+
"konfiguriertes Kindthema entfernt wurde. Bitte folgen Sie den Schritten für "
|
556 |
+
"\"KONFIGURIERE ein bestehendes Kindthema\" unter dem \"Eltern/Kind\"-Tab."
|
557 |
+
|
558 |
+
#: includes/class-ctc-ui.php:411
|
559 |
+
msgid ""
|
560 |
+
"Your stylesheet has changed since the last time you used the Configurator. "
|
561 |
+
"Please follow the steps for \"CONFIGURE an existing Child Theme\" under the "
|
562 |
+
"\"Parent/Child\" Tab or you will lose these changes."
|
563 |
+
msgstr ""
|
564 |
+
"Ihre Formatvorlage hat sich seit der letzten Benutzung des Konfigurators "
|
565 |
+
"verändert. Bitte folgen Sie den Schritten für \"KONFIGURIERE ein bestehendes "
|
566 |
+
"Kindthema\" unter dem \"Eltern/Kind\"-Tab oder Sie werden diese Änderungen "
|
567 |
+
"verlieren."
|
568 |
+
|
569 |
+
#: includes/class-ctc-ui.php:423
|
570 |
+
msgid "This version of Child Theme Configurator includes significant updates."
|
571 |
+
msgstr ""
|
572 |
+
"Diese Version des Kindthema-Konfigurators enthält umfangreiche Updates."
|
573 |
+
|
574 |
+
#: includes/class-ctc-ui.php:424
|
575 |
+
msgid ""
|
576 |
+
"A lot of time and testing has gone into this release but there are always "
|
577 |
+
"edge cases. If you have any questions, please"
|
578 |
+
msgstr ""
|
579 |
+
"Viel Zeit und Testen wurde in diese Veröffentlichung gesteckt, aber es gibt "
|
580 |
+
"immer Sonderfälle. Wenn Sie Fragen haben sollten, bitte"
|
581 |
+
|
582 |
+
#: includes/class-ctc-ui.php:424
|
583 |
+
msgid "Contact Us."
|
584 |
+
msgstr "Kontaktieren Sie uns."
|
585 |
+
|
586 |
+
#: includes/class-ctc-ui.php:425
|
587 |
+
msgid "For more information, please open the Help tab at the top right or "
|
588 |
+
msgstr ""
|
589 |
+
"Für weitere Informationen, bitte öffnen Sie oben rechts den Hilfe-Tab oder "
|
590 |
+
|
591 |
+
#: includes/class-ctc-ui.php:425
|
592 |
+
msgid "click here to view the latest videos."
|
593 |
+
msgstr "klicken Sie hier für die neuesten Videos."
|
594 |
+
|
595 |
+
#: includes/class-ctc-ui.php:427
|
596 |
+
msgid ""
|
597 |
+
"It is a good idea to save a Zip Archive of your Child Theme before using "
|
598 |
+
"this version for the first time (click the button to the right to download). "
|
599 |
+
"Remember you can always export your child themes from the \"Files\" Tab."
|
600 |
+
msgstr ""
|
601 |
+
"Es ist eine gute Idee, ein ZIP-Archiv Ihres Kindthemas zu speichern, bevor "
|
602 |
+
"Sie diese Version erstmalig benutzen (klicken Sie die Schaltfläche rechts "
|
603 |
+
"zum Herunterladen). Bedenken Sie, Sie können Ihr Kindthema immer mit dem "
|
604 |
+
"\"Dateien\"-Tab exportieren."
|
605 |
+
|
606 |
+
#: includes/class-ctc-ui.php:429
|
607 |
+
msgid "Backup Child Theme"
|
608 |
+
msgstr "Kindthema sichern"
|
609 |
|
610 |
#. Plugin Name of the plugin/theme
|
611 |
+
#: includes/class-ctc.php:50 includes/class-ctc.php:60
|
612 |
+
#: includes/forms/main.php:34
|
613 |
msgid "Child Theme Configurator"
|
614 |
msgstr "Kindthema-Konfigurator"
|
615 |
|
616 |
+
#: includes/class-ctc.php:51 includes/class-ctc.php:61
|
617 |
+
#: includes/class-ctc.php:71
|
618 |
msgid "Child Themes"
|
619 |
msgstr "Kindthemen"
|
620 |
|
621 |
+
#: includes/class-ctc.php:86
|
622 |
msgid "Child Theme Configurator requires WordPress version %s or later."
|
623 |
msgstr "Kindthema-Konfigurator benötigt WordPress-Version %s oder neuer."
|
624 |
|
692 |
"Menüoptionen ausbrechen und gibt Ihnen komplette Kontrolle über die "
|
693 |
"Benutzererfahrung."
|
694 |
|
695 |
+
#: includes/forms/addl_panels.php:19
|
696 |
msgid "Learn more about CTC Pro"
|
697 |
msgstr "Mehr über CTC Pro erfahren"
|
698 |
|
923 |
"Der Themen-Screenshot sollte das Format 4:3 haben (bspw. 880px x 660px) JPG, "
|
924 |
"PNG oder GIF. Es wird umbenannt zu <code>screenshot</code>."
|
925 |
|
926 |
+
#: includes/forms/files.php:57
|
927 |
msgid "Export Child Theme as Zip Archive"
|
928 |
msgstr "Kindthema als ZIP-Archiv exportieren"
|
929 |
|
930 |
+
#: includes/forms/files.php:68
|
|
|
|
|
|
|
|
|
931 |
msgid "Secure Child Theme"
|
932 |
msgstr "Kindthema absichern"
|
933 |
|
934 |
+
#: includes/forms/files.php:71
|
935 |
msgid ""
|
936 |
"Attempt to reset child theme permissions to user ownership and read-only "
|
937 |
"access."
|
939 |
"Versuche, die Kindthema-Berechtigungen zurückzusetzen (auf Nur-Lese-Zugriff "
|
940 |
"und Benutzerbesitz)."
|
941 |
|
942 |
+
#: includes/forms/files.php:77
|
943 |
msgid "Make read-only"
|
944 |
msgstr "Nur-Lesbar machen"
|
945 |
|
951 |
msgid "Delete child theme images by selecting them here."
|
952 |
msgstr "Auswahl der Kindthemen-Bilder zum Löschen."
|
953 |
|
954 |
+
#: includes/forms/main.php:34
|
955 |
+
msgid "version"
|
956 |
+
msgstr "Version"
|
957 |
+
|
958 |
+
#: includes/forms/main.php:38
|
959 |
msgid "Debug"
|
960 |
msgstr "Debug"
|
961 |
|
962 |
+
#: includes/forms/main.php:41
|
963 |
msgid "Currently Loaded"
|
964 |
msgstr "Aktuell geladen"
|
965 |
|
1032 |
msgid "Analyze"
|
1033 |
msgstr "Analysieren"
|
1034 |
|
1035 |
+
#: includes/forms/parent-child.php:85
|
1036 |
+
msgid "Analyze Parent Theme"
|
1037 |
+
msgstr "Analysiere Elternthema"
|
1038 |
+
|
1039 |
#: includes/forms/parent-child.php:85 includes/forms/parent-child.php:98
|
1040 |
msgid ""
|
1041 |
"Click \"Analyze\" to determine stylesheet dependencies and other potential "
|
1250 |
|
1251 |
#: includes/forms/parent-child.php:299
|
1252 |
msgid ""
|
1253 |
+
"Copy Menus, Widgets and other Customizer Settings from the Parent Theme to "
|
1254 |
+
"the Child Theme:"
|
1255 |
msgstr ""
|
1256 |
+
"Kopiere Menüs, Widgets, und andere Customizer-Einstellungen vom Elternthema "
|
1257 |
+
"in das Kindthema:"
|
1258 |
|
1259 |
#: includes/forms/parent-child.php:309
|
1260 |
+
msgid ""
|
1261 |
+
"This option replaces the Child Theme's existing Menus, Widgets and other "
|
1262 |
+
"Customizer Settings with those from the Parent Theme. You should only need "
|
1263 |
+
"to use this option the first time you configure a Child Theme."
|
1264 |
msgstr ""
|
1265 |
+
"Diese Option ersetzt bestehende Menüs, Widgets und andere Customizer-"
|
1266 |
+
"Einstellungen des Kindthemas mit denen des Elternthemas. Sie sollten diese "
|
1267 |
+
"Option nur bei der ersten Konfiguration eines Kindthemas verwenden."
|
1268 |
|
1269 |
#: includes/forms/parent-child.php:316 includes/forms/parent-child.php:353
|
1270 |
msgid "Click to run the Configurator:"
|
1440 |
"identifizieren und sie in <code><link></code> Tags zu konvertieren. "
|
1441 |
"<strong>Beispiel:</strong>"
|
1442 |
|
1443 |
+
#: includes/forms/zipform.php:8
|
1444 |
+
msgid "Export Zip"
|
1445 |
+
msgstr "ZIP-Export"
|
1446 |
+
|
1447 |
#. Plugin URI of the plugin/theme
|
1448 |
msgid "http://www.childthemeconfigurator.com"
|
1449 |
msgstr "http://www.childthemeconfigurator.com"
|
1450 |
|
1451 |
#. Description of the plugin/theme
|
1452 |
msgid ""
|
1453 |
+
"When using the Customizer is not enough - Create child themes and customize "
|
1454 |
+
"styles, templates, functions and more."
|
1455 |
msgstr ""
|
1456 |
+
"Wenn der Customizer nicht genug sein sollte - Erzeugen Sie Kindthemen und "
|
1457 |
+
"passen Sie Stile, Vorlagen, Funktionen und mehr an."
|
1458 |
|
1459 |
#. Author of the plugin/theme
|
1460 |
msgid "Lilaea Media"
|
1463 |
#. Author URI of the plugin/theme
|
1464 |
msgid "http://www.lilaeamedia.com"
|
1465 |
msgstr "http://www.lilaeamedia.com"
|
1466 |
+
|
1467 |
+
#~ msgid "Could not copy file"
|
1468 |
+
#~ msgstr "Konnte Datei nicht kopieren"
|
1469 |
+
|
1470 |
+
#~ msgid ""
|
1471 |
+
#~ "<p>\"Do not add any parent stylesheet handling\" has been selected for "
|
1472 |
+
#~ "\"Parent stylesheet handling\" (see step 6, below).</p>"
|
1473 |
+
#~ msgstr ""
|
1474 |
+
#~ "<p>\"Elternthema-Behandlung nicht hinzufügen\" wurde ausgewählt für "
|
1475 |
+
#~ "\"Elternthema-Behandlung\" (siehe Schritt 6 unten).</p>"
|
1476 |
+
|
1477 |
+
#~ msgid ""
|
1478 |
+
#~ "Child Theme Configurator did not detect any configuration data because a "
|
1479 |
+
#~ "previously configured Child Theme has been removed. Please set your "
|
1480 |
+
#~ "preferences below and click \"Generate Child Theme Files\"."
|
1481 |
+
#~ msgstr ""
|
1482 |
+
#~ "Der Kindthema-Konfigurator enteckte keine Konfigurationsdaten, weil ein "
|
1483 |
+
#~ "früher konfiguriertes Kindthema entfernt wurde. Bitte setzen Sie Ihre "
|
1484 |
+
#~ "Voreinstellungen unten und klicken Sie auf \"Erzeugen Kindthema-Dateien\"."
|
1485 |
+
|
1486 |
+
#~ msgid "Export"
|
1487 |
+
#~ msgstr "Exportieren"
|
1488 |
+
|
1489 |
+
#~ msgid ""
|
1490 |
+
#~ "Copy Parent Theme Menus, Widgets and other Customizer Settings to Child "
|
1491 |
+
#~ "Theme:"
|
1492 |
+
#~ msgstr ""
|
1493 |
+
#~ "Kopieren der Elternthema-Menüs, Widgets und anderer Einstellungen in das "
|
1494 |
+
#~ "Kindthema:"
|
1495 |
+
|
1496 |
+
#~ msgid ""
|
1497 |
+
#~ "This will overwrite any child theme options you may have already set."
|
1498 |
+
#~ msgstr ""
|
1499 |
+
#~ "Dies überschreibt alle Werte des Kindthemas, die allenfalls schon gesetzt "
|
1500 |
+
#~ "sind."
|
1501 |
+
|
1502 |
+
#~ msgid ""
|
1503 |
+
#~ "Create child themes and customize styles, templates and functions. "
|
1504 |
+
#~ "Enqueues stylesheets and web fonts. Handles rgba, vendor-prefixes and "
|
1505 |
+
#~ "more."
|
1506 |
+
#~ msgstr ""
|
1507 |
+
#~ "Benutze Kindthemen und passe Stile, Vorlagen und Funktionen an. Behandelt "
|
1508 |
+
#~ "Formatvorlagen und Webschriftarten sowie RGBA, Hersteller-Präfixe und "
|
1509 |
+
#~ "mehr."
|
lang/child-theme-configurator.pot
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Child Theme Configurator 2.0.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/child-theme-configurator\n"
|
7 |
-
"POT-Creation-Date: 2016-03-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,234 +12,234 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: includes/class-ctc-admin.php:
|
16 |
msgid "Zip file creation failed."
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: includes/class-ctc-admin.php:
|
20 |
msgid "The Functions file is required and cannot be deleted."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: includes/class-ctc-admin.php:
|
24 |
msgid "You do not have permission to configure child themes."
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: includes/class-ctc-admin.php:
|
28 |
msgid "%s does not exist. Please select a valid Parent Theme."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: includes/class-ctc-admin.php:
|
32 |
msgid "Please select a valid Parent Theme."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: includes/class-ctc-admin.php:
|
36 |
msgid "Please select a valid Child Theme."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/class-ctc-admin.php:
|
40 |
msgid "Please enter a valid Child Theme directory name."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: includes/class-ctc-admin.php:
|
44 |
msgid ""
|
45 |
"<strong>%s</strong> exists. Please enter a different Child Theme template "
|
46 |
"name."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: includes/class-ctc-admin.php:
|
50 |
msgid "Your theme directories are not writable."
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: includes/class-ctc-admin.php:
|
|
|
|
|
|
|
|
|
54 |
msgid "Your stylesheet is not writable."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: includes/class-ctc-admin.php:
|
58 |
msgid "Could not set write permissions."
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: includes/class-ctc-admin.php:
|
62 |
msgid "There were errors while resetting permissions."
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: includes/class-ctc-admin.php:
|
66 |
msgid "Could not upload file."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/class-ctc-
|
70 |
-
msgid "Could not copy file"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: includes/class-ctc-ui.php:33
|
74 |
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: includes/class-ctc-ui.php:
|
78 |
msgid "Child Theme files modified successfully."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/class-ctc-ui.php:
|
82 |
msgid ""
|
83 |
"Child Theme <strong>%s</strong> has been reset. Please configure it using "
|
84 |
"the settings below."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/class-ctc-ui.php:
|
88 |
msgid "Child Theme <strong>%s</strong> has been generated successfully."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: includes/class-ctc-ui.php:
|
92 |
msgid "IMPORTANT:"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: includes/class-ctc-ui.php:
|
96 |
msgid "Go to Themes"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: includes/class-ctc-ui.php:
|
100 |
msgid "Network enable"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/class-ctc-ui.php:
|
104 |
msgid "your child theme."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: includes/class-ctc-ui.php:
|
108 |
msgid "Live Preview"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/class-ctc-ui.php:
|
112 |
msgid "Preview your child theme"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: includes/class-ctc-ui.php:
|
116 |
msgid "before activating."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: includes/class-ctc-ui.php:
|
120 |
msgid "URL/None"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: includes/class-ctc-ui.php:
|
124 |
msgid "Origin"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/class-ctc-ui.php:
|
128 |
msgid "Color 1"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/class-ctc-ui.php:
|
132 |
msgid "Color 2"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-ctc-ui.php:
|
136 |
msgid "Width/None"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-ctc-ui.php:
|
140 |
msgid "Style"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/class-ctc-ui.php:
|
144 |
msgid "Color"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: includes/class-ctc-ui.php:
|
148 |
msgid ""
|
149 |
"Are you sure you wish to RESET? This will destroy any work you have done in "
|
150 |
"the Configurator."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/class-ctc-ui.php:
|
154 |
msgid "<span style=\"font-size:10px\">!</span>"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/class-ctc-ui.php:
|
158 |
msgid "Selectors"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/class-ctc-ui.php:
|
162 |
msgid "Close"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: includes/class-ctc-ui.php:
|
166 |
msgid "Edit Selector"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: includes/class-ctc-ui.php:
|
170 |
msgid "Cancel"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: includes/class-ctc-ui.php:
|
174 |
msgid "Rename"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/class-ctc-ui.php:
|
178 |
msgid "The stylesheet cannot be displayed."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: includes/class-ctc-ui.php:
|
182 |
msgid "(Child Only)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/class-ctc-ui.php:
|
186 |
msgid "Please enter a valid Child Theme."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/class-ctc-ui.php:
|
190 |
msgid "Please enter a valid Child Theme name."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/class-ctc-ui.php:
|
194 |
msgid "<strong>%s</strong> exists. Please enter a different Child Theme"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/class-ctc-ui.php:
|
198 |
msgid "The page could not be loaded correctly."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: includes/class-ctc-ui.php:
|
202 |
msgid ""
|
203 |
"Conflicting or out-of-date jQuery libraries were loaded by another plugin:"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/class-ctc-ui.php:
|
207 |
msgid "Deactivating or replacing plugins may resolve this issue."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/class-ctc-ui.php:
|
211 |
msgid "%sWhy am I seeing this?%s"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/class-ctc-ui.php:
|
215 |
msgid "No Styles Available. Check Parent/Child settings."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-ctc-ui.php:
|
219 |
msgid "Updating"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/class-ctc-ui.php:
|
223 |
msgid "Checking"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/class-ctc-ui.php:
|
227 |
msgid "The theme \"%s\" generated unexpected PHP debug output."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: includes/class-ctc-ui.php:
|
231 |
msgid "The theme \"%s\" could not be loaded."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: includes/class-ctc-ui.php:
|
235 |
msgid "<p>Please verify the theme has been installed correctly.</p>"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: includes/class-ctc-ui.php:
|
239 |
msgid "Show Debug Output"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/class-ctc-ui.php:
|
243 |
msgid ""
|
244 |
"<p>You may not be able to use this Theme as a Child Theme while these "
|
245 |
"conditions exist.</p><p>It is possible that this theme has specific "
|
@@ -249,28 +249,28 @@ msgid ""
|
|
249 |
"report the error list above.</p>"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/class-ctc-ui.php:
|
253 |
msgid "Do Not Activate \"%s\"! A PHP FATAL ERROR has been detected."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/class-ctc-ui.php:
|
257 |
msgid "This theme loads stylesheets after the wp_styles queue."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/class-ctc-ui.php:
|
261 |
msgid ""
|
262 |
"<p>This makes it difficult for plugins to override these styles. You can try "
|
263 |
"to resolve this using the \"Repair header template\" option (Step 6, "
|
264 |
"\"Additional handling options\", below).</p>"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/class-ctc-ui.php:
|
268 |
msgid ""
|
269 |
"This theme loads the parent theme's <code>style.css</code> file outside the "
|
270 |
"wp_styles queue."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/class-ctc-ui.php:
|
274 |
msgid ""
|
275 |
"<p>This is common with older themes but requires the use of <code>@import</"
|
276 |
"code>, which is no longer recommended. You can try to resolve this using the "
|
@@ -278,41 +278,41 @@ msgid ""
|
|
278 |
"\", below).</p>"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/class-ctc-ui.php:
|
282 |
msgid "This child theme does not load a Configurator stylesheet."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/class-ctc-ui.php:
|
286 |
msgid ""
|
287 |
"<p>If you want to customize styles using this plugin, please click "
|
288 |
"\"Configure Child Theme\" again to add this to the settings.</p>"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/class-ctc-ui.php:
|
292 |
msgid ""
|
293 |
"This child theme uses the parent stylesheet but does not load the parent "
|
294 |
"theme's <code>style.css</code> file."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: includes/class-ctc-ui.php:
|
298 |
msgid ""
|
299 |
"<p>Please select a stylesheet handling method or check \"Ignore parent theme "
|
300 |
"stylesheets\" (see step 6, below).</p>"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/class-ctc-ui.php:
|
304 |
msgid "This child theme appears to be functioning correctly."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/class-ctc-ui.php:
|
308 |
msgid "This theme appears OK to use as a Child theme."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/class-ctc-ui.php:
|
312 |
msgid "This Child Theme has not been configured for this plugin."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/class-ctc-ui.php:
|
316 |
msgid ""
|
317 |
"<p>The Configurator makes significant modifications to the child theme, "
|
318 |
"including stylesheet changes and additional php functions. Please consider "
|
@@ -320,87 +320,101 @@ msgid ""
|
|
320 |
"original as a backup.</p>"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/class-ctc-ui.php:
|
324 |
msgid ""
|
325 |
"This child theme uses <code>@import</code> to load the parent theme's "
|
326 |
"<code>style.css</code> file."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: includes/class-ctc-ui.php:
|
330 |
msgid ""
|
331 |
"<p>Please consider selecting \"Use the WordPress style queue\" for the "
|
332 |
"parent stylesheet handling option (see step 6, below).</p>"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: includes/class-ctc-ui.php:
|
336 |
msgid ""
|
337 |
"This theme loads additional stylesheets after the <code>style.css</code> "
|
338 |
"file:"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: includes/class-ctc-ui.php:
|
342 |
msgid ""
|
343 |
"<p>Consider saving new custom styles to a \"Separate stylesheet\" (see step "
|
344 |
"5, below) so that you can customize these styles.</p>"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/class-ctc-ui.php:
|
348 |
msgid ""
|
349 |
"The parent theme's <code>style.css</code> file is being loaded automatically."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: includes/class-ctc-ui.php:
|
353 |
msgid ""
|
354 |
-
"<p
|
355 |
-
"\"Parent stylesheet handling\" (see step 6, below)
|
|
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/class-ctc-ui.php:
|
359 |
msgid ""
|
360 |
"This theme does not require the parent theme's <code>style.css</code> file "
|
361 |
"for its appearance."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/class-ctc-ui.php:
|
365 |
msgid "This Child Theme was configured with an earlier version."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: includes/class-ctc-ui.php:
|
369 |
msgid ""
|
370 |
"<p>The selected stylesheet handling method is no longer used. Please update "
|
371 |
"the configuration using the \"Repair header template\" option (see step 6, "
|
372 |
"\"Additional handling options\", below).</p>"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: includes/class-ctc-ui.php:
|
376 |
msgid "Show Analysis Object"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: includes/class-ctc-ui.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
msgid ""
|
381 |
"The child theme is in read-only mode and Child Theme Configurator cannot "
|
382 |
"apply changes. Click to see options"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: includes/class-ctc-ui.php:
|
386 |
msgid ""
|
387 |
"<li>Temporarily set write permissions by clicking the button below. When you "
|
388 |
"are finished editing, revert to read-only by clicking \"Make read-only\" "
|
389 |
"under the \"Files\" tab.</li>"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: includes/class-ctc-ui.php:
|
393 |
msgid "Make files writable"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: includes/class-ctc-ui.php:
|
397 |
msgid ""
|
398 |
"<li><a target=\"_blank\" href=\"http://codex.wordpress.org/Editing_wp-"
|
399 |
"config.php#WordPress_Upgrade_Constants\" title=\"Editin wp-config.php\">Add "
|
400 |
"your FTP/SSH credentials to the WordPress config file</a>.</li>"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/class-ctc-ui.php:
|
404 |
msgid ""
|
405 |
"<li><a target=\"_blank\" href=\"http://technet.microsoft.com/en-us/library/"
|
406 |
"cc771170\" title=\"Setting Application Pool Identity\">Assign WordPress to "
|
@@ -408,18 +422,18 @@ msgid ""
|
|
408 |
"li>"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/class-ctc-ui.php:
|
412 |
msgid ""
|
413 |
"<li><a target=\"_blank\" href=\"http://codex.wordpress.org/"
|
414 |
"Changing_File_Permissions\" title=\"Changing File Permissions\">Set write "
|
415 |
"permissions on the server manually</a> (not recommended).</li>"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/class-ctc-ui.php:
|
419 |
msgid "<li>Run PHP under Apache with suEXEC (contact your web host).</li>"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: includes/class-ctc-ui.php:
|
423 |
msgid ""
|
424 |
"This Child Theme is not owned by your website account. It may have been "
|
425 |
"created by a prior version of this plugin or by another program. Moving "
|
@@ -428,40 +442,80 @@ msgid ""
|
|
428 |
"below."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/class-ctc-ui.php:
|
432 |
msgid ""
|
433 |
"Child Theme Configurator needs to update its internal data. Please set your "
|
434 |
"preferences below and click \"Generate Child Theme Files\" to update your "
|
435 |
"configuration."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: includes/class-ctc-ui.php:
|
439 |
msgid ""
|
440 |
"<strong>However, some styles could not be parsed due to memory limits.</"
|
441 |
"strong> Try deselecting \"Additional Stylesheets\" below and click "
|
442 |
"\"Generate/Rebuild Child Theme Files\". %sWhy am I seeing this?%s"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/class-ctc-ui.php:
|
446 |
msgid ""
|
447 |
"Child Theme Configurator did not detect any configuration data because a "
|
448 |
-
"previously configured Child Theme has been removed. Please
|
449 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
msgstr ""
|
451 |
|
452 |
#. #-#-#-#-# child-theme-configurator.pot (Child Theme Configurator 2.0.0) #-#-#-#-#
|
453 |
#. Plugin Name of the plugin/theme
|
454 |
-
#: includes/class-ctc.php:
|
455 |
-
#: includes/forms/main.php:
|
456 |
msgid "Child Theme Configurator"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/class-ctc.php:
|
460 |
-
#: includes/class-ctc.php:
|
461 |
msgid "Child Themes"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/class-ctc.php:
|
465 |
msgid "Child Theme Configurator requires WordPress version %s or later."
|
466 |
msgstr ""
|
467 |
|
@@ -524,7 +578,7 @@ msgid ""
|
|
524 |
"experience."
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/forms/addl_panels.php:19
|
528 |
msgid "Learn more about CTC Pro"
|
529 |
msgstr ""
|
530 |
|
@@ -722,25 +776,21 @@ msgid ""
|
|
722 |
"GIF. It will be renamed <code>screenshot</code>."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/forms/files.php:
|
726 |
msgid "Export Child Theme as Zip Archive"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/forms/files.php:
|
730 |
-
msgid "Export"
|
731 |
-
msgstr ""
|
732 |
-
|
733 |
-
#: includes/forms/files.php:73
|
734 |
msgid "Secure Child Theme"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: includes/forms/files.php:
|
738 |
msgid ""
|
739 |
"Attempt to reset child theme permissions to user ownership and read-only "
|
740 |
"access."
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: includes/forms/files.php:
|
744 |
msgid "Make read-only"
|
745 |
msgstr ""
|
746 |
|
@@ -752,11 +802,15 @@ msgstr ""
|
|
752 |
msgid "Delete child theme images by selecting them here."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/forms/main.php:
|
|
|
|
|
|
|
|
|
756 |
msgid "Debug"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/forms/main.php:
|
760 |
msgid "Currently Loaded"
|
761 |
msgstr ""
|
762 |
|
@@ -815,6 +869,10 @@ msgstr ""
|
|
815 |
msgid "Analyze"
|
816 |
msgstr ""
|
817 |
|
|
|
|
|
|
|
|
|
818 |
#: includes/forms/parent-child.php:85 includes/forms/parent-child.php:98
|
819 |
msgid ""
|
820 |
"Click \"Analyze\" to determine stylesheet dependencies and other potential "
|
@@ -1002,12 +1060,15 @@ msgstr ""
|
|
1002 |
|
1003 |
#: includes/forms/parent-child.php:299
|
1004 |
msgid ""
|
1005 |
-
"Copy
|
1006 |
-
"Theme:"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
#: includes/forms/parent-child.php:309
|
1010 |
-
msgid "
|
|
|
|
|
|
|
1011 |
msgstr ""
|
1012 |
|
1013 |
#: includes/forms/parent-child.php:316 includes/forms/parent-child.php:353
|
@@ -1176,14 +1237,18 @@ msgid ""
|
|
1176 |
"strong>"
|
1177 |
msgstr ""
|
1178 |
|
|
|
|
|
|
|
|
|
1179 |
#. Plugin URI of the plugin/theme
|
1180 |
msgid "http://www.childthemeconfigurator.com"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
#. Description of the plugin/theme
|
1184 |
msgid ""
|
1185 |
-
"Create child themes and customize
|
1186 |
-
"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
#. Author of the plugin/theme
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Child Theme Configurator 2.0.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/child-theme-configurator\n"
|
7 |
+
"POT-Creation-Date: 2016-03-29 15:21:05+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: includes/class-ctc-admin.php:373
|
16 |
msgid "Zip file creation failed."
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: includes/class-ctc-admin.php:409
|
20 |
msgid "The Functions file is required and cannot be deleted."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: includes/class-ctc-admin.php:493
|
24 |
msgid "You do not have permission to configure child themes."
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: includes/class-ctc-admin.php:522
|
28 |
msgid "%s does not exist. Please select a valid Parent Theme."
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: includes/class-ctc-admin.php:525
|
32 |
msgid "Please select a valid Parent Theme."
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: includes/class-ctc-admin.php:530
|
36 |
msgid "Please select a valid Child Theme."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: includes/class-ctc-admin.php:534
|
40 |
msgid "Please enter a valid Child Theme directory name."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: includes/class-ctc-admin.php:539
|
44 |
msgid ""
|
45 |
"<strong>%s</strong> exists. Please enter a different Child Theme template "
|
46 |
"name."
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: includes/class-ctc-admin.php:558
|
50 |
msgid "Your theme directories are not writable."
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: includes/class-ctc-admin.php:632
|
54 |
+
msgid "Could not upgrade child theme"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-ctc-admin.php:722
|
58 |
msgid "Your stylesheet is not writable."
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: includes/class-ctc-admin.php:1283
|
62 |
msgid "Could not set write permissions."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: includes/class-ctc-admin.php:1384
|
66 |
msgid "There were errors while resetting permissions."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/class-ctc-admin.php:1426
|
70 |
msgid "Could not upload file."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: includes/class-ctc-ui.php:35
|
|
|
|
|
|
|
|
|
74 |
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: includes/class-ctc-ui.php:166
|
78 |
msgid "Child Theme files modified successfully."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: includes/class-ctc-ui.php:168
|
82 |
msgid ""
|
83 |
"Child Theme <strong>%s</strong> has been reset. Please configure it using "
|
84 |
"the settings below."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/class-ctc-ui.php:170
|
88 |
msgid "Child Theme <strong>%s</strong> has been generated successfully."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: includes/class-ctc-ui.php:172
|
92 |
msgid "IMPORTANT:"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: includes/class-ctc-ui.php:174 includes/forms/themepreview.php:20
|
96 |
msgid "Go to Themes"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: includes/class-ctc-ui.php:174
|
100 |
msgid "Network enable"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/class-ctc-ui.php:174
|
104 |
msgid "your child theme."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: includes/class-ctc-ui.php:176 includes/forms/themepreview.php:18
|
108 |
msgid "Live Preview"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/class-ctc-ui.php:176
|
112 |
msgid "Preview your child theme"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: includes/class-ctc-ui.php:176
|
116 |
msgid "before activating."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: includes/class-ctc-ui.php:284
|
120 |
msgid "URL/None"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/class-ctc-ui.php:285
|
124 |
msgid "Origin"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/class-ctc-ui.php:286
|
128 |
msgid "Color 1"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/class-ctc-ui.php:287
|
132 |
msgid "Color 2"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/class-ctc-ui.php:288
|
136 |
msgid "Width/None"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/class-ctc-ui.php:289
|
140 |
msgid "Style"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/class-ctc-ui.php:290
|
144 |
msgid "Color"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-ctc-ui.php:292
|
148 |
msgid ""
|
149 |
"Are you sure you wish to RESET? This will destroy any work you have done in "
|
150 |
"the Configurator."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/class-ctc-ui.php:293
|
154 |
msgid "<span style=\"font-size:10px\">!</span>"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/class-ctc-ui.php:294 includes/forms/rule-value.php:32
|
158 |
msgid "Selectors"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/class-ctc-ui.php:295
|
162 |
msgid "Close"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/class-ctc-ui.php:296
|
166 |
msgid "Edit Selector"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/class-ctc-ui.php:297
|
170 |
msgid "Cancel"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/class-ctc-ui.php:298
|
174 |
msgid "Rename"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/class-ctc-ui.php:299
|
178 |
msgid "The stylesheet cannot be displayed."
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/class-ctc-ui.php:300
|
182 |
msgid "(Child Only)"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/class-ctc-ui.php:301
|
186 |
msgid "Please enter a valid Child Theme."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/class-ctc-ui.php:302
|
190 |
msgid "Please enter a valid Child Theme name."
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/class-ctc-ui.php:303
|
194 |
msgid "<strong>%s</strong> exists. Please enter a different Child Theme"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/class-ctc-ui.php:304
|
198 |
msgid "The page could not be loaded correctly."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/class-ctc-ui.php:305
|
202 |
msgid ""
|
203 |
"Conflicting or out-of-date jQuery libraries were loaded by another plugin:"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/class-ctc-ui.php:306
|
207 |
msgid "Deactivating or replacing plugins may resolve this issue."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/class-ctc-ui.php:307
|
211 |
msgid "%sWhy am I seeing this?%s"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/class-ctc-ui.php:310
|
215 |
msgid "No Styles Available. Check Parent/Child settings."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/class-ctc-ui.php:311
|
219 |
msgid "Updating"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/class-ctc-ui.php:312
|
223 |
msgid "Checking"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/class-ctc-ui.php:313
|
227 |
msgid "The theme \"%s\" generated unexpected PHP debug output."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/class-ctc-ui.php:314
|
231 |
msgid "The theme \"%s\" could not be loaded."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: includes/class-ctc-ui.php:315
|
235 |
msgid "<p>Please verify the theme has been installed correctly.</p>"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: includes/class-ctc-ui.php:316
|
239 |
msgid "Show Debug Output"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: includes/class-ctc-ui.php:317
|
243 |
msgid ""
|
244 |
"<p>You may not be able to use this Theme as a Child Theme while these "
|
245 |
"conditions exist.</p><p>It is possible that this theme has specific "
|
249 |
"report the error list above.</p>"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/class-ctc-ui.php:318
|
253 |
msgid "Do Not Activate \"%s\"! A PHP FATAL ERROR has been detected."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/class-ctc-ui.php:319
|
257 |
msgid "This theme loads stylesheets after the wp_styles queue."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/class-ctc-ui.php:320
|
261 |
msgid ""
|
262 |
"<p>This makes it difficult for plugins to override these styles. You can try "
|
263 |
"to resolve this using the \"Repair header template\" option (Step 6, "
|
264 |
"\"Additional handling options\", below).</p>"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/class-ctc-ui.php:321
|
268 |
msgid ""
|
269 |
"This theme loads the parent theme's <code>style.css</code> file outside the "
|
270 |
"wp_styles queue."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/class-ctc-ui.php:322
|
274 |
msgid ""
|
275 |
"<p>This is common with older themes but requires the use of <code>@import</"
|
276 |
"code>, which is no longer recommended. You can try to resolve this using the "
|
278 |
"\", below).</p>"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/class-ctc-ui.php:323
|
282 |
msgid "This child theme does not load a Configurator stylesheet."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/class-ctc-ui.php:324
|
286 |
msgid ""
|
287 |
"<p>If you want to customize styles using this plugin, please click "
|
288 |
"\"Configure Child Theme\" again to add this to the settings.</p>"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/class-ctc-ui.php:325
|
292 |
msgid ""
|
293 |
"This child theme uses the parent stylesheet but does not load the parent "
|
294 |
"theme's <code>style.css</code> file."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/class-ctc-ui.php:326
|
298 |
msgid ""
|
299 |
"<p>Please select a stylesheet handling method or check \"Ignore parent theme "
|
300 |
"stylesheets\" (see step 6, below).</p>"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/class-ctc-ui.php:327
|
304 |
msgid "This child theme appears to be functioning correctly."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/class-ctc-ui.php:328
|
308 |
msgid "This theme appears OK to use as a Child theme."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/class-ctc-ui.php:329
|
312 |
msgid "This Child Theme has not been configured for this plugin."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/class-ctc-ui.php:330
|
316 |
msgid ""
|
317 |
"<p>The Configurator makes significant modifications to the child theme, "
|
318 |
"including stylesheet changes and additional php functions. Please consider "
|
320 |
"original as a backup.</p>"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: includes/class-ctc-ui.php:331
|
324 |
msgid ""
|
325 |
"This child theme uses <code>@import</code> to load the parent theme's "
|
326 |
"<code>style.css</code> file."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/class-ctc-ui.php:332
|
330 |
msgid ""
|
331 |
"<p>Please consider selecting \"Use the WordPress style queue\" for the "
|
332 |
"parent stylesheet handling option (see step 6, below).</p>"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: includes/class-ctc-ui.php:333
|
336 |
msgid ""
|
337 |
"This theme loads additional stylesheets after the <code>style.css</code> "
|
338 |
"file:"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/class-ctc-ui.php:334
|
342 |
msgid ""
|
343 |
"<p>Consider saving new custom styles to a \"Separate stylesheet\" (see step "
|
344 |
"5, below) so that you can customize these styles.</p>"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/class-ctc-ui.php:335
|
348 |
msgid ""
|
349 |
"The parent theme's <code>style.css</code> file is being loaded automatically."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/class-ctc-ui.php:336
|
353 |
msgid ""
|
354 |
+
"<p>The Configurator has been selected \"Do not add any parent stylesheet "
|
355 |
+
"handling\" for the \"Parent stylesheet handling\" option (see step 6, below)."
|
356 |
+
"</p>"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: includes/class-ctc-ui.php:337
|
360 |
msgid ""
|
361 |
"This theme does not require the parent theme's <code>style.css</code> file "
|
362 |
"for its appearance."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: includes/class-ctc-ui.php:338
|
366 |
msgid "This Child Theme was configured with an earlier version."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: includes/class-ctc-ui.php:339
|
370 |
msgid ""
|
371 |
"<p>The selected stylesheet handling method is no longer used. Please update "
|
372 |
"the configuration using the \"Repair header template\" option (see step 6, "
|
373 |
"\"Additional handling options\", below).</p>"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: includes/class-ctc-ui.php:340
|
377 |
msgid "Show Analysis Object"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: includes/class-ctc-ui.php:341
|
381 |
+
msgid ""
|
382 |
+
"This child theme was configured using the CTC Pro \"Genesis stylesheet "
|
383 |
+
"handling\" method."
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: includes/class-ctc-ui.php:342
|
387 |
+
msgid ""
|
388 |
+
"<p>This method has been replaced by the \"Separate stylesheet\" and \"Ignore "
|
389 |
+
"Parent Theme\" options ( selected below ) for broader framework "
|
390 |
+
"compatability.</p>"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: includes/class-ctc-ui.php:362
|
394 |
msgid ""
|
395 |
"The child theme is in read-only mode and Child Theme Configurator cannot "
|
396 |
"apply changes. Click to see options"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: includes/class-ctc-ui.php:365
|
400 |
msgid ""
|
401 |
"<li>Temporarily set write permissions by clicking the button below. When you "
|
402 |
"are finished editing, revert to read-only by clicking \"Make read-only\" "
|
403 |
"under the \"Files\" tab.</li>"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: includes/class-ctc-ui.php:368
|
407 |
msgid "Make files writable"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: includes/class-ctc-ui.php:369
|
411 |
msgid ""
|
412 |
"<li><a target=\"_blank\" href=\"http://codex.wordpress.org/Editing_wp-"
|
413 |
"config.php#WordPress_Upgrade_Constants\" title=\"Editin wp-config.php\">Add "
|
414 |
"your FTP/SSH credentials to the WordPress config file</a>.</li>"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: includes/class-ctc-ui.php:371
|
418 |
msgid ""
|
419 |
"<li><a target=\"_blank\" href=\"http://technet.microsoft.com/en-us/library/"
|
420 |
"cc771170\" title=\"Setting Application Pool Identity\">Assign WordPress to "
|
422 |
"li>"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/class-ctc-ui.php:372
|
426 |
msgid ""
|
427 |
"<li><a target=\"_blank\" href=\"http://codex.wordpress.org/"
|
428 |
"Changing_File_Permissions\" title=\"Changing File Permissions\">Set write "
|
429 |
"permissions on the server manually</a> (not recommended).</li>"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/class-ctc-ui.php:374
|
433 |
msgid "<li>Run PHP under Apache with suEXEC (contact your web host).</li>"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/class-ctc-ui.php:383
|
437 |
msgid ""
|
438 |
"This Child Theme is not owned by your website account. It may have been "
|
439 |
"created by a prior version of this plugin or by another program. Moving "
|
442 |
"below."
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/class-ctc-ui.php:391
|
446 |
msgid ""
|
447 |
"Child Theme Configurator needs to update its internal data. Please set your "
|
448 |
"preferences below and click \"Generate Child Theme Files\" to update your "
|
449 |
"configuration."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/class-ctc-ui.php:397
|
453 |
msgid ""
|
454 |
"<strong>However, some styles could not be parsed due to memory limits.</"
|
455 |
"strong> Try deselecting \"Additional Stylesheets\" below and click "
|
456 |
"\"Generate/Rebuild Child Theme Files\". %sWhy am I seeing this?%s"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/class-ctc-ui.php:405
|
460 |
msgid ""
|
461 |
"Child Theme Configurator did not detect any configuration data because a "
|
462 |
+
"previously configured Child Theme has been removed. Please follow the steps "
|
463 |
+
"for \"CONFIGURE an existing Child Theme\" under the \"Parent/Child\" Tab."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: includes/class-ctc-ui.php:411
|
467 |
+
msgid ""
|
468 |
+
"Your stylesheet has changed since the last time you used the Configurator. "
|
469 |
+
"Please follow the steps for \"CONFIGURE an existing Child Theme\" under the "
|
470 |
+
"\"Parent/Child\" Tab or you will lose these changes."
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/class-ctc-ui.php:423
|
474 |
+
msgid "This version of Child Theme Configurator includes significant updates."
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: includes/class-ctc-ui.php:424
|
478 |
+
msgid ""
|
479 |
+
"A lot of time and testing has gone into this release but there are always "
|
480 |
+
"edge cases. If you have any questions, please"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: includes/class-ctc-ui.php:424
|
484 |
+
msgid "Contact Us."
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: includes/class-ctc-ui.php:425
|
488 |
+
msgid "For more information, please open the Help tab at the top right or "
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: includes/class-ctc-ui.php:425
|
492 |
+
msgid "click here to view the latest videos."
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: includes/class-ctc-ui.php:427
|
496 |
+
msgid ""
|
497 |
+
"It is a good idea to save a Zip Archive of your Child Theme before using "
|
498 |
+
"this version for the first time (click the button to the right to download). "
|
499 |
+
"Remember you can always export your child themes from the \"Files\" Tab."
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: includes/class-ctc-ui.php:429
|
503 |
+
msgid "Backup Child Theme"
|
504 |
msgstr ""
|
505 |
|
506 |
#. #-#-#-#-# child-theme-configurator.pot (Child Theme Configurator 2.0.0) #-#-#-#-#
|
507 |
#. Plugin Name of the plugin/theme
|
508 |
+
#: includes/class-ctc.php:50 includes/class-ctc.php:60
|
509 |
+
#: includes/forms/main.php:34
|
510 |
msgid "Child Theme Configurator"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: includes/class-ctc.php:51 includes/class-ctc.php:61
|
514 |
+
#: includes/class-ctc.php:71
|
515 |
msgid "Child Themes"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: includes/class-ctc.php:86
|
519 |
msgid "Child Theme Configurator requires WordPress version %s or later."
|
520 |
msgstr ""
|
521 |
|
578 |
"experience."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: includes/forms/addl_panels.php:19
|
582 |
msgid "Learn more about CTC Pro"
|
583 |
msgstr ""
|
584 |
|
776 |
"GIF. It will be renamed <code>screenshot</code>."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: includes/forms/files.php:57
|
780 |
msgid "Export Child Theme as Zip Archive"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/forms/files.php:68
|
|
|
|
|
|
|
|
|
784 |
msgid "Secure Child Theme"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/forms/files.php:71
|
788 |
msgid ""
|
789 |
"Attempt to reset child theme permissions to user ownership and read-only "
|
790 |
"access."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/forms/files.php:77
|
794 |
msgid "Make read-only"
|
795 |
msgstr ""
|
796 |
|
802 |
msgid "Delete child theme images by selecting them here."
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/forms/main.php:34
|
806 |
+
msgid "version"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: includes/forms/main.php:38
|
810 |
msgid "Debug"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/forms/main.php:41
|
814 |
msgid "Currently Loaded"
|
815 |
msgstr ""
|
816 |
|
869 |
msgid "Analyze"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: includes/forms/parent-child.php:85
|
873 |
+
msgid "Analyze Parent Theme"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
#: includes/forms/parent-child.php:85 includes/forms/parent-child.php:98
|
877 |
msgid ""
|
878 |
"Click \"Analyze\" to determine stylesheet dependencies and other potential "
|
1060 |
|
1061 |
#: includes/forms/parent-child.php:299
|
1062 |
msgid ""
|
1063 |
+
"Copy Menus, Widgets and other Customizer Settings from the Parent Theme to "
|
1064 |
+
"the Child Theme:"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
#: includes/forms/parent-child.php:309
|
1068 |
+
msgid ""
|
1069 |
+
"This option replaces the Child Theme's existing Menus, Widgets and other "
|
1070 |
+
"Customizer Settings with those from the Parent Theme. You should only need "
|
1071 |
+
"to use this option the first time you configure a Child Theme."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: includes/forms/parent-child.php:316 includes/forms/parent-child.php:353
|
1237 |
"strong>"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/forms/zipform.php:8
|
1241 |
+
msgid "Export Zip"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
#. Plugin URI of the plugin/theme
|
1245 |
msgid "http://www.childthemeconfigurator.com"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
#. Description of the plugin/theme
|
1249 |
msgid ""
|
1250 |
+
"When using the Customizer is not enough - Create child themes and customize "
|
1251 |
+
"styles, templates, functions and more."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
#. Author of the plugin/theme
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Child Theme Configurator ===
|
2 |
Contributors: lilaeamedia
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8QE5YJ8WE96AJ
|
4 |
-
Tags: child theme, child themes, custom styles, customize styles, customize theme, CSS, responsive, css editor, child theme generator, child theme creator, style, stylesheet, customizer
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -287,6 +287,13 @@ https://www.youtube.com/watch?v=iBiiAgsK4G4
|
|
287 |
7. Files tab
|
288 |
|
289 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
= 2.0.0 =
|
291 |
* New Theme Analyzer automatically checks for issues and determines correct settings
|
292 |
* Step by step setup of Parent/Child settings
|
@@ -574,7 +581,7 @@ https://www.youtube.com/watch?v=iBiiAgsK4G4
|
|
574 |
* Initial release.
|
575 |
|
576 |
== Upgrade Notice ==
|
577 |
-
2.0
|
578 |
|
579 |
== Query/Selector Tab ==
|
580 |
|
1 |
=== Child Theme Configurator ===
|
2 |
Contributors: lilaeamedia
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8QE5YJ8WE96AJ
|
4 |
+
Tags: child theme, child themes, custom styles, customize styles, customize theme, CSS, responsive, css editor, child theme generator, child theme creator, style, stylesheet, customizer, childtheme, childthemes
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 2.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
287 |
7. Files tab
|
288 |
|
289 |
== Changelog ==
|
290 |
+
|
291 |
+
= 2.0.1 =
|
292 |
+
* Updated language template and de_DE files
|
293 |
+
* Fix: case where child stylesheet link was not being added resulting in "This child theme does not load a Configurator stylesheet" notice
|
294 |
+
* Fix: fatal error in debug mode
|
295 |
+
* Minor bug fixes
|
296 |
+
|
297 |
= 2.0.0 =
|
298 |
* New Theme Analyzer automatically checks for issues and determines correct settings
|
299 |
* Step by step setup of Parent/Child settings
|
581 |
* Initial release.
|
582 |
|
583 |
== Upgrade Notice ==
|
584 |
+
2.0 is a major version release and some updates to your child themes may be required. Please watch the videos to learn about the new features.
|
585 |
|
586 |
== Query/Selector Tab ==
|
587 |
|