diff --git a/wp-content/plugins/wptouch/admin-css/bnc-global.css b/wp-content/plugins/wptouch/admin-css/bnc-global.css index 053861ca973c558ac80fa3ebe720a59033fa7f20..5a3fc7401fd8011a9cebfd08e2a71daae87f2286 100644 --- a/wp-content/plugins/wptouch/admin-css/bnc-global.css +++ b/wp-content/plugins/wptouch/admin-css/bnc-global.css @@ -1,3 +1,5 @@ +/* @override http://beta.bravenewcode.com/wordpress/wp-content/plugins/wptouch/admin-css/bnc-global.css */ + /* Global styles applied to BraveNewCode plugins */ /* @group Global Plugin Styles */ @@ -9,10 +11,10 @@ } #bnc-global .postbox { - padding: 10px; position: relative; overflow: hidden; - -webkit-box-shadow: #ccc 0px 1px 6px; + background-color: #fff; + padding: 10px; } #bnc-global .postbox h3 { @@ -22,7 +24,6 @@ #bnc-global a { text-decoration: none; - font-size: 11px; } #bnc-global a.orange-link { @@ -41,7 +42,6 @@ #bnc-global, #bnc-global .postbox, #bnc-global .postbox ul, #bnc-global .postbox p, #bnc-global p { margin-top: 10px; - font-size: 11px; } #bnc-global .left-content { @@ -57,8 +57,6 @@ padding: 0 0 4px; letter-spacing: 0; color: #d54e21; - font-size: 11px; - line-height: 13px; } #bnc-global .left-content p { @@ -87,9 +85,8 @@ float: left; margin-left: 3%; border-left: 1px solid #e6e6e6; - padding-bottom: 45px; padding-left: 10px; - margin-bottom: -30px; + padding-bottom: 50px; } #bnc-global .bnc-clearer { @@ -100,7 +97,6 @@ vertical-align: baseline; width: 176px; margin-right: 5px; - border: 1px solid #6caccd; } #bnc-global input.checkbox { @@ -111,14 +107,11 @@ } #bnc-global input { - border: 2px solid #a4c6d3; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; margin-right: 7px; width: 177px; color: #555; - font-size: 11px; - background-color: #ebf1ff; margin-left: 5px; } @@ -189,18 +182,6 @@ /* @group Save/Restore Button Area */ -#bnc-global .bnc-plugin-version { - float: right; - font: 18px Georgia, "Times New Roman", Times, serif; - color: #70777a; - text-shadow: #fff -1px -1px 0; - letter-spacing: -1px; - margin-top: 2px; - position: relative; - left: 10px; - margin-bottom: 25px; -} - #bnc-global input#bnc-button { color: #fff; } diff --git a/wp-content/plugins/wptouch/admin-css/wptouch-admin.css b/wp-content/plugins/wptouch/admin-css/wptouch-admin.css index 07af03459bea2b82fc2ee89ede9b5253a0ead36d..41f6fd0359bddce6d95ec6176ac1d4fb81fa05a1 100644 --- a/wp-content/plugins/wptouch/admin-css/wptouch-admin.css +++ b/wp-content/plugins/wptouch/admin-css/wptouch-admin.css @@ -9,28 +9,23 @@ overflow: hidden; position: relative; min-height: 216px; + height: 218px; } #wptouch-head #wptouch-head-colour { - background-color: #bcced9; + background-color: #d7ebf7; padding: 10px; margin: -10px -10px -20px; - -webkit-border-top-right-radius: 5px; - -webkit-border-top-left-radius: 5px; - -moz-border-radius-topright: 5px; - -moz-border-radius-topleft: 5px; - border: 1px solid #e5f0f2; - border-bottom: 1px solid #a2bdbf; } #wptouch-head-title { - font: bold 22px Georgia, "Times New Roman", Times, serif; color: #333c42; - text-shadow: #deeefa 0 1px 0; + text-shadow: #f6f8fd 0 1px 0; letter-spacing: -1px; margin: 0; padding: 0; float: left; + font-size: 22px; } #wptouch-head .postbox img.ajax-load { @@ -45,9 +40,12 @@ } #wptouch-head-links a { - color: #333c42; - font-weight: bold; - text-shadow: #cddce8 0 1px 0; + color: #62727c; + font-weight: normal; + text-shadow: rgba(255,255,255,.5) 0 1px 0; + font-style: normal; + padding-right: 5px; + padding-left: 5px; } #wptouch-head-links a:hover { @@ -131,7 +129,7 @@ #wptouch-news-support li { border-bottom: 1px solid #e6e6e6; margin: 0; - padding: 3px 0 3px 12px; + padding: 5px 0 5px 12px; list-style-type: disc; list-style-position: inside; color: #c1cfd1; @@ -146,8 +144,8 @@ #wptouch-news-support p#find-out-more { font-weight: bold; position: absolute; - right: 385px; - top: 176px; + right: 380px; + top: 195px; } /* @end */ diff --git a/wp-content/plugins/wptouch/ajax/file_upload.php b/wp-content/plugins/wptouch/ajax/file_upload.php old mode 100644 new mode 100755 index 6d49ef76285ae576d6d53aab23aa93d8c2132dca..5f5188a56536947956d86fc8d6fed257cea2bc3c --- a/wp-content/plugins/wptouch/ajax/file_upload.php +++ b/wp-content/plugins/wptouch/ajax/file_upload.php @@ -3,6 +3,7 @@ $directory_list = array(); if ( current_user_can( 'upload_files' ) ) { + check_ajax_referer( 'wptouch-upload' ); $upload_dir = compat_get_upload_dir() . "/wptouch/custom-icons" . ltrim( $dir[1], '/' ); $dir_paths = explode( '/', $upload_dir ); $dir = ''; diff --git a/wp-content/plugins/wptouch/html/ads-stats-area.php b/wp-content/plugins/wptouch/html/ads-stats-area.php old mode 100644 new mode 100755 index 3e61035f3168ebc84d71cb28f82d70fc6e8ba5db..f083a2fafc0e32e8295b188858ffafff3c21bce2 --- a/wp-content/plugins/wptouch/html/ads-stats-area.php +++ b/wp-content/plugins/wptouch/html/ads-stats-area.php @@ -15,7 +15,7 @@ <div id="css-info" style="display:none"> <h2><?php _e( "More Info", "wptouch" ); ?></h2> <p><?php _e( "You may enter a custom css file link easily. Simply add the full link to the css file like this:", "wptouch" ); ?></p> - <p><?php _e( "<code><link rel="stylesheet" src="http://path-to-my-css-file" type="text/css" media="screen" /></code>", "wptouch" ); ?></p> + <p><?php _e( "<code><style type="text/css">#mydiv { color: red; }</style></code>", "wptouch" ); ?></p> </div> </div><!-- left content --> diff --git a/wp-content/plugins/wptouch/html/advanced-area.php b/wp-content/plugins/wptouch/html/advanced-area.php old mode 100644 new mode 100755 index e2c200d61982f936cd84b4c9d1bf6114403ca33d..1386fc4009af830be2143449bdec9901b026bfec --- a/wp-content/plugins/wptouch/html/advanced-area.php +++ b/wp-content/plugins/wptouch/html/advanced-area.php @@ -15,6 +15,14 @@ <div class="right-content"> <ul> + <li> + <input class="checkbox" type="checkbox" name="enable-zoom" <?php if ( isset( $wptouch_settings['enable-zoom']) && $wptouch_settings['enable-zoom'] == 1) echo('checked'); ?> /> + <label class="label" for="enable-zoom"><?php _e( "Allow zooming on content", "wptouch" ); ?> <a href="#zoom-info" class="fancylink">?</a></label> + <div id="zoom-info" style="display:none"> + <h2><?php _e( "More Info", "wptouch" ); ?></h2> + <p><?php _e( "This will allow users to zoom in and out on content.", "wptouch" ); ?></p> + </div> + </li> <li> <input class="checkbox" type="checkbox" name="enable-cats-button" <?php if ( isset( $wptouch_settings['enable-cats-button']) && $wptouch_settings['enable-cats-button'] == 1) echo('checked'); ?> /> <label class="label" for="enable-cats-button"><?php _e( "Enable Categories tab in the header", "wptouch" ); ?> <a href="#cats-info" class="fancylink">?</a></label> @@ -107,7 +115,7 @@ <label class="label" for="enable-exclusive"> <?php _e( "Enable WPtouch Restricted Mode", "wptouch" ); ?> <a href="#restricted-info" class="fancylink">?</a></label> <div id="restricted-info" style="display:none"> <h2><?php _e( "More Info", "wptouch" ); ?></h2> - <p><?php _e( "Disallow other plugins from loading into scripts into WPtouch's header and footer.", "wptouch" ); ?></p> + <p><?php _e( "Disallow other plugins from loading scripts into WPtouch's header and footer.", "wptouch" ); ?></p> <p><?php _e( "Sometimes fixes incompatibilities and speeds up WPtouch.", "wptouch" ); ?></p> <p><?php _e( "Some plugins load conflicting javascript, extra CSS style sheets, and other functional code into your theme to accomplish what they add to your site. As WPtouch works complete on its own without any other plugin installed, in some cases (where you have several plugins or find something doesn't work right with WPtouch) you may want to enable Restricted Mode to ensure that WPtouch works properly, and loads quickly for mobile users.", "wptouch" ); ?></p> </div> diff --git a/wp-content/plugins/wptouch/html/general-settings-area.php b/wp-content/plugins/wptouch/html/general-settings-area.php old mode 100644 new mode 100755 index 057ab88579994e70ab053de60f85e3d85b443f9c..0b58b0c0e47e655d7af9b40de92a4294193b6efc --- a/wp-content/plugins/wptouch/html/general-settings-area.php +++ b/wp-content/plugins/wptouch/html/general-settings-area.php @@ -6,25 +6,35 @@ <div class="left-content"> <h4><?php _e( "Regionalization Settings", "wptouch" ); ?></h4> - <p><?php _e( "Select the language you would like WPtouch to appear in. Custom language .mo files should be placed in wp-content/wptouch/lang.", "wptouch" ); ?></p> - <br /> + <p><?php _e( "Select the language for WPtouch. Custom .mo files should be placed in wp-content/wptouch/lang.", "wptouch" ); ?></p> + <br /><br /> + <h4><?php _e( "Home Page Re-Direction", "wptouch" ); ?></h4> - <p><?php echo sprintf( __( "WPtouch by default follows your %sWordPress » Reading Options%s. You can also set a different one for WPtouch.", "wptouch"), '<a href="options-reading.php">', '</a>' ); ?></p> + <p><?php echo sprintf( __( "WPtouch by default follows your %sWordPress » Reading Options%s.", "wptouch"), '<a href="options-reading.php">', '</a>' ); ?></p> <h4><?php _e( "Site Title", "wptouch" ); ?></h4> - <p><?php _e( "You can shorten your site title here so it won't be truncated by WPtouch.", "wptouch" ); ?></p> + <p><?php _e( "You can change your site title (if needed) in WPtouch.", "wptouch" ); ?></p> + + <br /><br /> <h4><?php _e( "Excluded Categories", "wptouch" ); ?></h4> - <p><?php _e( "Choose categories you want excluded from the main post listings in WPtouch.", "wptouch" ); ?></p> + <p><?php _e( "Categories by ID you want excluded everywhere in WPtouch.", "wptouch" ); ?></p> + + <h4><?php _e( "Excluded Tags", "wptouch" ); ?></h4> + <p><?php _e( "Tags by ID you want excluded everywhere in WPtouch.", "wptouch" ); ?></p> + + <br /><br /> <h4><?php _e( "Text Justification Options", "wptouch" ); ?></h4> <p><?php _e( "Set the alignment for text.", "wptouch" ); ?></p> + <br /><br /> <h4><?php _e( "Post Listings Options", "wptouch" ); ?></h4> <p><?php _e( "Choose between calendar Icons, post thumbnails (WP 2.9) or none for your post listings.", "wptouch" ); ?></p> <p><?php _e( "Select which meta items are shown below titles on main, search, & archives pages.", "wptouch" ); ?></p> - <p><?php _e( "Also, choose if excerpts are shown/hidden (default is hidden).", "wptouch" ); ?></p> + + <br /><br /> <h4><?php _e( "Footer Message", "wptouch" ); ?></h4> <p><?php _e( "Customize the default footer message shown in WPtouch here.", "wptouch" ); ?></p> @@ -71,9 +81,10 @@ <ul class="wptouch-make-li-italic"> <li><input name="excluded-cat-ids" class="no-right-margin" type="text" value="<?php $str = $wptouch_settings['excluded-cat-ids']; echo stripslashes($str); ?>" /><?php _e( "Comma list of Category IDs, eg: 1,2,3", "wptouch" ); ?></li> + <li><input name="excluded-tag-ids" class="no-right-margin" type="text" value="<?php $str = $wptouch_settings['excluded-tag-ids']; echo stripslashes($str); ?>" /><?php _e( "Comma list of Tag IDs, eg: 1,2,3", "wptouch" ); ?></li> </ul> - <br /> + <br /><br /> <ul class="wptouch-make-li-italic"> @@ -124,6 +135,7 @@ <label for="enable-excerpts"><?php _e( "Hide Excerpts", "wptouch" ); ?></label> </li> </ul> + <br /><br /> <ul class="wptouch-make-li-italic"> <li><input type="text" class="no-right-margin footer-msg" name="custom-footer-msg" value="<?php $str = $wptouch_settings['custom-footer-msg']; echo stripslashes($str); ?>" /><?php _e( "Footer message", "wptouch" ); ?></li> </ul> diff --git a/wp-content/plugins/wptouch/html/head-area.php b/wp-content/plugins/wptouch/html/head-area.php old mode 100644 new mode 100755 index 2d4a03fbf59150a92640ec43702480f02b8a6057..0ab90a628b7817d8f348359da08682cafeaeddc5 --- a/wp-content/plugins/wptouch/html/head-area.php +++ b/wp-content/plugins/wptouch/html/head-area.php @@ -10,8 +10,8 @@ </div> <div id="wptouch-head-links"> <ul> - <li><?php echo sprintf(__( "%sGet WPtouch Pro%s", "wptouch" ), '<a href="http://www.bravenewcode.com/products/wptouch-pro/?utm_source=wptouch&utm_medium=web&utm_campaign=top-' . str_replace( '.', '', $bnc_wptouch_version ) . '" target="_blank">','</a>'); ?> | </li> - <li><?php echo sprintf(__( "%sFREE Affiliate Program%s", "wptouch" ), '<a href="http://www.bravenewcode.com/affiliate-program/" target="_blank">','</a>'); ?></li> | + <li><?php echo sprintf(__( "%sGet WPtouch Pro%s", "wptouch" ), '<a href="http://www.bravenewcode.com/store/plugins/wptouch-pro/?utm_source=wptouch&utm_medium=web&utm_campaign=top-' . str_replace( '.', '', $bnc_wptouch_version ) . '" target="_blank">','</a>'); ?> | </li> + <li><?php echo sprintf(__( "%sJoin our FREE Affiliate Program%s", "wptouch" ), '<a href="http://www.bravenewcode.com/affiliate-program/" target="_blank">','</a>'); ?></li> | <li><?php echo sprintf(__( "%sFollow Us on Twitter%s", "wordtwit" ), '<a href="http://www.twitter.com/bravenewcode" target="_blank">','</a>'); ?></li> </ul> </div> @@ -30,7 +30,7 @@ <div id="wptouch-support-wrap"> <h3> </h3> <div id="wptouch-support-content"> - <p id="find-out-more"><a href="http://www.bravenewcode.com/products/wptouch-pro/?utm_source=wptouch&utm_medium=web&utm_campaign=find-out-more-<?php echo str_replace( '.', '', $bnc_wptouch_version ); ?>" target="_blank"><?php _e( "Find Out More ›", "wptouch" ); ?></a></p> + <p id="find-out-more"><a href="http://www.bravenewcode.com/products/wptouch-pro/?utm_source=wptouch&utm_medium=web&utm_campaign=find-out-more-<?php echo str_replace( '.', '', $bnc_wptouch_version ); ?>" target="_blank"><?php _e( "Find Out More ››", "wptouch" ); ?></a></p> </div> </div> @@ -38,4 +38,4 @@ <div class="bnc-clearer"></div> </div><!-- postbox --> -</div><!-- wptouch-head --> \ No newline at end of file +</div><!-- wptouch-head --> diff --git a/wp-content/plugins/wptouch/html/icon-area.php b/wp-content/plugins/wptouch/html/icon-area.php old mode 100644 new mode 100755 index df2c54f8ee9de151abdb928781afed4bcf22401f..a61d7882ea8a47c0129fa0962146d07b1704ea44 --- a/wp-content/plugins/wptouch/html/icon-area.php +++ b/wp-content/plugins/wptouch/html/icon-area.php @@ -12,6 +12,9 @@ var button = jQuery('#upload-icon'), interval; jQuery("#upload_progress").hide(); jQuery('#upload_response').hide().html(response).fadeIn(); jQuery('#icon-pool-area').load('<?php echo admin_url( 'options-general.php?page=wptouch/wptouch.php' ); ?> #wptouchicons'); + }, + data: { + _ajax_nonce: '<?php echo wp_create_nonce('wptouch-upload'); ?>' } }); }); diff --git a/wp-content/plugins/wptouch/html/page-area.php b/wp-content/plugins/wptouch/html/page-area.php index bf19a5638468b01331f96121b05de5108aee2fd5..f46fe1ecd719c0d3ea2fc8338f2be40cdb4b5344 100644 --- a/wp-content/plugins/wptouch/html/page-area.php +++ b/wp-content/plugins/wptouch/html/page-area.php @@ -35,7 +35,12 @@ </li> <li><input type="checkbox" class="checkbox" name="enable-main-home" <?php if (isset($wptouch_settings['enable-main-home']) && $wptouch_settings['enable-main-home'] == 1) echo('checked'); ?> /><label for="enable-main-home"><?php _e( "Enable Home Menu Item", "wptouch" ); ?></label></li> <li><input type="checkbox" class="checkbox" name="enable-main-rss" <?php if (isset($wptouch_settings['enable-main-rss']) && $wptouch_settings['enable-main-rss'] == 1) echo('checked'); ?> /><label for="enable-main-rss"><?php _e( "Enable RSS Menu Item", "wptouch" ); ?></label></li> - <li><input type="checkbox" class="checkbox" name="enable-main-email" <?php if (isset($wptouch_settings['enable-main-email']) && $wptouch_settings['enable-main-email'] == 1) echo('checked'); ?> /><label for="enable-main-email"><?php _e( "Enable Email Menu Item", "wptouch" ); ?> <small>(<?php _e( "Uses default WordPress admin e-mail", "wptouch" ); ?>)</small></label><br /><br /><br /></li> + <li><input type="checkbox" class="checkbox" name="enable-main-email" <?php if (isset($wptouch_settings['enable-main-email']) && $wptouch_settings['enable-main-email'] == 1) echo('checked'); ?> /><label for="enable-main-email"><?php _e( "Enable Email Menu Item", "wptouch" ); ?> <small>(<?php _e( "Uses default WordPress admin e-mail", "wptouch" ); ?>)</small></label><br /></li> + <?php if ( function_exists( 'twentyeleven_setup' ) || function_exists( 'twentyten_setup' ) ) { ?> + <li><input type="checkbox" class="checkbox" name="enable-twenty-eleven-footer" <?php if ( isset( $wptouch_settings['enable-twenty-eleven-footer']) && $wptouch_settings['enable-twenty-eleven-footer'] == 1) echo( 'checked' ); ?> /><label for="enable-twenty-eleven-footer"><?php _e( "Show powered by WPtouch in footer", "wptouch" ); ?> <small>(<?php _e( "Adds WPtouch to the 'Powered by WordPress' area in footer of desktop theme", "wptouch" ); ?>)</small></label> + <?php } ?> + + <br /><br /> <?php if ( count( $pages ) ) { ?> <li><br /><br /> @@ -54,7 +59,7 @@ <label class="wptouch-page-label" for="enable_<?php echo $page->ID; ?>"><?php echo $page->post_title; ?></label> </span> <select class="page-select" name="icon_<?php echo $page->ID; ?>"> - <?php bnc_get_icon_drop_down_list( $wptouch_settings[ $page->ID ]); ?> + <?php bnc_get_icon_drop_down_list( ( isset( $wptouch_settings[ $page->ID ] ) ? $wptouch_settings[ $page->ID ] : false ) ); ?> </select> </li> diff --git a/wp-content/plugins/wptouch/html/plugin-compat-area.php b/wp-content/plugins/wptouch/html/plugin-compat-area.php old mode 100644 new mode 100755 index d28b12d1955b7d3b2116d155c8a0838583e8b5a9..991da9bbe4ee433c378220e32687531844927348 --- a/wp-content/plugins/wptouch/html/plugin-compat-area.php +++ b/wp-content/plugins/wptouch/html/plugin-compat-area.php @@ -14,13 +14,13 @@ echo '' . get_bloginfo('version') . ''; echo '</p><p class="wptv">'; echo sprintf( __( 'WPtouch %s support: ', 'wptouch' ), $bnc_wptouch_version ); - if ($version > 3.1) { + if ($version > 3.2) { echo sprintf(__( "%sUnverified%s", "wptouch" ), '<span class="caution">','</span>'); - } elseif ($version >= 2.8) { - echo sprintf(__( "%sSupported%s", "wptouch" ), '<span class="go">','</span>'); + } else if ($version >= 2.9) { + echo sprintf(__( "%sSupported.%s", "wptouch" ), '<span class="go">','</span>'); } else { echo sprintf(__( "%sUnsupported. Upgrade Required.%s", "wptouch" ), '<span class="red">','</span>'); - } + } echo '</p>'; ?> </div> diff --git a/wp-content/plugins/wptouch/html/push-area.php b/wp-content/plugins/wptouch/html/push-area.php index bb5d92aff2af6293d7816b44b56acc6b7022d790..e4bd5b851fac443c96cd4fb07d534bb74045c4ca 100644 --- a/wp-content/plugins/wptouch/html/push-area.php +++ b/wp-content/plugins/wptouch/html/push-area.php @@ -15,8 +15,8 @@ <input name="prowl-api" type="text" value="<?php echo $wptouch_settings['prowl-api']; ?>" /><?php _e( "Prowl API Key", "wptouch" ); ?> (<?php echo sprintf(__( "%sCreate a key now%s", "wptouch" ), '<a href="https://prowl.weks.net/settings.php" target="_blank">','</a>'); ?> - <a href="#prowl-info" class="fancylink">?</a>) <div id="prowl-info" style="display:none"> <h2><?php _e( "More Info", "wptouch" ); ?></h2> - <p><?php _e( "In order to enable Prowl notifications, you must create a Prowl account, and download/configure the Prowl application for iPhone.", "wptouch" ); ?></p> - <p><?php _e( "Next, visit the Prowl website and generate your API key, which we use to connect securely and send your notifications.", "wptouch" ); ?></p> + <p><?php _e( "In order to enable Prowl notifications you must create a Prowl account and download + configure the Prowl application for iPhone.", "wptouch" ); ?></p> + <p><?php _e( "Next, visit the Prowl website and generate your API key, which WPtouch will use to send your notifications.", "wptouch" ); ?></p> <p><?php echo sprintf(__( "%sVisit the Prowl Website%s", "wptouch" ), '<a href="http://prowl.weks.net/settings.php" target="_blank">','</a>'); ?> | <?php echo sprintf(__( "%sVisit iTunes to Download Prowl%s", "wptouch" ), '<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=320876271&mt=8" target="_blank">','</a>'); ?></p> </div> diff --git a/wp-content/plugins/wptouch/html/style-area.php b/wp-content/plugins/wptouch/html/style-area.php old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/admin-ajax-loader.gif b/wp-content/plugins/wptouch/images/admin-ajax-loader.gif index f3373e4c2bc9616654eae2b5b8e922820f222eac..871ee6d5cbeae07ae530c897434af89f48d6ce70 100644 Binary files a/wp-content/plugins/wptouch/images/admin-ajax-loader.gif and b/wp-content/plugins/wptouch/images/admin-ajax-loader.gif differ diff --git a/wp-content/plugins/wptouch/images/colorpicker/blank.gif b/wp-content/plugins/wptouch/images/colorpicker/blank.gif old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_background.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_background.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_hex.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_hex.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_hsb_b.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_hsb_b.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_hsb_h.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_hsb_h.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_hsb_s.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_hsb_s.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_indic.gif b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_indic.gif old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_overlay.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_overlay.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_rgb_b.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_rgb_b.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_rgb_g.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_rgb_g.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_rgb_r.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_rgb_r.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/colorpicker_submit.png b/wp-content/plugins/wptouch/images/colorpicker/colorpicker_submit.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/select.png b/wp-content/plugins/wptouch/images/colorpicker/select.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/colorpicker/slider.png b/wp-content/plugins/wptouch/images/colorpicker/slider.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/fancybox/fancy_closebox.png b/wp-content/plugins/wptouch/images/fancybox/fancy_closebox.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/fancybox/fancy_progress.png b/wp-content/plugins/wptouch/images/fancybox/fancy_progress.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/icon-pool/Admin.png b/wp-content/plugins/wptouch/images/icon-pool/Admin.png index 5a41634eec216c6d3a49a2a5819760bf31c372ea..6e1e41db56138d8eda42e02ddb826e453d8f5db3 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Admin.png and b/wp-content/plugins/wptouch/images/icon-pool/Admin.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Apps.png b/wp-content/plugins/wptouch/images/icon-pool/Apps.png index dc4d4048ff51e7778b9b9d7c62d288c7c52c78b9..a94b62439e89eb9fb93f905bf4f95d8017bfe9b7 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Apps.png and b/wp-content/plugins/wptouch/images/icon-pool/Apps.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Archives.png b/wp-content/plugins/wptouch/images/icon-pool/Archives.png index e010b321ce86f75289d5faf99ade0798929df3cb..775a097ac5c8adff9576503fbd8f7691f0697e92 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Archives.png and b/wp-content/plugins/wptouch/images/icon-pool/Archives.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Books.png b/wp-content/plugins/wptouch/images/icon-pool/Books.png index 19c0208202001ed49f6e2b7c64d49cf90fd8e319..596366b91ab4979c2554a6f7c2c67c7b294e8985 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Books.png and b/wp-content/plugins/wptouch/images/icon-pool/Books.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Camera.png b/wp-content/plugins/wptouch/images/icon-pool/Camera.png index d84213c4cfca9faf9070ba7fa23ab26d8441eb87..4005aee6246543db9ff9c766c30534c79cb7c76f 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Camera.png and b/wp-content/plugins/wptouch/images/icon-pool/Camera.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Clock.png b/wp-content/plugins/wptouch/images/icon-pool/Clock.png old mode 100644 new mode 100755 index b30bad7d3d64d746b75d573ab701d4df24c4e436..e2011cdee38e19071c714e7d9b671a78200bf100 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Clock.png and b/wp-content/plugins/wptouch/images/icon-pool/Clock.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Colors.png b/wp-content/plugins/wptouch/images/icon-pool/Colors.png index f1260606c22e8f81b27967d00f954ebee958339a..c6129df73e1ba1f11b7031abff072e76978810d2 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Colors.png and b/wp-content/plugins/wptouch/images/icon-pool/Colors.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Contacts.png b/wp-content/plugins/wptouch/images/icon-pool/Contacts.png index 948a0fc920b83469bf043954b673f734729e8722..6fe4112361125f8261c0b174cbcb6ce65e2d1e5d 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Contacts.png and b/wp-content/plugins/wptouch/images/icon-pool/Contacts.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Digg.png b/wp-content/plugins/wptouch/images/icon-pool/Digg.png index b349f2d82f56ad5c0af72524b160677f6166928a..d69e5aad3e9dcfea24979ca6d9eeaa5cb55f496f 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Digg.png and b/wp-content/plugins/wptouch/images/icon-pool/Digg.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Facebook.png b/wp-content/plugins/wptouch/images/icon-pool/Facebook.png index fdf66e65a91a09036ff57dfe5dcbe0bd3bac4aee..14d5ee3b81e37a50ed15b5b26573b81123cc913c 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Facebook.png and b/wp-content/plugins/wptouch/images/icon-pool/Facebook.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Finder.png b/wp-content/plugins/wptouch/images/icon-pool/Finder.png index 13859d8e22418d0b9c57f161b065503d14ee845b..db3251650e08322f807269e3c00fcea1024355db 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Finder.png and b/wp-content/plugins/wptouch/images/icon-pool/Finder.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Flickr.png b/wp-content/plugins/wptouch/images/icon-pool/Flickr.png index 40e5af63487e6e614aa8c52fece9a736fbabed73..5b948fdcc9167bb41672493f82891b04c87de654 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Flickr.png and b/wp-content/plugins/wptouch/images/icon-pool/Flickr.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Google.png b/wp-content/plugins/wptouch/images/icon-pool/Google.png index 036663ad8c94675875c3bd5ef5bec3aaaf1d3151..3b66ca1aeee8a081b5744cb2c4bec1178c113114 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Google.png and b/wp-content/plugins/wptouch/images/icon-pool/Google.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Home.png b/wp-content/plugins/wptouch/images/icon-pool/Home.png index ef27e773e4d8f7308ca6790c5df0d93923d4248a..0758bd7a20c0535741eaedc4fd47e0b01ad15181 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Home.png and b/wp-content/plugins/wptouch/images/icon-pool/Home.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Mail.png b/wp-content/plugins/wptouch/images/icon-pool/Mail.png index 23b1f830da6a854d5d6e6c2b1c3b294b27e17f73..8d30ddd515ada0af12b5b7be5cb466c176f0ed94 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Mail.png and b/wp-content/plugins/wptouch/images/icon-pool/Mail.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Maps.png b/wp-content/plugins/wptouch/images/icon-pool/Maps.png index 464659ecc97c225bad1be3bac9f9c9d26735f7f0..520142850e5d0a8458bfb5ca1253c8a4a6fe40fe 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Maps.png and b/wp-content/plugins/wptouch/images/icon-pool/Maps.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Music.png b/wp-content/plugins/wptouch/images/icon-pool/Music.png index 755ea73aeb4da8edde028715933795865c74ad02..24566dd859ed55502cc8592a751014b501e1e890 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Music.png and b/wp-content/plugins/wptouch/images/icon-pool/Music.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/MySpace.png b/wp-content/plugins/wptouch/images/icon-pool/MySpace.png index 8a1738fdd9910a4a04a3db11fade5adaba589763..2d3bf0f3bdd3e4822a22ee1dc64b6d8336e9178a 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/MySpace.png and b/wp-content/plugins/wptouch/images/icon-pool/MySpace.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Notes.png b/wp-content/plugins/wptouch/images/icon-pool/Notes.png index 98a748282c7d2a8e7d882492e13d7862a122e314..376008e1dd4e81f92a3e62da11ad41c0a0d05bdb 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Notes.png and b/wp-content/plugins/wptouch/images/icon-pool/Notes.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Photos.png b/wp-content/plugins/wptouch/images/icon-pool/Photos.png index d636c80f18e37aa781042b3c9d2fd7d5c7e265cd..f965b39f6e75a329733094256299270867b1846f 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Photos.png and b/wp-content/plugins/wptouch/images/icon-pool/Photos.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Podcast.png b/wp-content/plugins/wptouch/images/icon-pool/Podcast.png index 4fcfee8f6978ac8bb25890cd548b6d6a573bb054..bdae39cc9112a28ebbe38bde0d47fd828079e6a7 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Podcast.png and b/wp-content/plugins/wptouch/images/icon-pool/Podcast.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/RSS.png b/wp-content/plugins/wptouch/images/icon-pool/RSS.png index 831b9243dd66aacb921e9ac8c057d1ec164fc0dd..6917a6056ab9f38a2457d9a74b5b63b242bae6ea 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/RSS.png and b/wp-content/plugins/wptouch/images/icon-pool/RSS.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Safari.png b/wp-content/plugins/wptouch/images/icon-pool/Safari.png index 2853511318a4117f28dade1e6fc3ebce8cc595db..6dcb9753e86c369e8e69d5cb766eef5fe1bd4e70 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Safari.png and b/wp-content/plugins/wptouch/images/icon-pool/Safari.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Squares.png b/wp-content/plugins/wptouch/images/icon-pool/Squares.png index 3a57f4f706413c0e602b44c999ca9168394b4cd5..d57a14d2726d627706afecbd1774bc38b997297c 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Squares.png and b/wp-content/plugins/wptouch/images/icon-pool/Squares.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Stocks.png b/wp-content/plugins/wptouch/images/icon-pool/Stocks.png index 6ae75848eb697349787f0be2d39e9a6f3c9c0893..b81541c9de2b9bf42d5dad86df550089f417e493 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Stocks.png and b/wp-content/plugins/wptouch/images/icon-pool/Stocks.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/ToDo.png b/wp-content/plugins/wptouch/images/icon-pool/ToDo.png index 74c3ffaa3e865d33855c17ffd1477437609db622..c60a99b1206a0113e72640c2ad153da9057f4db4 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/ToDo.png and b/wp-content/plugins/wptouch/images/icon-pool/ToDo.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Twitter.png b/wp-content/plugins/wptouch/images/icon-pool/Twitter.png index e06bd586e712377100a826313547b5f56010310d..037c1a7552cd43db5d03d1869df485c9de64e4f8 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Twitter.png and b/wp-content/plugins/wptouch/images/icon-pool/Twitter.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Videos.png b/wp-content/plugins/wptouch/images/icon-pool/Videos.png index 240a2306e418d3d296ccf83be35d8817b1f05f87..af54d91bfa337cdffe88e26f845edfa2210ba1ea 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Videos.png and b/wp-content/plugins/wptouch/images/icon-pool/Videos.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/Wikipedia.png b/wp-content/plugins/wptouch/images/icon-pool/Wikipedia.png index c4e25ffcdb5669a4df5012b3d9b828ca8163e08f..b00e6c681eb3394af6ebe3960fbab33904e4ad9e 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/Wikipedia.png and b/wp-content/plugins/wptouch/images/icon-pool/Wikipedia.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/WordPress.png b/wp-content/plugins/wptouch/images/icon-pool/WordPress.png index ec8cf6aac1f818fda0a1ee66d51fbe54f01ed81f..7490c569b0fcf567cda71818a372865f62175c9a 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/WordPress.png and b/wp-content/plugins/wptouch/images/icon-pool/WordPress.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/YouTube.png b/wp-content/plugins/wptouch/images/icon-pool/YouTube.png index 273ef303517fb3891bc97d5bf89951f7b5d30dd8..c84564289da610138042506c70ff685d772f722e 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/YouTube.png and b/wp-content/plugins/wptouch/images/icon-pool/YouTube.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/iPod.png b/wp-content/plugins/wptouch/images/icon-pool/iPod.png index 354a494173793c07c10251ec05e1e377fdf45f69..c090606dcee1a48f0802e94398819cbee8ba291b 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/iPod.png and b/wp-content/plugins/wptouch/images/icon-pool/iPod.png differ diff --git a/wp-content/plugins/wptouch/images/icon-pool/iTunes.png b/wp-content/plugins/wptouch/images/icon-pool/iTunes.png index 1d269126dea60eca145588111c6ea22345f09675..5e8735d342020ef408513856464a199be207d8e8 100644 Binary files a/wp-content/plugins/wptouch/images/icon-pool/iTunes.png and b/wp-content/plugins/wptouch/images/icon-pool/iTunes.png differ diff --git a/wp-content/plugins/wptouch/images/settings_small.png b/wp-content/plugins/wptouch/images/settings_small.png index 87d3b6eaaaa28d664d5c302d972ded7e45a328a7..2949c889f63d44b07c8482a6cd2ff549a0f37b4d 100644 Binary files a/wp-content/plugins/wptouch/images/settings_small.png and b/wp-content/plugins/wptouch/images/settings_small.png differ diff --git a/wp-content/plugins/wptouch/images/upload.png b/wp-content/plugins/wptouch/images/upload.png old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/images/wand_small.png b/wp-content/plugins/wptouch/images/wand_small.png index 30ea9733eafc6daab3ceecf2eb3deb49cc6920c7..ddb3eb98526501c443a5228272b88e7e64cc04da 100644 Binary files a/wp-content/plugins/wptouch/images/wand_small.png and b/wp-content/plugins/wptouch/images/wand_small.png differ diff --git a/wp-content/plugins/wptouch/images/wptouch-icon.jpg b/wp-content/plugins/wptouch/images/wptouch-icon.jpg index e708a9eb7c0b02eec22b23ae1b75bfa99d21a0fe..9293b9b995101b6435be8d57e29a91518e6646eb 100644 Binary files a/wp-content/plugins/wptouch/images/wptouch-icon.jpg and b/wp-content/plugins/wptouch/images/wptouch-icon.jpg differ diff --git a/wp-content/plugins/wptouch/include/adsense.php b/wp-content/plugins/wptouch/include/adsense.php old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/include/icons.php b/wp-content/plugins/wptouch/include/icons.php old mode 100644 new mode 100755 index 81ea2fd6e9e7789c4d20f7e873db3687270a375a..9b60200ef2fff8c42b0e62bc83f6b52143a434fb --- a/wp-content/plugins/wptouch/include/icons.php +++ b/wp-content/plugins/wptouch/include/icons.php @@ -47,9 +47,9 @@ foreach ( $icons[ $key ] as $icon ) { echo '<ul class="wptouch-iconblock">'; if ( $key == 'custom' ) { - echo '<a title="Click to Delete" href="' . $_SERVER['REQUEST_URI'] . '&delete_icon=' . urlencode($icon['wpurl']) . '">'; - } - echo '<li><img src="' . $icon['wpurl'] . '" title="' . $icon['name'] . '" /><br /><span>' . $icon['friendly'] . '</span>'; + echo '<a title="Click to Delete" href="' . $_SERVER['REQUEST_URI'] . '&delete_icon=' . urlencode($icon['wpurl']) . '&nonce=' . wp_create_nonce( 'wptouch_delete_nonce' ) . '">'; + } + echo '<li><img src="' . $icon['wpurl'] . '" title="' . $icon['name'] . '" /><br /><span>' . $icon['friendly'] . '</span>'; echo '</li>'; if ( $key == 'custom' ) { echo '</a>'; @@ -94,4 +94,4 @@ } function bnc_get_master_icon_list() { - } \ No newline at end of file + } diff --git a/wp-content/plugins/wptouch/include/plugin.php b/wp-content/plugins/wptouch/include/plugin.php old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/include/submit.php b/wp-content/plugins/wptouch/include/submit.php old mode 100644 new mode 100755 index 8e27068de553e96b729067be0767b50aa11ad204..0553687cbf24ef7d7f6dcc7f16c045cc04de677e --- a/wp-content/plugins/wptouch/include/submit.php +++ b/wp-content/plugins/wptouch/include/submit.php @@ -21,6 +21,12 @@ if ( isset( $_POST['submit'] ) ) { } else { $a['enable-post-excerpts'] = 0; } + + if ( isset( $_POST['enable-twenty-eleven-footer'] ) ) { + $a['enable-twenty-eleven-footer'] = 1; + } else { + $a['enable-twenty-eleven-footer'] = 0; + } if ( isset( $_POST['enable-page-coms'] ) ) { $a['enable-page-coms'] = 1; @@ -28,6 +34,12 @@ if ( isset( $_POST['submit'] ) ) { $a['enable-page-coms'] = 0; } + if ( isset( $_POST['enable-zoom'] ) ) { + $a['enable-zoom'] = 1; + } else { + $a['enable-zoom'] = 0; + } + if ( isset( $_POST['enable-cats-button'] ) ) { $a['enable-cats-button'] = 1; } else { @@ -189,7 +201,11 @@ if ( isset( $_POST['submit'] ) ) { if ( isset($_POST['excluded-cat-ids']) ) { $a['excluded-cat-ids'] = $_POST['excluded-cat-ids']; } - + + if ( isset($_POST['excluded-tag-ids']) ) { + $a['excluded-tag-ids'] = $_POST['excluded-tag-ids']; + } + if ( isset($_POST['adsense-id']) ) { $a['adsense-id'] = trim( $_POST['adsense-id'] ); } @@ -263,7 +279,7 @@ if ( isset( $_POST['submit'] ) ) { $values = serialize($a); update_option('bnc_iphone_pages', $values); } elseif ( isset( $_POST['reset'] ) ) { - update_option( 'bnc_iphone_pages', '' ); + update_option( 'bnc_iphone_pages', false ); } do_action( 'wptouch_load_locale' ); diff --git a/wp-content/plugins/wptouch/js/ajax_upload.js b/wp-content/plugins/wptouch/js/ajax_upload.js old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/js/colorpicker_1.4.js b/wp-content/plugins/wptouch/js/colorpicker_1.4.js old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/js/fancybox_1.2.5.js b/wp-content/plugins/wptouch/js/fancybox_1.2.5.js old mode 100644 new mode 100755 diff --git a/wp-content/plugins/wptouch/lang/de_DE.mo b/wp-content/plugins/wptouch/lang/de_DE.mo new file mode 100644 index 0000000000000000000000000000000000000000..8fdb11adf5935a1bc5e8126ed66531ef98fe15c6 Binary files /dev/null and b/wp-content/plugins/wptouch/lang/de_DE.mo differ diff --git a/wp-content/plugins/wptouch/lang/fr_FR.mo b/wp-content/plugins/wptouch/lang/fr_FR.mo index 16d0d73907f642e02eaf51a6d94825b77ac46688..3a388c40c845f8e8ef1037a76f3a3e0f87c04bf5 100644 Binary files a/wp-content/plugins/wptouch/lang/fr_FR.mo and b/wp-content/plugins/wptouch/lang/fr_FR.mo differ diff --git a/wp-content/plugins/wptouch/lang/ja_JP.mo b/wp-content/plugins/wptouch/lang/ja_JP.mo index 47cf2a86635b74f25cde439301970e14331ff5d0..79de4d7220ce6efc1fd4caaee2ce66438ab762ef 100644 Binary files a/wp-content/plugins/wptouch/lang/ja_JP.mo and b/wp-content/plugins/wptouch/lang/ja_JP.mo differ diff --git a/wp-content/plugins/wptouch/lang/src/de_DE.po b/wp-content/plugins/wptouch/lang/src/de_DE.po index 9d46c2eb3308cd4b4f53468c48e06d776e5e047e..25c724c65388eb49892d8c1d0ca5dfc6699f55f8 100644 --- a/wp-content/plugins/wptouch/lang/src/de_DE.po +++ b/wp-content/plugins/wptouch/lang/src/de_DE.po @@ -1,5 +1,5 @@ -# Translation of the WordPress plugin WPtouch 1.9.19 by Christian Forjahn (www.kletterfieber.net). -# Copyright (C) 2011 Christian Forjahn +# Translation of the WordPress plugin WPtouch 1.9.19 by Dale Mugford & Duane Storey (BraveNewCode Inc.). +# Copyright (C) 2010 Dale Mugford & Duane Storey (BraveNewCode Inc.) # This file is distributed under the same license as the WPtouch package. # FIRST AUTHOR <EMAIL@ADDRESS>, 2010. # @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: WPtouch 1.9.19\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n" "POT-Creation-Date: 2011-01-26 14:44-0300\n" -"PO-Revision-Date: 2011-01-27 16:13+0100\n" -"Last-Translator: xPhilx <ps@hacktik.org>\n" +"PO-Revision-Date: 2011-01-26 14:44-0300\n" +"Last-Translator: Christian Forjahn <chris@kletterfieber.net>\n" "Language-Team: Christian Forjahn <chris@kletterfieber.net>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" #: ajax/file_upload.php:23 msgid "<p style=\"color:red; padding-top:10px\">There seems to have been an error.<p>Please try your upload again.</p>" -msgstr "<p style=\"color:red; padding-top:10px\">Ein Fehler ist aufgetreten.<p>Bitte Upload erneut starten.</p>" +msgstr "<p style=\"color:red; padding-top:10px\">Ein Fehler ist aufgetreten.<p>Bitte versuch es noch einmal.</p>" #: ajax/file_upload.php:25 msgid "<p style=\"color:green; padding-top:10px\">File has been saved and added to the pool.</p>" @@ -65,7 +65,7 @@ msgstr "Trage den \"pub-\" Teil deiner ID ein." #: html/ads-stats-area.php:12 msgid "Stats & Custom Code" -msgstr "Statistics & Eigener Code" +msgstr "Estadísticas & Eigener Code" #: html/ads-stats-area.php:13 msgid "If you'd like to capture traffic statistics " @@ -81,7 +81,7 @@ msgstr "Trage den Code für deine Statistik Tracking hier ein." #: html/ads-stats-area.php:14 msgid "You can also enter custom CSS & other HTML code." -msgstr "Du kannst auch eigenen CSS oder HTML Code einfügen." +msgstr "PDu kannst auch eigenen CSS oder HTML Code einfügen." #: html/ads-stats-area.php:16 #: html/advanced-area.php:22 @@ -122,11 +122,11 @@ msgstr "Erweiterte Optionen" #: html/advanced-area.php:8 msgid "Choose to enable/disable advanced features & options available for WPtouch." -msgstr "Auswählen um erweiterte Einstellungen & Funktionen in WPtocuh zu de-/aktivieren." +msgstr "Choose to enable/disable advanced features & options available for WPtouch." #: html/advanced-area.php:9 msgid "* WPtouch Restricted Mode attempts to fix issues where other plugins load scripts which interfere with WPtouch CSS and JavaScript." -msgstr "* WPtouch Restricted Mode versucht Probleme zu beheben, bei denen andere Plugins Scripts laden, die WPtouch Javascript und CSS beeinflussen." +msgstr "* WPtouch Restricted Mode attempts to fix issues where other plugins load scripts which interfere with WPtouch CSS and JavaScript." #: html/advanced-area.php:11 msgid "Custom User-Agents" @@ -134,133 +134,133 @@ msgstr "Custom User-Agents" #: html/advanced-area.php:12 msgid "Enter a comma-separated list of user-agents to enable WPtouch for a device that isn't currently officially supported." -msgstr "Gib eine Komma-getrennte Liste von user-agents an, um WPtouch auch für Geräte zu aktivieren, die noch nicht offiziell unterstützt werden." +msgstr "Enter a comma-separated list of user-agents to enable WPtouch for a device that isn't currently officially supported." #: html/advanced-area.php:13 #, php-format msgid "The currently enabled user-agents are: <em class='supported'>%s</em>" -msgstr "Derzeit werden diese user-agents unterstützt: <em class='supported'>%s</em>" +msgstr "The currently enabled user-agents are: <em class='supported'>%s</em>" #: html/advanced-area.php:20 msgid "Enable Categories tab in the header" -msgstr "Kategorien Tab im Header aktivieren." +msgstr "Enable Categories tab in the header" #: html/advanced-area.php:23 msgid "This will add a 'Categories' tab item in the WPtouch drop-down." -msgstr "Das aktiviert einen Kategorien Tab im WPtouch Dropdown-Menü." +msgstr "This will add a 'Categories' tab item in the WPtouch drop-down." #: html/advanced-area.php:24 msgid "It will display a list of your popular categories." -msgstr "Das wird eine Liste beliebter Kategorien anzeigen." +msgstr "It will display a list of your popular categories." #: html/advanced-area.php:29 msgid "Enable Tags tab in the header" -msgstr "Aktviere den Schlagwörter Tab Im Header." +msgstr "Enable Tags tab in the header" #: html/advanced-area.php:32 msgid "This will add a 'Tags' tab item in the WPtouch drop-down." -msgstr "Das aktiviert einen Schlagworte Tab im WPtouch Dropdown-Menü." +msgstr "This will add a 'Tags' tab item in the WPtouch drop-down." #: html/advanced-area.php:33 msgid "It will display a list of your popular tags." -msgstr "Das wird eine Liste beliebter Schlagworte anzeigen." +msgstr "It will display a list of your popular tags." #: html/advanced-area.php:38 msgid "Enable Search link in the header" -msgstr "Suchfunktion im Header aktivieren" +msgstr "Enable Search link in the header" #: html/advanced-area.php:41 msgid "This will add a 'Search' item in the WPtouch sub header." -msgstr "Aktiviert ein Suchfunktions Punkt im WPtouch Sub-Header." +msgstr "This will add a 'Search' item in the WPtouch sub header." #: html/advanced-area.php:42 msgid "It will display an overlay on the title area allowing users to search your website." -msgstr "Einblendung einer Überlagerung im Titel-Bereich, um dem Besucher eine Suchfunktion für die Webseite bereitzustellen." +msgstr "It will display an overlay on the title area allowing users to search your website." #: html/advanced-area.php:47 msgid "Enable Login/My Account tab in the header" -msgstr "Aktiviere Login/Mein Account Tab im Header" +msgstr "Enable Login/My Account tab in the header" #: html/advanced-area.php:50 msgid "This will add a 'Login' tab in the WPtouch sub header beside the Tags and Categories tabs if they are also enabled." -msgstr "Fügt einen 'Login' Tab im WPtouch Sub-Header neben den Schlagworte und Kategorien Tabs hinzu, wenn sie aktiviert sind." +msgstr "This will add a 'Login' tab in the WPtouch sub header beside the Tags and Categories tabs if they are also enabled." #: html/advanced-area.php:51 msgid "It will display a username/password drop-down, allowing users to login plus be automatically re-directed back to the page they logged in from without seeing the WP admin." -msgstr "Zeigt ein Username/Passwort Dropdown an, das es erlaubt sich einzuloggen und gleich wieder dorthin zurückgeleitet zu werden wo man sich eingelogt hat, ohne auf die Admin Seite geleitet zu werden." +msgstr "It will display a username/password drop-down, allowing users to login plus be automatically re-directed back to the page they logged in from without seeing the WP admin." #: html/advanced-area.php:52 msgid "Once logged in, a new 'My Account' button will appear. The 'My Account' button shows useful links depending on the type of account (subscriber, admin, etc.)." -msgstr "Wenn man sich einmal eingeloggt hat erscheint ein 'My Account' Button. Der 'My Account' Button zeigt nützliche Links abhängig von der Art des Accounts (Admin, Mitarabeiter,...) an." +msgstr "Once logged in, a new 'My Account' button will appear. The 'My Account' button shows useful links depending on the type of account (subscriber, admin, etc.)." #: html/advanced-area.php:53 msgid "NOTE: The Account tab/links will always appear if you have enabled registration on your site or require users to login for comments." -msgstr "Achtung: Der 'Account Tab/Link' taucht immer auf, wenn die Regsitrierung aktiviert ist, oder man sich zum Kommentieren einloggen muss." +msgstr "NOTE: The Account tab/links will always appear if you have enabled registration on your site or require users to login for comments." #: html/advanced-area.php:58 msgid "Display Upcoming Dates link in the header (requires <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> or higher)" -msgstr "Zeigt bevorstehende Events im Header an (benötigt <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> oder aktueller)" +msgstr "Display Upcoming Dates link in the header (requires <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> or higher)" #: html/advanced-area.php:61 msgid "When this option is checked and the GigPress plugin is installed, a list of your Upcoming Shows will be viewable from a drop-down in the WPtouch header." -msgstr "Wenn diese Option aktiviert ist und das GigPress Plugin installiert ist, erscheint im Dropdown Menü einen Liste der bevorstehenden Events im WPtouch Header." +msgstr "When this option is checked and the GigPress plugin is installed, a list of your Upcoming Shows will be viewable from a drop-down in the WPtouch header." #: html/advanced-area.php:66 msgid "Display Twitter link in the header (requires <a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> or higher)" -msgstr "Zeige den Twitter link im Header (benötigt <a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> oder aktueller)" +msgstr "Display Twitter link in the header (requires <a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> or higher)" #: html/advanced-area.php:69 msgid "When this option is checked and the WordTwit plugin is installed, a list of your Tweets will be viewable from a drop-down in the WPtouch header." -msgstr "Wenn dies Option aktiviert ist und das WordTwit Plugin installiert ist, erscheint im Dropdown Menü einen Liste deiner Tweets im WPtouch Header." +msgstr "When this option is checked and the WordTwit plugin is installed, a list of your Tweets will be viewable from a drop-down in the WPtouch header." #: html/advanced-area.php:74 msgid "Enable gravatars in comments" -msgstr "Aktiviere Gravatars in Kommentaren" +msgstr "Enable gravatars in comments" #: html/advanced-area.php:81 msgid "Enable comments on pages" -msgstr "Aktiviere Kommentare auf Seiten" +msgstr "Enable comments on pages" #: html/advanced-area.php:84 msgid "This will add the comment form to all pages with 'Allow Comments' checked in your WordPress admin." -msgstr "Fügt ein Kommentar Formular hinzu, wenn Kommentare über WordPress Admin erlaubt sind." +msgstr "This will add the comment form to all pages with 'Allow Comments' checked in your WordPress admin." #: html/advanced-area.php:90 #, php-format msgid "1%sst%s visit mobile users will see desktop theme" -msgstr "Zeige das Desktop Theme beim ersten Besuch" +msgstr "1%sst%s visit mobile users will see desktop theme" #: html/advanced-area.php:93 msgid "When this option is checked, users will see your regular site theme first, and have the option in your footer to switch to the WPtouch mobile view." -msgstr "Wenn diese Option aktiviert ist, sieht der Besucher zuerst das reguläre Theme, bekommt im Footer aber die Möglichkeit auf das mobile Theme zu wechseln." +msgstr "When this option is checked, users will see your regular site theme first, and have the option in your footer to switch to the WPtouch mobile view." #: html/advanced-area.php:94 msgid "They'll be able to change back and forth either way. Make sure you have the wp_footer(); function call in your regular theme's footer.php file for the switch link to work properly." -msgstr "Sie werden die Möglichkeit habe zwischen den Themes hin und her zu wechseln. Achte darauf, dass die Funktion wp_footer(); in der footer.php des reulären Themes aufgerufen wird." +msgstr "They'll be able to change back and forth either way. Make sure you have the wp_footer(); function call in your regular theme's footer.php file for the switch link to work properly." #: html/advanced-area.php:99 msgid "Enable WPtouch Restricted Mode" -msgstr "Aktiviere WPtouch Restricted Mode" +msgstr "Enable WPtouch Restricted Mode" #: html/advanced-area.php:102 msgid "Disallow other plugins from loading into scripts into WPtouch's header and footer." -msgstr "Verbiete anderen Plugins Skripte in den WPtouch Header und Footer zu laden." +msgstr "Disallow other plugins from loading into scripts into WPtouch's header and footer." #: html/advanced-area.php:103 msgid "Sometimes fixes incompatibilities and speeds up WPtouch." -msgstr "Löst teilweise Inkompatibilitäten und beschleunigt WPtouch." +msgstr "Sometimes fixes incompatibilities and speeds up WPtouch." #: html/advanced-area.php:104 msgid "Some plugins load conflicting javascript, extra CSS style sheets, and other functional code into your theme to accomplish what they add to your site. As WPtouch works complete on its own without any other plugin installed, in some cases (where you have several plugins or find something doesn't work right with WPtouch) you may want to enable Restricted Mode to ensure that WPtouch works properly, and loads quickly for mobile users." -msgstr "Einige Plugins laden nicht kompatibles Javascript, CSS Style Sheets, oder anderen ausführbaren Code in dein Theme, um Dinge zu deiner Seite hinzuzufügen. Da WPtouch komplett autark ohne Zutun anderer Pugins arbeitet, kann es vorkommen (wenn du merkst das etwas nicht funktioniert), dass du den Restricted Mode aktvieren willst um sicherzustellen, das WPtouch korrekt arbeitet und für mobile Benutzer schnell lädt." +msgstr "Some plugins load conflicting javascript, extra CSS style sheets, and other functional code into your theme to accomplish what they add to your site. As WPtouch works complete on its own without any other plugin installed, in some cases (where you have several plugins or find something doesn't work right with WPtouch) you may want to enable Restricted Mode to ensure that WPtouch works properly, and loads quickly for mobile users." #: html/advanced-area.php:109 msgid "Custom user-agents" -msgstr "Eigene user-agents" +msgstr "Custom user-agents" #: html/advanced-area.php:111 msgid "After changing the user-agents, please visit the WP Super Cache admin page and update your rewrite rules." -msgstr "Nachdem du die user-agents geändert hast gehe auf die Adminseite von WP Super Cache und passe die Rewrite Rules an." +msgstr "After changing the user-agents, please visit the WP Super Cache admin page and update your rewrite rules." #: html/general-settings-area.php:5 msgid "General Settings" @@ -273,7 +273,7 @@ msgstr "Home Page Umleitung" #: html/general-settings-area.php:9 #, php-format msgid "WPtouch by default follows your %sWordPress » Reading Options%s. You can also set a different one for WPtouch." -msgstr "WPtouch beachtet standardmässig deine %sWordPress » Lese Optionen%s. Du kannst das hier für WPtouch ändern." +msgstr "WPtouch by default follows your %sWordPress » Reading Options%s. You can also set a different one for WPtouch." #: html/general-settings-area.php:11 msgid "Site Title" @@ -281,7 +281,7 @@ msgstr "Seiten Titel" #: html/general-settings-area.php:12 msgid "You can shorten your site title here so it won't be truncated by WPtouch." -msgstr "Hier kannst Du den Seiten Titel kürzen, damit sie nicht durch WPtouch abgeschnitten werden." +msgstr "You can shorten your site title here so it won't be truncated by WPtouch." #: html/general-settings-area.php:15 msgid "Excluded Categories" @@ -289,39 +289,39 @@ msgstr "Kategorien Ausschliessen" #: html/general-settings-area.php:16 msgid "Choose categories you want excluded from the main post listings in WPtouch." -msgstr "Suche Kategorien aus, die du aus der Beitrags Liste in WPtouch ausschliessen willst." +msgstr "Choose categories you want excluded from the main post listings in WPtouch." #: html/general-settings-area.php:18 msgid "Text Justification Options" -msgstr "Text Prüfungsoptionen" +msgstr "Text Justification Options" #: html/general-settings-area.php:19 msgid "Set the alignment for text." -msgstr "Stelle die Ausrichtung des Texts ein." +msgstr "Set the alignment for text." #: html/general-settings-area.php:22 msgid "Post Listings Options" -msgstr "Beitrags Listen Optionen" +msgstr "Post Listings Options" #: html/general-settings-area.php:23 msgid "Choose between calendar Icons, post thumbnails (WP 2.9) or none for your post listings." -msgstr "Wähle zwischen Kalender Icons, Post Thumbnails (WP 2.9) oder nichts für deine Beitragsliste aus." +msgstr "Choose between calendar Icons, post thumbnails (WP 2.9) or none for your post listings." #: html/general-settings-area.php:24 msgid "Select which meta items are shown below titles on main, search, & archives pages." -msgstr "Wähle welche Meta Infos unter den Titeln der Hauptseite, Suche & Archivseiten angeezeigt werden." +msgstr "Select which meta items are shown below titles on main, search, & archives pages." #: html/general-settings-area.php:25 msgid "Also, choose if excerpts are shown/hidden (default is hidden)." -msgstr "Wähle auch, ob Excerpts angezeigt oder verborgen (default) werden." +msgstr "Also, choose if excerpts are shown/hidden (default is hidden)." #: html/general-settings-area.php:27 msgid "Footer Message" -msgstr "Footer Nachricht" +msgstr "Footer Message" #: html/general-settings-area.php:28 msgid "Customize the default footer message shown in WPtouch here." -msgstr "Bearbeite die Standardnachricht im WPtouch Footer hier." +msgstr "Customize the default footer message shown in WPtouch here." #: html/general-settings-area.php:32 msgid "WPtouch Home Page" @@ -330,15 +330,15 @@ msgstr "WPtouch Home Page" #: html/general-settings-area.php:37 #: html/page-area.php:63 msgid "You have no pages yet. Create some first!" -msgstr "Es gibt noch keine Seiten. Erstelle zuerst welche!" +msgstr "You have no pages yet. Create some first!" #: html/general-settings-area.php:43 msgid "Site title text" -msgstr "Seiten Titel Text" +msgstr "Site title text" #: html/general-settings-area.php:49 msgid "Comma list of Category IDs, eg: 1,2,3" -msgstr "Komma Liste der Kategorien IDs, zB: 1,2,3" +msgstr "Comma list of Category IDs, eg: 1,2,3" #: html/general-settings-area.php:57 msgid "Left" @@ -362,55 +362,55 @@ msgstr "Post Thumbnails / Featured Images" #: html/general-settings-area.php:70 msgid "Post Thumbnails / Featured Images (Random)" -msgstr "Post Thumbnails / Featured Images (zufällige Auswahl)" +msgstr "Post Thumbnails / Featured Images (Random)" #: html/general-settings-area.php:71 msgid "No Icon or Thumbnail" -msgstr "Kein Icon oder Thumbnail" +msgstr "No Icon or Thumbnail" #: html/general-settings-area.php:73 msgid "Post Listings Display" -msgstr "Beitrags-Listen Anzeige" +msgstr "Apariencia del Listado de Artículos" #: html/general-settings-area.php:73 msgid "Thumbnails Requires WordPress 2.9+" -msgstr "Thumbnails benötigen WordPress 2.9+" +msgstr "Thumbnails Requires WordPress 2.9+" #: html/general-settings-area.php:76 msgid "This will change the display of blog and post listings between Calendar Icons view and Post Thumbnails view." -msgstr "Ändert die Darstellung des Blogs und der Beitragslisten (Kalendar Icons Ansicht und Post Thumbnails Ansicht)." +msgstr "This will change the display of blog and post listings between Calendar Icons view and Post Thumbnails view." #: html/general-settings-area.php:77 msgid "The <em>Post Thumbnails w/ Random</em> option will fill missing post thumbnails with random abstract images. (WP 2.9+)" -msgstr "Die <em>Post Thumbnails w/ Random</em> Option ersetzt fehlende Post Thumbnails mit zufälligen Bildern. (WP 2.9+)" +msgstr "The <em>Post Thumbnails w/ Random</em> option will fill missing post thumbnails with random abstract images. (WP 2.9+)" #: html/general-settings-area.php:84 msgid "Enable Truncated Titles" -msgstr "Aktiviere verkürzte Titel" +msgstr "Enable Truncated Titles" #: html/general-settings-area.php:84 msgid "Will use ellipses when titles are too long instead of wrapping them" -msgstr "Anstelle von Textumbrüchen werden Leer- und Auslassungszeichen eingefügt" +msgstr "Will use ellipses when titles are too long instead of wrapping them" #: html/general-settings-area.php:88 msgid "Show Author's Name" -msgstr "Zeige den Namen des Authors" +msgstr "Show Author's Name" #: html/general-settings-area.php:92 msgid "Show Categories" -msgstr "Zeige Kategorien" +msgstr "Show Categories" #: html/general-settings-area.php:96 msgid "Show Tags" -msgstr "Zeige Schlagworte" +msgstr "Show Tags" #: html/general-settings-area.php:100 msgid "Hide Excerpts" -msgstr "Verberge Excerpts" +msgstr "Hide Excerpts" #: html/general-settings-area.php:104 msgid "Footer message" -msgstr "Footer Nachricht" +msgstr "Footer message" #: html/head-area.php:13 #, php-format @@ -433,24 +433,24 @@ msgstr "WPtouch Wire" #: html/head-area.php:33 msgid "Find Out More ›" -msgstr "Mehr erfahren ›" +msgstr "Find Out More ›" #: html/icon-area.php:21 msgid "Default & Custom Icon Pool" -msgstr "Standard & Benutzer Icon Pool" +msgstr "Default & Custom Icon Pool" #: html/icon-area.php:24 msgid "Adding Icons" -msgstr "Icons hinzufügen" +msgstr "Adding Icons" #: html/icon-area.php:25 msgid "To add icons to the pool, simply upload a .png, .jpeg or .gif image from your computer." -msgstr "Um Icons hinzuzufügen lade einfach .png, .jpeg oder .gif Bilder von deinem Computer hoch." +msgstr "To add icons to the pool, simply upload a .png, .jpeg or .gif image from your computer." #: html/icon-area.php:27 #, php-format msgid "Default icons generously provided by %sMarcelo Marfil%s." -msgstr "Die standart-Icons wurden großzügigerweise von %sMarcelo Marfil%s bereitgestellt." +msgstr "Default icons generously provided by %sMarcelo Marfil%s." #: html/icon-area.php:29 msgid "Logo/Bookmark Icons" @@ -458,21 +458,21 @@ msgstr "Logo/Bookmark Icons" #: html/icon-area.php:30 msgid "If you're adding a logo icon, the best dimensions for it are 59x60px (png) when used as a bookmark icon." -msgstr "Wenn du ein Logo Icon hinzufügst, sollte das Bild am Besten 59x60px (png) groß sein, wenn es als Bookmark Icon genutzt werden soll." +msgstr "If you're adding a logo icon, the best dimensions for it are 59x60px (png) when used as a bookmark icon." #: html/icon-area.php:31 #, php-format msgid "Need help? You can use %sthis easy online icon generator%s to make one." -msgstr "Bruchst du Hilfe? Nutze einfach den %sOnline Icon Generator%s um ein Icon zu erstellen." +msgstr "Need help? You can use %sthis easy online icon generator%s to make one." #: html/icon-area.php:32 #, php-format msgid "These files will be stored in this folder we create: %s/uploads/wptouch/custom-icons" -msgstr "Diese Dateien werden unter dem Ordner gespeichert: %s/uploads/wptouch/custom-icons" +msgstr "These files will be stored in this folder we create: %s/uploads/wptouch/custom-icons" #: html/icon-area.php:33 msgid "If an upload fails (usually it's a permission problem) check your wp-content path settings in WordPress' Miscellaneous Settings, or create the folder yourself using FTP and try again." -msgstr "Wenn ein Upload fehlschlägt (normalerweise ein Berechtigungsproblem) überprüfe deine wp-content Pfad Einsellungen unter WordPress --> Mediathek, oder erstelle den Ordner selbst per FTP." +msgstr "If an upload fails (usually it's a permission problem) check your wp-content path settings in WordPress' Miscellaneous Settings, or create the folder yourself using FTP and try again." #: html/icon-area.php:35 msgid "Upload Icon" @@ -484,40 +484,40 @@ msgstr "Uploading..." #: html/page-area.php:5 msgid "Logo Icon // Menu Items & Pages Icons" -msgstr "Logo Icon // Menü Punkte & Seiten Icons" +msgstr "Logo Icon // Menu Items & Pages Icons" #: html/page-area.php:8 msgid "Logo / Home Screen Icon <br />& Default Menu Items" -msgstr "Logo / Home Screen Icon <br />& Default Menü Punkte" +msgstr "Logo / Home Screen Icon <br />& Default Menu Items" #: html/page-area.php:9 #, php-format msgid "If you do not want your logo to have the glossy effect added to it, make sure you select %sEnable Flat Bookmark Icon%s" -msgstr "Wenn du keinen Glanzeffekt im Logo haben willst, stelle sicher, dass du %sAktiviere Flat Bookmark Icon%s aktiviert hast." +msgstr "If you do not want your logo to have the glossy effect added to it, make sure you select %sEnable Flat Bookmark Icon%s" #: html/page-area.php:10 msgid "Choose the logo displayed in the header (also your bookmark icon), and the pages you want included in the WPtouch drop-down menu." -msgstr "Wähle das anzuzeigende Logo für den Header (dein Bookmark Icon) und die Seiten, die du im WPtouch Dropdown Menü haben willst." +msgstr "Choose the logo displayed in the header (also your bookmark icon), and the pages you want included in the WPtouch drop-down menu." #: html/page-area.php:11 msgid "Remember, only those checked will be shown." -msgstr "Beachte, nur die Aktivierten werden angezeigt." +msgstr "Remember, only those checked will be shown." #: html/page-area.php:12 msgid "Enable/Disable default items in the WPtouch site menu." -msgstr "De-/Aktiviere die Default Punkte im WPtouch Seiten Menü." +msgstr "Enable/Disable default items in the WPtouch site menu." #: html/page-area.php:14 msgid "Pages + Icons" -msgstr "Seiten + Icons" +msgstr "Pages + Icons" #: html/page-area.php:15 msgid "Next, select the icons from the lists that you want to pair with each page menu item." -msgstr "Jetzt wähle die Icons aus der Liste, die du mit den Seiten Menü für jede Seite vereinen willst." +msgstr "Next, select the icons from the lists that you want to pair with each page menu item." #: html/page-area.php:16 msgid "You can also decide if pages are listed by the page order (ID) in WordPress, or by name (default)." -msgstr "Du kannst entscheiden, ob die Reihenfolge durch die Seiten ID, oder alphabetisch (default) geordnet sein soll." +msgstr "You can also decide if pages are listed by the page order (ID) in WordPress, or by name (default)." #: html/page-area.php:24 msgid "Logo & Home Screen Bookmark Icon" @@ -525,51 +525,51 @@ msgstr "Logo & Home Screen Bookmark Icon" #: html/page-area.php:29 msgid "Enable Flat Bookmark Icon" -msgstr "Aktiviere Flat Bookmark Icon" +msgstr "Enable Flat Bookmark Icon" #: html/page-area.php:32 msgid "The default applies for iPhone/iPod touch applies a glossy effect to the home-screen bookmark/logo icon you select." -msgstr "Die Standardeinstellung fügt für iPhone/iPod Touch einen Glanzeffekt zum Home-screen Bookmark/Logo Icon hinzu." +msgstr "The default applies for iPhone/iPod touch applies a glossy effect to the home-screen bookmark/logo icon you select." #: html/page-area.php:33 msgid "When checked your icon will not have the glossy effect automatically applied to it." -msgstr "Wenn diese Option aktiviert ist, wird der Glanzeffekt nicht automatisch zum Icon hinzugefügt." +msgstr "When checked your icon will not have the glossy effect automatically applied to it." #: html/page-area.php:36 msgid "Enable Home Menu Item" -msgstr "Aktiviere Home Menü Symbol" +msgstr "Enable Home Menu Item" #: html/page-area.php:37 msgid "Enable RSS Menu Item" -msgstr "Aktiviere RSS Menü Symbol" +msgstr "Enable RSS Menu Item" #: html/page-area.php:38 msgid "Enable Email Menu Item" -msgstr "Aktiviere Email Menü Symbol" +msgstr "Enable Email Menu Item" #: html/page-area.php:38 msgid "Uses default WordPress admin e-mail" -msgstr "Nutzt die WordPress Admin E-Mail Adresse" +msgstr "Uses default WordPress admin e-mail" #: html/page-area.php:43 msgid "By Name" -msgstr "Durch Namen" +msgstr "By Name" #: html/page-area.php:44 msgid "By Page ID" -msgstr "Duch Seiten ID" +msgstr "By Page ID" #: html/page-area.php:46 msgid "Menu List Sort Order" -msgstr "Menü Listen Sortierung" +msgstr "Menu List Sort Order" #: html/plugin-compat-area.php:7 msgid "Plugin Support & Compatibility" -msgstr "Plugin Support & Kompatibilität" +msgstr "Plugin Support & Compatibility" #: html/plugin-compat-area.php:13 msgid "WordPress version: " -msgstr "WordPress Version: " +msgstr "WordPress version: " #: html/plugin-compat-area.php:16 #, php-format @@ -593,61 +593,61 @@ msgstr "%sUnsupported. Upgrade Required.%s" #: html/plugin-compat-area.php:27 msgid "Here you'll find information on additional WPtouch features and their requirements, including those activated with companion plugins." -msgstr "Hier findest du Infos über die zusätzlichen WPtouch Funktionen und Anforderungen, inklusive der aktivierten Plugins." +msgstr "Here you'll find information on additional WPtouch features and their requirements, including those activated with companion plugins." #: html/plugin-compat-area.php:32 msgid "WordPress Pages & Feature Support" -msgstr "WordPress Seiten & Funktions Support" +msgstr "WordPress Pages & Feature Support" #: html/plugin-compat-area.php:39 msgid "All of your WP links will automatically show on your page called 'Links'." -msgstr "Alle WP Links werden automatisch auf einer Seite namens 'Links' angezeigt." +msgstr "All of your WP links will automatically show on your page called 'Links'." #: html/plugin-compat-area.php:41 msgid "If you create a page called 'Links', all your WP links would display in <em>WPtouch</em> style." -msgstr "Wenn du eine Seite 'Links' erstellst, erscheinen alle WP Links im <em>WPtouch</em> Stil." +msgstr "If you create a page called 'Links', all your WP links would display in <em>WPtouch</em> style." #: html/plugin-compat-area.php:47 msgid "All your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> images will automatically show on your page called 'Photos'." -msgstr "Alle <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> Bilder werden autmatisch auf der Seite namens 'Photos' angezeigt." +msgstr "All your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> images will automatically show on your page called 'Photos'." #: html/plugin-compat-area.php:49 msgid "You have a page called 'Photos', but don't have <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> installed." -msgstr "Du hast eine Seite namens 'Photos', aber <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> ist nicht installiert." +msgstr "You have a page called 'Photos', but don't have <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> installed." #: html/plugin-compat-area.php:51 msgid "If you create a page called 'Photos', all your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> photos would display in <em>WPtouch</em> style." -msgstr "Wenn du eine Seite namens 'Photos' erstellst, werden alle deine <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> Fotos im <em>WPtouch</em> Stil angezeigt." +msgstr "If you create a page called 'Photos', all your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> photos would display in <em>WPtouch</em> style." #: html/plugin-compat-area.php:54 msgid "If you create a page called 'Photos', and install the <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> plugin, your photos would display in <em>WPtouch</em> style." -msgstr "Wenn du eine Seite namens 'Photos' erstellst und das <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> Plugin installierst, werden alle deine Fotos im <em>WPtouch</em> Stil angezeigt." +msgstr "If you create a page called 'Photos', and install the <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> plugin, your photos would display in <em>WPtouch</em> style." #: html/plugin-compat-area.php:62 msgid "Your tags and your monthly listings will automatically show on your page called 'Archives'." -msgstr "Deine Schlagworte und die monatlichen Listen werden automatisch unter 'Archives' angezeigt." +msgstr "Your tags and your monthly listings will automatically show on your page called 'Archives'." #: html/plugin-compat-area.php:64 msgid "If you had a page called 'Archives', your tags and monthly listings would display in <em>WPtouch</em> style." -msgstr "Wenn du eine Seite namen 'Archives' hast, werden deine Schlagworte und die monatlichen Listen im <em>WPtouch</em> Stil angezeigt." +msgstr "If you had a page called 'Archives', your tags and monthly listings would display in <em>WPtouch</em> style." #: html/plugin-compat-area.php:68 msgid "Known Plugin Support & Conflicts" -msgstr "Bekannte Plugin Support & Konflikte" +msgstr "Known Plugin Support & Conflicts" #: html/push-area.php:4 msgid "Push Notification Options" -msgstr "Push Benachrichtiguns Optionen" +msgstr "Push Notification Options" #: html/push-area.php:7 #, php-format msgid "Here you can configure WPtouch to push selected notifications through your %sProwl%s account to your iPhone, iPod touch and Growl-enabled Mac or PC." -msgstr "Hier kannst du WPtouch konfigurieren, damit ausgewählte Benachrichtigungen über deinen %sProwl%s Account auf dein iPhone, iPod Touch und Growl-enabled Mac oder PC gepushed werden." +msgstr "Here you can configure WPtouch to push selected notifications through your %sProwl%s account to your iPhone, iPod touch and Growl-enabled Mac or PC." #: html/push-area.php:8 #, php-format msgid "%sMake sure you generate a Prowl API key to use here%s otherwise no notifications will be pushed to you." -msgstr "%sVergewissere dich, dass du einen Prowl API Key hier nutzt%s, sonst werden keine Benachrichtigungen an dich gepushed." +msgstr "%sMake sure you generate a Prowl API key to use here%s otherwise no notifications will be pushed to you." #: html/push-area.php:15 msgid "Prowl API Key" @@ -656,20 +656,20 @@ msgstr "Prowl API Key" #: html/push-area.php:15 #, php-format msgid "%sCreate a key now%s" -msgstr "%sJetzt einen Key generieren%s" +msgstr "%sCreate a key now%s" #: html/push-area.php:18 msgid "In order to enable Prowl notifications, you must create a Prowl account, and download/configure the Prowl application for iPhone." -msgstr "Um Prowl Benachrichtigungen zu nutzen, musst du einen Prowl Account erzeugen und die Prowl App fürs iPhone herunterladen/konfigurieren." +msgstr "In order to enable Prowl notifications, you must create a Prowl account, and download/configure the Prowl application for iPhone." #: html/push-area.php:19 msgid "Next, visit the Prowl website and generate your API key, which we use to connect securely and send your notifications." -msgstr "Besuche jetzt die Prowl Webseite und erzeuge deinen API Key, um eine sichere Verbindung für deine Benachrichtigungen aufzubauen." +msgstr "Next, visit the Prowl website and generate your API key, which we use to connect securely and send your notifications." #: html/push-area.php:21 #, php-format msgid "%sVisit the Prowl Website%s" -msgstr "%sBesuche die Prowl Webseite%s" +msgstr "%sVisit the Prowl Website%s" #: html/push-area.php:21 #, php-format @@ -678,52 +678,52 @@ msgstr "%sVisit iTunes to Download Prowl%s" #: html/push-area.php:25 msgid "Your Prowl API key has been verified." -msgstr "Dein Prowl API Kkey wurde verifiziert." +msgstr "Your Prowl API key has been verified." #: html/push-area.php:28 msgid "Sorry, your Prowl API key is not verified." -msgstr "Leider konnte dein Prowl API Key nicht verifiziert werden." +msgstr "Sorry, your Prowl API key is not verified." #: html/push-area.php:29 msgid "Please check your key and make sure there are no spaces or extra characters." -msgstr "Überprüfe deinen Key und stelle sicher, dass keine Leer- oder Sonderzeichen enthalten sind." +msgstr "Please check your key and make sure there are no spaces or extra characters." #: html/push-area.php:39 msgid "Notify me of new comments & pingbacks/tracksbacks" -msgstr "Benachtige mich bei neuen Kommentaren & Pingbacks/Tracksbacks" +msgstr "Notify me of new comments & pingbacks/tracksbacks" #: html/push-area.php:43 msgid "Notify me of new account registrations" -msgstr "Benachrichtige mich über neu erstellte Accounts" +msgstr "Notify me of new account registrations" #: html/push-area.php:47 msgid "Allow users to send me direct messages" -msgstr "Erlaube Nutzern mir direkte Nachrichten zu schicken" +msgstr "Allow users to send me direct messages" #: html/push-area.php:50 msgid "This enables a new link to a drop-down in the submenu bar for WPtouch ('Message Me')." -msgstr "Aktiviert einen neuen Link im Dropdown Submenü von WPtouch ('Message Me')." +msgstr "This enables a new link to a drop-down in the submenu bar for WPtouch ('Message Me')." #: html/push-area.php:51 msgid "When opened, a form is shown for users to fill in. The name, e-mail address, and message area is shown. Thier IP will also be sent to you, in case you want to ban it in the WordPress admin." -msgstr "Beim Öffnen bekommt der Benutzer ein Formular indem der Name, E-Mail Adresse und Nachrichten Bereich angezeigt wird. Die IP wird auch mitgeschickt, falls du sie im WP Admin bannen willst." +msgstr "When opened, a form is shown for users to fill in. The name, e-mail address, and message area is shown. Thier IP will also be sent to you, in case you want to ban it in the WordPress admin." #: html/push-area.php:55 #, php-format msgid "%sCURL is required%s on your webserver to use Push capabilities in WPtouch." -msgstr "%sCURL wird auf dem Webserver benötigt%s, um die Push Funktion von WPtouch zu nutzen." +msgstr "%sCURL is required%s on your webserver to use Push capabilities in WPtouch." #: html/style-area.php:5 msgid "Style & Color Options" -msgstr "Style- & Farboptionen" +msgstr "Style & Color Options" #: html/style-area.php:8 msgid "Here you can customize some of the more visible features of WPtouch." -msgstr "Hier kannst du einige sichtbare Funktionen von WPtouch ändern." +msgstr "Here you can customize some of the more visible features of WPtouch." #: html/style-area.php:17 msgid "The default WPtouch theme emulates a native iPhone application." -msgstr "Das standartmäßige WPtouch Theme emuliert eine native iPhone App." +msgstr "The default WPtouch theme emulates a native iPhone application." #: html/style-area.php:21 msgid "Classic" @@ -827,7 +827,7 @@ msgstr "%sWarnung%s" #: themes/core/core-functions.php:56 msgid "Sorry, this theme is only meant for use with WordPress on certain smartphones." -msgstr "Dieses Theme ist leider nur für bestimmte Smartphones gedacht" +msgstr "Sorry, dieses Theme ist nur für bestimmte Smartphones gedacht" #: themes/core/core-functions.php:85 #: themes/default/index.php:130 @@ -865,7 +865,7 @@ msgstr "Archive › %s" #: themes/core/core-functions.php:146 msgid "No more entries to display." -msgstr "Keine weiteren Einträge gefunden." +msgstr "Keine weiteren Ergebnisse gefunden." #: themes/core/core-functions.php:148 msgid "No more search results to display." @@ -922,7 +922,7 @@ msgstr "/themes/core/core-images/com_arrow.png\" alt=\"arrow\" />% Kommentare</h #: themes/default/comments.php:63 msgid "Comments are closed." -msgstr "Kommentare sind nicht möglich." +msgstr "Kommentare sind nicht mehr möglich." #: themes/default/comments.php:73 #, php-format @@ -1101,6 +1101,17 @@ msgstr "Bevorstehende Tour Daten" msgid "Written on" msgstr "Geschrieben am" +#: themes/default/index.php:127 +msgid "at" +msgstr "um" + +#: themes/default/index.php:127 +msgid "F jS, Y" +msgstr "d.m.Y" + +msgid "G:ia" +msgstr "G:i" + #: themes/default/index.php:128 msgid "By" msgstr "Von" @@ -1123,7 +1134,7 @@ msgstr "Ältere Einträge" #: themes/default/page.php:38 msgid "Tag Cloud" -msgstr "Tag Cloud" +msgstr "Tag Wolke" #: themes/default/page.php:45 msgid "Monthly Archives" @@ -1137,9 +1148,6 @@ msgstr "Seiten dieses Artikels:" msgid "Permanent Link to " msgstr "Permantenter Link " -msgid "Publish" -msgstr "Senden" - #: themes/default/single.php:13 #: themes/default/single.php:15 #: themes/default/single.php:19 @@ -1216,7 +1224,7 @@ msgstr "Einstellungen gespeichert" #: wptouch.php:869 msgid "Defaults restored" -msgstr "Standardeinstellungen wiederhergestellt" +msgstr "Defaults wiederhergestellt" #: wptouch.php:889 msgid "Save Options" @@ -1224,11 +1232,11 @@ msgstr "Optionen speichern" #: wptouch.php:893 msgid "Restore default WPtouch settings?" -msgstr "Standardeinstellungen von WPtouch wiederherstellen?" +msgstr "Standardeinstellungen wiederherstellen?" #: wptouch.php:893 msgid "Restore Defaults" -msgstr "Standardeinstellungen wiederherstellen" +msgstr "Defaults wiederherstellen" #. Plugin Name of a plugin/theme msgid "WPtouch" @@ -1239,7 +1247,6 @@ msgid "http://bravenewcode.com/products/wptouch" msgstr "http://bravenewcode.com/products/wptouch" #. Description of a plugin/theme -#, fuzzy msgid "A plugin which formats your site with a mobile theme for visitors on Apple <a href=\"http://www.apple.com/iphone/\">iPhone</a> / <a href=\"http://www.apple.com/ipodtouch/\">iPod touch</a>, <a href=\"http://www.android.com/\">Google Android</a>, <a href=\"http://www.blackberry.com/\">Blackberry Storm and Torch</a>, <a href=\"http://www.palm.com/us/products/phones/pre/\">Palm Pre</a> and other touch-based smartphones." msgstr "A plugin which formats your site with a mobile theme for visitors on Apple <a href=\"http://www.apple.com/iphone/\">iPhone</a> / <a href=\"http://www.apple.com/ipodtouch/\">iPod touch</a>, <a href=\"http://www.android.com/\">Google Android</a>, <a href=\"http://www.blackberry.com/\">Blackberry Storm and Torch</a>, <a href=\"http://www.palm.com/us/products/phones/pre/\">Palm Pre</a> and other touch-based smartphones." diff --git a/wp-content/plugins/wptouch/lang/src/fr_FR.po b/wp-content/plugins/wptouch/lang/src/fr_FR.po index 25fbe68e8f5ac33e83934724a9f6af2b30e40e05..8d6317109b33f748d74dea84dfb3f9fa5fd4d8d4 100644 --- a/wp-content/plugins/wptouch/lang/src/fr_FR.po +++ b/wp-content/plugins/wptouch/lang/src/fr_FR.po @@ -1,914 +1,1979 @@ -# This file was generated by WPML -# WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system. -# http://wpml.org msgid "" msgstr "" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Project-Id-Version: WPTouch 1.9.19.14\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2010-11-07 22:51+0100\n" -"Last-Translator: Guillaume Desclaux <guillaume@desclaux.fr>\n" -"Language-Team: Guillaume Desclaux <guillaume@desclaux.fr>\n" +"Project-Id-Version: wptouch-fr_FR\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-13 06:05+0100\n" +"PO-Revision-Date: \n" +"Last-Translator: Maître Mô <postmaster@maitremo.fr>\n" +"Language-Team: Maître Mô <postmaster@maitremo.fr>\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Poedit-Language: French\n" "X-Poedit-Country: FRANCE\n" "X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: _;_c;_e;__\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: C:\\Documents and Settings\\JYM\\Bureau\\wptouch\n" -msgid "%sBraveNewCode.com%s" -msgstr "%sBraveNewCode.com%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:215 +msgid "Settings" +msgstr "Réglages" -msgid "%sBNC on Twitter%s" -msgstr "%sBNC sur Twitter%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:392 +msgid "New Ping/Trackback" +msgstr "Nouveau Ping/Trackback" -msgid "%sGet WPtouch Pro%s" -msgstr "%sTéléchargez WPtouch Pro%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:398 +msgid "New Comment" +msgstr "Nouveau Commentaire" -msgid "Find Out More ›" -msgstr "Découvrez plus ›" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:426 +msgid "User Registration" +msgstr "Enregistrement des Utilisateurs" -msgid "WPtouch Wire" -msgstr "Fil WPtouch" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:470 +msgid "Direct Message" +msgstr "Message Direct" -msgid "%sLightview Plus%s is not currently supported. Images may not open in a viewer or separate page." -msgstr "%sLightview Plus%s n'est actuellement pas suppporté. Les images peuvent ne pas s'ouvrir dans un visionneur ou un page séparée." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:605 +msgid "Mobile Theme" +msgstr "Théme du Mobile" -msgid "%sYet another ajax paged comments%s (YAAPC) is not currently supported. WPtouch uses its own ajaxed comments. WPtouch Pro supports WP 2.7+ comments out-of-the-box." -msgstr "%sYet another ajax paged comments%s (YAAPC) n'est pas actuellement supporté. WPtouch utilise ses propres commentaires ajax-ifiés. WPtouch Pro supporte les commentaires de WP 2.7+ nativement." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:612 +msgid "WPtouch iPhone Theme" +msgstr "Theme iPhonel WPtouch" -msgid "%sNextGEN Gallery%s is not currently supported." -msgstr "%sNextGEN Gallery%s n'est pas actuellement supporté." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:913 +msgid "Settings saved" +msgstr "Réglages sauvegardés" -msgid "%sWP Simple Captcha%s is not currently supported." -msgstr "%sWP Simple Captcha%s n'est pas actuellement supporté." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:918 +msgid "Defaults restored" +msgstr "Réglages par défaut restaurés" -msgid "WordPress Admin Bar requires additional configuration to work with WPtouch. %sFollow this comment%s on the developer's official site." -msgstr "WordPress Admin Bar requiert une configuration supplémentaire pour fonctionner avec WPtouch. %sSuivez ces commentaires%s sur le site officiel du développeur." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:939 +msgid "Save Options" +msgstr "Sauvegarder les Options" -msgid "%sShare This%s is supported, but requires the WPtouch setting \"Enable Restrictive Mode\" turned on to work properly." -msgstr "%sShare This%s est supporté, mais requiert que le paramètre de WPtouch \"Activer le Mode Restreint\" soit activé pour que cela fonctionne correctement." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:943 +msgid "Restore default WPtouch settings?" +msgstr "Restaurer les paramètres par défaut WPtouch ?" -msgid "%sWP CSS%s is supported, but does\tnot compress WPtouch's CSS. WPtouch files are pre-optimized for mobile devices already." -msgstr "%sWP CSS%s est supporté, mais il ne compresse pas les feuilles de style WPtouch's CSS. Les fichiers de WPtouch sont déjà pré-optimisés pour des terminaux mobiles." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/wptouch.php:943 +msgid "Restore Defaults" +msgstr "Restaurer Paramètres par Défaut" -msgid "W3 Total Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." -msgstr "W3 Total Cache est supporté, mais cela requiert une configuration particulière. %sSuivez ce tutoriel vidéo%s pour plus d'information." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/ajax/file_upload.php:24 +msgid "<p style=\"color:red; padding-top:10px\">There seems to have been an error.<p>Please try your upload again.</p>" +msgstr "<p style=\"color:red; padding-top:10px\">Il semble y avoir eu une erreur.<p>Merci d'essayer à nouveau votre téléchargement.</p>" -msgid "WP Super Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." -msgstr "WP Super Cache est supporté, mais cela requiert une configuration particulière. %sSuivez ce tutoriel vidéo%s pour plus d'information." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/ajax/file_upload.php:26 +msgid "<p style=\"color:green; padding-top:10px\">File has been saved and added to the pool.</p>" +msgstr "<p style=\"color:green; padding-top:10px\">Le fichier a été sauvegardé et ajouté au groupe.</p>" -msgid "WP Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." -msgstr "WP Cache est supporté, mais cela requiert une configuration particulière. %sSuivez ce tutoriel vidéo%s pour plus d'information." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/ajax/file_upload.php:29 +msgid "<p style=\"color:orange; padding-top:10px\">Sorry, only PNG, GIF and JPG images are supported.</p>" +msgstr "<p style=\"color:orange; padding-top:10px\">Désolé, seules les images PNG, GIF et JPG sont admises.</p>" -msgid "%sFlickrRSS%s: Your photos will automatically show on a page with the slug \"photos\" if you have it. Fully supported." -msgstr "%sFlickrRSS%s: Vos photos seront automatiquement affichées sur une page avec un chemin contenant \"photos\" si vous en avez une. Pleinement supporté." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/ajax/file_upload.php:31 +msgid "<p style=\"color:orange; padding-top:10px\">Image too large. try something like 59x60.</p>" +msgstr "<p style=\"color:orange; padding-top:10px\">Image trop grande. Essayez quelque chose comme 59x60.</p>" -msgid "%sWP Spam Free%s is fully supported." -msgstr "%sWP Spam Free%s est pleinement supporté." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/ajax/file_upload.php:33 +msgid "<p style=\"color:orange; padding-top:10px\">Insufficient privileges.</p><p>You need to either be an admin or have more control over your server.</p>" +msgstr "<p style=\"color:orange; padding-top:10px\">Droits insuffisants.</p><p>Vous devez soit, être Administrateur, soit avoir plus de contrôle de votre serveur.</p>" -msgid "%sPeter's Custom Anti-Spam%s is fully supported." -msgstr "%sPeter's Custom Anti-Spam%s est pleinement supporté." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/ajax/news.php:16 +#: Settings\JYM\Bureau\wptouch/ajax/support.php:16 +#: Settings\JYM\Bureau\wptouch/ajax/support.php:28 +msgid "<li class=\"ajax-error\">No feed items found to display.</li>" +msgstr "<li class=\"ajax-error\">Aucune occurence de flux trouvée à afficher.</li>" -msgid "%sUnsupported. Upgrade Required.%s" -msgstr "%sNon supporté. Mise à jour requise.%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/ajax/news.php:28 +msgid " <li class=\"ajax-error\">No feed items found to display.</li>" +msgstr "<li class=\"ajax-error\">Aucune occurence de flux trouvée à afficher.</li>" -msgid "%sSupported%s" -msgstr "%sSupporté%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:5 +msgid "Adsense, Stats & Custom Code" +msgstr "Adsense, Stat & Code Personalisé" -msgid "%sUnverified%s" -msgstr "%sNon-vérifié%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:8 +msgid "Adsense" +msgstr "Adsense" -msgid "WPtouch %s support: " -msgstr "Support de WPtouch %s : " +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:9 +msgid "Enter your Google AdSense ID if you'd like to support mobile advertising in WPtouch posts." +msgstr "Entrez votre ID Google Adsense si vous souhaitez conserver de la publicité dans vos articles WPtouch" -msgid "Known Plugin Support & Conflicts" -msgstr "Support des extension connues & Conflits" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:10 +msgid "Make sure to include the 'pub-' part of your ID string." +msgstr "Assurez-vous d'inclure la partie 'pub-' dans votre code d'ID" -msgid "Here you'll find information on plugin compatibility." -msgstr "Vous trouverez ici des information sur la compatibilité de l'extension." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:12 +msgid "Stats & Custom Code" +msgstr "Stat & Code Personnalisé" -msgid "WordPress version: " -msgstr "Version de Wordpress : " +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:13 +msgid "If you'd like to capture traffic statistics " +msgstr "Si vous souhaitez attraper les statistiques de fréquentation" -msgid "Plugin Support & Compatibility" -msgstr "Support des Extensions & Compatibilité" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:13 +msgid "(Google Analytics, MINT, etc.)" +msgstr "(Google Analytics, MINT, etc...)" -msgid "WPtouch by default follows your %sWordPress » Reading Options%s. You can also set a different one for WPtouch." -msgstr "Par défaut WPtouch suivra la configuration spécifiée dans %sWordPress » Options de Lecture%s. Vous pouvez également en configurer une différente pour WPtouch." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:14 +msgid "Enter the code snippet(s) for your statistics tracking." +msgstr "Entrez la ou les lignes de code pour votre traqueur de statistiques." -msgid "Footer message" -msgstr "Message de pied de page" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:14 +msgid "You can also enter custom CSS & other HTML code." +msgstr "Vous pouvez aussi saisir un CSS personnalisé & autre code HTML." + +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:16 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:22 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:31 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:40 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:49 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:60 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:68 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:76 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:86 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:100 +#: Settings\JYM\Bureau\wptouch/html/advanced-area.php:109 +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:100 +#: Settings\JYM\Bureau\wptouch/html/page-area.php:31 +#: Settings\JYM\Bureau\wptouch/html/push-area.php:17 +#: Settings\JYM\Bureau\wptouch/html/push-area.php:49 +msgid "More Info" +msgstr "Plus d'Information" -msgid "Hide Excerpts" -msgstr "Masquer les extraits" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:17 +msgid "You may enter a custom css file link easily. Simply add the full link to the css file like this:" +msgstr "Vous pouvez facilement entrer un lien de fichier CSS personnalisé. Ajoutez simplement le lien complet du fichier CSS ainsi :" -msgid "Show Tags" -msgstr "Afficher les étiquettes" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:18 +msgid "<code><link rel="stylesheet" src="http://path-to-my-css-file" type="text/css" media="screen" /></code>" +msgstr "<code><link rel="stylesheet" src="http://path-to-my-css-file" type="text/css" media="screen" /></code>" -msgid "Show Categories" -msgstr "Afficher les Catégories" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:25 +msgid "Google AdSense ID" +msgstr "ID Google AdSense" -msgid "Show Author's Name" -msgstr "Afficher le nom de l'auteur" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/ads-stats-area.php:26 +msgid "Google AdSense Channel" +msgstr "Chaîne Google AdSense" -msgid "Will use ellipses when titles are too long instead of wrapping them" -msgstr "On utilisera des points de suspensions quand les titres sont trop longs au lieu de les masquer" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:5 +msgid "Advanced Options" +msgstr "Options Avancées" -msgid "Enable Truncated Titles" -msgstr "Activer les Titres Tronqués" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:8 +msgid "Choose to enable/disable advanced features & options available for WPtouch." +msgstr "Choisissez d'activer/désactiver les réglages & options valables pour WPtouch." -msgid "The <em>Post Thumbnails w/ Random</em> option will fill missing post thumbnails with random abstract images. (WP 2.9+)" -msgstr "L'option <em>Vignettes d'articles aléatoire</em> remplira les vignettes d'article manquantes par une image aléatoire. (WP 2.9+)" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:9 +msgid "* WPtouch Restricted Mode attempts to fix issues where other plugins load scripts which interfere with WPtouch CSS and JavaScript." +msgstr "* Le Mode Restreint WPtouch est sensé régler les problèmes lorsque d'autres extensions chargent des scripts qui interfèrent avec le CSS et le Javascript de WPtouch." -msgid "This will change the display of blog and post listings between Calendar Icons view and Post Thumbnails view." -msgstr "Cela basculera l'affichage du blog et des listes d'articles de la vue d'Icônes de Calendrier vers la vue Vignettes d'articles." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:11 +msgid "Custom User-Agents" +msgstr "Applications Personnalisées" -msgid "Thumbnails Requires WordPress 2.9+" -msgstr "Les vignettes requièrent WordPress 2.9+" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:12 +msgid "Enter a comma-separated list of user-agents to enable WPtouch for a device that isn't currently officially supported." +msgstr "Saisissez une liste, séparée par des virgules, d'applications, pour activer WPtouch pour des outils qui ne sont pas actuellement officiellement supportés. " -msgid "Post Listings Display" -msgstr "Affichage des listes d'articles" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:13 +#, php-format +msgid "The currently enabled user-agents are: <em class='supported'>%s</em>" +msgstr "Les applications actuellement activées sont : <em class='supported'>%s</em>" -msgid "No Icon or Thumbnail" -msgstr "Ni icône ni vignette" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:20 +msgid "Enable Categories tab in the header" +msgstr "Activer un onglet des Catégories dans le header" -msgid "Post Thumbnails / Featured Images (Random)" -msgstr "Vignettes d'articles / Images de présentation (Aléatoire)" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:23 +msgid "This will add a 'Categories' tab item in the WPtouch drop-down." +msgstr "Ceci ajoutera un onglet 'Catégories' dans le menu déroulant WPtouch." -msgid "Post Thumbnails / Featured Images" -msgstr "Vignettes d'articles / Images de présentation" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:24 +msgid "It will display a list of your popular categories." +msgstr "Il affichera une liste de vos catégories les plus populaires." -msgid "Calendar Icons" -msgstr "Icônes de calendrier" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:29 +msgid "Enable Tags tab in the header" +msgstr "Activer un onlget des Tags dans le header" -msgid "Font justification" -msgstr "Justification de la police" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:32 +msgid "This will add a 'Tags' tab item in the WPtouch drop-down." +msgstr "Ceci ajoutera un onlget 'Tags' dans le menu déroulant WPtouch." -msgid "Full" -msgstr "Complet" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:33 +msgid "It will display a list of your popular tags." +msgstr "Il affichera une liste de vos tags les plus populaires." -msgid "Left" -msgstr "Gauche" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:38 +msgid "Enable Search link in the header" +msgstr "Activer un lien de Recherhce dans le header" -msgid "Comma list of Category IDs, eg: 1,2,3" -msgstr "Liste des identifiants de Catégories séparés par des virgules, exemple: 1,2,3" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:41 +msgid "This will add a 'Search' item in the WPtouch sub header." +msgstr "Ceci ajoutera un item 'Recherche' dans le header supérieur WPtouch." -msgid "Site title text" -msgstr "Texte du titre du site" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:42 +msgid "It will display an overlay on the title area allowing users to search your website." +msgstr "Il affichera un surlignement dans la zone de titre permettant aux utilisateurs de faire une recherche sur votre site." -msgid "WPtouch Home Page" -msgstr "Page d'accueil de WPtouch" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:47 +msgid "Enable Login/My Account tab in the header" +msgstr "Activer un onglet Login/Mon Compte dans le header" -msgid "Automatically detected" -msgstr "Automatiquement détecté" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:50 +msgid "This will add a 'Login' tab in the WPtouch sub header beside the Tags and Categories tabs if they are also enabled." +msgstr "Ceci ajoutera un nolget 'Login' dans le header supérieur WPtouch, à côté des onglets Catégorie et Tags s'ils sont aussi activés." -msgid "WPtouch Language" -msgstr "Langage de WPtouch" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:51 +msgid "It will display a username/password drop-down, allowing users to login plus be automatically re-directed back to the page they logged in from without seeing the WP admin." +msgstr "Il affichera un menu déroulant Utilisateur/Mot de passe, autorisant les utilisateurs à s'enregistrer, en plus d'être redirigés automatiquement sur la page sur laquelle ils s'étaient connectés, sans voir l'administration de WP." -msgid "Customize the default footer message shown in WPtouch here." -msgstr "Personnalisez le message par défaut affiché dans le pied de page de WPtouch ici." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:52 +msgid "Once logged in, a new 'My Account' button will appear. The 'My Account' button shows useful links depending on the type of account (subscriber, admin, etc.)." +msgstr "Une fois connecté, un nouveau bouton \"Mon Compte\" apparaîtra. Ce bouton affiche les liens utiles relatifs au type de compte (Administrateur, Editeur, etc...)." -msgid "Footer Message" -msgstr "Message de Pied de Page" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:53 +msgid "NOTE: The Account tab/links will always appear if you have enabled registration on your site or require users to login for comments." +msgstr "NOTE : Le Compte table/liens s'affichera toujours si vous avez activé l'enregistrement sur votre site, ou demandez à vos visiteurs de se loguer pour poster un commentaire." -msgid "Also, choose if excerpts are shown/hidden (default is hidden)." -msgstr "Choisissez également si les extraits doivent être affichés/cachés (ils sont cachés par défaut)." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:58 +msgid "Display Upcoming Dates link in the header (requires <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> or higher)" +msgstr "Afficher le lien Dates à Venir dans le header (nécessite <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> ou plus)" -msgid "Select which meta items are shown below titles on main, search, & archives pages." -msgstr "Sélectionnez les méta-éléments qui doivent s'afficher sous les titres de le page principale, de la page de recherche & des archives." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:61 +msgid "When this option is checked and the GigPress plugin is installed, a list of your Upcoming Shows will be viewable from a drop-down in the WPtouch header." +msgstr "Quand cette option est activée et l'extension GigPress installée, une liste de vos Prochaines Manifestations pourra être vue dans un menu déroulant du header WPtouch." -msgid "Choose between calendar Icons, post thumbnails (WP 2.9) or none for your post listings." -msgstr "Choisissez entre les icônes de calendrier, les vignettes d'articles (WP 2.9) ou rien pour vos listes d'articles." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:66 +msgid "Display Twitter link in the header (requires <a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> or higher)" +msgstr "Affiche un lien Twitter dans le header (nécessite <a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> ou plus)" -msgid "Post Listings Options" -msgstr "Options des Listes d'Articles" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:69 +msgid "When this option is checked and the WordTwit plugin is installed, a list of your Tweets will be viewable from a drop-down in the WPtouch header." +msgstr "Quand cette option est activée et l'extension WordTwit installée, une liste de vos Tweets pourra être vue dans un menu déroulant du header WPtouch." -msgid "Set the alignment for text." -msgstr "Configurer l'alignement du texte." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:74 +msgid "Enable comments on posts" +msgstr "Activer les commentaires sur les articles" -msgid "Text Justification Options" -msgstr "Options de Justification du Texte" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:77 +msgid "If unchecked, this will hide all commenting features on posts and blog listings." +msgstr "Si non cochée, ceci masquera toutes les options de commentaires dans les articles et les listes du blog." -msgid "Choose categories you want excluded from the main post listings in WPtouch." -msgstr "Choisissez les catégories que vous voulez exclure de la liste principale des articles dans WPtouch." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:84 +msgid "Enable comments on pages" +msgstr "Activer les commentaires pour les pages" -msgid "Excluded Categories" -msgstr "Catégories exclues" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:87 +msgid "This will add the comment form to all pages with 'Allow Comments' checked in your WordPress admin." +msgstr "Ceci activera le formulaire de commentaires pour toutes les pages dont l'option 'Autoriser les Commentaires' est cochée dans votre administration WordPress." -msgid "You can shorten your site title here so it won't be truncated by WPtouch." -msgstr "Vous pouvez réduire la taille du titre de votre site ici afin qu'il ne soit pas tronqué par WPtouch." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:93 +msgid "Enable gravatars in comments" +msgstr "Activer les gravatars dans les commentaires" -msgid "Site Title" -msgstr "Titre du Site" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:98 +#, php-format +msgid "1%sst%s visit mobile users will see desktop theme" +msgstr "1%sst%s utilisateurs vous visitant via un mobile verront le thème du tableau de bord" -msgid "Home Page Re-Direction" -msgstr "Redirection de la Page d'Accueil" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:101 +msgid "When this option is checked, users will see your regular site theme first, and have the option in your footer to switch to the WPtouch mobile view." +msgstr "Si cette option est cochée, les utilisateurs verront d'abord votre thème habituel, et auront l'option, dans votre footer, de swicher vers l'affichage WPtouch pour mobile." -msgid "Select the language you would like WPtouch to appear in. Custom language .mo files should be placed in wp-content/wptouch/lang." -msgstr "Choisissez la langue que vous voulez voir apparaître dans WPtouch. Les fichiers de langues personalisées .mo devraient être placés dans le dossier wp-content/wptouch/lang." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:102 +msgid "They'll be able to change back and forth either way. Make sure you have the wp_footer(); function call in your regular theme's footer.php file for the switch link to work properly." +msgstr "Ils pourront revenir en arrière ou modifier à nouveau. Assurez vous que le fichier footer.php de votre thème normal dispose bien d'un 'appel de la fonction wp_footer() pour que le swich fonctionne proprement." -msgid "Regionalization Settings" -msgstr "Paramètres régionaux" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:107 +msgid "Enable WPtouch Restricted Mode" +msgstr "Active le Mode Restreint WPtouch" -msgid "General Settings" -msgstr "Paramètres Généraux" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:110 +msgid "Disallow other plugins from loading into scripts into WPtouch's header and footer." +msgstr "Interdit aux autres extensions de se charger dans les scripts contenus dans les en-tête et pied de page WPtouch. " -msgid "Google AdSense Channel" -msgstr "Google AdSense Channel" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:111 +msgid "Sometimes fixes incompatibilities and speeds up WPtouch." +msgstr "Régle parfois les incompatibilités, et accélère WPtouch. " -msgid "Google AdSense ID" -msgstr "Identifiant Google AdSense" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:112 +msgid "Some plugins load conflicting javascript, extra CSS style sheets, and other functional code into your theme to accomplish what they add to your site. As WPtouch works complete on its own without any other plugin installed, in some cases (where you have several plugins or find something doesn't work right with WPtouch) you may want to enable Restricted Mode to ensure that WPtouch works properly, and loads quickly for mobile users." +msgstr "Certaines extensions chargent des javascripts, feuilles de styles spéciales, ou autres codes de fonctions, dans votre thème, pour réaliser ce qu'ils apportent à votre site. Dans la mesure où WPtouch fonctionne de façon totalement autonome, sans aucune autre extension installée, dans certains cas (quand vous avez beaucoup d'extensions, ou que vous trouvez que quelque chose ne fonctionne pas correctement avec WPtouch), vous pourrez souhaiter activer le Mode Restreint, pour être certain que WPtouch fonctionne proprement, et se charge rapidement pour les utilisateurs de mobile. " -msgid "<code><link rel="stylesheet" src="http://path-to-my-css-file" type="text/css" media="screen" /></code>" -msgstr "<code><link rel="stylesheet" src="http://path-to-my-css-file" type="text/css" media="screen" /></code>" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:117 +msgid "Custom user-agents" +msgstr "Applications personnalisées" -msgid "You may enter a custom css file link easily. Simply add the full link to the css file like this:" -msgstr "Vous pouvez saisir un lien vers un fichier css personnalisé facilement. Il suffit d'ajouter le lien complet vers le fichier css comme ceci:" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/advanced-area.php:119 +msgid "After changing the user-agents, please visit the WP Super Cache admin page and update your rewrite rules." +msgstr "Après un changement d'identifiants, merci de visiter la page d'administration de WP Super Cache et de mettre à jour vos règles de réécriture." -msgid "You can also enter custom CSS & other HTML code." -msgstr "Vous pouvez aussi saisir du code CSS personnalisé et du code HTML." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:5 +msgid "General Settings" +msgstr "Réglages Généraux" -msgid "Enter the code snippet(s) for your statistics tracking." -msgstr "Saissez le code source de votre outil de suivi statistiques." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:8 +msgid "Regionalization Settings" +msgstr "Réglages Régionaux" -msgid "(Google Analytics, MINT, etc.)" -msgstr "(Google Analytics, MINT, etc.)" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:9 +msgid "Select the language you would like WPtouch to appear in. Custom language .mo files should be placed in wp-content/wptouch/lang." +msgstr "Sélectionnez le language dans lequel vous souhaitez voir s'afficher WPTouch. Les fichiers .mo de langages personnalisés doivent être placés dans wp-content/wptouch/lang." -msgid "If you'd like to capture traffic statistics " -msgstr "Si vous voulez capturer les statistiques sur le traffic réseau" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:11 +msgid "Home Page Re-Direction" +msgstr "Redirection de la Page d'Accueil" -msgid "Stats & Custom Code" -msgstr "Stats & Code Personnalisé" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:12 +#, php-format +msgid "WPtouch by default follows your %sWordPress » Reading Options%s. You can also set a different one for WPtouch." +msgstr "Par défaut, WPtouch suit vos %sWordPress » Options de Lecture%s. Vous pouvez aussi en sélectionner une autre pour WPtouch." -msgid "Make sure to include the 'pub-' part of your ID string." -msgstr "Vérifier d'avoir bien inséré la partie 'pub-' de votre chaine d'identification." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:14 +msgid "Site Title" +msgstr "Tite du Site" -msgid "Enter your Google AdSense ID if you'd like to support mobile advertising in WPtouch posts." -msgstr "Saisissez votre identifiant Google AdSense si vous voulez gérer de la publicité pour mobile dans les articles affichés par WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:15 +msgid "You can shorten your site title here so it won't be truncated by WPtouch." +msgstr "Vous pouvez raccourcir votre titre de site ici, de façon qu'il ne soit pas tronqué par WPtouch." -msgid "Adsense" -msgstr "Adsense" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:17 +msgid "Excluded Categories" +msgstr "Catégories Exclues" -msgid "Adsense, Stats & Custom Code" -msgstr "Adsense, Stats & Code Personnalisé" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:18 +msgid "Choose categories you want excluded from the main post listings in WPtouch." +msgstr "Choisissez les catégories que vous voulez exclure de la liste principale de vos articles dans WPtouch." -msgid "1%sst%s visit mobile users will see desktop theme" -msgstr "Lors de leur 1%sère%s visite les utilisateurs de mobile verront le thème pour ordinateur de bureau" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:20 +msgid "Text Justification Options" +msgstr "Options d'Alignement de Texte" -msgid "The currently enabled user-agents are: <em class='supported'>%s</em>" -msgstr "Les user-agents actuellement activés sont : <em class='supported'>%s</em>" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:21 +msgid "Set the alignment for text." +msgstr "Réglage de l'alignement du texte." -msgid "After changing the user-agents, please visit the WP Super Cache admin page and update your rewrite rules." -msgstr "Après avoir changé les user-agents, veuillez visiter la page d'administration de WP Super Cache et mettez à jour vos règles de ré-écritures." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:24 +msgid "Post Listings Options" +msgstr "Options des Listes d'Articles" -msgid "Custom user-agents" -msgstr "User-Agents Personnalisés" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:25 +msgid "Choose between calendar Icons, post thumbnails (WP 2.9) or none for your post listings." +msgstr "Choisissez entre Icônes de Calendrier, Imagettes d'Articles (WP 2.9) ou rien pour vos listes d'articles." -msgid "Some plugins load conflicting javascript, extra CSS style sheets, and other functional code into your theme to accomplish what they add to your site. As WPtouch works complete on its own without any other plugin installed, in some cases (where you have several plugins or find something doesn't work right with WPtouch) you may want to enable Restricted Mode to ensure that WPtouch works properly, and loads quickly for mobile users." -msgstr "Certaines extensions entrent en conflit avec du javascript, des feuilles de styles CSS supplémentaires et d'autres codes fonctionnel de votre thème ce qui les empêchent d'accomplir ce qu'elles doivent ajouter à votre site. Comme WPtouch fonctionne sans l'aide d'aucune autre extension installée, dans certains cas (si vous avez plusieurs extensions ou si vous trouvez quelques choses qui ne fonctionnent pas bien avec WPtouch) vous devez activer le Mode Restreint afin de vous assurer que WPtouch fonctionne correctement et se charge rapidement pour les utilisateurs mobiles." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:26 +msgid "Select which meta items are shown below titles on main, search, & archives pages." +msgstr "Sélectionner quelles méta-données sont affichées dans les pages principale, de recherche, & d'archives." -msgid "Sometimes fixes incompatibilities and speeds up WPtouch." -msgstr "Quelques fois cela corrige des incompatibilités et améliore la vitesse de WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:27 +msgid "Also, choose if excerpts are shown/hidden (default is hidden)." +msgstr "Egalement, choisissez si les extraits seront affichés/cachés (Cachés, par défaut)." -msgid "Disallow other plugins from loading into scripts into WPtouch's header and footer." -msgstr "Interdire aux autres extensions de charger des scripts dans l'entête ou le pied de page de WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:29 +msgid "Footer Message" +msgstr "Message de Pied-De-Page" -msgid "Enable WPtouch Restricted Mode" -msgstr "Activer le Mode Restreint de WPtouch" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:30 +msgid "Customize the default footer message shown in WPtouch here." +msgstr "Modifiez le message par défaut du pied-de-page affiché dans WPTouch ici." -msgid "They'll be able to change back and forth either way. Make sure you have the wp_footer(); function call in your regular theme's footer.php file for the switch link to work properly." -msgstr "Ils auront la possibilité de passer d'un mode à l'autre. Veuillez vérifier que la fonction wp_footer() est bien utilisée dans le fichier footer.php de votre thème par défaut pour que lien permettant ce changement de mode fonctionne correctement." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:34 +msgid "WPtouch Language" +msgstr "Langue de WPtouch" -msgid "When this option is checked, users will see your regular site theme first, and have the option in your footer to switch to the WPtouch mobile view." -msgstr "Quand cette option est cochée, les utilisateurs verront le thème par défaut de votre site en premier et auront la possibilité dans le pied de page de changer pour passer en mode mobile WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:38 +msgid "Automatically detected" +msgstr "Détecté automatiquement" -msgid "This will add the comment form to all pages with 'Allow Comments' checked in your WordPress admin." -msgstr "Ceci ajoutera le formulaire de commentaire sur toutes les pages dont l'option \"Autoriser les commentaires\" est activée dans l'administration Wordpress." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:56 +msgid "WPtouch Home Page" +msgstr "Page d'Accueil WPtouch" -msgid "Enable comments on pages" -msgstr "Activer les commentaires sur les articles" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:61 +#: Settings\JYM\Bureau\wptouch/html/page-area.php:63 +msgid "You have no pages yet. Create some first!" +msgstr "Vous n'avez aucun page encore. Créez-en une avant tout !" -msgid "Enable gravatars in comments" -msgstr "Activer les gravatars dans les commentaires" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:67 +msgid "Site title text" +msgstr "Texte du titre du Site" -msgid "When this option is checked and the WordTwit plugin is installed, a list of your Tweets will be viewable from a drop-down in the WPtouch header." -msgstr "Quand cette option est cochée et que le plugin WordTwit est installé, vos Tweets seront consultables via une liste déroulante dans l'entête de WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:73 +msgid "Comma list of Category IDs, eg: 1,2,3" +msgstr "Liste, avec virgules, des ID des Catégories, par ex : 1.2.3" -msgid "Display Twitter link in the header (requires <a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> or higher)" -msgstr "Afficher le lien Twitter dans l'entête (<a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> ou supérieur est requis)" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:74 +msgid "Comma list of Tag IDs, eg: 1,2,3" +msgstr "Liste, avec virgules, des ID des Tags, par ex : 1.2.3" -msgid "When this option is checked and the GigPress plugin is installed, a list of your Upcoming Shows will be viewable from a drop-down in the WPtouch header." -msgstr "Quand cette option est cochée et que le plugin GigPress est installé, vos Prochains Spectacles seront consultables via une liste déroulante dans l'entête de WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:82 +msgid "Left" +msgstr "Gauche" -msgid "Display Upcoming Dates link in the header (requires <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> or higher)" -msgstr "Afficher le lien vers les Prochaines Dates dans l'entête (requiert <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> ou supérieure)" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:83 +msgid "Full" +msgstr "Pleine page" -msgid "NOTE: The Account tab/links will always appear if you have enabled registration on your site or require users to login for comments." -msgstr "Note : L'onglet Compte apparaîtra toujours si vous avez activé l'enregistrement des comptes utilisateurs sur votre site ou que l'ajout de commentaires requiert une authentification." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:85 +msgid "Font justification" +msgstr "Justification de la police" -msgid "Once logged in, a new 'My Account' button will appear. The 'My Account' button shows useful links depending on the type of account (subscriber, admin, etc.)." -msgstr "Une fois connecté, un nouveau bouton \"Mon Compte\" apparaîtra. Le bouton \"Mon Compte\" affichera des liens utiles en fonction du type de compte (abonné, admin, etc.)." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:93 +msgid "Calendar Icons" +msgstr "Icônes de CalendirerIcônes de Calendrier" -msgid "It will display a username/password drop-down, allowing users to login plus be automatically re-directed back to the page they logged in from without seeing the WP admin." -msgstr "Cela affichera une liste déroulante identifiant/mot-de-passe, permettant aux utilisateurs de se connecter et d'être automatiquement redirigés vers la page à partir de laquelle ils se sont connectée sans voir l'administration de WP." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:94 +msgid "Post Thumbnails / Featured Images" +msgstr "Imagettes des Articles/Images Mises en avant" -msgid "This will add a 'Login' tab in the WPtouch sub header beside the Tags and Categories tabs if they are also enabled." -msgstr "Ceci ajoutera un onglet \"Connexion\" dans le sous-entête de WPtouch à coté des onglets Etiquettes et Catégories s'ils sont également activés." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:95 +msgid "Post Thumbnails / Featured Images (Random)" +msgstr "Imagettes des Articles/Images Mises en avant (au hasard)" -msgid "Enable Login/My Account tab in the header" -msgstr "Activer l'onglet Connexion/Mon Compte dans l'entête" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:96 +msgid "No Icon or Thumbnail" +msgstr "Pas d'icône ou d'Imagette" -msgid "It will display an overlay on the title area allowing users to search your website." -msgstr "Cela affichera un champ de saisie au dessus de la zone de titre pour permettre à vos utilisateurs de faire des recherches sur votre site." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:98 +msgid "Post Listings Display" +msgstr "Affichage des Listes d'Articles" -msgid "This will add a 'Search' item in the WPtouch sub header." -msgstr "Ceci ajoutera un élément 'Rechercher' dans le sous-entête de WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:98 +msgid "Thumbnails Requires WordPress 2.9+" +msgstr "Les Imagettes nécessitent WordPress 2.9 ou plus" -msgid "Enable Search link in the header" -msgstr "Activer le lien Rechercher dans l'entête" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:101 +msgid "This will change the display of blog and post listings between Calendar Icons view and Post Thumbnails view." +msgstr "Ceci modifiera l'affichage du blog et celui des listes d'articles, visibles entre les Icônes de Calendrier et les Imagettes d'articles. " -msgid "It will display a list of your popular tags." -msgstr "Cela affichera la liste de vos étiquettes les plus populaires." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:102 +msgid "The <em>Post Thumbnails w/ Random</em> option will fill missing post thumbnails with random abstract images. (WP 2.9+)" +msgstr "L'option <em>Imagettes des Articles au Hasard</em> remplacera les imagettes manquantes par des images abstraites au hasard (WP 2.9 et plus)." -msgid "This will add a 'Tags' tab item in the WPtouch drop-down." -msgstr "Ceci ajoutera un onglet 'Etiquettes' dans la liste déroulante de WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:109 +msgid "Enable Truncated Titles" +msgstr "Activer les Titres Tronqués" -msgid "Enable Tags tab in the header" -msgstr "Activer l'onglet Etiquettes dans l'entête" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:109 +msgid "Will use ellipses when titles are too long instead of wrapping them" +msgstr "Utilisera des élipses pour les titres trop longs au lieu de les couper" -msgid "It will display a list of your popular categories." -msgstr "Cela affichera la liste de vos catégories les plus populaires." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:113 +msgid "Show Author's Name" +msgstr "Afficher le Nom de l'Auteur" -msgid "This will add a 'Categories' tab item in the WPtouch drop-down." -msgstr "Ceci ajoutera un onglet 'Catégories' dans la liste déroulante de WPtouch." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:117 +msgid "Show Categories" +msgstr "Afficher les Catégories" -msgid "Enable Categories tab in the header" -msgstr "Activer l'onglet Catégories dans l'entête" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:121 +msgid "Show Tags" +msgstr "Afficher les Tags" -msgid "Enter a comma-separated list of user-agents to enable WPtouch for a device that isn't currently officially supported." -msgstr "Saisissez une liste de user-agents séparés par des virgules pour activer WPtouch pour un appareil qui n'est pas actuellement officiellement supporté." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:125 +msgid "Hide Excerpts" +msgstr "Cacher les Extraits" -msgid "Custom User-Agents" -msgstr "User-agents Personnalisés" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/html/general-settings-area.php:129 +msgid "Footer message" +msgstr "Message de pied-de-page" -msgid "* WPtouch Restricted Mode attempts to fix issues where other plugins load scripts which interfere with WPtouch CSS and JavaScript." -msgstr "* le Mode Restreint de WPtouch tente de corriger des problèmes lorsque d'autres extensions chargent des scripts qui interfèrent avec le code CSS et JavaScript de WPtouch." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/head-area.php:13 +#, php-format +msgid "%sGet WPtouch Pro%s" +msgstr "%sObtenez WPtouch Pro%s" + +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/head-area.php:14 +#, php-format +msgid "%sJoin our FREE WPtouch Pro Affiliate Program%s" +msgstr "%sRejoignez notre Programme GRATUIT d'Abonnement WPtouch Pro%s" + +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/head-area.php:15 +#, php-format +msgid "%sFollow Us on Twitter%s" +msgstr "%sSuivez-nous sur Twitter%s" + +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/head-area.php:24 +msgid "WPtouch Wire" +msgstr "Liens WPtouch" -msgid "Choose to enable/disable advanced features & options available for WPtouch." -msgstr "Choisissez d'activer/désactiver les fonctionnalités avancées & les options disponibles pour WPtouch. " +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/head-area.php:33 +msgid "Find Out More ››" +msgstr "Trouvez Plus ››" -msgid "Advanced Options" -msgstr "Options avancées" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:24 +msgid "Default & Custom Icon Pool" +msgstr "Groupe d'Icônes par Défaut & Personnalisées" -msgid "If you do not want your logo to have the glossy effect added to it, make sure you select %sEnable Flat Bookmark Icon%s" -msgstr "Si vous ne voulez pas que votre logo ait un effet brillant ajouté, veuillez vous assurez d'avoir sélectionné %sActiver l'icône de signet aplatie%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:27 +msgid "Adding Icons" +msgstr "Ajouter des Icônes" -msgid "You have no pages yet. Create some first!" -msgstr "Vous n'avez aucune page pour le moment. Vous devez en créer une d'abord!" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:28 +msgid "To add icons to the pool, simply upload a .png, .jpeg or .gif image from your computer." +msgstr "Pour ajouter des icônes au groupe, il vous suffit de télécharger une image .png, .jpeg ou .gif depuis votre ordinateur." -msgid "Menu List Sort Order" -msgstr "Liste de menu de l'ordre de tri" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:30 +#, php-format +msgid "Default icons generously provided by %sMarcelo Marfil%s." +msgstr "Les icônes par défaut sont généreusement fournies par %sMarcelo Marfil%s." -msgid "By Page ID" -msgstr "Par identifiant de page" - -msgid "By Name" -msgstr "Par nom" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:32 +msgid "Logo/Bookmark Icons" +msgstr "Icônes de Logo/Marque-page" -msgid "Uses default WordPress admin e-mail" -msgstr "Utiliser l'email par défaut de l'administrateur WordPress" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:33 +msgid "If you're adding a logo icon, the best dimensions for it are 59x60px (png) when used as a bookmark icon." +msgstr "Si vous ajoutez une icône de logo, les meilleurs dimensions pour elle sont 59x60px (png), quand elle est utilisée comme icône de marque-page." -msgid "Enable Email Menu Item" -msgstr "Activer l'élément de menu Email" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:34 +#, php-format +msgid "Need help? You can use %sthis easy online icon generator%s to make one." +msgstr "Besoin d'aide ? Vouss pouvez utiliser %sce générateur facile d'icônes en ligne%s pour en faire une." -msgid "Enable RSS Menu Item" -msgstr "Activer l'élément de menu RSS" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:35 +msgid "These files will be stored in this folder we create: .../wp-content/uploads/wptouch/custom-icons" +msgstr "Ces fichiers seront stockès dans ce dossier que nous créons :.../wp-content/uploads/wptouch/custom-icons" -msgid "Enable Home Menu Item" -msgstr "Activer l'élément Accueil du menu" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:36 +msgid "If an upload fails (usually it's a permission problem) check your wp-content path settings in WordPress' Miscellaneous Settings, or create the folder yourself using FTP and try again." +msgstr "Si un téléchargement échoue (souvent c'est un problème de permission), vérifiez vos réglages de droits du dossier wp-content dans les Réglages Divers de WordPress, ou créez vous-même le dossier en utilisant votre FTP, et essayez à nouveau." -msgid "When checked your icon will not have the glossy effect automatically applied to it." -msgstr "Lorsque cette option est sélectionnée votre icône ne se verra pas appliquer automatiquement un effet brillant." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:38 +msgid "Upload Icon" +msgstr "Chargement de l'Icône..." -msgid "The default applies for iPhone/iPod touch applies a glossy effect to the home-screen bookmark/logo icon you select." -msgstr "Le comportement par défaut pour les iPhone/iPod touch ajoute un effet brillant à l'icône de signet/logo que vous avez choisi pour la page d'accueil." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/icon-area.php:42 +msgid "Uploading..." +msgstr "Chargement..." -msgid "Enable Flat Bookmark Icon" -msgstr "Activer l'icône de signet aplatie" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:5 +msgid "Logo Icon // Menu Items & Pages Icons" +msgstr "Icône de Logo// Icônes de Menu, de Discussion amp; de Pages" -msgid "Logo & Home Screen Bookmark Icon" -msgstr "Logo & icône du signet de l'écran d'accueil" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:8 +msgid "Logo / Home Screen Icon <br />& Default Menu Items" +msgstr "Logo/Icône d'Ecran d'Accueil <br />&; Menu de discussion par défaut" -msgid "You can also decide if pages are listed by the page order (ID) in WordPress, or by name (default)." -msgstr "Vous pouvez également choisir de trier les pages en les ordonnant par identifiant (ID) dans WordPress, ou par nom (valeur par défaut)." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:9 +#, php-format +msgid "If you do not want your logo to have the glossy effect added to it, make sure you select %sEnable Flat Bookmark Icon%s" +msgstr "Si vous ne voulez pas que votre logo se voie affecter un effet \"brillant\", assurez-vous de sélectionner %sActiver l'icône \"plate\" de marque-page%s" -msgid "Next, select the icons from the lists that you want to pair with each page menu item." -msgstr "Ensuite, sélectionnez les icônes dans la liste que vous voulez appairez avec chaque item de page de menu." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:10 +msgid "Choose the logo displayed in the header (also your bookmark icon), and the pages you want included in the WPtouch drop-down menu." +msgstr "Choisissez le logo affiché dans le header (qui sera aussi votre icône de marque-page), et les pages que vous voulez inclure dans le menu déroulant WPtouch." -msgid "Pages + Icons" -msgstr "Pages + Icônes" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:11 +msgid "Remember, only those checked will be shown." +msgstr "Souvenez-vous, les seules qui seront affichées sont celles qui sont cochées." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:12 msgid "Enable/Disable default items in the WPtouch site menu." -msgstr "Activer/Désactiver les éléments par défaut du menu du site WPtouch." +msgstr "Activer/désactiver les discussions par défaut dans le menu du site WPtouch" -msgid "Remember, only those checked will be shown." -msgstr "Souvenez-vous que seul ceux cochés seront affichés." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:14 +msgid "Pages + Icons" +msgstr "Pages + Icônes" -msgid "Choose the logo displayed in the header (also your bookmark icon), and the pages you want included in the WPtouch drop-down menu." -msgstr "Choisissez le logo à afficher dans l'entête (et à utiliser aussi comme icône de signet), et les pages que vous voulez inclure dans le menu déroulant WPtouch." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:15 +msgid "Next, select the icons from the lists that you want to pair with each page menu item." +msgstr "Ensuite, sélectionnez parmis les icônes dans les listes celles que vous voulez coupler avec chaque élément du menu des pages." -msgid "Logo / Home Screen Icon <br />& Default Menu Items" -msgstr "Icône de Logo / Ecran d'accueil <br />& Elements du Menu par Défaut" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:16 +msgid "You can also decide if pages are listed by the page order (ID) in WordPress, or by name (default)." +msgstr "Vous pouvez également décider si les pages seront listées dans l'ordre de WordPress (par ID), ou par noms (par défaut)." -msgid "Logo Icon // Menu Items & Pages Icons" -msgstr "Icône de Logo // Elements de Menu & Icones de Pages" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:24 +msgid "Logo & Home Screen Bookmark Icon" +msgstr "Icônes de Logo & d'Ecran d'Accueil Marque-page" -msgid "If an upload fails (usually it's a permission problem) check your wp-content path settings in WordPress' Miscellaneous Settings, or create the folder yourself using FTP and try again." -msgstr "Si un dépot de fichier échoue (habituellement à cause d'un problème de permission), veuillez vérifier la configuration du chemin de votre dossier wp-content dans le menu Réglages des médias de WordPress ou créer le dossier vous même en FTP et essayer à nouveau." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:29 +msgid "Enable Flat Bookmark Icon" +msgstr "Activer l'icône \"plate\" de marque-page" -msgid "These files will be stored in this folder we create: %s/uploads/wptouch/custom-icons" -msgstr "Ces fichiers seront enregistrés dans ce dossier que nous créons : %s/uploads/wptouch/custom-icons" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:32 +msgid "The default applies for iPhone/iPod touch applies a glossy effect to the home-screen bookmark/logo icon you select." +msgstr "Le réglage par défaut pour les iPhone/iPods applique un effet brillant aux icônes d'écran d'accueil de marque-page/de logo que vous choisissez." -msgid "Need help? You can use %sthis easy online icon generator%s to make one." -msgstr "Vous avez besoin d'aide ? Vous pouvez utiliser %sce simple générateur d'icône en ligne%s pour en faire un." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:33 +msgid "When checked your icon will not have the glossy effect automatically applied to it." +msgstr "Une fois vérifiée, votre icône ne se verra pas automatiquement appliquer d'effet brillant. " -msgid "Default icons generously provided by %sMarcelo Marfil%s." -msgstr "Les icônes par défaut sont généreusement fournies par %sMarcelo Marfil%s." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:36 +msgid "Enable Home Menu Item" +msgstr "Activer l'Elément du Menu d'Accueil " -msgid "Upload Icon" -msgstr "Envoyer des Icônes" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:37 +msgid "Enable RSS Menu Item" +msgstr "Activer l'Elément du Menu RSS" -msgid "If you're adding a logo icon, the best dimensions for it are 59x60px (png) when used as a bookmark icon." -msgstr "Si vous ajoutez un icône pour le logo, la meilleure dimension pour cela est de 59x60px (au format png) pour pouvoir l'utiliser comme icône de signet." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:38 +msgid "Enable Email Menu Item" +msgstr "Activer l'Elèment du Menu Email" -msgid "Logo/Bookmark Icons" -msgstr "Icons du logo/signet" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:38 +msgid "Uses default WordPress admin e-mail" +msgstr "Utilise l'administration email par défaut de WordPress" -msgid "To add icons to the pool, simply upload a .png, .jpeg or .gif image from your computer." -msgstr "Pour ajouter des icônes dans la bibliothèque, il suffit d'envoyer une image au format png, jpeg ou gif à partir de votre ordinateur." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:43 +msgid "By Name" +msgstr "Par Noms" -msgid "Adding Icons" -msgstr "Ajouter des icônes" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:44 +msgid "By Page ID" +msgstr "Par ID de page" -msgid "Default & Custom Icon Pool" -msgstr "Bibliothèque d'icônes par défaut et personnalisées" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/page-area.php:46 +msgid "Menu List Sort Order" +msgstr "Ordre de Tri du Menu de Liste " -msgid "Site-wide links color" -msgstr "Couleur des liens de l'ensemble du site" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:7 +msgid "Plugin Support & Compatibility" +msgstr "Support de l'Extension & Compatibilité" -msgid "Sub-header background color" -msgstr "Couleur du fond du sous-entête" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:13 +msgid "WordPress version: " +msgstr "Version WordPress :" -msgid "Header background color" -msgstr "Couleur du fond de l'entête" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:16 +#, php-format +msgid "WPtouch %s support: " +msgstr "WPtouch %s support: " -msgid "Title text color" -msgstr "Couleur du texte du Titre" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:18 +#, php-format +msgid "%sUnverified%s" +msgstr "%Non Vérifié%s" -msgid "Post Title H2 Font" -msgstr "Police H2 de Titre d'article" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:20 +#, php-format +msgid "%sSupported%s" +msgstr "%sSupporté%s" -msgid "Arial Rounded MT Bold" -msgstr "Arial Rounded MT Bold" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:22 +#, php-format +msgid "%sUnsupported. Upgrade Required.%s" +msgstr "%Non Supporté. Mise à jour requise.%s" -msgid "Verdana" -msgstr "Verdana" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:27 +msgid "Here you'll find information on plugin compatibility." +msgstr "Ici vous trouverez des informations sur la compatibilité de l'extension." -msgid "Geeza Pro" -msgstr "Geeza Pro" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:32 +msgid "Known Plugin Support & Conflicts" +msgstr "Support des Extensions connues & Conflits" -msgid "Georgia" -msgstr "Georgia" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:36 +#, php-format +msgid "%sPeter's Custom Anti-Spam%s is fully supported." +msgstr "%sPeter's Custom Anti-Spam%s est pleinement supporté." -msgid "Thonburi" -msgstr "Thonburi" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:41 +#, php-format +msgid "%sWP Spam Free%s is fully supported." +msgstr "%sWP Spam Free%s est pleinement supporté." -msgid "Helvetica" -msgstr "Helvetica" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:46 +#, php-format +msgid "%sFlickrRSS%s: Your photos will automatically show on a page with the slug \"photos\" if you have it. Fully supported." +msgstr "%sFlickrRSS%s : vos photos seront automatiquement affichées dans une page avec l'étiquette \"photos\" si vous en avez une. Pleinement supporté." -msgid "Helvetica Neue" -msgstr "Helvetica Neue" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:51 +#, php-format +msgid "WP Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." +msgstr "WP Cache est supporté, mais nécessite une configuration. %sSuivez ce tutoriel vidéo%s pour plus d'information." -msgid "Background" -msgstr "Fond" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:56 +#, php-format +msgid "WP Super Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." +msgstr "WP Super Cache est supporté, mais nécessite une configuration. %sSuivez ce tutoriel vidéo%s pour plus d'information." -msgid "Thatches" -msgstr "Paille" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:61 +#, php-format +msgid "W3 Total Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." +msgstr "W3 Total Cache est supporté, mais nécessite une configuration. %sSuivez ce tutoriel vidéo%s pour plus d'information." -msgid "Argyle Tie" -msgstr "Losange" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:66 +#, php-format +msgid "%sWP CSS%s is supported, but does\tnot compress WPtouch's CSS. WPtouch files are pre-optimized for mobile devices already." +msgstr "%sWP CSS%s est supporté, mais ne compresse pas le CSS de WPtouch. Les fichiers WPtouch sont déjà pré-optimisés pour les appareils mobiles." -msgid "Skated Concrete" -msgstr "Béton patiné" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:71 +#, php-format +msgid "%sShare This%s is supported, but requires the WPtouch setting \"Enable Restrictive Mode\" turned on to work properly." +msgstr "%sShare This%s est supporté, mais nécessite que le réglage WPtouch \"Activer le Mode Restreint\" soit en fonction pour fonctionner proprement." -msgid "Diagonal Grey" -msgstr "Rayé Diagonal" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:76 +#, php-format +msgid "WordPress Admin Bar requires additional configuration to work with WPtouch. %sFollow this comment%s on the developer's official site." +msgstr "WordPress Admin Bar nécessite une configuration additionnelle pour fonctionner avec WPtouch. %sSuivez ce commentaire%s sur le site officiel de son dévelopeur." -msgid "Horizontal Grey" -msgstr "Rayé horizontal" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:81 +#, php-format +msgid "%sWP Simple Captcha%s is not currently supported." +msgstr "%sWP Simple Captcha%s n'est pas encore supporté." -msgid "Classic" -msgstr "Classique" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:86 +#, php-format +msgid "%sNextGEN Gallery%s is not currently supported." +msgstr "%sNextGEN Gallery%s n'est pas encore supporté." -msgid "The default WPtouch theme emulates a native iPhone application." -msgstr "Le thème par défaut de WPtouch simule une application iPhone native." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:91 +#, php-format +msgid "%sYet another ajax paged comments%s (YAAPC) is not currently supported. WPtouch uses its own ajaxed comments. WPtouch Pro supports WP 2.7+ comments out-of-the-box." +msgstr "%sYet another ajax paged comments%s (YAAPC) n'est pas encore supporté. WPtouch utilises ses propres commentaires en Ajax. WPtouch Pro supporte les commentaires WP 2.7+ hors formulaire." -msgid "Here you can customize some of the more visible features of WPtouch." -msgstr "Ici vous pouvez personnaliser certaines des fonctionnalités les plus visibles de WPtouch." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/plugin-compat-area.php:96 +#, php-format +msgid "%sLightview Plus%s is not currently supported. Images may not open in a viewer or separate page." +msgstr "%sLightview Plus%s n'est pas encore supporté. Les images risquent de ne pas s'ouvrir dans une visionneuse ou une page séparée." -msgid "Style & Color Options" -msgstr "Style & Options de Couleur" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:4 +msgid "Push Notification Options" +msgstr "Options de la Notification Push" -msgid "%sCURL is required%s on your webserver to use Push capabilities in WPtouch." -msgstr "%sCURL est requis%s sur votre serveur web pour pouvoir utiliser les capacités Push de WPtouch." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:7 +#, php-format +msgid "Here you can configure WPtouch to push selected notifications through your %sProwl%s account to your iPhone, iPod touch and Growl-enabled Mac or PC." +msgstr "Ici, vous pouvez configurer WPtouch pour \"pousser\" les notifications sélectionnées depuis votre compte %sProwl%s sur vos iPhone, iPod touch ou Mac ou PC avec Growl activé." -msgid "%sVisit iTunes to Download Prowl%s" -msgstr "%sVisitez iTunes pour télécharger Prowl%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:8 +#, php-format +msgid "%sMake sure you generate a Prowl API key to use here%s otherwise no notifications will be pushed to you." +msgstr "%sAssurez-vous de générer une clé API Prowl à utiliser ici, %s faute de quoi aucune notification ne vous sera transmise." -msgid "%sVisit the Prowl Website%s" -msgstr "%sVisitez le site web de Prowl%s" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:15 +msgid "Prowl API Key" +msgstr "Clé API de Prowl" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:15 +#, php-format msgid "%sCreate a key now%s" -msgstr "%sCréer une clef maintenant%s" - -msgid "%sMake sure you generate a Prowl API key to use here%s otherwise no notifications will be pushed to you." -msgstr "%sVeuillez vérifier que vous avez créé un identifiant pour l'API Prowl à utiliser ici%s sinon aucune notification ne pourra vous être envoyée." +msgstr "%sCréez une clé maintenant%s" -msgid "Here you can configure WPtouch to push selected notifications through your %sProwl%s account to your iPhone, iPod touch and Growl-enabled Mac or PC." -msgstr "Ici vous pouvez configurer WPtouch pour envoyer des notifications sélectionnées via votre compte %sProwl%s sur votre iPhone, iPod touch, Mac ou PC avec Growl activé." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:18 +msgid "In order to enable Prowl notifications, you must create a Prowl account, and download/configure the Prowl application for iPhone." +msgstr "Pour activer les notifications Prowl, vous devez créer un compte Prowl, et télécharger/configurer l'application Prowl pour iPhone." -msgid "When opened, a form is shown for users to fill in. The name, e-mail address, and message area is shown. Thier IP will also be sent to you, in case you want to ban it in the WordPress admin." -msgstr "Quand c'est ouvert, un formulaire est affiché pour que les utilisateurs puissent le remplir. Le nom, l'adresse email et un champ pour le message est affiché. Leur adresse IP vous sera également envoyé, au cas où vous souhaitiez la bannir dans l'administration de WordPress." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:19 +msgid "Next, visit the Prowl website and generate your API key, which we use to connect securely and send your notifications." +msgstr "Ensuite, visitez le site web Prowl et générez votre clé API, que nous utiliserons pour vous connecter en toute sécurité et envoyer vos notifications. " -msgid "This enables a new link to a drop-down in the submenu bar for WPtouch ('Message Me')." -msgstr "Ceci active un nouveau lien dans une liste déroulante de la barre de sous-menu de WPtouch ('Contactez Moi')" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:21 +#, php-format +msgid "%sVisit the Prowl Website%s" +msgstr "%sVisitez le Site Prowl%s" -msgid "Allow users to send me direct messages" -msgstr "Permettre aux utilisateur de m'envoyer directement des messages" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:21 +#, php-format +msgid "%sVisit iTunes to Download Prowl%s" +msgstr "%sVisitez iTunes pour télécharger Prowl%s" -msgid "Notify me of new account registrations" -msgstr "Me prévenir lors de l'enregistrement de nouveaux comptes" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:25 +msgid "Your Prowl API key has been verified." +msgstr "Votre Clé API Prowl a été vérifiée." -msgid "Notify me of new comments & pingbacks/tracksbacks" -msgstr "Me prévenir lors de nouveaux commentaires & de nouveaux pingbacks/tracksbacks" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:28 +msgid "Sorry, your Prowl API key is not verified." +msgstr "Désolé, votre Clé API Prowl n'est pas vérifiée." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:29 msgid "Please check your key and make sure there are no spaces or extra characters." -msgstr "Veuillez vérifier votre clef et assurez-vous qu'il n'y ait aucun espace ou caractère supplémentaire." +msgstr "Merci de vérifier votre clé et de vous assurer qu'elle ne comporte ni espace, ni caractère spécial." -msgid "Sorry, your Prowl API key is not verified." -msgstr "Désolé, votre clef pour l'API Prowl n'est pas acceptée." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:39 +msgid "Notify me of new comments & pingbacks/tracksbacks" +msgstr "Me notifier les commentaires & pings/trackbacks" -msgid "Your Prowl API key has been verified." -msgstr "Votre clef pour l'API Prowl a été accepté." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:43 +msgid "Notify me of new account registrations" +msgstr "Me notifier les enregistrements de nouveaux comptes" -msgid "Next, visit the Prowl website and generate your API key, which we use to connect securely and send your notifications." -msgstr "Ensuite, veuillez consulter le site web de Prowl et générer votre clef d'accès pour l'API. Elle sera utilisée par WPtouch pour se connecter de manière sécurisée et vous envoyer des notifications." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:47 +msgid "Allow users to send me direct messages" +msgstr "Autoriser les utilisateurs à ml'adresser des messages directs" -msgid "In order to enable Prowl notifications, you must create a Prowl account, and download/configure the Prowl application for iPhone." -msgstr "Afin d'activer les notifications Prowl, vous devez créer un compte Prowl, et télécharger/configurer l'application Prowl pour iPhone." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:50 +msgid "This enables a new link to a drop-down in the submenu bar for WPtouch ('Message Me')." +msgstr "Ceci active un nouveau lien dans un menu déroulant dans la barre de sous-menu de WPtouch ('Contactez-moi')." -msgid "More Info" -msgstr "Plus d'Info" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:51 +msgid "When opened, a form is shown for users to fill in. The name, e-mail address, and message area is shown. Thier IP will also be sent to you, in case you want to ban it in the WordPress admin." +msgstr "Lorsqu'ouvert, un formulaire s'affiche, et peut être rempli par les utilisateurs. Les champs de Nom, Adresse mail et Message sont affichées. L'IP du tiers vous sera également adressée, pour le cas où vous souhaiteriez l'exclure dans l'adminisitration de WordPress." -msgid "Prowl API Key" -msgstr "Prowl API Key" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/push-area.php:55 +#, php-format +msgid "%sCURL is required%s on your webserver to use Push capabilities in WPtouch." +msgstr "%sCURL est requise%s sur votre serveur web pour utiliser les capacités de Push dans WPtouch." -msgid "Push Notification Options" -msgstr "Options de Push Notifications" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:5 +msgid "Style & Color Options" +msgstr "Options de Style & de Couleur" -msgid " <li class=\"ajax-error\">No feed items found to display.</li>" -msgstr " <li class=\"ajax-error\">Aucun élément trouvé à afficher.</li>" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:8 +msgid "Here you can customize some of the more visible features of WPtouch." +msgstr "Ici, vous pouvez configurer certains des éléments les plus visibles de WPtouch." -msgid "<li class=\"ajax-error\">No feed items found to display.</li>" -msgstr "<li class=\"ajax-error\">Aucun élément trouvé à afficher.</li>" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:17 +msgid "The default WPtouch theme emulates a native iPhone application." +msgstr "Le thème par défaut de WPtouch met en oeuvre une application native iPhone." -msgid "<p style=\"color:orange; padding-top:10px\">Insufficient privileges.</p><p>You need to either be an admin or have more control over your server.</p>" -msgstr "<p style=\"color:orange; padding-top:10px\">Privilèges insuffisants.</p><p>Vous devez être administrateur ou avoir plus de droits sur votre serveur.</p>" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:21 +msgid "Classic" +msgstr "Classique" -msgid "<p style=\"color:orange; padding-top:10px\">Image too large. try something like 59x60.</p>" -msgstr "<p style=\"color:orange; padding-top:10px\">Image trop grande. Essayez une taille de 59x60.</p>" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:24 +msgid "Horizontal Grey" +msgstr "Gris Horizontal" -msgid "<p style=\"color:orange; padding-top:10px\">Sorry, only PNG, GIF and JPG images are supported.</p>" -msgstr "<p style=\"color:orange; padding-top:10px\">Désolé, seules les images au format PNG, GIF et JPG sont acceptées.</p>" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:27 +msgid "Diagonal Grey" +msgstr "Gris en Diagonale" -msgid "<p style=\"color:green; padding-top:10px\">File has been saved and added to the pool.</p>" -msgstr "<p style=\"color:green; padding-top:10px\">Le fichier a été enregistré et ajouté à la file.</p>" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:30 +msgid "Skated Concrete" +msgstr "Skated Concrete" -msgid "<p style=\"color:red; padding-top:10px\">There seems to have been an error.<p>Please try your upload again.</p>" -msgstr "<p style=\"color:red; padding-top:10px\">Il semble y avoir eu une erreur.<p>Veuillez essayer à nouveau votre envoi.</p>" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:33 +msgid "Argyle Tie" +msgstr "Argyle Tie" -msgid "Defaults restored" -msgstr "Valeurs par défaut restaurées" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:36 +msgid "Thatches" +msgstr "Thatches" -msgid "Settings saved" -msgstr "Paramètres enregistrés" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:39 +msgid "Background" +msgstr "Fond" -msgid "WPtouch iPhone Theme" -msgstr "Thème iPhone de WPtouch" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:43 +msgid "Helvetica Neue" +msgstr "Helvetica Neue" -msgid "Direct Message" -msgstr "Message direct" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:46 +msgid "Helvetica" +msgstr "Helvetica" -msgid "User Registration" -msgstr "Création d'un compte utilisateur" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:49 +msgid "Thonburi" +msgstr "Thonburi" -msgid "New Comment" -msgstr "Nouveau commentaire" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:52 +msgid "Georgia" +msgstr "Georgia" -msgid "New Ping/Trackback" -msgstr "Nouveau Ping/Rétrolien" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:55 +msgid "Geeza Pro" +msgstr "Geeza Pro" -msgid "Restore Defaults" -msgstr "Restaurer les valeurs par défaut" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:58 +msgid "Verdana" +msgstr "Verdana" -msgid "Restore default WPtouch settings?" -msgstr "Voulez-vous restaurer les paramètres par défaut de WPtouch ?" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:61 +msgid "Arial Rounded MT Bold" +msgstr "Arial Rounded MT Bold" -msgid "Save Options" -msgstr "Enregistrer les Options" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:64 +msgid "Post Title H2 Font" +msgstr "Police du Titre H2 des articles" -msgid "Mobile Theme" -msgstr "Thème pour mobile" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:66 +msgid "Title text color" +msgstr "Couleur du texte du titre" -msgid "The page or post you were looking for is missing or has been removed." -msgstr "La page ou l'article que vous recherchez est manquant ou a été supprimé." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:67 +msgid "Header background color" +msgstr "Couleur de fond du header" -msgid "404 Not Found" -msgstr "404 Non Trouvée" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:68 +msgid "Sub-header background color" +msgstr "Couleur de fond du header supérieur" -msgid "Try another query." -msgstr "Essayez une autre requête." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/html/style-area.php:69 +msgid "Site-wide links color" +msgstr "Couleur des liens latéraux" + +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/include/submit.php:7 +msgid "Nonce Failure" +msgstr "Erreur d'énoncé" + +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/include/submit.php:12 +msgid "Security failure. Please log in again." +msgstr "Erreur de Sécurité. Merci de vous identifier à nouveau." + +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:22 +#, php-format +msgid "%sHome%s" +msgstr "%sAccueil%s" -msgid "No search results results found." -msgstr "Aucun résultat de recherche trouvé." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:41 +#, php-format +msgid "%sRSS Feed%s" +msgstr "%sFlux RSS%s" -msgid "No more search results to display." -msgstr "Aucun autre résultat de recherche à afficher." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:47 +#, php-format +msgid "%sE-Mail%s" +msgstr "%sEMail%s" -msgid "No more entries to display." -msgstr "Aucun autre article à afficher." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:54 +#, php-format +msgid "%sWarning%s" +msgstr "%sAvertissement%s" + +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:56 +msgid "Sorry, this theme is only meant for use on touch smartphones." +msgstr "Désolé, ce thème est seulement destiné à être utilisé avec des smartphones tactiles." + +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:89 +#: Settings\JYM\Bureau\wptouch/themes/default/index.php:109 +#: Settings\JYM\Bureau\wptouch/themes/default/single.php:33 +msgid "Tags" +msgstr "Tags" -msgid "Archives › %s" -msgstr "Archives › %s" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:93 +#: Settings\JYM\Bureau\wptouch/themes/default/index.php:108 +#: Settings\JYM\Bureau\wptouch/themes/default/single.php:32 +msgid "Categories" +msgstr "Catégories" -msgid "Tags › %s" -msgstr "Etiquettes › %s" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:130 +#, php-format +msgid "Search results › %s" +msgstr "Résultats de recherche › %s" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:132 +#, php-format msgid "Categories › %s" msgstr "Catégories › %s" -msgid "Search results › %s" -msgstr "Résultats de recherche › %s" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:134 +#, php-format +msgid "Tags › %s" +msgstr "Tags » %si" + +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:136 +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:138 +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:140 +#, php-format +msgid "Archives › %s" +msgstr "Archives › %s" -msgid "Sorry, this theme is only meant for use with WordPress on certain smartphones." -msgstr "Désolé, ce thème est uniquement prévu pour être utilisé avec WordPress sur certains smartphones." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:152 +msgid "No more entries to display." +msgstr "Plus aucune entrée à afficher." -msgid "%sWarning%s" -msgstr "%sAttention%s" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:154 +msgid "No more search results to display." +msgstr "Pas de résultat de recherche supplémentaire à afficher." -msgid "%sE-Mail%s" -msgstr "%sE-Mail%s" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:156 +msgid "No search results results found." +msgstr "Aucun résultats de recherche n'a été trouvé." -msgid "%sRSS Feed%s" -msgstr "%sFlux RSS%s" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:156 +msgid "Try another query." +msgstr "Essayez une autre requête." -msgid "%sHome%s" -msgstr "%sAccueil%s" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:159 +msgid "404 Not Found" +msgstr "404 Non Trouvé" -msgid "min" -msgstr "min" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:160 +msgid "The page or post you were looking for is missing or has been removed." +msgstr "La page ou l'article que vous recherchez manque ou a été supprimé." + +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:213 +msgid "edit" +msgstr "Editer" + +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:214 +msgid "del" +msgstr "del" + +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/core/core-functions.php:215 +msgid "spam" +msgstr "spam" + +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:7 +msgid "This post is password protected. Enter the password to view comments." +msgstr "Cet article est protégé par un mot de passe. Entrez le mot de passe pour voir les commentaires." -msgid "hr" -msgstr "heure" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:18 +msgid "No Responses Yet" +msgstr "Aucun commentaire encore" -msgid "day" -msgstr "jour" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:19 +msgid "1 Response" +msgstr "1 commentaire" -msgid "wk" -msgstr "sem" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:20 +msgid "% Responses" +msgstr "% commentaires" -msgid "mo" -msgstr "mois" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:40 +msgid "ago" +msgstr "plus tôt" + +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:71 +msgid "Comments are closed." +msgstr "Les commentaires sont fermés." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:81 +#, php-format msgid "You must %slogin</a> or %sregister</a> to comment" -msgstr "Vous devez %slogin</a> ou %sregister</a> pour pouvoir ajouter un commentaire" +msgstr "Vous devez %svous connecter</a> ou %svous enregistrer</a> pour commenter" -msgid "ago" -msgstr " " +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:89 +msgid "Success! Comment added." +msgstr "Succès ! Commentaire ajouté." -msgid "% Responses" -msgstr "% Réponses" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:90 +msgid "Refresh the page to see your comment." +msgstr "Rafraichissez la page pour voir votre commentaire." -msgid "1 Response" -msgstr "1 Réponse" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:91 +msgid "(If your comment requires moderation it will be added soon.)" +msgstr "(Si votre commentaire nécessite une modération, il sera ajouté rapidement.)" -msgid "No Responses Yet" -msgstr "Aucune réponse" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/comments.php:98 +msgid "Logged in as" +msgstr "Connecté en tant que" -msgid "Publishing..." -msgstr "Publication..." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/comments.php:102 +msgid "Leave A Comment" +msgstr "Laisser un commentaire" -msgid "Publish" -msgstr "Publier" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/comments.php:105 +#: Settings\JYM\Bureau\wptouch/themes/default/header.php:153 +msgid "Name" +msgstr "Nom" -msgid "There was an error posting your comment. Maybe it was too short?" -msgstr "Une erreur s'est produite lors de l'envoi de votre commentaire. Peut-être était-il trop court ?" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/comments.php:110 +msgid "Mail (unpublished)" +msgstr "Email (ne sera pas publié)" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/comments.php:115 msgid "Website" -msgstr "Site web" +msgstr "Site Web" -msgid "Mail (unpublished)" -msgstr "Mail (non-publié)" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/comments.php:119 +msgid "There was an error posting your comment. Maybe it was too short?" +msgstr "Une erreur est survenue pendant que vous postiez votre commentaire. Peut-être était-il trop court ?" -msgid "Leave A Comment" -msgstr "Laisser un commentaire" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/comments.php:125 +msgid "Publish" +msgstr "Publier" -msgid "Logged in as" -msgstr "Connecté en tant que" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/comments.php:128 +msgid "Publishing..." +msgstr "Publication en cours..." -msgid "(If your comment requires moderation it will be added soon.)" -msgstr "(Si votre commentaire requiert une modération il sera ajouté bientôt.)" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/footer.php:10 +msgid "Powered by" +msgstr "Propulsé par" -msgid "Refresh the page to see your comment." -msgstr "Rafraichir la page pour voir votre commentaire." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/footer.php:10 +msgid "WordPress" +msgstr "WordPress" -msgid "Success! Comment added." -msgstr "Commentaire ajouté avec succès !" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/footer.php:10 +msgid "+" +msgstr "+" -msgid "Comments are closed." -msgstr "Les commentaires sont fermés." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/functions.php:105 +msgid "mo" +msgstr "mois" -msgid "This post is password protected. Enter the password to view comments." -msgstr "Cet article est protégé par un mot de passe. Veuillez entrer le mot de passe pour voir les commentaires." +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/functions.php:106 +msgid "wk" +msgstr "sem" -msgid "Pages in this article: " -msgstr "Pages dans cet articles: " +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/functions.php:107 +msgid "day" +msgstr "jour" -msgid "Monthly Archives" -msgstr "Archives mensuelles" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/functions.php:108 +msgid "hr" +msgstr "hr" -msgid "Tag Cloud" -msgstr "Nuages d'étiquettes" +#: C:\Documents +#: and +#: Settings\JYM\Bureau\wptouch/themes/default/functions.php:109 +msgid "min" +msgstr "min" -msgid "Article Pages" -msgstr "Pages d'articles" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:10 +msgid "Notice" +msgstr "Remarque" -msgid "Reddit" -msgstr "Reddit" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:11 +msgid "JavaScript for Mobile Safari is currently turned off." +msgstr "JavaScript pour Safari mobile est actuellement désactivé. " -msgid "Newsvine" -msgstr "Newsvine" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:12 +msgid "Turn it on in " +msgstr "Activez-le dans" -msgid "Magnolia" -msgstr "Magnolia" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:12 +msgid "Settings › Safari" +msgstr "Réglages » Safari" -msgid "Technorati" -msgstr "Technorati" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:12 +msgid " to view this website." +msgstr "pour afficher ce site web." -msgid "Digg" -msgstr "Digg" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:18 +msgid "Your Push Notification was sent." +msgstr "Votre notifcation Push a été envoyée." -msgid "Del.icio.us" -msgstr "Del.icio.us" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:20 +msgid "Your Push Notification cannot be delivered at this time." +msgstr "Votre notification Push n'a pas pu être envoyée pour l'instant." -msgid "Mail a link to this post?" -msgstr "Envoyer un mail avec un lien vers cet article ?" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:28 +msgid "Username" +msgstr "Nom d'utilisateur" -msgid "Check out this post:" -msgstr "Consultez cet article:" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:29 +msgid "Password" +msgstr "Mot de passe" -msgid "Leave a comment" -msgstr "Laisser un commentaire" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:31 +#: Settings\JYM\Bureau\wptouch/themes/default/header.php:58 +msgid "Login" +msgstr "Connexion" -msgid "Skip to comments" -msgstr "Aller aux commentaires" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:42 +#: Settings\JYM\Bureau\wptouch/themes/default/header.php:43 +msgid "Search..." +msgstr "Recherche..." -msgid "Permanent Link to " -msgstr "Permalien vers " +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:53 +msgid "Menu" +msgstr "Menu" -msgid "You can %ssign-up here%s." -msgstr "Vous pouvez %svous inscrire ici%s." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:60 +msgid "My Account" +msgstr "Mon compte" -msgid "Upcoming Tour Dates" -msgstr "Les prochains événements" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:88 +msgid "Enter your username and password<br />in the boxes above." +msgstr "Entrez votre nom d'utilisateur et votre mot de passe<br /> dans les champs ci-dessus." -msgid "No recent Tweets." -msgstr "Pas de Tweet récent." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:91 +msgid "Not registered yet?" +msgstr "Pas encore enregistré ?" -msgid "Follow me on Twitter" -msgstr "Suivez moi sur Twitter" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:93 +#, php-format +msgid "You can %ssign-up here%s." +msgstr "Vous pouvez %svous inscrire ici%s." -msgid "Send Now" -msgstr "Envoyez maintenant" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:98 +msgid "Admin" +msgstr "Administrateur" -msgid "E-Mail" -msgstr "eMail" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:101 +msgid "Register for this site" +msgstr "Enregistrez vous pour ce site" -msgid "Name" -msgstr "Nom" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:104 +msgid "Account Profile" +msgstr "Profil de compte" -msgid "This message will be pushed to the admin's iPhone instantly." -msgstr "Ce message sera immédiatement envoyé à l'iPhone de l'administrateur" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:105 +msgid "Logout" +msgstr "Déconnexion" -msgid "Send a Message" -msgstr "Envoyez un message" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:128 +msgid "Search" +msgstr "Recherche" -msgid "Tour Dates" -msgstr "Calendrier" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:132 +msgid "Message" +msgstr "Message" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:136 msgid "Twitter" msgstr "Twitter" -msgid "Message" -msgstr "Message" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:140 +msgid "Tour Dates" +msgstr "Dates de voyage" -msgid "Logout" -msgstr "Déconnexion" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:147 +msgid "Send a Message" +msgstr "Envoyer un message" -msgid "Account Profile" -msgstr "Profile du compte" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:148 +msgid "This message will be pushed to the admin's iPhone instantly." +msgstr "Ce message sera publié dans l'iPhone de l'administrateur instantanément." -msgid "Register for this site" -msgstr "Enregistrez-vous sur ce site" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:158 +msgid "E-Mail" +msgstr "EMail" -msgid "Admin" -msgstr "Admin" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:164 +msgid "Send Now" +msgstr "Envoyer maintenant" -msgid "Not registered yet?" -msgstr "Pas encore enregistré ?" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:179 +msgid "Follow me on Twitter" +msgstr "Suivez-moi sur Twitter" -msgid "Enter your username and password<br />in the boxes above." -msgstr "Saisissez votre nom d'utilisateur et votre mot de passe<br />dans les champs ci dessous." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:192 +msgid "No recent Tweets." +msgstr "Pas de Tweets récents." -msgid "My Account" -msgstr "Mon compte" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/header.php:204 +msgid "Upcoming Tour Dates" +msgstr "Prochaines dates de voyage" -msgid "Menu" -msgstr "Menu" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/index.php:106 +msgid "Written on" +msgstr "Écrit le" -msgid "Search..." -msgstr "Rechercher..." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/index.php:107 +msgid "By" +msgstr "Par" -msgid "Search" -msgstr "Rechercher" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/index.php:114 +msgid "Read This Post" +msgstr "Lire cet article" -msgid "Login" -msgstr "Identifiant" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/index.php:122 +msgid "Load more entries..." +msgstr "Charger plus d'entrées..." -msgid "Your Push Notification cannot be delivered at this time." -msgstr "Votre Notification Push ne peut pas être envoyée à ce moment." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/index.php:129 +msgid "Newer Entries" +msgstr "Entrées plus récentes" -msgid "Your Push Notification was sent." -msgstr "Votre Notification Push a été envoyée." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/index.php:132 +msgid "Older Entries" +msgstr "Entrées plus anciennes" -msgid " to view this website." -msgstr " pour voir ce site web." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/page.php:38 +msgid "Tag Cloud" +msgstr "Nuage de Tags" -msgid "Settings › Safari" -msgstr "Configuration › Safari" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/page.php:45 +msgid "Monthly Archives" +msgstr "Archives mensuelles" -msgid "Turn it on in " -msgstr "Activer" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/page.php:76 +msgid "Pages in this article: " +msgstr "Pages dans cet article :" -msgid "JavaScript for Mobile Safari is currently turned off." -msgstr "Javascript pour Safari Mobile est actuellement désactivé." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:7 +msgid "Permanent Link to " +msgstr "Lien permanent vers" -msgid "Notice" -msgstr "Remarque" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:12 +#: Settings\JYM\Bureau\wptouch/themes/default/single.php:14 +#: Settings\JYM\Bureau\wptouch/themes/default/single.php:18 +msgid "Skip to comments" +msgstr "Aller directement aux commentaires" -msgid "+" -msgstr "+" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:16 +msgid "Leave a comment" +msgstr "Laisser un commentaire" -msgid "WordPress" -msgstr "WordPress" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:31 +msgid "Article Pages" +msgstr "Pages de l'article" -msgid "Powered by" -msgstr "Propulsé par" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:40 +msgid "Check out this post:" +msgstr "Vérifier cet article :" -msgid "Older Entries" -msgstr "Anciens articles" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:40 +msgid "Mail a link to this post?" +msgstr "Envoyer un lien par email de cet article ?" -msgid "Newer Entries" -msgstr "Nouveaux articles" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:52 +msgid "Del.icio.us" +msgstr "Del.icio.us" -msgid "Tags" -msgstr "Etiquettes" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:54 +msgid "Digg" +msgstr "Digg" -msgid "Categories" -msgstr "Catégories" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:55 +msgid "Technorati" +msgstr "Technorati" -msgid "Load more entries..." -msgstr "Afficher plus d'articles..." +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:56 +msgid "Magnolia" +msgstr "Magnolia" -msgid "Read This Post" -msgstr "Lire cet article" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:57 +msgid "Newsvine" +msgstr "Newsvine" -msgid "By" -msgstr "Par" +#: C:\Documents +#: and Settings\JYM\Bureau\wptouch/themes/default/single.php:58 +msgid "Reddit" +msgstr "Reddit" -msgid "Written on" -msgstr "Ecrit sur" +#~ msgid "%sBNC on Twitter%s" +#~ msgstr "%sBNC sur Twitter%s" + +#~ msgid "%sBraveNewCode.com%s" +#~ msgstr "%sBraveNewCode.com%s" + +#~ msgid "" +#~ "Here you'll find information on additional WPtouch features and their " +#~ "requirements, including those activated with companion plugins." +#~ msgstr "" +#~ "Vous trouverez ici des informations sur les paramètres additionnels de " +#~ "WPtouch et ce qu'ils requierent, incluant ceux qui sont activés avec des " +#~ "extensions amies." + +#~ msgid "WordPress Pages & Feature Support" +#~ msgstr "Support des Pages WordPress & Réglages" + +#~ msgid "" +#~ "All of your WP links will automatically show on your page called 'Links'." +#~ msgstr "" +#~ "Tous vos liens WP s'afficheront automatiquement sur la page appelée " +#~ "'Liens'." + +#~ msgid "" +#~ "If you create a page called 'Links', all your WP links would display in " +#~ "<em>WPtouch</em> style." +#~ msgstr "" +#~ "Si vous créez une page appelée 'Liens', tous vos liens WP y seront " +#~ "affichés dans le style <em>WPtouch</em>. " + +#~ msgid "" +#~ "All your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=" +#~ "\"_blank\">FlickrRSS</a> images will automatically show on your page " +#~ "called 'Photos'." +#~ msgstr "" +#~ "Toutes vos images <a href=\"http://eightface.com/wordpress/flickrrss/\" " +#~ "target=\"_blank\">FlickrRSS</a> seront automatiquement affichées sur la " +#~ "page nommée 'Photos'." + +#~ msgid "" +#~ "You have a page called 'Photos', but don't have <a href=\"http://" +#~ "eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> " +#~ "installed." +#~ msgstr "" +#~ "Vous avez une page nommée 'Photos', mais ne disposez pas de <a href=" +#~ "\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank" +#~ "\">FlickrRSS</a> installé." + +#~ msgid "" +#~ "If you create a page called 'Photos', all your <a href=\"http://eightface." +#~ "com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> photos would " +#~ "display in <em>WPtouch</em> style." +#~ msgstr "" +#~ "Si vous créez une page nommée 'Photos', toutes vos photos <a href=" +#~ "\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank" +#~ "\">FlickrRSS</a> y seront affichées dans le style <em>WPtouch</em>." + +#~ msgid "" +#~ "If you create a page called 'Photos', and install the <a href=\"http://" +#~ "eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> " +#~ "plugin, your photos would display in <em>WPtouch</em> style." +#~ msgstr "" +#~ "Si vous créez une page nommée 'Photos',et installez l'extension <a href=" +#~ "\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank" +#~ "\">FlickrRSS</a> , vos photos seront affichées dans le style <em>WPtouch</" +#~ "em>." + +#~ msgid "" +#~ "Your tags and your monthly listings will automatically show on your page " +#~ "called 'Archives'." +#~ msgstr "" +#~ "Vos Tags et vos Listes Mensuelles seront automatiquement affichés sur la " +#~ "page nommée 'Archives'." + +#~ msgid "" +#~ "If you had a page called 'Archives', your tags and monthly listings would " +#~ "display in <em>WPtouch</em> style." +#~ msgstr "" +#~ "Si vous ajoutez une page nommée 'Archives', vos Tags et Listes Mensuelles " +#~ "s'afficheront dans le style <em>WPtouch</em>." + +#~ msgid "post_title" +#~ msgstr "post_title" + +#~ msgid "" +#~ "<h3 onclick=\"bnc_showhide_coms_toggle();\" id=\"com-head\"><img id=\"com-" +#~ "arrow\" src=\"" +#~ msgstr "" +#~ "<h3 onclick=\"bnc_showhide_coms_toggle();\" id=\"com-head\"><img id=\"com-" +#~ "arrow\" src=\"" + +#~ msgid "" +#~ "/themes/core/core-images/com_arrow.png\" alt=\"arrow\" />1 Comment</h3>" +#~ msgstr "" +#~ "/themes/core/core-images/com_arrow.png\" alt=\"arrow\" />1 Commentaire</" +#~ "h3>" + +#~ msgid "" +#~ "/themes/core/core-images/com_arrow.png\" alt=\"arrow\" />% Comments</h3>" +#~ msgstr "" +#~ "/themes/core/core-images/com_arrow.png\" alt=\"arrow\" />% Commentaires</" +#~ "h3>" + +#~ msgid "WPtouch" +#~ msgstr "WPtouch" + +#~ msgid "http://bravenewcode.com/products/wptouch" +#~ msgstr "http://bravenewcode.com/products/wptouch" + +#~ msgid "" +#~ "A plugin which formats your site with a mobile theme for visitors on " +#~ "Apple <a href=\"http://www.apple.com/iphone/\">iPhone</a> / <a href=" +#~ "\"http://www.apple.com/ipodtouch/\">iPod touch</a>, <a href=\"http://www." +#~ "android.com/\">Google Android</a>, <a href=\"http://www.blackberry.com/" +#~ "\">Blackberry Storm and Torch</a>, <a href=\"http://www.palm.com/us/" +#~ "products/phones/pre/\">Palm Pre</a> and other touch-based smartphones." +#~ msgstr "" +#~ "Une extension qui formate votre site avec un thème pour mobiles pour les " +#~ "visiteurs sur <a href=\"http://www.apple.com/iphone/\">iPhone Apple</a> / " +#~ "<a href=\"http://www.apple.com/ipodtouch/\">iPod touch</a>, <a href=" +#~ "\"http://www.android.com/\"> Android Google</a>, <a href=\"http://www." +#~ "blackberry.com/\">Blackberry Storm and Torch</a>, <a href=\"http://www." +#~ "palm.com/us/products/phones/pre/\">Palm Pre</a> et les autres " +#~ "smartphones à écrans digitaux." + +#~ msgid "Dale Mugford & Duane Storey (BraveNewCode Inc.)" +#~ msgstr "Dale Mugford & Duane Storey (BraveNewCode Inc.)" + +#~ msgid "http://www.bravenewcode.com" +#~ msgstr "http://www.bravenewcode.com" + +#~ msgid "Font Options" +#~ msgstr "Options de Police" + +#~ msgid "Post Thumbnails" +#~ msgstr "Imagettes des Articles" + +#~ msgid "%sSupport Forums%s" +#~ msgstr "%sForums d'Aide%s" + +#~ msgid "%sDonate%s" +#~ msgstr "%sDonation%s" + +#~ msgid "For further documentation visit" +#~ msgstr "Pour plus de documentation, visitez" + +#~ msgid "" +#~ "To report an incompatible plugin, let us know in our %sSupport Forums%s." +#~ msgstr "" +#~ "Pour signaler une extension incompatible, faites-le nous savoir sur notre " +#~ "%sForum d'Aide%s." + +#~ msgid "<br /><br />Not registered yet?<br />You can %ssign-up here%s." +#~ msgstr "" +#~ "<br /><br />Pas encore enregistré ?<br />Vous pouvez %svous enregistrer " +#~ "ici%s." + +#~ msgid "Page" +#~ msgstr "Page" + +#~ msgid "All content Copyright ©" +#~ msgstr "Tout le contenu est sous Copyright copy;" + +#~ msgid "Post to Tweetie" +#~ msgstr "Envoyer vers Tweetie" + +#~ msgid "Post to Twitteriffic" +#~ msgstr "Envoyer vers Twitteriffic" + +#~ msgid "Post to Twittelator Pro" +#~ msgstr "Envoyer vers Twittelator Pro" + +#~ msgid "Latest Support Topics" +#~ msgstr "Dernières occurrences du Support" + +#~ msgid "" +#~ "The flat icon option applies does not alter the home-screen bookmark/logo " +#~ "icon." +#~ msgstr "" +#~ "Appliquer l'option icône plate n'affecte pas les marque-page/icône de " +#~ "logo de l'écran d'accueil." + +#~ msgid "Twitter Topics" +#~ msgstr "Discussions Twitter" + +#~ msgid "%sCURL is required%s on your webserver to load RSS feeds." +#~ msgstr "" +#~ "%sCURL est requise%s sur votre serveur web pour charger les flux RSS." + +#~ msgid "Glossy Effect" +#~ msgstr "Effet Brillant" + +#~ msgid "Flat Icon" +#~ msgstr "Icône Plate" + +#~ msgid "Bookmark Icon Style" +#~ msgstr "Style de l' Icône de Marque-page" + +#~ msgid "%sClick here to refresh the page%s and see your icon." +#~ msgstr "%sCliquez ici pour rafraîchir la page%s et voir votre icône." + +#~ msgid "" +#~ "You can select which icons will be displayed beside the pages you enable " +#~ "in the next section." +#~ msgstr "" +#~ "Vous pouvez sélectionner quelles icones seront affichées devant les pages " +#~ "que vous activerez dans la section suivante." + +#~ msgid "Enable ajax for comments" +#~ msgstr "Activer AJAX pour les commentaires" + +#~ msgid "" +#~ "When this option is checked, comments are submitted and returned in real " +#~ "time using Ajax." +#~ msgstr "" +#~ "Quand cette option est activée, les commentaires sont envoyés et affichés " +#~ "en temps réel, par l'utilisation d'Ajax." + +#~ msgid "" +#~ "However, some server environments and other WordPress plugins prevent " +#~ "WPtouch's Ajax comments from working." +#~ msgstr "" +#~ "Toutefois, certains environements de serveurs et d'autres extensions " +#~ "WordPress empêchent l'option des Commentaires Ajax WPtouch de " +#~ "fonctionner. " + +#~ msgid "" +#~ "Uncheck this option if you're having problems or would prefer to use the " +#~ "standard WordPress comment submission format." +#~ msgstr "" +#~ "Décocher cette option si vous rencontrez des problèmes, ou si vous " +#~ "préférez utiliser le format standard de soumission de commentaires " +#~ "WordPress." + +#~ msgid "" +#~ "The post you are trying to comment on does not curently exist in the " +#~ "database." +#~ msgstr "" +#~ "L'article que vous essayez de commenter n'existe plus actuellement dans " +#~ "la base." + +#~ msgid "Sorry, comments are closed for this item." +#~ msgstr "Désolé, les commentaires sont fermés pour cette discussion." + +#~ msgid "Sorry, you must be logged in to post a comment." +#~ msgstr "Désolé, vous devez être connecté pour poster un commentaire." + +#~ msgid "Error: please fill in the required fields" +#~ msgstr "Erreur : merci de renseigner les champs requis" + +#~ msgid "Error: please enter a valid email address." +#~ msgstr "Erreur : merci d'entrer une adresse email valide." + +#~ msgid "Error: please type something in the comment area." +#~ msgstr "" +#~ "Erreur : merci de taper quelque chose dans le champs de commentaire." -msgid "All content Copyright " -msgstr "Tout contenu Copyright " +#~ msgid "Refresh the page" +#~ msgstr "Rafraîchir la page" +#~ msgid "to post a new comment." +#~ msgstr "pour poster un nouveau commentaire." + +#~ msgid "There was an error. Please refresh the page and try again." +#~ msgstr "" +#~ "Une erreur est survenue. Merci de rafraîchir la page et de réessayer." diff --git a/wp-content/plugins/wptouch/lang/src/ja_JP.po b/wp-content/plugins/wptouch/lang/src/ja_JP.po index 4be40fb059ee7bd9e5ffb0017d1354d388344fa6..4a900d2cf3b10b9b49bcb14203ec31f57f53bce4 100644 --- a/wp-content/plugins/wptouch/lang/src/ja_JP.po +++ b/wp-content/plugins/wptouch/lang/src/ja_JP.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: wptouch-ja_JP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-11 00:11+0900\n" -"PO-Revision-Date: 2010-10-11 00:43+0900\n" -"Last-Translator: yamk <yamk.net@gmail.com>\n" +"POT-Creation-Date: 2011-03-20 11:13+0900\n" +"PO-Revision-Date: 2011-03-20 11:21+0900\n" +"Last-Translator: Kenji Yamaguchi <yamk.net@gmail.com>\n" "Language-Team: yamk <yamk.net@gmail.com>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,1327 +19,1438 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-KeywordsList: _;_c;_e;__\n" "X-Poedit-Basepath: .\n" -"X-Poedit-SearchPath-0: C:\\work\\WPtouch\\wptouch\n" +"X-Poedit-SearchPath-0: /Users/yamk/Work/wptouch\n" -#: C:\work\WPtouch\wptouch/wptouch.php:214 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:215 msgid "Settings" msgstr "設定" -#: C:\work\WPtouch\wptouch/wptouch.php:391 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:401 msgid "New Ping/Trackback" msgstr "新規 Ping/トラックバック" -#: C:\work\WPtouch\wptouch/wptouch.php:397 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:407 msgid "New Comment" msgstr "新規コメント" -#: C:\work\WPtouch\wptouch/wptouch.php:425 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:435 msgid "User Registration" msgstr "ユーザ登録" -#: C:\work\WPtouch\wptouch/wptouch.php:469 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:479 msgid "Direct Message" msgstr "ダイレクトメッセージ" -#: C:\work\WPtouch\wptouch/wptouch.php:604 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:626 msgid "Mobile Theme" msgstr "モバイルテーマ" -#: C:\work\WPtouch\wptouch/wptouch.php:611 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:633 msgid "WPtouch iPhone Theme" msgstr "WPtouch iPhone テーマ" -#: C:\work\WPtouch\wptouch/wptouch.php:902 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:935 msgid "Settings saved" msgstr "設定を保存しました" -#: C:\work\WPtouch\wptouch/wptouch.php:907 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:940 msgid "Defaults restored" msgstr "デフォルト値に戻しました" -#: C:\work\WPtouch\wptouch/wptouch.php:927 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:961 msgid "Save Options" msgstr "オプションを保存" -#: C:\work\WPtouch\wptouch/wptouch.php:931 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:965 msgid "Restore default WPtouch settings?" msgstr "WPtouch のデフォルト設定を戻しますか?" -#: C:\work\WPtouch\wptouch/wptouch.php:931 +#: /Users/yamk/Work/wptouch/wptouch/wptouch.php:965 msgid "Restore Defaults" msgstr "デフォルト値に戻す" -#: C:\work\WPtouch\wptouch/ajax/file_upload.php:23 +#: /Users/yamk/Work/wptouch/wptouch/ajax/file_upload.php:24 msgid "<p style=\"color:red; padding-top:10px\">There seems to have been an error.<p>Please try your upload again.</p>" msgstr "<p style=\"color:red; padding-top:10px\">エラーが発生しました。<p>再度アップロードを試してください。</p>" -#: C:\work\WPtouch\wptouch/ajax/file_upload.php:25 +#: /Users/yamk/Work/wptouch/wptouch/ajax/file_upload.php:26 msgid "<p style=\"color:green; padding-top:10px\">File has been saved and added to the pool.</p>" msgstr "<p style=\"color:green; padding-top:10px\">プールにファイルが追加されました。</p>" -#: C:\work\WPtouch\wptouch/ajax/file_upload.php:28 +#: /Users/yamk/Work/wptouch/wptouch/ajax/file_upload.php:29 msgid "<p style=\"color:orange; padding-top:10px\">Sorry, only PNG, GIF and JPG images are supported.</p>" msgstr "<p style=\"color:orange; padding-top:10px\">PNG, GIF, JPG 画像のみがサポートされています。</p>" -#: C:\work\WPtouch\wptouch/ajax/file_upload.php:30 +#: /Users/yamk/Work/wptouch/wptouch/ajax/file_upload.php:31 msgid "<p style=\"color:orange; padding-top:10px\">Image too large. try something like 59x60.</p>" msgstr "<p style=\"color:orange; padding-top:10px\">画像が大きすぎます。59x60で試してください。</p>" -#: C:\work\WPtouch\wptouch/ajax/file_upload.php:32 +#: /Users/yamk/Work/wptouch/wptouch/ajax/file_upload.php:33 msgid "<p style=\"color:orange; padding-top:10px\">Insufficient privileges.</p><p>You need to either be an admin or have more control over your server.</p>" msgstr "<p style=\"color:orange; padding-top:10px\">権限がありません。</p><p>管理者または、上位の管理権限が必要です。</p>" -#: C:\work\WPtouch\wptouch/ajax/news.php:16 -#: C:\work\WPtouch\wptouch/ajax/support.php:16 -#: C:\work\WPtouch\wptouch/ajax/support.php:28 +#: /Users/yamk/Work/wptouch/wptouch/ajax/news.php:16 +#: /Users/yamk/Work/wptouch/wptouch/ajax/support.php:16 +#: /Users/yamk/Work/wptouch/wptouch/ajax/support.php:28 msgid "<li class=\"ajax-error\">No feed items found to display.</li>" msgstr "<li class=\"ajax-error\">フィードの項目がありません。</li>" -#: C:\work\WPtouch\wptouch/ajax/news.php:28 +#: /Users/yamk/Work/wptouch/wptouch/ajax/news.php:28 msgid " <li class=\"ajax-error\">No feed items found to display.</li>" msgstr " <li class=\"ajax-error\">フィードの項目がありません。</li>" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:5 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:5 msgid "Adsense, Stats & Custom Code" msgstr "Adsense, Stats & カスタムコード" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:8 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:8 msgid "Adsense" msgstr "Adsense" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:9 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:9 msgid "Enter your Google AdSense ID if you'd like to support mobile advertising in WPtouch posts." msgstr "WPtouch の投稿画面にモバイル版広告を表示する場合は、Google AdSense ID を入力してください。" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:10 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:10 msgid "Make sure to include the 'pub-' part of your ID string." msgstr "ID 文字列には 'pub-' 部分を必ず含むようにしてください。" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:12 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:12 msgid "Stats & Custom Code" msgstr "Stats & カスタムコード" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:13 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:13 msgid "If you'd like to capture traffic statistics " msgstr "トラフィックの流量を記録したい場合は" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:13 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:13 msgid "(Google Analytics, MINT, etc.)" msgstr "(Google Analytics, MINT, その他)" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:14 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:14 msgid "Enter the code snippet(s) for your statistics tracking." msgstr "トラッキングのためのコードの一部を入力してください。" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:14 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:14 msgid "You can also enter custom CSS & other HTML code." msgstr "カスタム CSS および HTML コードも入力できます。" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:16 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:22 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:31 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:40 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:49 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:60 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:68 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:83 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:92 -#: C:\work\WPtouch\wptouch/html/advanced-area.php:101 -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:96 -#: C:\work\WPtouch\wptouch/html/page-area.php:31 -#: C:\work\WPtouch\wptouch/html/push-area.php:17 -#: C:\work\WPtouch\wptouch/html/push-area.php:49 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:16 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:22 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:31 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:40 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:49 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:60 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:68 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:76 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:86 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:100 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:109 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:111 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:31 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:17 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:49 msgid "More Info" msgstr "追加情報" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:17 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:17 msgid "You may enter a custom css file link easily. Simply add the full link to the css file like this:" msgstr "カスタム CSS ファイルへのリンクでもかまいません。次のように、単に CSS ファイルへの完全なリンクを追加します:" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:18 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:18 msgid "<code><link rel="stylesheet" src="http://path-to-my-css-file" type="text/css" media="screen" /></code>" msgstr "<code><link rel="stylesheet" src="http://カスタムCSSファイルのPATH" type="text/css" media="screen" /></code>" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:25 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:25 msgid "Google AdSense ID" msgstr "Google AdSense ID" -#: C:\work\WPtouch\wptouch/html/ads-stats-area.php:26 +#: /Users/yamk/Work/wptouch/wptouch/html/ads-stats-area.php:26 msgid "Google AdSense Channel" msgstr "Google AdSense チャネル" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:5 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:5 msgid "Advanced Options" msgstr "詳細オプション" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:8 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:8 msgid "Choose to enable/disable advanced features & options available for WPtouch." msgstr "WPtouch で使用可能な詳細オプションごとに 有効/無効 を選択してください。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:9 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:9 msgid "* WPtouch Restricted Mode attempts to fix issues where other plugins load scripts which interfere with WPtouch CSS and JavaScript." msgstr "* 「WPtouch 制限モード」では、他のプラグインが WPtouch CSS および JavaScript に干渉するスクリプトを読み込む際の問題を修復しようと試みます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:11 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:11 msgid "Custom User-Agents" msgstr "カスタム User-Agent" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:12 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:12 msgid "Enter a comma-separated list of user-agents to enable WPtouch for a device that isn't currently officially supported." msgstr "現在、正規にサポートしていないデバイスに対して WPtouch を有効にするために、User-Agent をコンマで区切って入力してください。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:13 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:13 #, php-format msgid "The currently enabled user-agents are: <em class='supported'>%s</em>" msgstr "現在有効にされている User-Agent : <em class='supported'>%s</em>" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:20 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:20 msgid "Enable Categories tab in the header" msgstr "ヘッダーで「カテゴリー」タブを有効にする" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:23 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:23 msgid "This will add a 'Categories' tab item in the WPtouch drop-down." msgstr "WPtouch のドロップダウンメニューに「カテゴリー」タブを追加します。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:24 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:24 msgid "It will display a list of your popular categories." msgstr "よく使用されるカテゴリーが表示されます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:29 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:29 msgid "Enable Tags tab in the header" msgstr "ヘッダーで「タグ」タブを有効にする" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:32 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:32 msgid "This will add a 'Tags' tab item in the WPtouch drop-down." msgstr "WPtouch のドロップダウンメニューに「タグ」タブを追加します。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:33 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:33 msgid "It will display a list of your popular tags." msgstr "よく使用されるタグが表示されます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:38 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:38 msgid "Enable Search link in the header" msgstr "ヘッダーで「検索」リンクを有効にする" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:41 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:41 msgid "This will add a 'Search' item in the WPtouch sub header." msgstr "WPtouch のサブヘッダーに「検索」を追加します。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:42 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:42 msgid "It will display an overlay on the title area allowing users to search your website." msgstr "タイトルエリアで、ユーザにウェブサイト内検索のオーバーレイが表示されます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:47 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:47 msgid "Enable Login/My Account tab in the header" msgstr "ヘッダーで「ログイン/マイアカウント」タブを有効にする" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:50 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:50 msgid "This will add a 'Login' tab in the WPtouch sub header beside the Tags and Categories tabs if they are also enabled." msgstr "「タグ」と「カテゴリー」タブが有効な場合、WPtouch サブヘッダーに「ログイン」タブを追加します。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:51 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:51 msgid "It will display a username/password drop-down, allowing users to login plus be automatically re-directed back to the page they logged in from without seeing the WP admin." msgstr "ドロップダウンにユーザ名/パスワード欄が表示され、ログイン後はWordPress管理画面を見ることなく元のページに戻ります。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:52 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:52 msgid "Once logged in, a new 'My Account' button will appear. The 'My Account' button shows useful links depending on the type of account (subscriber, admin, etc.)." msgstr "一旦ログインすると、「マイアカウント」ボタンが表示されます。「マイアカウントボタン」は、アカウントの種類(購読者、管理者、その他)ごとに、よく使用されるリンクを表示します。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:53 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:53 msgid "NOTE: The Account tab/links will always appear if you have enabled registration on your site or require users to login for comments." msgstr "注意: このサイトで登録(registration) を有効にしている、またはコメントの入力にログインを要求している場合は、「アカウント」タブ/リンク が常に表示されます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:58 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:58 msgid "Display Upcoming Dates link in the header (requires <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> or higher)" msgstr "「Upcoming Dates」リンクをヘッダーに表示する (要 <a href='http://gigpress.com/' target='_blank'>GigPress 2.0.3</a> 以上)" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:61 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:61 msgid "When this option is checked and the GigPress plugin is installed, a list of your Upcoming Shows will be viewable from a drop-down in the WPtouch header." msgstr "このオプションにチェックを入れ、GigPress プラグインがインストールされている場合は、WPtouch ヘッダーのドロップダウン内に 「Upcoming Shows」が表示されます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:66 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:66 msgid "Display Twitter link in the header (requires <a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> or higher)" msgstr "Twitter リンクをヘッダーに表示する (要 <a href='http://www.bravenewcode.com/wordtwit/' target='_blank'>WordTwit 2.3.3</a> 以上)" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:69 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:69 msgid "When this option is checked and the WordTwit plugin is installed, a list of your Tweets will be viewable from a drop-down in the WPtouch header." msgstr "このオプションにチェックを入れ、WordTwit プラグインがインストールされている場合は、WPtouch ヘッダーのドロップダウンの中に、あなたのツイート一覧が表示されます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:74 -msgid "Enable gravatars in comments" -msgstr "コメント内で Gravatar を有効にする" +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:74 +msgid "Enable comments on posts" +msgstr "記事へのコメントを有効にする" + +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:77 +msgid "If unchecked, this will hide all commenting features on posts and blog listings." +msgstr "チェックを外すと、記事やブログ一覧でのコメント画面が表示されません。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:81 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:84 msgid "Enable comments on pages" msgstr "ページでのコメントを有効にする" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:84 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:87 msgid "This will add the comment form to all pages with 'Allow Comments' checked in your WordPress admin." msgstr "WordPress 管理者が「コメントを許可」しているすべてのページで、コメントが追加されます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:90 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:93 +msgid "Enable gravatars in comments" +msgstr "コメント内で Gravatar を有効にする" + +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:98 #, php-format msgid "1%sst%s visit mobile users will see desktop theme" msgstr "モバイルユーザが最初に (1%sst%s) 訪問したときデスクトップ版を表示する" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:93 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:101 msgid "When this option is checked, users will see your regular site theme first, and have the option in your footer to switch to the WPtouch mobile view." msgstr "このオプションをチェックすると、最初にこのサイトに訪問したユーザはデスクトップ版のサイトとして表示され、ページのフッタに表示されるスイッチで WPtouch モバイル表示に切り替えることができます。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:94 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:102 msgid "They'll be able to change back and forth either way. Make sure you have the wp_footer(); function call in your regular theme's footer.php file for the switch link to work properly." msgstr "訪問ユーザはその後どちらにも切り替えることができます。正しく動作させるには、使用しているテーマの footer.php ファイルで、wp_footer(); 関数が正しく呼ばれる必要があります。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:99 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:107 msgid "Enable WPtouch Restricted Mode" msgstr "WPtouch 制限モードを有効にする" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:102 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:110 msgid "Disallow other plugins from loading into scripts into WPtouch's header and footer." msgstr "WPtouch のヘッダやフッタで読み込まれる、他のスクリプトでの読み込みを禁止します。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:103 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:111 msgid "Sometimes fixes incompatibilities and speeds up WPtouch." msgstr "WPtouch との非互換を解消したり、スピードアップさせる場合があります。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:104 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:112 msgid "Some plugins load conflicting javascript, extra CSS style sheets, and other functional code into your theme to accomplish what they add to your site. As WPtouch works complete on its own without any other plugin installed, in some cases (where you have several plugins or find something doesn't work right with WPtouch) you may want to enable Restricted Mode to ensure that WPtouch works properly, and loads quickly for mobile users." msgstr "プラグインによっては、Javascript, CSS スタイルシートの拡張, サイトに機能追加するコードを読み込み、コンフリクトを起こします。WPtouch は他のプラグインが読み込まれていない状態では、単体で完全に動作しますが、ケースによっては(いくつかのプラグインや WPtouch と一緒には正常に動作しないものを入れている等)、WPtouch を正常動作させ、モバイルユーザ向けに読み込みを速くさせるため、「制限モード」を有効にしたいかもしれません。" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:109 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:117 msgid "Custom user-agents" msgstr "カスタム User-Agent" -#: C:\work\WPtouch\wptouch/html/advanced-area.php:111 +#: /Users/yamk/Work/wptouch/wptouch/html/advanced-area.php:119 msgid "After changing the user-agents, please visit the WP Super Cache admin page and update your rewrite rules." msgstr "User-Agent を変更した後は、WP Super Cache の管理者ページで、Rewrite Rule をアップデートしてください。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:5 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:5 msgid "General Settings" msgstr "一般設定" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:8 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:8 msgid "Regionalization Settings" msgstr "地域設定" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:9 -msgid "Select the language you would like WPtouch to appear in. Custom language .mo files should be placed in wp-content/wptouch/lang." -msgstr "WPtouch で使用したい言語を選択します。カスタム 言語.mo ファイルは wp-content/wptouch/lang に置く必要があります。" +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:9 +msgid "Select the language for WPtouch. Custom .mo files should be placed in wp-content/wptouch/lang." +msgstr "WPtouch の言語を選択します。カスタム .mo ファイルは wp-content/wptouch/lang に置いてください。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:11 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:12 msgid "Home Page Re-Direction" msgstr "ホームページリダイレクト" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:12 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:13 #, php-format -msgid "WPtouch by default follows your %sWordPress » Reading Options%s. You can also set a different one for WPtouch." -msgstr "WPtouch は、デフォルトでは %sWordPress » 表示設定%s に従います。WPtouch では別の設定にすることもできます。" +msgid "WPtouch by default follows your %sWordPress » Reading Options%s." +msgstr "WPtouch は、デフォルトでは %sWordPress » 表示設定%s に従います。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:14 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:15 msgid "Site Title" msgstr "サイトのタイトル" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:15 -msgid "You can shorten your site title here so it won't be truncated by WPtouch." -msgstr "サイトのタイトルを短くすることができます。WPtouch では短縮はしません。" +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:16 +msgid "You can change your site title (if needed) in WPtouch." +msgstr "WPtouch では(必要に応じて)サイトのタイトルを変更することができます。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:17 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:20 msgid "Excluded Categories" msgstr "除外するカテゴリー" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:18 -msgid "Choose categories you want excluded from the main post listings in WPtouch." -msgstr "WPtouch 記事一覧画面で表示する際の、除外するカテゴリーを選択します。" +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:21 +msgid "Categories by ID you want excluded everywhere in WPtouch." +msgstr "WPtouch で表示する際の、除外するカテゴリー ID を指定します。" + +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:23 +msgid "Excluded Tags" +msgstr "除外するタグ" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:20 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:24 +msgid "Tags by ID you want excluded everywhere in WPtouch." +msgstr "WPtouch の各画面で表示しないタグ ID を指定します。" + +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:28 msgid "Text Justification Options" msgstr "テキスト行末揃えオプション" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:21 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:29 msgid "Set the alignment for text." msgstr "テキストのアライメントを指定します。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:24 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:33 msgid "Post Listings Options" msgstr "記事一覧オプション" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:25 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:34 msgid "Choose between calendar Icons, post thumbnails (WP 2.9) or none for your post listings." msgstr "記事一覧画面に、カレンダーアイコン, 記事のサムネイル画像 (WP 2.9以上), または非表示を選択します。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:26 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:35 msgid "Select which meta items are shown below titles on main, search, & archives pages." msgstr "本文、検索、「アーカイブされたページ」の下に、「メタ」項目を表示するか選択します。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:27 -msgid "Also, choose if excerpts are shown/hidden (default is hidden)." -msgstr "抜粋を表示するかも選択してください。(デフォルトは非表示)" - -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:29 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:39 msgid "Footer Message" msgstr "フッターメッセージ" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:30 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:40 msgid "Customize the default footer message shown in WPtouch here." msgstr "WPtouch で表示されるデフォルトのフッターメッセージをここで変更します。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:34 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:44 msgid "WPtouch Language" msgstr "WPtouch の言語" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:38 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:48 msgid "Automatically detected" msgstr "自動選択" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:53 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:66 msgid "WPtouch Home Page" msgstr "WPtouch ホームページ" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:58 -#: C:\work\WPtouch\wptouch/html/page-area.php:63 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:71 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:63 msgid "You have no pages yet. Create some first!" msgstr "まだページが一つも作成されていません。先にページを新規作成してください。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:64 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:77 msgid "Site title text" msgstr "サイトのタイトルの文字列" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:70 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:83 msgid "Comma list of Category IDs, eg: 1,2,3" msgstr "カテゴリー ID をコンマで区切って列挙してください。 例: 1,2,3" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:78 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:84 +msgid "Comma list of Tag IDs, eg: 1,2,3" +msgstr "タグ ID をコンマで区切って列挙してください。 例: 1,2,3" + +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:85 +msgid "Minimum number of posts in tags/categories to be shown in drop-down menu" +msgstr "ドロップダウンメニュー内でタグ・カテゴリーごとに表示される記事の数" + +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:93 msgid "Left" msgstr "左寄せ" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:79 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:94 msgid "Full" msgstr "両端揃え" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:81 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:96 msgid "Font justification" msgstr "フォントジャスティフィケーション" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:89 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:104 msgid "Calendar Icons" msgstr "カレンダーアイコン" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:90 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:105 msgid "Post Thumbnails / Featured Images" msgstr "記事のサムネイルまたは指定画像を投稿" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:91 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:106 msgid "Post Thumbnails / Featured Images (Random)" msgstr "記事のサムネイルまたは指定画像(ランダム)を投稿" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:92 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:107 msgid "No Icon or Thumbnail" msgstr "アイコンまたはサムネイルは表示しない" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:94 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:109 msgid "Post Listings Display" msgstr "記事一覧表示" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:94 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:109 msgid "Thumbnails Requires WordPress 2.9+" msgstr "サムネイルは WordPress 2.9 以上が必要" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:97 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:112 msgid "This will change the display of blog and post listings between Calendar Icons view and Post Thumbnails view." msgstr "ブログ画面、または記事一覧画面で、カレンダーアイコンや記事のサムネイル表示を行うかを変更します。" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:98 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:113 msgid "The <em>Post Thumbnails w/ Random</em> option will fill missing post thumbnails with random abstract images. (WP 2.9+)" msgstr "<em>記事のサムネイル表示 (ランダム)</em> オプションは、記事のサムネイル画像がないときに、ランダムな概要イメージで補完します。 (WP 2.9以上)" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:105 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:120 msgid "Enable Truncated Titles" msgstr "タイトルの省略を有効にする" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:105 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:120 msgid "Will use ellipses when titles are too long instead of wrapping them" msgstr "タイトルが長い場合に、折りたたまず省略する" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:109 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:124 msgid "Show Author's Name" msgstr "投稿者名を表示" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:113 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:128 msgid "Show Categories" msgstr "カテゴリーを表示" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:117 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:132 msgid "Show Tags" msgstr "タグを表示" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:121 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:136 msgid "Hide Excerpts" msgstr "抜粋を表示" -#: C:\work\WPtouch\wptouch/html/general-settings-area.php:125 +#: /Users/yamk/Work/wptouch/wptouch/html/general-settings-area.php:141 msgid "Footer message" msgstr "フッターメッセージ" -#: C:\work\WPtouch\wptouch/html/head-area.php:13 +#: /Users/yamk/Work/wptouch/wptouch/html/head-area.php:13 #, php-format msgid "%sGet WPtouch Pro%s" msgstr "%sGet WPtouch Pro%s" -#: C:\work\WPtouch\wptouch/html/head-area.php:14 +#: /Users/yamk/Work/wptouch/wptouch/html/head-area.php:14 #, php-format -msgid "%sBNC on Twitter%s" -msgstr "%sBNC on Twitter%s" +msgid "%sJoin our FREE WPtouch Pro Affiliate Program%s" +msgstr "%sWPtouch Pro フリーアフィリエイトプログラムに参加%s" -#: C:\work\WPtouch\wptouch/html/head-area.php:15 +#: /Users/yamk/Work/wptouch/wptouch/html/head-area.php:15 #, php-format -msgid "%sBraveNewCode.com%s" -msgstr "%sBraveNewCode.com%s" +msgid "%sFollow Us on Twitter%s" +msgstr "%sTwiter でフォロー%s" -#: C:\work\WPtouch\wptouch/html/head-area.php:24 +#: /Users/yamk/Work/wptouch/wptouch/html/head-area.php:24 msgid "WPtouch Wire" msgstr "WPtouch Wire" -#: C:\work\WPtouch\wptouch/html/head-area.php:33 -msgid "Find Out More ›" -msgstr "もっと詳しく ›" +#: /Users/yamk/Work/wptouch/wptouch/html/head-area.php:33 +msgid "Find Out More ››" +msgstr "もっと詳しく ››" -#: C:\work\WPtouch\wptouch/html/icon-area.php:21 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:24 msgid "Default & Custom Icon Pool" msgstr "デフォルト & カスタムアイコンプール" -#: C:\work\WPtouch\wptouch/html/icon-area.php:24 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:27 msgid "Adding Icons" msgstr "アイコンの追加" -#: C:\work\WPtouch\wptouch/html/icon-area.php:25 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:28 msgid "To add icons to the pool, simply upload a .png, .jpeg or .gif image from your computer." msgstr "プールにアイコンを追加するには、.png, .jpeg, .gif 画像をコンピュータからアップロードするだけです。" -#: C:\work\WPtouch\wptouch/html/icon-area.php:27 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:30 #, php-format msgid "Default icons generously provided by %sMarcelo Marfil%s." msgstr "デフォルトのアイコンは、 %sMarcelo Marfil%s により寛大に提供されました。" -#: C:\work\WPtouch\wptouch/html/icon-area.php:29 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:32 msgid "Logo/Bookmark Icons" msgstr "ロゴ/ブックマークアイコン" -#: C:\work\WPtouch\wptouch/html/icon-area.php:30 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:33 msgid "If you're adding a logo icon, the best dimensions for it are 59x60px (png) when used as a bookmark icon." msgstr "ロゴのアイコンを追加する際、ブックマークアイコンとして使う場合は 59x60 ピクセル (PNG) が最適なサイズです。" -#: C:\work\WPtouch\wptouch/html/icon-area.php:31 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:34 #, php-format msgid "Need help? You can use %sthis easy online icon generator%s to make one." msgstr "お手伝いしましょうか? %sこの簡単オンラインアイコンジェネレータ%s で作ることもできます。" -#: C:\work\WPtouch\wptouch/html/icon-area.php:32 -#, php-format -msgid "These files will be stored in this folder we create: %s/uploads/wptouch/custom-icons" -msgstr "これらのファイルは、%s/uploads/wptouch/custom-icons フォルダに保存されます。" +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:35 +msgid "These files will be stored in this folder we create: .../wp-content/uploads/wptouch/custom-icons" +msgstr "これらのファイルは .../wp-content/uploads/wptouch/custom-icons フォルダに保存されます。" -#: C:\work\WPtouch\wptouch/html/icon-area.php:33 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:36 msgid "If an upload fails (usually it's a permission problem) check your wp-content path settings in WordPress' Miscellaneous Settings, or create the folder yourself using FTP and try again." msgstr "もしアップロードに失敗した場合 (大抵はパーミッションの問題です) 、WordPress のその他の設定で、wp-content path の設定を確認する、またはFTP等でフォルダを作成して再度試してください。" -#: C:\work\WPtouch\wptouch/html/icon-area.php:35 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:38 msgid "Upload Icon" -msgstr "アイコンのアップロード" +msgstr "アップロード" -#: C:\work\WPtouch\wptouch/html/icon-area.php:39 +#: /Users/yamk/Work/wptouch/wptouch/html/icon-area.php:42 msgid "Uploading..." msgstr "アップロード中..." -#: C:\work\WPtouch\wptouch/html/page-area.php:5 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:5 msgid "Logo Icon // Menu Items & Pages Icons" msgstr "ロゴアイコン // メニュー項目 & ページアイコン" -#: C:\work\WPtouch\wptouch/html/page-area.php:8 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:8 msgid "Logo / Home Screen Icon <br />& Default Menu Items" msgstr "ロゴ / ホーム画面アイコン <br />& デフォルトメニュー項目" -#: C:\work\WPtouch\wptouch/html/page-area.php:9 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:9 #, php-format msgid "If you do not want your logo to have the glossy effect added to it, make sure you select %sEnable Flat Bookmark Icon%s" msgstr "自分のロゴに光沢(glossy)効果をつけたくない場合は、%s平らなブックマークアイコンを有効%s を選択してください。" -#: C:\work\WPtouch\wptouch/html/page-area.php:10 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:10 msgid "Choose the logo displayed in the header (also your bookmark icon), and the pages you want included in the WPtouch drop-down menu." msgstr "ヘッダーで表示(自分のブックマークアイコン) および、WPtouch ドロップダウンメニューでページに含めたいロゴを選択します。" -#: C:\work\WPtouch\wptouch/html/page-area.php:11 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:11 msgid "Remember, only those checked will be shown." msgstr "チェックするだけで表示されることに注意してください。" -#: C:\work\WPtouch\wptouch/html/page-area.php:12 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:12 msgid "Enable/Disable default items in the WPtouch site menu." msgstr "WPtouch サイトメニューでのデフォルト項目を有効または無効にします。" -#: C:\work\WPtouch\wptouch/html/page-area.php:14 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:14 msgid "Pages + Icons" msgstr "ページ + アイコン" -#: C:\work\WPtouch\wptouch/html/page-area.php:15 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:15 msgid "Next, select the icons from the lists that you want to pair with each page menu item." msgstr "次に、各ページのメニュー項目ごとに、一覧からアイコンを割り当てます。" -#: C:\work\WPtouch\wptouch/html/page-area.php:16 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:16 msgid "You can also decide if pages are listed by the page order (ID) in WordPress, or by name (default)." msgstr "ページが一覧表示される際、WordPress のページ順(ID) か、ページの名前順 (デフォルト) かを選択できます。" -#: C:\work\WPtouch\wptouch/html/page-area.php:24 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:24 msgid "Logo & Home Screen Bookmark Icon" msgstr "ロゴ & ホームスクリーンブックマークアイコン" -#: C:\work\WPtouch\wptouch/html/page-area.php:29 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:29 msgid "Enable Flat Bookmark Icon" msgstr "平らなブックマークアイコンを有効" -#: C:\work\WPtouch\wptouch/html/page-area.php:32 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:32 msgid "The default applies for iPhone/iPod touch applies a glossy effect to the home-screen bookmark/logo icon you select." msgstr "iPhone/iPod touch では、ホームスクリーンへのブックマークロゴアイコンを、デフォルトで光沢(glossy) 効果をつけます。" -#: C:\work\WPtouch\wptouch/html/page-area.php:33 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:33 msgid "When checked your icon will not have the glossy effect automatically applied to it." msgstr "チェックすると、自分のアイコンに自動的に光沢効果をつけさせないようになります。" -#: C:\work\WPtouch\wptouch/html/page-area.php:36 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:36 msgid "Enable Home Menu Item" msgstr "ホームメニュー項目を有効にする" -#: C:\work\WPtouch\wptouch/html/page-area.php:37 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:37 msgid "Enable RSS Menu Item" msgstr "RSSメニュー項目を有効にする" -#: C:\work\WPtouch\wptouch/html/page-area.php:38 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:38 msgid "Enable Email Menu Item" msgstr "Email メニュー項目を有効にする" -#: C:\work\WPtouch\wptouch/html/page-area.php:38 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:38 msgid "Uses default WordPress admin e-mail" msgstr "デフォルトで WordPress の管理者 E-mail アドレスを使用" -#: C:\work\WPtouch\wptouch/html/page-area.php:43 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:43 msgid "By Name" msgstr "名前順" -#: C:\work\WPtouch\wptouch/html/page-area.php:44 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:44 msgid "By Page ID" msgstr "ページ ID 順" -#: C:\work\WPtouch\wptouch/html/page-area.php:46 +#: /Users/yamk/Work/wptouch/wptouch/html/page-area.php:46 msgid "Menu List Sort Order" msgstr "メニューリストのソート順" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:7 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:7 msgid "Plugin Support & Compatibility" msgstr "プラグインサポート & 互換性" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:13 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:13 msgid "WordPress version: " msgstr "WordPress version: " -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:16 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:16 #, php-format msgid "WPtouch %s support: " msgstr "WPtouch %s サポート: " -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:18 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:18 #, php-format msgid "%sUnverified%s" msgstr "%s未確認%s" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:20 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:20 #, php-format msgid "%sSupported%s" msgstr "%sサポート済%s" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:22 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:22 #, php-format msgid "%sUnsupported. Upgrade Required.%s" msgstr "%s未サポート, 要アップグレード%s" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:27 -msgid "Here you'll find information on additional WPtouch features and requirements, including those activated with companion plugins." -msgstr "ここでは、WPtouch の情報や追加機能、それらの必要要件を示しています。同時に使用するプラグインを有効にするための情報もあります。" +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:27 +msgid "Here you'll find information on plugin compatibility." +msgstr "各プラグインの互換性についての情報を確認してください。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:32 -msgid "WordPress Pages & Feature Support" -msgstr "WordPress ページ & 機能サポート" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:39 -msgid "All of your WP links will automatically show on your page called 'Links'." -msgstr "あなたの Wordpress のすべてのリンクは、「リンク」というページに表示されます。" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:41 -msgid "If you create a page called 'Links', all your WP links would display in <em>WPtouch</em> style." -msgstr "「Links」という名前のページを作ると、全ての WordPress リンクは <em>WPtouch</em> スタイルで表示されます。" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:47 -msgid "All your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> images will automatically show on your page called 'Photos'." -msgstr "<a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> の画像はすべて、「Photos」というページに自動的に表示されます。" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:49 -msgid "You have a page called 'Photos', but don't have <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> installed." -msgstr "「Photos」という名前のページはありますが、<a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> がインストールされていません。" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:51 -msgid "If you create a page called 'Photos', all your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> photos would display in <em>WPtouch</em> style." -msgstr "「Photos」という名前のページを作ると、 <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> の画像は <em>WPtouch</em> スタイルで表示されます。" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:54 -msgid "If you create a page called 'Photos', and install the <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> plugin, your photos would display in <em>WPtouch</em> style." -msgstr "「Photos」というページを作成し、 <a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> プラグインをインストールすると、あなたの写真は <em>WPtouch</em> スタイルで表示されます。" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:62 -msgid "Your tags and your monthly listings will automatically show on your page called 'Archives'." -msgstr "タグと月ごとの一覧を、自動的に「Archives」というページに表示します。" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:64 -msgid "If you had a page called 'Archives', your tags and monthly listings would display in <em>WPtouch</em> style." -msgstr "「Archives」という名前のページがある場合、タグと月ごとの一覧が、自動的に <em>WPtouch</em> スタイルで表示されます。" - -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:68 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:32 msgid "Known Plugin Support & Conflicts" msgstr "既知のプラグインのサポート & コンフリクト" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:72 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:36 #, php-format msgid "%sPeter's Custom Anti-Spam%s is fully supported." msgstr "%sPeter's Custom Anti-Spam%s はフルサポートしています。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:77 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:41 #, php-format msgid "%sWP Spam Free%s is fully supported." msgstr "%sWP Spam Free%s はフルサポートしています。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:82 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:46 #, php-format msgid "%sFlickrRSS%s: Your photos will automatically show on a page with the slug \"photos\" if you have it. Fully supported." msgstr "%sFlickrRSS%s: \"photos\" という名前のページがある場合、自動的に写真が表示されます。フルサポートしています。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:87 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:51 #, php-format msgid "WP Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." msgstr "WP Cache はサポートされていますが、設定が必要です。詳しい情報は %sこのビデオチュートリアルに従ってください%s 。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:92 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:56 #, php-format msgid "WP Super Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." msgstr "WP Super Cache はサポートされていますが、設定が必要です。詳しい情報は %sこのビデオチュートリアルに従ってください%s 。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:97 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:61 #, php-format msgid "W3 Total Cache is supported, but requires configuration. %sFollow this video tutorial%s for more information." msgstr "W3 Total Cache はサポートされていますが、設定が必要です。詳しい情報は %sこのビデオチュートリアルに従ってください%s 。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:102 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:66 #, php-format msgid "%sWP CSS%s is supported, but does\tnot compress WPtouch's CSS. WPtouch files are pre-optimized for mobile devices already." msgstr "%sWP CSS%s はサポートされていますが、\tWPtouch の CSS は圧縮しないでください。WPtouch ファイルはすでにモバイルデバイス用に最適化されています。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:107 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:71 #, php-format msgid "%sShare This%s is supported, but requires the WPtouch setting \"Enable Restrictive Mode\" turned on to work properly." msgstr "%sShare This%s はサポートされていますが、WPtouch の設定で \"制限モードを有効にする\" にチェックを入れないと、正しく動作しません。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:112 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:76 #, php-format msgid "WordPress Admin Bar requires additional configuration to work with WPtouch. %sFollow this comment%s on the developer's official site." msgstr "WordPress Admin Bar を WPtouch で動作させるには、追加の設定が必要です。開発者の正式サイトで %sこのコメントをフォロー%s してください。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:117 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:81 #, php-format msgid "%sWP Simple Captcha%s is not currently supported." msgstr "%sWP Simple Captcha%s は現在サポートされていません。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:122 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:86 #, php-format msgid "%sNextGEN Gallery%s is not currently supported." msgstr "%sNextGEN Gallery%s は現在サポートされていません。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:127 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:91 #, php-format msgid "%sYet another ajax paged comments%s (YAAPC) is not currently supported. WPtouch uses its own ajaxed comments. WPtouch Pro supports WP 2.7+ comments out-of-the-box." msgstr "%sYet another ajax paged comments%s (YAAPC) は現在サポートされていません。WPtouch は独自にコメントをAJAX化します。WPtouch Pro は WordPress 2.7以上でボックス外でのコメントをサポートします。" -#: C:\work\WPtouch\wptouch/html/plugin-compat-area.php:132 +#: /Users/yamk/Work/wptouch/wptouch/html/plugin-compat-area.php:96 #, php-format msgid "%sLightview Plus%s is not currently supported. Images may not open in a viewer or separate page." msgstr "%sLightview Plus%s は現在サポートされていません。画像は、ビューワおよび独立ページで開きません。" -#: C:\work\WPtouch\wptouch/html/push-area.php:4 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:4 msgid "Push Notification Options" msgstr "プッシュ通知オプション" -#: C:\work\WPtouch\wptouch/html/push-area.php:7 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:7 #, php-format msgid "Here you can configure WPtouch to push selected notifications through your %sProwl%s account to your iPhone, iPod touch and Growl-enabled Mac or PC." msgstr "ここで、あなたの iPhone, iPod touch、および Growl が有効になっている Mac または PC に %sProwl%s アカウントを使ってプッシュ通知を行うよう、WPtouch を設定できます。" -#: C:\work\WPtouch\wptouch/html/push-area.php:8 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:8 #, php-format msgid "%sMake sure you generate a Prowl API key to use here%s otherwise no notifications will be pushed to you." msgstr "%sここで使用するための Prowl API キーを正しく生成してください。%s さもなくば、あなたにプッシュ通知されることはありません。" -#: C:\work\WPtouch\wptouch/html/push-area.php:15 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:15 msgid "Prowl API Key" msgstr "Prowl API キー" -#: C:\work\WPtouch\wptouch/html/push-area.php:15 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:15 #, php-format msgid "%sCreate a key now%s" msgstr "%sキーを作成する%s" -#: C:\work\WPtouch\wptouch/html/push-area.php:18 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:18 msgid "In order to enable Prowl notifications, you must create a Prowl account, and download/configure the Prowl application for iPhone." msgstr "Prowl 通知を有効にするためには、まず Prowl アカウントを作成し, iPhone 向けには Prowl アプリをダウンロード設定する必要があります。" -#: C:\work\WPtouch\wptouch/html/push-area.php:19 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:19 msgid "Next, visit the Prowl website and generate your API key, which we use to connect securely and send your notifications." msgstr "次に、Prowl のウェブサイトで API キーを生成してください。あなたに通知を送る際に安全に接続するために使用します。" -#: C:\work\WPtouch\wptouch/html/push-area.php:21 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:21 #, php-format msgid "%sVisit the Prowl Website%s" msgstr "%sProwl ウェブサイトを開く%s" -#: C:\work\WPtouch\wptouch/html/push-area.php:21 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:21 #, php-format msgid "%sVisit iTunes to Download Prowl%s" msgstr "%siTunes で Prowl をダウンロード%s" -#: C:\work\WPtouch\wptouch/html/push-area.php:25 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:25 msgid "Your Prowl API key has been verified." msgstr "Prowl API キーを確認しました。" -#: C:\work\WPtouch\wptouch/html/push-area.php:28 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:28 msgid "Sorry, your Prowl API key is not verified." msgstr "申し訳ありませんが、Prowl API キーを確認できません。" -#: C:\work\WPtouch\wptouch/html/push-area.php:29 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:29 msgid "Please check your key and make sure there are no spaces or extra characters." msgstr "あなたのキー文字列をチェックし、スペースや余分な文字がないようにしてください。" -#: C:\work\WPtouch\wptouch/html/push-area.php:39 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:39 msgid "Notify me of new comments & pingbacks/tracksbacks" msgstr "新しいコメント・ピンバック・トラックバックがあったとき通知する" -#: C:\work\WPtouch\wptouch/html/push-area.php:43 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:43 msgid "Notify me of new account registrations" msgstr "新規アカウント登録があったとき通知する" -#: C:\work\WPtouch\wptouch/html/push-area.php:47 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:47 msgid "Allow users to send me direct messages" msgstr "利用者に自分へのダイレクトメッセージの送信を許可する" -#: C:\work\WPtouch\wptouch/html/push-area.php:50 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:50 msgid "This enables a new link to a drop-down in the submenu bar for WPtouch ('Message Me')." msgstr "WPtouch サブメニューバー内のドロップダウンメニューに、'Message Me' の新規リンクを表示する" -#: C:\work\WPtouch\wptouch/html/push-area.php:51 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:51 msgid "When opened, a form is shown for users to fill in. The name, e-mail address, and message area is shown. Thier IP will also be sent to you, in case you want to ban it in the WordPress admin." msgstr "開いたとき、ユーザに入力を促すフォームが表示されます。名前、メールアドレス、メッセージエリアが表示されます。WordPress 管理者によって ban(拒否) する場合の IP アドレスもあなたに送信されます。" -#: C:\work\WPtouch\wptouch/html/push-area.php:55 +#: /Users/yamk/Work/wptouch/wptouch/html/push-area.php:55 #, php-format msgid "%sCURL is required%s on your webserver to use Push capabilities in WPtouch." msgstr "WPtouch の Push 通知機能を Web サーバから使用するには %sCURL が必要です%s 。" -#: C:\work\WPtouch\wptouch/html/style-area.php:5 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:5 msgid "Style & Color Options" msgstr "スタイル & カラーオプション" -#: C:\work\WPtouch\wptouch/html/style-area.php:8 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:8 msgid "Here you can customize some of the more visible features of WPtouch." msgstr "ここで、WPtouch の表示関連の機能をカスタマイズできます。" -#: C:\work\WPtouch\wptouch/html/style-area.php:17 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:17 msgid "The default WPtouch theme emulates a native iPhone application." msgstr "デフォルトの WPtouch テーマは、ネイティブ iPhone アプリをエミュレートします。" -#: C:\work\WPtouch\wptouch/html/style-area.php:21 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:21 msgid "Classic" msgstr "クラシック" -#: C:\work\WPtouch\wptouch/html/style-area.php:24 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:24 msgid "Horizontal Grey" msgstr "ホリゾンタル グレー" -#: C:\work\WPtouch\wptouch/html/style-area.php:27 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:27 msgid "Diagonal Grey" msgstr "ダイアグナル グレー" -#: C:\work\WPtouch\wptouch/html/style-area.php:30 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:30 msgid "Skated Concrete" msgstr "スケーテッドコンクリート" -#: C:\work\WPtouch\wptouch/html/style-area.php:33 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:33 msgid "Argyle Tie" msgstr "ひし形格子" -#: C:\work\WPtouch\wptouch/html/style-area.php:36 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:36 msgid "Thatches" msgstr "わらぶき" -#: C:\work\WPtouch\wptouch/html/style-area.php:39 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:39 msgid "Background" msgstr "背景" -#: C:\work\WPtouch\wptouch/html/style-area.php:43 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:43 msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: C:\work\WPtouch\wptouch/html/style-area.php:46 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:46 msgid "Helvetica" msgstr "Helvetica" -#: C:\work\WPtouch\wptouch/html/style-area.php:49 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:49 msgid "Thonburi" msgstr "Thonburi" -#: C:\work\WPtouch\wptouch/html/style-area.php:52 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:52 msgid "Georgia" msgstr "Georgia" -#: C:\work\WPtouch\wptouch/html/style-area.php:55 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:55 msgid "Geeza Pro" msgstr "Geeza Pro" -#: C:\work\WPtouch\wptouch/html/style-area.php:58 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:58 msgid "Verdana" msgstr "Verdana" -#: C:\work\WPtouch\wptouch/html/style-area.php:61 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:61 msgid "Arial Rounded MT Bold" msgstr "Arial Rounded MT Bold" -#: C:\work\WPtouch\wptouch/html/style-area.php:64 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:64 msgid "Post Title H2 Font" msgstr "投稿タイトルのH2フォント" -#: C:\work\WPtouch\wptouch/html/style-area.php:66 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:66 msgid "Title text color" msgstr "タイトルテキストの色" -#: C:\work\WPtouch\wptouch/html/style-area.php:67 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:67 msgid "Header background color" msgstr "ヘッダーの背景色" -#: C:\work\WPtouch\wptouch/html/style-area.php:68 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:68 msgid "Sub-header background color" msgstr "サブヘッダーの背景色" -#: C:\work\WPtouch\wptouch/html/style-area.php:69 +#: /Users/yamk/Work/wptouch/wptouch/html/style-area.php:69 msgid "Site-wide links color" msgstr "サイト全体のリンクの色" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:22 +#: /Users/yamk/Work/wptouch/wptouch/include/submit.php:7 +msgid "Nonce Failure" +msgstr "一回だけの失敗" + +#: /Users/yamk/Work/wptouch/wptouch/include/submit.php:12 +msgid "Security failure. Please log in again." +msgstr "セキュリティ上の障害です。再度ログインしてください。" + +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:22 #, php-format msgid "%sHome%s" msgstr "%sホーム%s" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:41 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:41 #, php-format msgid "%sRSS Feed%s" msgstr "%sRSS フィード%s" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:47 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:47 #, php-format msgid "%sE-Mail%s" msgstr "%sE-Mail%s" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:54 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:54 #, php-format msgid "%sWarning%s" msgstr "%s警告%s" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:56 -msgid "Sorry, this theme is only meant for use with WordPress on certain smartphones." -msgstr "申し訳ありません、このテーマはWordPressと限られたスマートフォンのみの利用を想定しています。" +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:56 +msgid "Sorry, this theme is only meant for use on touch smartphones." +msgstr "申し訳ありません、このテーマはタッチ式スマートフォンで利用するためのものです。" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:85 -#: C:\work\WPtouch\wptouch/themes/default/index.php:130 -#: C:\work\WPtouch\wptouch/themes/default/single.php:38 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:89 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:130 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:38 msgid "Tags" msgstr "タグ" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:89 -#: C:\work\WPtouch\wptouch/themes/default/index.php:129 -#: C:\work\WPtouch\wptouch/themes/default/single.php:37 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:93 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:129 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:37 msgid "Categories" msgstr "カテゴリー" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:124 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:158 #, php-format msgid "Search results › %s" msgstr "検索結果 › %s" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:126 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:160 #, php-format msgid "Categories › %s" msgstr "カテゴリー › %s" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:128 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:162 #, php-format msgid "Tags › %s" msgstr "タグ › %s" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:130 -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:132 -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:134 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:164 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:166 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:168 #, php-format msgid "Archives › %s" msgstr "アーカイブ › %s" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:146 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:180 msgid "No more entries to display." msgstr "これ以上表示する項目がありません。" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:148 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:182 msgid "No more search results to display." msgstr "これ以上検索結果がありません。" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:150 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:184 msgid "No search results results found." msgstr "検索結果はありません。" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:150 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:184 msgid "Try another query." msgstr "他の問い合わせを試してください。" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:153 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:187 msgid "404 Not Found" msgstr "404 ページがありません" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:154 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:188 msgid "The page or post you were looking for is missing or has been removed." msgstr "お探しのページまたは投稿は、存在しないか削除されました。" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:209 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:241 msgid "edit" msgstr "編集" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:210 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:242 msgid "del" msgstr "削除" -#: C:\work\WPtouch\wptouch/themes/core/core-functions.php:211 +#: /Users/yamk/Work/wptouch/wptouch/themes/core/core-functions.php:243 msgid "spam" msgstr "spam" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:7 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:7 msgid "This post is password protected. Enter the password to view comments." msgstr "この投稿はパスワードで保護されています。コメントを見るにはパスワードを入力してください。" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:17 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:18 msgid "No Responses Yet" msgstr "レスポンスなし" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:18 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:19 msgid "1 Response" msgstr "1件のレスポンス" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:19 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:20 msgid "% Responses" msgstr "% 件のレスポンス" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:38 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:40 msgid "ago" msgstr "前" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:69 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:71 msgid "Comments are closed." msgstr "コメントはクローズされました。" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:79 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:81 #, php-format msgid "You must %slogin</a> or %sregister</a> to comment" msgstr "コメントを入れるには、%sログイン</a> または %sユーザ登録</a> する必要があります。" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:87 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:89 msgid "Success! Comment added." msgstr "成功です! コメントが追加されました。" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:88 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:90 msgid "Refresh the page to see your comment." msgstr "コメントを表示するには、このページを再読込してください。" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:89 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:91 msgid "(If your comment requires moderation it will be added soon.)" msgstr "(コメントに承認が必要な場合は、近いうちに追加されます。)" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:96 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:98 msgid "Logged in as" msgstr "ログイン: " -#: C:\work\WPtouch\wptouch/themes/default/comments.php:100 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:102 msgid "Leave A Comment" msgstr "コメントを入れる" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:103 -#: C:\work\WPtouch\wptouch/themes/default/header.php:153 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:105 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:153 msgid "Name" msgstr "名前" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:108 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:110 msgid "Mail (unpublished)" msgstr "メール(非表示)" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:113 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:115 msgid "Website" msgstr "Webサイト" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:117 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:119 msgid "There was an error posting your comment. Maybe it was too short?" msgstr "コメントを登録する際にエラーが発生しました。短すぎたりしませんか?" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:123 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:125 msgid "Publish" msgstr "登録" -#: C:\work\WPtouch\wptouch/themes/default/comments.php:126 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/comments.php:128 msgid "Publishing..." msgstr "登録中..." -#: C:\work\WPtouch\wptouch/themes/default/footer.php:10 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/footer.php:10 msgid "Powered by" msgstr "Powered by" -#: C:\work\WPtouch\wptouch/themes/default/footer.php:10 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/footer.php:10 msgid "WordPress" msgstr "WordPress" -#: C:\work\WPtouch\wptouch/themes/default/footer.php:10 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/footer.php:10 msgid "+" msgstr "+" -#: C:\work\WPtouch\wptouch/themes/default/functions.php:52 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/functions.php:75 msgid "mo" msgstr "月" -#: C:\work\WPtouch\wptouch/themes/default/functions.php:53 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/functions.php:76 msgid "wk" msgstr "週" -#: C:\work\WPtouch\wptouch/themes/default/functions.php:54 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/functions.php:77 msgid "day" msgstr "日" -#: C:\work\WPtouch\wptouch/themes/default/functions.php:55 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/functions.php:78 msgid "hr" msgstr "時" -#: C:\work\WPtouch\wptouch/themes/default/functions.php:56 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/functions.php:79 msgid "min" msgstr "分" -#: C:\work\WPtouch\wptouch/themes/default/header.php:10 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:10 msgid "Notice" msgstr "注意" -#: C:\work\WPtouch\wptouch/themes/default/header.php:11 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:11 msgid "JavaScript for Mobile Safari is currently turned off." msgstr "Mobile Safari の Javascript は現在オフになっています。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:12 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:12 msgid "Turn it on in " msgstr "オンに変更してください。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:12 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:12 msgid "Settings › Safari" msgstr "設定 %rsaquo; Safari" -#: C:\work\WPtouch\wptouch/themes/default/header.php:12 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:12 msgid " to view this website." msgstr "このWebサイトを見るために。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:18 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:18 msgid "Your Push Notification was sent." msgstr "Push 通知を送信しました。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:20 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:20 msgid "Your Push Notification cannot be delivered at this time." msgstr "Push 通知は現在送信できません。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:31 -#: C:\work\WPtouch\wptouch/themes/default/header.php:58 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:28 +msgid "Username" +msgstr "ユーザ名" + +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:29 +msgid "Password" +msgstr "パスワード" + +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:31 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:58 msgid "Login" msgstr "ログイン" -#: C:\work\WPtouch\wptouch/themes/default/header.php:42 -#: C:\work\WPtouch\wptouch/themes/default/header.php:43 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:42 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:43 msgid "Search..." msgstr "検索中..." -#: C:\work\WPtouch\wptouch/themes/default/header.php:42 -#: C:\work\WPtouch\wptouch/themes/default/header.php:128 -msgid "Search" -msgstr "検索" - -#: C:\work\WPtouch\wptouch/themes/default/header.php:53 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:53 msgid "Menu" msgstr "メニュー" -#: C:\work\WPtouch\wptouch/themes/default/header.php:60 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:60 msgid "My Account" msgstr "マイアカウント" -#: C:\work\WPtouch\wptouch/themes/default/header.php:88 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:88 msgid "Enter your username and password<br />in the boxes above." msgstr "上のボックスに<br />ユーザ名・パスワードを入れてください。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:91 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:91 msgid "Not registered yet?" msgstr "まだ未登録ですか?" -#: C:\work\WPtouch\wptouch/themes/default/header.php:93 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:93 #, php-format msgid "You can %ssign-up here%s." msgstr "%sここでサインアップ%s することができます。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:98 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:98 msgid "Admin" msgstr "管理" -#: C:\work\WPtouch\wptouch/themes/default/header.php:101 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:101 msgid "Register for this site" msgstr "このサイトに登録" -#: C:\work\WPtouch\wptouch/themes/default/header.php:104 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:104 msgid "Account Profile" msgstr "アカウントのプロファイル" -#: C:\work\WPtouch\wptouch/themes/default/header.php:105 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:105 msgid "Logout" msgstr "ログアウト" -#: C:\work\WPtouch\wptouch/themes/default/header.php:132 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:128 +msgid "Search" +msgstr "検索" + +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:132 msgid "Message" msgstr "メッセージ" -#: C:\work\WPtouch\wptouch/themes/default/header.php:136 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:136 msgid "Twitter" msgstr "Twitter" -#: C:\work\WPtouch\wptouch/themes/default/header.php:140 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:140 msgid "Tour Dates" msgstr "Tour Dates" -#: C:\work\WPtouch\wptouch/themes/default/header.php:147 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:147 msgid "Send a Message" msgstr "メッセージを送信" -#: C:\work\WPtouch\wptouch/themes/default/header.php:148 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:148 msgid "This message will be pushed to the admin's iPhone instantly." msgstr "このメッセージは、管理者のiPhoneへ直ちにプッシュされます。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:158 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:158 msgid "E-Mail" msgstr "E-Mail" -#: C:\work\WPtouch\wptouch/themes/default/header.php:164 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:164 msgid "Send Now" msgstr "送信" -#: C:\work\WPtouch\wptouch/themes/default/header.php:179 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:179 msgid "Follow me on Twitter" -msgstr "Twiter で私をフォローする" +msgstr "Twiter でフォローする" -#: C:\work\WPtouch\wptouch/themes/default/header.php:192 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:192 msgid "No recent Tweets." msgstr "最近のツイートはありません。" -#: C:\work\WPtouch\wptouch/themes/default/header.php:204 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/header.php:204 msgid "Upcoming Tour Dates" msgstr "最近の Tour Dates" -#: C:\work\WPtouch\wptouch/themes/default/index.php:127 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:127 msgid "Written on" msgstr "投稿: " -#: C:\work\WPtouch\wptouch/themes/default/index.php:128 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:127 +msgid "at" +msgstr "at" + +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:128 msgid "By" msgstr "By" -#: C:\work\WPtouch\wptouch/themes/default/index.php:135 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:135 msgid "Read This Post" msgstr "この投稿を読む" -#: C:\work\WPtouch\wptouch/themes/default/index.php:146 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:146 msgid "Load more entries..." msgstr "次のエントリを表示..." -#: C:\work\WPtouch\wptouch/themes/default/index.php:154 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:154 msgid "Newer Entries" msgstr "新しいエントリ" -#: C:\work\WPtouch\wptouch/themes/default/index.php:157 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/index.php:157 msgid "Older Entries" msgstr "以前のエントリ" -#: C:\work\WPtouch\wptouch/themes/default/page.php:38 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/page.php:38 msgid "Tag Cloud" msgstr "タグクラウド" -#: C:\work\WPtouch\wptouch/themes/default/page.php:45 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/page.php:45 msgid "Monthly Archives" msgstr "月次アーカイブ" -#: C:\work\WPtouch\wptouch/themes/default/page.php:76 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/page.php:76 msgid "Pages in this article: " msgstr "この記事内のページ:" -#: C:\work\WPtouch\wptouch/themes/default/single.php:7 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:7 msgid "Permanent Link to " msgstr "パーマネントリンク" -#: C:\work\WPtouch\wptouch/themes/default/single.php:13 -#: C:\work\WPtouch\wptouch/themes/default/single.php:15 -#: C:\work\WPtouch\wptouch/themes/default/single.php:19 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:13 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:15 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:19 msgid "Skip to comments" msgstr "コメントまでスキップ" -#: C:\work\WPtouch\wptouch/themes/default/single.php:17 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:17 msgid "Leave a comment" msgstr "コメントを入れる" -#: C:\work\WPtouch\wptouch/themes/default/single.php:36 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:36 msgid "Article Pages" msgstr "記事のページ" -#: C:\work\WPtouch\wptouch/themes/default/single.php:46 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:46 msgid "Check out this post:" msgstr "この投稿をチェックアウト:" -#: C:\work\WPtouch\wptouch/themes/default/single.php:46 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:46 msgid "Mail a link to this post?" msgstr "この投稿へのリンクをメールしますか?" -#: C:\work\WPtouch\wptouch/themes/default/single.php:58 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:59 msgid "Del.icio.us" msgstr "Del.icio.us" -#: C:\work\WPtouch\wptouch/themes/default/single.php:60 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:61 msgid "Digg" msgstr "Digg" -#: C:\work\WPtouch\wptouch/themes/default/single.php:61 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:62 msgid "Technorati" msgstr "Technorati" -#: C:\work\WPtouch\wptouch/themes/default/single.php:62 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:63 msgid "Magnolia" msgstr "Magnolia" -#: C:\work\WPtouch\wptouch/themes/default/single.php:63 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:64 msgid "Newsvine" msgstr "Newsvine" -#: C:\work\WPtouch\wptouch/themes/default/single.php:64 +#: /Users/yamk/Work/wptouch/wptouch/themes/default/single.php:65 msgid "Reddit" msgstr "Reddit" +#: /Users/yamk/Work/wptouch/wptouch-1.9.22/html/general-settings-area.php:9 +msgid "Select the language you would like WPtouch to appear in. Custom language .mo files should be placed in wp-content/wptouch/lang." +msgstr "WPtouch で使用したい言語を選択します。カスタム 言語.mo ファイルは wp-content/wptouch/lang に置く必要があります。" + +#: /Users/yamk/Work/wptouch/wptouch-1.9.22/html/general-settings-area.php:12 +#, php-format +msgid "WPtouch by default follows your %sWordPress » Reading Options%s. You can also set a different one for WPtouch." +msgstr "WPtouch は、デフォルトでは %sWordPress » 表示設定%s に従います。WPtouch では別の設定にすることもできます。" + +#: /Users/yamk/Work/wptouch/wptouch-1.9.22/html/general-settings-area.php:15 +msgid "You can shorten your site title here so it won't be truncated by WPtouch." +msgstr "サイトのタイトルを短くすることができます。WPtouch では短縮はしません。" + +#: /Users/yamk/Work/wptouch/wptouch-1.9.22/html/general-settings-area.php:18 +msgid "Choose categories you want excluded from the main post listings in WPtouch." +msgstr "WPtouch 記事一覧画面で表示する際の、除外するカテゴリーを選択します。" + +#: /Users/yamk/Work/wptouch/wptouch-1.9.22/html/general-settings-area.php:27 +msgid "Also, choose if excerpts are shown/hidden (default is hidden)." +msgstr "抜粋を表示するかも選択してください。(デフォルトは非表示)" + +#: /Users/yamk/Work/wptouch/wptouch-1.9.22/html/head-area.php:14 +#, php-format +msgid "%sFREE Affiliate Program%s" +msgstr "%sフリーアフィリエイトプログラム%s" + +#: /Users/yamk/Work/wptouch/wptouch-1.9.22/html/head-area.php:33 +msgid "Find Out More ›" +msgstr "もっと詳しく ›" + +#~ msgid "%sBNC on Twitter%s" +#~ msgstr "%sBNC on Twitter%s" + +#~ msgid "%sBraveNewCode.com%s" +#~ msgstr "%sBraveNewCode.com%s" + +#~ msgid "" +#~ "Here you'll find information on additional WPtouch features and " +#~ "requirements, including those activated with companion plugins." +#~ msgstr "" +#~ "ここでは、WPtouch の情報や追加機能、それらの必要要件を示しています。同時に" +#~ "使用するプラグインを有効にするための情報もあります。" + +#~ msgid "WordPress Pages & Feature Support" +#~ msgstr "WordPress ページ & 機能サポート" + +#~ msgid "" +#~ "All of your WP links will automatically show on your page called 'Links'." +#~ msgstr "" +#~ "あなたの Wordpress のすべてのリンクは、「リンク」というページに表示されま" +#~ "す。" + +#~ msgid "" +#~ "If you create a page called 'Links', all your WP links would display in " +#~ "<em>WPtouch</em> style." +#~ msgstr "" +#~ "「Links」という名前のページを作ると、全ての WordPress リンクは " +#~ "<em>WPtouch</em> スタイルで表示されます。" + +#~ msgid "" +#~ "All your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=" +#~ "\"_blank\">FlickrRSS</a> images will automatically show on your page " +#~ "called 'Photos'." +#~ msgstr "" +#~ "<a href=\"http://eightface.com/wordpress/flickrrss/\" target=\"_blank" +#~ "\">FlickrRSS</a> の画像はすべて、「Photos」というページに自動的に表示され" +#~ "ます。" + +#~ msgid "" +#~ "You have a page called 'Photos', but don't have <a href=\"http://" +#~ "eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> " +#~ "installed." +#~ msgstr "" +#~ "「Photos」という名前のページはありますが、<a href=\"http://eightface.com/" +#~ "wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> がインストールされ" +#~ "ていません。" + +#~ msgid "" +#~ "If you create a page called 'Photos', all your <a href=\"http://eightface." +#~ "com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> photos would " +#~ "display in <em>WPtouch</em> style." +#~ msgstr "" +#~ "「Photos」という名前のページを作ると、 <a href=\"http://eightface.com/" +#~ "wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> の画像は " +#~ "<em>WPtouch</em> スタイルで表示されます。" + +#~ msgid "" +#~ "If you create a page called 'Photos', and install the <a href=\"http://" +#~ "eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> " +#~ "plugin, your photos would display in <em>WPtouch</em> style." +#~ msgstr "" +#~ "「Photos」というページを作成し、 <a href=\"http://eightface.com/wordpress/" +#~ "flickrrss/\" target=\"_blank\">FlickrRSS</a> プラグインをインストールする" +#~ "と、あなたの写真は <em>WPtouch</em> スタイルで表示されます。" + +#~ msgid "" +#~ "Your tags and your monthly listings will automatically show on your page " +#~ "called 'Archives'." +#~ msgstr "" +#~ "タグと月ごとの一覧を、自動的に「Archives」というページに表示します。" + +#~ msgid "" +#~ "If you had a page called 'Archives', your tags and monthly listings would " +#~ "display in <em>WPtouch</em> style." +#~ msgstr "" +#~ "「Archives」という名前のページがある場合、タグと月ごとの一覧が、自動的に " +#~ "<em>WPtouch</em> スタイルで表示されます。" + #~ msgid "post_title" #~ msgstr "post_title" diff --git a/wp-content/plugins/wptouch/lang/src/wptouch.pot b/wp-content/plugins/wptouch/lang/src/wptouch.pot index 9ecc88a771ffd0ff5a3d4681df2897eefd845fd5..d9436e0d2864714fa8a16bbfa343287fafa91122 100644 --- a/wp-content/plugins/wptouch/lang/src/wptouch.pot +++ b/wp-content/plugins/wptouch/lang/src/wptouch.pot @@ -1,46 +1,46 @@ -# Translation of the WordPress plugin WPtouch 1.9.19 by Dale Mugford & Duane Storey (BraveNewCode Inc.). -# Copyright (C) 2010 Dale Mugford & Duane Storey (BraveNewCode Inc.) +# Translation of the WordPress plugin WPtouch 1.9.23.1 by Dale Mugford & Duane Storey (BraveNewCode Inc.). +# Copyright (C) 2011 Dale Mugford & Duane Storey (BraveNewCode Inc.) # This file is distributed under the same license as the WPtouch package. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2010. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2011. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: WPtouch 1.9.19\n" +"Project-Id-Version: WPtouch 1.9.23.1\n" "Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n" -"POT-Creation-Date: 2010-09-09 09:31-0700\n" -"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2011-03-10 17:51-0500\n" +"PO-Revision-Date: 2011-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/file_upload.php:23 +#: ajax/file_upload.php:24 msgid "" "<p style=\"color:red; padding-top:10px\">There seems to have been an error." "<p>Please try your upload again.</p>" msgstr "" -#: ajax/file_upload.php:25 +#: ajax/file_upload.php:26 msgid "" "<p style=\"color:green; padding-top:10px\">File has been saved and added to " "the pool.</p>" msgstr "" -#: ajax/file_upload.php:28 +#: ajax/file_upload.php:29 msgid "" "<p style=\"color:orange; padding-top:10px\">Sorry, only PNG, GIF and JPG " "images are supported.</p>" msgstr "" -#: ajax/file_upload.php:30 +#: ajax/file_upload.php:31 msgid "" "<p style=\"color:orange; padding-top:10px\">Image too large. try something " "like 59x60.</p>" msgstr "" -#: ajax/file_upload.php:32 +#: ajax/file_upload.php:33 msgid "" "<p style=\"color:orange; padding-top:10px\">Insufficient privileges.</" "p><p>You need to either be an admin or have more control over your server.</" @@ -96,10 +96,10 @@ msgstr "" #: html/ads-stats-area.php:16 html/advanced-area.php:22 #: html/advanced-area.php:31 html/advanced-area.php:40 #: html/advanced-area.php:49 html/advanced-area.php:60 -#: html/advanced-area.php:68 html/advanced-area.php:83 -#: html/advanced-area.php:92 html/advanced-area.php:101 -#: html/general-settings-area.php:75 html/page-area.php:31 -#: html/push-area.php:17 html/push-area.php:49 +#: html/advanced-area.php:68 html/advanced-area.php:76 +#: html/advanced-area.php:86 html/advanced-area.php:100 +#: html/advanced-area.php:109 html/general-settings-area.php:100 +#: html/page-area.php:31 html/push-area.php:17 html/push-area.php:49 msgid "More Info" msgstr "" @@ -247,52 +247,62 @@ msgid "" msgstr "" #: html/advanced-area.php:74 -msgid "Enable gravatars in comments" +msgid "Enable comments on posts" msgstr "" -#: html/advanced-area.php:81 -msgid "Enable comments on pages" +#: html/advanced-area.php:77 +msgid "" +"If unchecked, this will hide all commenting features on posts and blog " +"listings." msgstr "" #: html/advanced-area.php:84 +msgid "Enable comments on pages" +msgstr "" + +#: html/advanced-area.php:87 msgid "" "This will add the comment form to all pages with 'Allow Comments' checked in " "your WordPress admin." msgstr "" -#: html/advanced-area.php:90 +#: html/advanced-area.php:93 +msgid "Enable gravatars in comments" +msgstr "" + +#: html/advanced-area.php:98 #, php-format msgid "1%sst%s visit mobile users will see desktop theme" msgstr "" -#: html/advanced-area.php:93 +#: html/advanced-area.php:101 msgid "" "When this option is checked, users will see your regular site theme first, " "and have the option in your footer to switch to the WPtouch mobile view." msgstr "" -#: html/advanced-area.php:94 +#: html/advanced-area.php:102 msgid "" "They'll be able to change back and forth either way. Make sure you have the " "wp_footer(); function call in your regular theme's footer.php file for the " "switch link to work properly." msgstr "" -#: html/advanced-area.php:99 +#: html/advanced-area.php:107 msgid "Enable WPtouch Restricted Mode" msgstr "" -#: html/advanced-area.php:102 +#: html/advanced-area.php:110 msgid "" "Disallow other plugins from loading into scripts into WPtouch's header and " "footer." msgstr "" -#: html/advanced-area.php:103 +#: html/advanced-area.php:111 msgid "Sometimes fixes incompatibilities and speeds up WPtouch." msgstr "" -#: html/advanced-area.php:104 +#: html/advanced-area.php:112 msgid "" "Some plugins load conflicting javascript, extra CSS style sheets, and other " "functional code into your theme to accomplish what they add to your site. As " @@ -302,11 +312,11 @@ msgid "" "WPtouch works properly, and loads quickly for mobile users." msgstr "" -#: html/advanced-area.php:109 +#: html/advanced-area.php:117 msgid "Custom user-agents" msgstr "" -#: html/advanced-area.php:111 +#: html/advanced-area.php:119 msgid "" "After changing the user-agents, please visit the WP Super Cache admin page " "and update your rewrite rules." @@ -317,159 +327,181 @@ msgid "General Settings" msgstr "" #: html/general-settings-area.php:8 -msgid "Home Page Re-Direction" +msgid "Regionalization Settings" msgstr "" #: html/general-settings-area.php:9 +msgid "" +"Select the language you would like WPtouch to appear in. Custom language ." +"mo files should be placed in wp-content/wptouch/lang." +msgstr "" + +#: html/general-settings-area.php:11 +msgid "Home Page Re-Direction" +msgstr "" + +#: html/general-settings-area.php:12 #, php-format msgid "" "WPtouch by default follows your %sWordPress » Reading Options%s. You " "can also set a different one for WPtouch." msgstr "" -#: html/general-settings-area.php:11 +#: html/general-settings-area.php:14 msgid "Site Title" msgstr "" -#: html/general-settings-area.php:12 +#: html/general-settings-area.php:15 msgid "" "You can shorten your site title here so it won't be truncated by WPtouch." msgstr "" -#: html/general-settings-area.php:15 +#: html/general-settings-area.php:17 msgid "Excluded Categories" msgstr "" -#: html/general-settings-area.php:16 +#: html/general-settings-area.php:18 msgid "" "Choose categories you want excluded from the main post listings in WPtouch." msgstr "" -#: html/general-settings-area.php:18 +#: html/general-settings-area.php:20 msgid "Text Justification Options" msgstr "" -#: html/general-settings-area.php:19 +#: html/general-settings-area.php:21 msgid "Set the alignment for text." msgstr "" -#: html/general-settings-area.php:22 +#: html/general-settings-area.php:24 msgid "Post Listings Options" msgstr "" -#: html/general-settings-area.php:23 +#: html/general-settings-area.php:25 msgid "" "Choose between calendar Icons, post thumbnails (WP 2.9) or none for your " "post listings." msgstr "" -#: html/general-settings-area.php:24 +#: html/general-settings-area.php:26 msgid "" "Select which meta items are shown below titles on main, search, & " "archives pages." msgstr "" -#: html/general-settings-area.php:25 +#: html/general-settings-area.php:27 msgid "Also, choose if excerpts are shown/hidden (default is hidden)." msgstr "" -#: html/general-settings-area.php:27 +#: html/general-settings-area.php:29 msgid "Footer Message" msgstr "" -#: html/general-settings-area.php:28 +#: html/general-settings-area.php:30 msgid "Customize the default footer message shown in WPtouch here." msgstr "" -#: html/general-settings-area.php:32 +#: html/general-settings-area.php:34 +msgid "WPtouch Language" +msgstr "" + +#: html/general-settings-area.php:38 +msgid "Automatically detected" +msgstr "" + +#: html/general-settings-area.php:56 msgid "WPtouch Home Page" msgstr "" -#: html/general-settings-area.php:37 html/page-area.php:63 +#: html/general-settings-area.php:61 html/page-area.php:63 msgid "You have no pages yet. Create some first!" msgstr "" -#: html/general-settings-area.php:43 +#: html/general-settings-area.php:67 msgid "Site title text" msgstr "" -#: html/general-settings-area.php:49 +#: html/general-settings-area.php:73 msgid "Comma list of Category IDs, eg: 1,2,3" msgstr "" -#: html/general-settings-area.php:57 +#: html/general-settings-area.php:74 +msgid "Comma list of Tag IDs, eg: 1,2,3" +msgstr "" + +#: html/general-settings-area.php:82 msgid "Left" msgstr "" -#: html/general-settings-area.php:58 +#: html/general-settings-area.php:83 msgid "Full" msgstr "" -#: html/general-settings-area.php:60 +#: html/general-settings-area.php:85 msgid "Font justification" msgstr "" -#: html/general-settings-area.php:68 +#: html/general-settings-area.php:93 msgid "Calendar Icons" msgstr "" -#: html/general-settings-area.php:69 +#: html/general-settings-area.php:94 msgid "Post Thumbnails / Featured Images" msgstr "" -#: html/general-settings-area.php:70 +#: html/general-settings-area.php:95 msgid "Post Thumbnails / Featured Images (Random)" msgstr "" -#: html/general-settings-area.php:71 +#: html/general-settings-area.php:96 msgid "No Icon or Thumbnail" msgstr "" -#: html/general-settings-area.php:73 +#: html/general-settings-area.php:98 msgid "Post Listings Display" msgstr "" -#: html/general-settings-area.php:73 +#: html/general-settings-area.php:98 msgid "Thumbnails Requires WordPress 2.9+" msgstr "" -#: html/general-settings-area.php:76 +#: html/general-settings-area.php:101 msgid "" "This will change the display of blog and post listings between Calendar " "Icons view and Post Thumbnails view." msgstr "" -#: html/general-settings-area.php:77 +#: html/general-settings-area.php:102 msgid "" "The <em>Post Thumbnails w/ Random</em> option will fill missing post " "thumbnails with random abstract images. (WP 2.9+)" msgstr "" -#: html/general-settings-area.php:84 +#: html/general-settings-area.php:109 msgid "Enable Truncated Titles" msgstr "" -#: html/general-settings-area.php:84 +#: html/general-settings-area.php:109 msgid "Will use ellipses when titles are too long instead of wrapping them" msgstr "" -#: html/general-settings-area.php:88 +#: html/general-settings-area.php:113 msgid "Show Author's Name" msgstr "" -#: html/general-settings-area.php:92 +#: html/general-settings-area.php:117 msgid "Show Categories" msgstr "" -#: html/general-settings-area.php:96 +#: html/general-settings-area.php:121 msgid "Show Tags" msgstr "" -#: html/general-settings-area.php:100 +#: html/general-settings-area.php:125 msgid "Hide Excerpts" msgstr "" -#: html/general-settings-area.php:104 +#: html/general-settings-area.php:129 msgid "Footer message" msgstr "" @@ -480,12 +512,12 @@ msgstr "" #: html/head-area.php:14 #, php-format -msgid "%sBNC on Twitter%s" +msgid "%sJoin our FREE WPtouch Pro Affiliate Program%s" msgstr "" #: html/head-area.php:15 #, php-format -msgid "%sBraveNewCode.com%s" +msgid "%sFollow Us on Twitter%s" msgstr "" #: html/head-area.php:24 @@ -493,62 +525,61 @@ msgid "WPtouch Wire" msgstr "" #: html/head-area.php:33 -msgid "Find Out More ›" +msgid "Find Out More ››" msgstr "" -#: html/icon-area.php:21 +#: html/icon-area.php:24 msgid "Default & Custom Icon Pool" msgstr "" -#: html/icon-area.php:24 +#: html/icon-area.php:27 msgid "Adding Icons" msgstr "" -#: html/icon-area.php:25 +#: html/icon-area.php:28 msgid "" "To add icons to the pool, simply upload a .png, .jpeg or .gif image from " "your computer." msgstr "" -#: html/icon-area.php:27 +#: html/icon-area.php:30 #, php-format msgid "Default icons generously provided by %sMarcelo Marfil%s." msgstr "" -#: html/icon-area.php:29 +#: html/icon-area.php:32 msgid "Logo/Bookmark Icons" msgstr "" -#: html/icon-area.php:30 +#: html/icon-area.php:33 msgid "" "If you're adding a logo icon, the best dimensions for it are 59x60px (png) " "when used as a bookmark icon." msgstr "" -#: html/icon-area.php:31 +#: html/icon-area.php:34 #, php-format msgid "Need help? You can use %sthis easy online icon generator%s to make one." msgstr "" -#: html/icon-area.php:32 -#, php-format +#: html/icon-area.php:35 msgid "" -"These files will be stored in this folder we create: %s/uploads/wptouch/" -"custom-icons" +"These files will be stored in this folder we create: .../wp-content/uploads/" +"wptouch/custom-icons" msgstr "" -#: html/icon-area.php:33 +#: html/icon-area.php:36 msgid "" "If an upload fails (usually it's a permission problem) check your wp-content " "path settings in WordPress' Miscellaneous Settings, or create the folder " "yourself using FTP and try again." msgstr "" -#: html/icon-area.php:35 +#: html/icon-area.php:38 msgid "Upload Icon" msgstr "" -#: html/icon-area.php:39 +#: html/icon-area.php:42 msgid "Uploading..." msgstr "" @@ -674,67 +705,95 @@ msgid "%sUnsupported. Upgrade Required.%s" msgstr "" #: html/plugin-compat-area.php:27 -msgid "" -"Here you'll find information on additional WPtouch features and their " -"requirements, including those activated with companion plugins." +msgid "Here you'll find information on plugin compatibility." msgstr "" #: html/plugin-compat-area.php:32 -msgid "WordPress Pages & Feature Support" +msgid "Known Plugin Support & Conflicts" msgstr "" -#: html/plugin-compat-area.php:39 -msgid "" -"All of your WP links will automatically show on your page called 'Links'." +#: html/plugin-compat-area.php:36 +#, php-format +msgid "%sPeter's Custom Anti-Spam%s is fully supported." msgstr "" #: html/plugin-compat-area.php:41 +#, php-format +msgid "%sWP Spam Free%s is fully supported." +msgstr "" + +#: html/plugin-compat-area.php:46 +#, php-format msgid "" -"If you create a page called 'Links', all your WP links would display in " -"<em>WPtouch</em> style." +"%sFlickrRSS%s: Your photos will automatically show on a page with the slug " +"\"photos\" if you have it. Fully supported." msgstr "" -#: html/plugin-compat-area.php:47 +#: html/plugin-compat-area.php:51 +#, php-format msgid "" -"All your <a href=\"http://eightface.com/wordpress/flickrrss/\" target=" -"\"_blank\">FlickrRSS</a> images will automatically show on your page called " -"'Photos'." +"WP Cache is supported, but requires configuration. %sFollow this video " +"tutorial%s for more information." msgstr "" -#: html/plugin-compat-area.php:49 +#: html/plugin-compat-area.php:56 +#, php-format msgid "" -"You have a page called 'Photos', but don't have <a href=\"http://eightface." -"com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> installed." +"WP Super Cache is supported, but requires configuration. %sFollow this video " +"tutorial%s for more information." msgstr "" -#: html/plugin-compat-area.php:51 +#: html/plugin-compat-area.php:61 +#, php-format msgid "" -"If you create a page called 'Photos', all your <a href=\"http://eightface." -"com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> photos would " -"display in <em>WPtouch</em> style." +"W3 Total Cache is supported, but requires configuration. %sFollow this video " +"tutorial%s for more information." msgstr "" -#: html/plugin-compat-area.php:54 +#: html/plugin-compat-area.php:66 +#, php-format msgid "" -"If you create a page called 'Photos', and install the <a href=\"http://" -"eightface.com/wordpress/flickrrss/\" target=\"_blank\">FlickrRSS</a> plugin, " -"your photos would display in <em>WPtouch</em> style." +"%sWP CSS%s is supported, but does\tnot compress WPtouch's CSS. WPtouch files " +"are pre-optimized for mobile devices already." msgstr "" -#: html/plugin-compat-area.php:62 +#: html/plugin-compat-area.php:71 +#, php-format msgid "" -"Your tags and your monthly listings will automatically show on your page " -"called 'Archives'." +"%sShare This%s is supported, but requires the WPtouch setting \"Enable " +"Restrictive Mode\" turned on to work properly." msgstr "" -#: html/plugin-compat-area.php:64 +#: html/plugin-compat-area.php:76 +#, php-format msgid "" -"If you had a page called 'Archives', your tags and monthly listings would " -"display in <em>WPtouch</em> style." +"WordPress Admin Bar requires additional configuration to work with WPtouch. %" +"sFollow this comment%s on the developer's official site." msgstr "" -#: html/plugin-compat-area.php:68 -msgid "Known Plugin Support & Conflicts" +#: html/plugin-compat-area.php:81 +#, php-format +msgid "%sWP Simple Captcha%s is not currently supported." +msgstr "" + +#: html/plugin-compat-area.php:86 +#, php-format +msgid "%sNextGEN Gallery%s is not currently supported." +msgstr "" + +#: html/plugin-compat-area.php:91 +#, php-format +msgid "" +"%sYet another ajax paged comments%s (YAAPC) is not currently supported. " +"WPtouch uses its own ajaxed comments. WPtouch Pro supports WP 2.7+ comments " +"out-of-the-box." +msgstr "" + +#: html/plugin-compat-area.php:96 +#, php-format +msgid "" +"%sLightview Plus%s is not currently supported. Images may not open in a " +"viewer or separate page." msgstr "" #: html/push-area.php:4 @@ -918,6 +977,14 @@ msgstr "" msgid "Site-wide links color" msgstr "" +#: include/submit.php:7 +msgid "Nonce Failure" +msgstr "" + +#: include/submit.php:12 +msgid "Security failure. Please log in again." +msgstr "" + #: themes/core/core-functions.php:22 #, php-format msgid "%sHome%s" @@ -943,79 +1010,77 @@ msgid "%sWarning%s" msgstr "" #: themes/core/core-functions.php:56 -msgid "" -"Sorry, this theme is only meant for use with WordPress on certain " -"smartphones." +msgid "Sorry, this theme is only meant for use on touch smartphones." msgstr "" -#: themes/core/core-functions.php:85 themes/default/index.php:130 +#: themes/core/core-functions.php:89 themes/default/index.php:130 #: themes/default/single.php:38 msgid "Tags" msgstr "" -#: themes/core/core-functions.php:89 themes/default/index.php:129 +#: themes/core/core-functions.php:93 themes/default/index.php:129 #: themes/default/single.php:37 msgid "Categories" msgstr "" -#: themes/core/core-functions.php:124 +#: themes/core/core-functions.php:132 #, php-format msgid "Search results › %s" msgstr "" -#: themes/core/core-functions.php:126 +#: themes/core/core-functions.php:134 #, php-format msgid "Categories › %s" msgstr "" -#: themes/core/core-functions.php:128 +#: themes/core/core-functions.php:136 #, php-format msgid "Tags › %s" msgstr "" -#: themes/core/core-functions.php:130 themes/core/core-functions.php:132 -#: themes/core/core-functions.php:134 +#: themes/core/core-functions.php:138 themes/core/core-functions.php:140 +#: themes/core/core-functions.php:142 #, php-format msgid "Archives › %s" msgstr "" -#: themes/core/core-functions.php:146 +#: themes/core/core-functions.php:154 msgid "No more entries to display." msgstr "" -#: themes/core/core-functions.php:148 +#: themes/core/core-functions.php:156 msgid "No more search results to display." msgstr "" -#: themes/core/core-functions.php:150 +#: themes/core/core-functions.php:158 msgid "No search results results found." msgstr "" -#: themes/core/core-functions.php:150 +#: themes/core/core-functions.php:158 msgid "Try another query." msgstr "" -#: themes/core/core-functions.php:153 +#: themes/core/core-functions.php:161 msgid "404 Not Found" msgstr "" -#: themes/core/core-functions.php:154 +#: themes/core/core-functions.php:162 msgid "The page or post you were looking for is missing or has been removed." msgstr "" -#: themes/core/core-functions.php:163 wptouch.php:589 +#: themes/core/core-functions.php:169 wptouch.php:605 msgid "Mobile Theme" msgstr "" -#: themes/core/core-functions.php:209 +#: themes/core/core-functions.php:215 msgid "edit" msgstr "" -#: themes/core/core-functions.php:210 +#: themes/core/core-functions.php:216 msgid "del" msgstr "" -#: themes/core/core-functions.php:211 +#: themes/core/core-functions.php:217 msgid "spam" msgstr "" @@ -1023,67 +1088,72 @@ msgstr "" msgid "This post is password protected. Enter the password to view comments." msgstr "" -#: themes/default/comments.php:16 -msgid "" -"<h3 onclick=\"bnc_showhide_coms_toggle();\" id=\"com-head\"><img id=\"com-" -"arrow\" src=\"" +#: themes/default/comments.php:18 +msgid "No Responses Yet" msgstr "" -#: themes/default/comments.php:16 -msgid "/themes/core/core-images/com_arrow.png\" alt=\"arrow\" />1 Comment</h3>" +#: themes/default/comments.php:19 +msgid "1 Response" msgstr "" -#: themes/default/comments.php:16 -msgid "" -"/themes/core/core-images/com_arrow.png\" alt=\"arrow\" />% Comments</h3>" +#: themes/default/comments.php:20 +msgid "% Responses" +msgstr "" + +#: themes/default/comments.php:40 +msgid "ago" msgstr "" -#: themes/default/comments.php:63 +#: themes/default/comments.php:71 msgid "Comments are closed." msgstr "" -#: themes/default/comments.php:73 +#: themes/default/comments.php:81 #, php-format msgid "You must %slogin</a> or %sregister</a> to comment" msgstr "" -#: themes/default/comments.php:81 +#: themes/default/comments.php:89 msgid "Success! Comment added." msgstr "" -#: themes/default/comments.php:82 +#: themes/default/comments.php:90 msgid "Refresh the page to see your comment." msgstr "" -#: themes/default/comments.php:83 +#: themes/default/comments.php:91 msgid "(If your comment requires moderation it will be added soon.)" msgstr "" -#: themes/default/comments.php:90 +#: themes/default/comments.php:98 msgid "Logged in as" msgstr "" -#: themes/default/comments.php:94 +#: themes/default/comments.php:102 msgid "Leave A Comment" msgstr "" -#: themes/default/comments.php:97 themes/default/header.php:153 +#: themes/default/comments.php:105 themes/default/header.php:153 msgid "Name" msgstr "" -#: themes/default/comments.php:102 +#: themes/default/comments.php:110 msgid "Mail (unpublished)" msgstr "" -#: themes/default/comments.php:107 +#: themes/default/comments.php:115 msgid "Website" msgstr "" -#: themes/default/comments.php:111 +#: themes/default/comments.php:119 msgid "There was an error posting your comment. Maybe it was too short?" msgstr "" -#: themes/default/comments.php:120 +#: themes/default/comments.php:125 +msgid "Publish" +msgstr "" + +#: themes/default/comments.php:128 msgid "Publishing..." msgstr "" @@ -1099,6 +1169,26 @@ msgstr "" msgid "+" msgstr "" +#: themes/default/functions.php:105 +msgid "mo" +msgstr "" + +#: themes/default/functions.php:106 +msgid "wk" +msgstr "" + +#: themes/default/functions.php:107 +msgid "day" +msgstr "" + +#: themes/default/functions.php:108 +msgid "hr" +msgstr "" + +#: themes/default/functions.php:109 +msgid "min" +msgstr "" + #: themes/default/header.php:10 msgid "Notice" msgstr "" @@ -1127,15 +1217,19 @@ msgstr "" msgid "Your Push Notification cannot be delivered at this time." msgstr "" -#: themes/default/header.php:31 themes/default/header.php:58 -msgid "Login" +#: themes/default/header.php:28 +msgid "Username" msgstr "" -#: themes/default/header.php:42 themes/default/header.php:128 -msgid "Search" +#: themes/default/header.php:29 +msgid "Password" msgstr "" -#: themes/default/header.php:43 +#: themes/default/header.php:31 themes/default/header.php:58 +msgid "Login" +msgstr "" + +#: themes/default/header.php:42 themes/default/header.php:43 msgid "Search..." msgstr "" @@ -1151,6 +1245,10 @@ msgstr "" msgid "Enter your username and password<br />in the boxes above." msgstr "" +#: themes/default/header.php:91 +msgid "Not registered yet?" +msgstr "" + #: themes/default/header.php:93 #, php-format msgid "You can %ssign-up here%s." @@ -1172,6 +1270,10 @@ msgstr "" msgid "Logout" msgstr "" +#: themes/default/header.php:128 +msgid "Search" +msgstr "" + #: themes/default/header.php:132 msgid "Message" msgstr "" @@ -1216,6 +1318,10 @@ msgstr "" msgid "Written on" msgstr "" +#: themes/default/index.php:127 +msgid "at" +msgstr "" + #: themes/default/index.php:128 msgid "By" msgstr "" @@ -1273,83 +1379,83 @@ msgstr "" msgid "Mail a link to this post?" msgstr "" -#: themes/default/single.php:58 +#: themes/default/single.php:59 msgid "Del.icio.us" msgstr "" -#: themes/default/single.php:60 +#: themes/default/single.php:61 msgid "Digg" msgstr "" -#: themes/default/single.php:61 +#: themes/default/single.php:62 msgid "Technorati" msgstr "" -#: themes/default/single.php:62 +#: themes/default/single.php:63 msgid "Magnolia" msgstr "" -#: themes/default/single.php:63 +#: themes/default/single.php:64 msgid "Newsvine" msgstr "" -#: themes/default/single.php:64 +#: themes/default/single.php:65 msgid "Reddit" msgstr "" -#: wptouch.php:204 +#: wptouch.php:215 msgid "Settings" msgstr "" -#: wptouch.php:376 +#: wptouch.php:392 msgid "New Ping/Trackback" msgstr "" -#: wptouch.php:382 +#: wptouch.php:398 msgid "New Comment" msgstr "" -#: wptouch.php:410 +#: wptouch.php:426 msgid "User Registration" msgstr "" -#: wptouch.php:454 +#: wptouch.php:470 msgid "Direct Message" msgstr "" -#: wptouch.php:596 +#: wptouch.php:612 msgid "WPtouch iPhone Theme" msgstr "" -#: wptouch.php:864 +#: wptouch.php:913 msgid "Settings saved" msgstr "" -#: wptouch.php:869 +#: wptouch.php:918 msgid "Defaults restored" msgstr "" -#: wptouch.php:889 +#: wptouch.php:939 msgid "Save Options" msgstr "" -#: wptouch.php:893 +#: wptouch.php:943 msgid "Restore default WPtouch settings?" msgstr "" -#: wptouch.php:893 +#: wptouch.php:943 msgid "Restore Defaults" msgstr "" -#. Plugin Name of a plugin/theme +#. Plugin Name of the plugin/theme msgid "WPtouch" msgstr "" -#. Plugin URI of a plugin/theme -msgid "http://bravenewcode.com/products/wptouch" +#. Plugin URI of the plugin/theme +msgid "http://www.bravenewcode.com/wptouch" msgstr "" -#. Description of a plugin/theme +#. Description of the plugin/theme msgid "" "A plugin which formats your site with a mobile theme for visitors on Apple " "<a href=\"http://www.apple.com/iphone/\">iPhone</a> / <a href=\"http://www." @@ -1359,10 +1465,10 @@ msgid "" "\">Palm Pre</a> and other touch-based smartphones." msgstr "" -#. Author of a plugin/theme +#. Author of the plugin/theme msgid "Dale Mugford & Duane Storey (BraveNewCode Inc.)" msgstr "" -#. Author URI of a plugin/theme +#. Author URI of the plugin/theme msgid "http://www.bravenewcode.com" msgstr "" diff --git a/wp-content/plugins/wptouch/readme.txt b/wp-content/plugins/wptouch/readme.txt index c7fbc35a3062732d4a7d7607aadbac202bb1d5ae..70ae90e4e79a20e8d5eb7f170a1b45aa6ce46ffc 100644 --- a/wp-content/plugins/wptouch/readme.txt +++ b/wp-content/plugins/wptouch/readme.txt @@ -1,20 +1,16 @@ === Plugin Name === -Contributors: BraveNewCode, duanestorey, dalemugford -Plugin Name: WPtouch -Plugin URI: http://www.bravenewcode.com/wptouch -Author: BraveNewCode -Author URI: http://www.bravenewcode.com/ -Tags: wptouch, iphone, ipod, theme, apple, mac, bravenewcode, ajax, mobile, android, blackberry, smartphone, +Contributors: BraveNewCode Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40bravenewcode%2ecom&item_name=WPtouch%20Beer%20Fund&no_shipping=0&no_note=1&tax=0¤cy_code=CAD&lc=CA&bn=PP%2dDonationsBF&charset=UTF%2d8 -Requires at least: 2.9 -Tested up to: 3.0.5 -Stable tag: 1.9.22.1 +Tags: wptouch, iphone, ipod, theme, apple, mac, bravenewcode, ajax, mobile, android, blackberry, smartphone, +Requires at least: 3.0 +Tested up to: 3.2 +Stable tag: 1.9.34 WPtouch: A simple, powerful and elegant mobile theme for your website. WPtouch automatically transforms your WordPress blog into an iPhone application-style theme, complete with ajax loading articles and effects, when viewed from an iPhone, iPod touch, Android, Opera Mini, Palm Pre and BlackBerry Storm mobile devices. -*Now includes .pot file for translations (submit yours to translation@wptouch.com)* +*Now includes .pot file for translations (submit yours @ http://www.bravenwcode.com/contact)* *Now Available: WPtouch Pro!* Totally re-written top to bottom, with a slew of new features like more style, color and branding customizations, themes, 10 languages, more advertising options, Web-App mode, and more! @@ -42,10 +38,82 @@ For more information visit http://www.bravenewcode.com/wptouch-pro == Changelog == += Version 1.9.34 = + +* Changed: Default settings + += Version 1.9.33 = + +* Added: Ability to add WPtouch info in Twenty Ten & Eleven themes +* Changed: Minor layout adjustment in admin panel + += Version 1.9.32 = + +* Updated: Added nonces and extra security check for icon deletion (thanks Julio POTIER from BLOG.boiteaweb.fr) + += Version 1.9.31 = + +* Added: Option to allow zooming on content +* Updated: WordPress 3.2 compatibility changes +* Updated: Re-compressed PNGs for performance and speed +* Updated: Minimum WordPress version is now 3.0 +* Fixed: Issues with $wpt variable in js + += Version 1.9.30 = + +* Fixed: Added nonces to redirect code + += Version 1.9.29 = + +* IMPORTANT: Due to a WordPress.org issue, please update + += Version 1.9.28 = + +* Fixed: Javascript issue with excerpts and load more entries + += Version 1.9.27 = + +* Fixed: time_since() function naming conflict +* Fixed: Fixed bug with reset settings +* Fixed: Depreciated user level reference removed +* Fixed: Page icons missing when page sort order is 'By Page ID' + += Version 1.9.26 = + +* Added: 'Googlebot-Mobile' for mobile indexing +* Added: lang attribute to head tag +* Added Dougal's fix for XMLRPC / App requests via WordPress for iOS +* Changed: Updated Japanese translation (thanks to Yamaguchi Kenji) +* Changed: Optimized categories/tags listings queries +* Fixed: Switch link edge case issue + += Version 1.9.25 = + +* Added: Exclusion of Motorola Xoom and Galaxy Tab tablet devices +* Changed: Cleaned up both category and tag exclusion logic, removed unneeded functions + += Version 1.9.24 = + +* FIxed: Re-wrote category and tag exclusion code +* Fixed: repaired code causing php warning items found in debug +* Updated: wptouch.pot language file +* Updated: French translation + += Version 1.9.23 = + +* Fixed: IMPORTANT security issue with AJAX icon upload +* Fixed: Issue with excluded categories not working +* Added: Ability to exclude tags by ID from blog (experimental) +* Added: Now filter the excluded categories and tags from the header listings +* Changed: Now removing the admin bar when logged in and looking at WPtouch (will still show for regular theme) +* Translators: please re-submit translations with updated strings (excluded tags area) + = Version 1.9.22.1 = + * Fixed additional switch link issue found after 1.9.22 (now handles www.domain.com and domain.com, along with http:// and https://) = Version 1.9.22 = + * Added Basque translation courtesy of Ander Erguin * Added Japanese translation courtesy of Kenji Yamaguchi * Experimental LiveFyre commenting support @@ -58,11 +126,13 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Updates for admin panel = Version 1.9.21.1 = + * Fixed: Bug with footer switch link (ampersand issue) * Fixed: Bug with footer switch link (cookie issue) * Fixed: Bug with login on some devices = Version 1.9.21 = + * Added: touchstart JavaScript for supported devices (speeds up interface responsiveness) * Changed: More style adjustments in a few places, better Android compatibility * Fixed: An issue which could output site urls on single posts @@ -71,6 +141,7 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Fixed: An issue that prevented login from the header = Version 1.9.20 = + * Added: Option to disable comments on posts completely in WPtouch * Fixed: Issues with WordTwit and GigPress drop-downs * FIxed: An issue with French text appearing in non-french installs @@ -79,6 +150,7 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Updated: Screenshots = Version 1.9.19.5 = + * Added: IMPORTANT: Security nonce and additional security check (thanks to Julio from http://Boiteaweb.fr for testing) * Changed: Improved header forms in theme * Changed: Minor styling improvements in theme @@ -86,19 +158,23 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Changed: Other admin improvements = Version 1.9.19.4 = + * More fixes for siteurl, url, home etc. for depreciation = Version 1.9.19.3 = + * Fixed: Bug with YouTube & Vimeo videos * Fixed: Bug with posting comments on some installations = Version 1.9.19.2 = + * Fixed: Changed references of 'siteurl' and 'home' to url, siteurl & home are depreciated in bloginfo() * Fixed: Other minor code warnings * Changed: Enhanced comment-bubbles on posts for iPhone/iPod using CSS. * Other improved styling = Version 1.9.19.1 = + * Fixed: Localization changes and updates, including missing translatable text * Added: French localization * Added: Ability to change languages @@ -107,12 +183,14 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Changed: Enqueue for admin js files = Version 1.9.19 = + * Added: Compat for Share and Follow plugin * Added: Missing localization code, .pot file for translations (submit yours to translation@wptouch.com) * Fixed: Cleaned up unused code, empty strings * Changed: Optimized some assets = Versions 1.9.15 - 1.9.18 = + * Added Samsung s8000, Bada device user agents (Dolphin Browser) * Added Blackberry Storm V2 user agents * Added Blackberry Torch user agent @@ -128,6 +206,7 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * More image optimizations and file size reductions = Version 1.9.14 = + * Added ability to customize the footer copyright message * Added credit to Marcelo Marfil for his icons * Added official WordPress 3.0 compatibility @@ -142,12 +221,14 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Updated copy, minor edits in a few places = Version 1.9.13 = + * Removed application Twitter links on single post page, replaced with post to m.twitter.com * Added filter for whydowork plugin ads (to prefer native Adsense in WPtouch) * Attempted new fix for YouTube overtop menu bug, it's a mobile browser issue (can't fix) * Minor styling fixes and adjustments = Version 1.9.12 = + * Fixes login to admin through mobile device bug * Fixes issue where mobile theme may be shown to desktop users (non-cache related) * Fixes issue where YouTube videos are on top of menus, other content @@ -180,7 +261,6 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Added cache manifest file for speedier browsing on supported servers and devices * Added automatic WP Super Cache detection and configuration for the upcoming version of WP Super Cache - = Version 1.9.9.8 = * Fixes admin panel not working or broken for some users @@ -202,6 +282,7 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Minor spelling fixes = Version 1.9.9.5 = + * Made changes to the way ajax uploads are handled * Updated and fixed JS error in ajax_upload.js file * Fixed more GigPress CSS issues @@ -209,6 +290,7 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Only loading the ajax_comments.js on the single post pages now = Version 1.9.9.4 = + * Updated and edited admin verbiage * Added remove action for Google Libraries plugin (for compatibility) * Added remove action for GigPress CSS @@ -216,8 +298,8 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Changed javascript handlers * Misc tweaks and fixes - = Version 1.9.9.3 = + * Theme CSS fixes and revisions * Updated outdated links in the admin panel * Updated outdated text in the admin panel @@ -226,6 +308,7 @@ For more information visit http://www.bravenewcode.com/wptouch-pro = Version 1.9.9.2 = + * Updated user agents for Opera Mini and Palm Pre ('mini' and 'pre') * Removed orphaned code relating to ajax comments option * Changed date/time parsing for WordTwit integration @@ -277,7 +360,6 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Attempted fix for broken post thumbs reflections on Android. Now reflections only show for iPhone/iPod - = Version 1.9.7.6 = * Minor administration changes @@ -294,7 +376,6 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Added style option to choose the font of H2 elements on post listings, single entries and pages * Various style & code improvements and fixes - = Version 1.9.6 = * Fixed php logic in adsense-new.php (thx JeanPaulH) @@ -307,7 +388,6 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Fixed cutoff tweets from WordTwit in the drop-down * Verified WP 2.9 compatibility - = Version 1.9.5 = * Added Twitter updates menu item support for WordTwit's new features @@ -344,7 +424,6 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Compressed style.css in theme for faster load times * Removed unused files - = Versions 1.9.3.x = * Fixed issues with adsense ads @@ -368,7 +447,6 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Possible fix for time since on comments not working in some situations * Added option to disable Ajax comments for those who can't get them working - = Versions 1.9.2.x = * Fixed issue where mobile switch to regular theme was always zoomed in and required refresh @@ -380,7 +458,6 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Now WPtouch will not hide mobileSafari addressbar on single post pages on slower connections * Fixed bug where WPtouch admin would report that CURL wasn't installed even if it was - = Version 1.9.1 = * Fixed bug for admin panel Ajax not working in some situations @@ -390,7 +467,6 @@ For more information visit http://www.bravenewcode.com/wptouch-pro * Removed text-size adjust option, now replaced with user-adjustable font sizes * Minor code corrections - = Version 1.9 = * Fully compatible with WordPress 2.6 - 2.8.x @@ -676,6 +752,6 @@ Not bloody likely! Unless of course you're getting slammed with all sorts of tra 3. Drop down menu navigation 4. WordTwit plugin Twitter integration 5. Push Messaging -6. Search +6. Account log in 7. Single post page post meta, options bar, comments 8. Sample regular page diff --git a/wp-content/plugins/wptouch/themes/core/core-functions.php b/wp-content/plugins/wptouch/themes/core/core-functions.php index e0a477a1555b1d9951d2a74c76bc9986b1861666..cb89820f721deadab00f32d9a401a52a950c8810 100644 --- a/wp-content/plugins/wptouch/themes/core/core-functions.php +++ b/wp-content/plugins/wptouch/themes/core/core-functions.php @@ -7,14 +7,14 @@ function wptouch_core_header_enqueue() { $version = get_bloginfo('version'); if (!bnc_wptouch_is_exclusive()) { wp_enqueue_script('jquery-form'); - wp_enqueue_script('wptouch-core', '' . compat_get_plugin_url( 'wptouch' ) . '/themes/core/core.min.js', array('jquery'), '1.9.22.1' ); + wp_enqueue_script('wptouch-core', '' . compat_get_plugin_url( 'wptouch' ) . '/themes/core/core.js', array('jquery'), '1.9.22.1' ); wp_head(); - } elseif (bnc_wptouch_is_exclusive()) { - echo "<script src='" . get_bloginfo('wpurl') . "/wp-includes/js/jquery/jquery.js?ver=1.9.22.1' type='text/javascript' charset='utf-8'></script>\n"; - echo "<script src='" . get_bloginfo('wpurl') . "/wp-includes/js/jquery/jquery.form.js?ver=1.9.22.1' type='text/javascript' charset='utf-8'></script>\n"; - echo "<script src='" . compat_get_plugin_url( 'wptouch' ) . "/themes/core/core.min.js?ver=1.9.22.1' type='text/javascript' charset='utf-8'></script>\n"; - } + } elseif ( bnc_wptouch_is_exclusive() ) { + echo "<script src='" . get_bloginfo('wpurl') . "/wp-includes/js/jquery/jquery.js?wptouch' type='text/javascript' charset='utf-8'></script>\n"; + echo "<script src='" . get_bloginfo('wpurl') . "/wp-includes/js/jquery/jquery.form.js?wptouch' type='text/javascript' charset='utf-8'></script>\n"; + echo "<script src='" . compat_get_plugin_url( 'wptouch' ) . "/themes/core/core.js?wptouch' type='text/javascript' charset='utf-8'></script>\n"; + } } function wptouch_core_header_home() { @@ -92,22 +92,52 @@ function wptouch_tags_link() { function wptouch_cats_link() { echo '<a href="#head-cats">' . __( "Categories", "wptouch" ) . '</a>'; } + +function bnc_get_ordered_cat_list( $num ) { + global $wpdb; -function bnc_get_ordered_cat_list() { - // We created our own function for this as wp_list_categories doesn't make the count linkable + if ( wptouch_excluded_cats() ) { + $excluded_cats = wptouch_excluded_cats(); + } else { + $excluded_cats = 0; + } + + echo '<ul>'; + $sql = $wpdb->get_results("SELECT * FROM {$wpdb->prefix}term_taxonomy INNER JOIN {$wpdb->prefix}terms ON {$wpdb->prefix}term_taxonomy.term_id = {$wpdb->prefix}terms.term_id WHERE taxonomy = 'category' AND {$wpdb->prefix}term_taxonomy.term_id NOT IN ($excluded_cats) AND count >= 1 ORDER BY count DESC LIMIT 0, $num"); + + if ( $sql ) { + foreach ( $sql as $result ) { + if ( $result ) { + echo "<li><a href=\"" . get_category_link( $result->term_id ) . "\">" . $result->name . " <span>(" . $result->count . ")</span></a></li>"; + } + } + } + echo '</ul>'; +} - global $table_prefix; +function wptouch_ordered_tag_list( $num ) { global $wpdb; - $sql = "select * from " . $table_prefix . "term_taxonomy inner join " . $table_prefix . "terms on " . $table_prefix . "term_taxonomy.term_id = " . $table_prefix . "terms.term_id where taxonomy = 'category' and count > 0 order by count desc"; - $results = $wpdb->get_results( $sql ); - foreach ($results as $result) { - echo "<li><a href=\"" . get_category_link( $result->term_id ) . "\">" . $result->name . " (" . $result->count . ")</a></li>"; + if ( wptouch_excluded_tags() ) { + $excluded_tags = wptouch_excluded_tags(); + } else { + $excluded_tags = 0; } + echo '<ul>'; + + $sql = $wpdb->get_results("SELECT * FROM {$wpdb->prefix}term_taxonomy INNER JOIN {$wpdb->prefix}terms ON {$wpdb->prefix}term_taxonomy.term_id = {$wpdb->prefix}terms.term_id WHERE taxonomy = 'post_tag' AND {$wpdb->prefix}term_taxonomy.term_id NOT IN ($excluded_tags) AND count >= 1 ORDER BY count DESC LIMIT 0, $num"); + + if ( $sql ) { + foreach ( $sql as $result ) { + if ( $result ) { + echo "<li><a href=\"" . get_tag_link( $result->term_id ) . "\">" . $result->name . " <span>(" . $result->count . ")</span></a></li>"; + } + } + } + echo '</ul>'; } - ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // WPtouch Core Body Functions ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -161,7 +191,7 @@ function wptouch_core_else_text() { } function wptouch_core_footer_switch_link() { - echo '<script type="text/javascript">function switch_delayer() { window.location = "' . get_bloginfo( 'url' ) . '/?wptouch_view=normal&wptouch_redirect=' . $_SERVER['REQUEST_URI'] .'"}</script>'; + echo '<script type="text/javascript">function switch_delayer() { window.location = "' . get_bloginfo( 'url' ) . '/?wptouch_view=normal&wptouch_redirect_nonce=' . wp_create_nonce( 'wptouch_redirect' ) . '&wptouch_redirect=' . $_SERVER['REQUEST_URI'] .'"}</script>'; echo '' . __( "Mobile Theme", "wptouch" ) . ' <a id="switch-link" onclick="wptouch_switch_confirmation();" href="javascript:return false;"></a>'; } @@ -229,6 +259,12 @@ function wptouch_idevice_classes() { } } +// Remove the admin bar when logged in and looking at WPtouch +if ( bnc_wptouch_is_mobile() && function_exists( 'show_admin_bar' ) ) { + add_filter( 'show_admin_bar', '__return_false' ); +} + + ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // WPtouch Filters ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -247,4 +283,4 @@ remove_filter('the_content', 'Add_Like_Button'); //Sharebar Plugin remove_filter('the_content', 'sharebar_auto'); -remove_action('wp_head', 'sharebar_header'); \ No newline at end of file +remove_action('wp_head', 'sharebar_header'); diff --git a/wp-content/plugins/wptouch/themes/core/core-header.php b/wp-content/plugins/wptouch/themes/core/core-header.php index f366b7c89705f8b4426acc784be569ce90828afb..2a2717e71516f99d1f40d3a9527ab41eb2ffe3b7 100644 --- a/wp-content/plugins/wptouch/themes/core/core-header.php +++ b/wp-content/plugins/wptouch/themes/core/core-header.php @@ -1,25 +1,26 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="http://gmpg.org/xfn/11"> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> + <?php if ( bnc_is_zoom_enabled() ) { ?> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" /> + <?php } else { ?> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> + <?php } ?> <title><?php wp_title('«', true, 'right'); ?> <?php $str = bnc_get_header_title(); echo stripslashes($str); ?></title> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link <?php if (bnc_is_flat_icon_enabled()) { echo 'rel="apple-touch-icon-precomposed"'; } else { echo 'rel="apple-touch-icon"';} ?> href="<?php echo bnc_get_title_image(); ?>" /> - <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style.min.css?ver=1.9.22.1" type="text/css" media="screen" /> + <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style.css?ver=1.9.22.1" type="text/css" media="screen" /> <?php if (bnc_is_gigpress_enabled() && function_exists( 'gigpress_shows' )) { ?> <link rel="stylesheet" href="<?php echo compat_get_plugin_url( 'wptouch' ); ?>/themes/core/core-css/gigpress.css" type="text/css" media="screen" /> <?php } ?> <?php wptouch_core_header_styles(); wptouch_core_header_enqueue(); ?> <?php if (!is_single()) { ?> <script type="text/javascript"> - function hideURLbar() { - window.scrollTo(0,1); - } - addEventListener("load", function() { - setTimeout(hideURLbar, 0); - }, false); + // Hides the addressbar on non-post pages + function hideURLbar() { window.scrollTo(0,1); } + addEventListener('load', function() { setTimeout(hideURLbar, 0); }, false ); </script> <?php } ?> </head> \ No newline at end of file diff --git a/wp-content/plugins/wptouch/themes/core/core-images/post-options.png b/wp-content/plugins/wptouch/themes/core/core-images/post-options.png index f304c195611c03815c65bd31cff3ddd95d8145bb..0032cb6c2c39872cd3ed09a7cb9fac33c288cc4c 100644 Binary files a/wp-content/plugins/wptouch/themes/core/core-images/post-options.png and b/wp-content/plugins/wptouch/themes/core/core-images/post-options.png differ diff --git a/wp-content/plugins/wptouch/themes/core/core-images/sticky.png b/wp-content/plugins/wptouch/themes/core/core-images/sticky.png index 4eedff19699b1a0b41a5e75fd02c54cd07c0694d..76af964f31bb8d867594da43de0e182dbe0d6b1f 100644 Binary files a/wp-content/plugins/wptouch/themes/core/core-images/sticky.png and b/wp-content/plugins/wptouch/themes/core/core-images/sticky.png differ diff --git a/wp-content/plugins/wptouch/themes/core/core.js b/wp-content/plugins/wptouch/themes/core/core.js index ac45b32ccf9d1e5212bab9573ec018a390c1f96c..bdb313e03ef19563717fe3e35e771f8dadb23848 100644 --- a/wp-content/plugins/wptouch/themes/core/core.js +++ b/wp-content/plugins/wptouch/themes/core/core.js @@ -3,7 +3,7 @@ */ /////-- Let's setup our namspace in jQuery -- ///// -$wptouch = jQuery.noConflict(); +var $wpt = jQuery.noConflict(); if ( (navigator.platform == 'iPhone' || navigator.platform == 'iPod') && typeof orientation != 'undefined' ) { var touchStartOrClick = 'touchstart'; @@ -15,20 +15,20 @@ if ( (navigator.platform == 'iPhone' || navigator.platform == 'iPod') && typeof if (top.location!= self.location) {top.location = self.location.href} /////// -- New function fadeToggle() -- ///// -$wptouch.fn.wptouchFadeToggle = function(speed, easing, callback) { +$wpt.fn.wptouchFadeToggle = function(speed, easing, callback) { return this.animate({opacity: 'toggle'}, speed, easing, callback); }; /////-- Switch Magic -- ///// function wptouch_switch_confirmation( e ) { - if ( document.cookie && document.cookie.indexOf("wptouch_switch_toggle" ) > -1) { + if ( document.cookie && document.cookie.indexOf( 'wptouch_switch_toggle' ) > -1) { // just switch - $wptouch("a#switch-link").toggleClass("offimg"); + $wpt("a#switch-link").toggleClass("offimg"); setTimeout('switch_delayer()', 1250); } else { // ask first if ( confirm( "Switch to regular view? \n \n You can switch back again in the footer." ) ) { - $wptouch("a#switch-link").toggleClass("offimg"); + $wpt("a#switch-link").toggleClass("offimg"); setTimeout('switch_delayer()', 1350); } else { e.preventDefault(); @@ -38,95 +38,103 @@ function wptouch_switch_confirmation( e ) { } /////-- Prowl Results -- ///// -if ( $wptouch('#prowl-success').length ) { - setTimeout(function() { $wptouch('#prowl-success').fadeOut(350); }, 5250); +if ( $wpt('#prowl-success').length ) { + setTimeout(function() { $wpt('#prowl-success').fadeOut(350); }, 5250); } -if ( $wptouch('#prowl-fail').length ) { - setTimeout(function() { $wptouch('#prowl-fail').fadeOut(350); }, 5250); +if ( $wpt('#prowl-fail').length ) { + setTimeout(function() { $wpt('#prowl-fail').fadeOut(350); }, 5250); } /////// -- jQuery Tabs -- /////// -$wptouch(function() { - var tabContainers = $wptouch('#menu-head > ul'); - $wptouch('#tabnav a').bind(touchStartOrClick, function () { +$wpt(function() { + var tabContainers = $wpt('#menu-head > ul'); + $wpt('#tabnav a').bind(touchStartOrClick, function () { tabContainers.hide().filter(this.hash).show(); - $wptouch('#tabnav a').removeClass('selected'); - $wptouch(this).addClass('selected'); + $wpt('#tabnav a').removeClass('selected'); + $wpt(this).addClass('selected'); return false; }).filter(':first').trigger(touchStartOrClick); }); /////-- Ajax comments -- ///// function bnc_showhide_coms_toggle() { - $wptouch('#commentlist').wptouchFadeToggle(350); - $wptouch("img#com-arrow").toggleClass("com-arrow-down"); - $wptouch("h3#com-head").toggleClass("comhead-open"); + $wpt('#commentlist').wptouchFadeToggle(350); + $wpt("img#com-arrow").toggleClass("com-arrow-down"); + $wpt("h3#com-head").toggleClass("comhead-open"); } function doWPtouchReady() { /////-- Tweak jQuery Timer -- ///// - $wptouch.timerId = setInterval(function(){ - var timers = $wptouch.timers; + $wpt.timerId = setInterval(function(){ + var timers = $wpt.timers; for (var i = 0; i < timers.length; i++) { if (!timers[i]()) { timers.splice(i--, 1); } } if (!timers.length) { - clearInterval($wptouch.timerId); - $wptouch.timerId = null; + clearInterval($wpt.timerId); + $wpt.timerId = null; } }, 83); /////-- Menu Toggle -- ///// - $wptouch('#headerbar-menu a').bind( touchStartOrClick, function( e ){ - $wptouch('#wptouch-menu').wptouchFadeToggle(350); - $wptouch("#headerbar-menu a").toggleClass("open"); + $wpt('#headerbar-menu a').bind( touchStartOrClick, function( e ){ + $wpt('#wptouch-menu').wptouchFadeToggle(350); + $wpt("#headerbar-menu a").toggleClass("open"); }); /////-- Search Toggle -- ///// - $wptouch('a#searchopen, #wptouch-search-inner a').bind( touchStartOrClick, function( e ){ - $wptouch('#wptouch-search').wptouchFadeToggle(350); + $wpt('a#searchopen, #wptouch-search-inner a').bind( touchStartOrClick, function( e ){ + $wpt('#wptouch-search').wptouchFadeToggle(350); }); /////-- Prowl Toggle -- ///// - $wptouch('a#prowlopen').bind( touchStartOrClick, function( e ){ - $wptouch('#prowl-message').wptouchFadeToggle(350); + $wpt('a#prowlopen').bind( touchStartOrClick, function( e ){ + $wpt('#prowl-message').wptouchFadeToggle(350); }); /////-- WordTwit Toggle -- ///// - $wptouch('a#wordtwitopen').bind( touchStartOrClick, function( e ){ - $wptouch('#wptouch-wordtwit').wptouchFadeToggle(350); + $wpt('a#wordtwitopen').bind( touchStartOrClick, function( e ){ + $wpt('#wptouch-wordtwit').wptouchFadeToggle(350); }); /////-- Gigpress Toggle -- ///// - $wptouch('a#gigpressopen').bind( touchStartOrClick, function( e ){ - $wptouch('#wptouch-gigpress').wptouchFadeToggle(350); + $wpt('a#gigpressopen').bind( touchStartOrClick, function( e ){ + $wpt('#wptouch-gigpress').wptouchFadeToggle(350); }); /////-- Login Toggle -- ///// - $wptouch('a#loginopen, #wptouch-login-inner a').bind( touchStartOrClick, function( e ){ - $wptouch('#wptouch-login').wptouchFadeToggle(350); + $wpt('a#loginopen, #wptouch-login-inner a').bind( touchStartOrClick, function( e ){ + $wpt('#wptouch-login').wptouchFadeToggle(350); }); /////// -- Single Post Page Bookmark Toggle -- ///// -$wptouch( 'a#obook' ).bind( touchStartOrClick, function() { - $wptouch('#bookmark-box').wptouchFadeToggle(350); +$wpt( 'a#obook' ).bind( touchStartOrClick, function() { + $wpt('#bookmark-box').wptouchFadeToggle(350); }); /////-- Try to make imgs and captions nicer in posts -- ///// - $wptouch( '.singlentry img, .singlentry .wp-caption' ).each( function() { - if ( $wptouch( this ).width() <= 250 ) { - $wptouch( this ).addClass( 'aligncenter' ); + $wpt( '.singlentry img, .singlentry .wp-caption' ).each( function() { + if ( $wpt( this ).width() <= 250 ) { + $wpt( this ).addClass( 'aligncenter' ); } }); /////-- Filter FollowMe Plugin -- ///// - if ( $wptouch( '#FollowMeTabLeftSm' ).length ) { - $wptouch( '#FollowMeTabLeftSm' ).remove(); + if ( $wpt( '#FollowMeTabLeftSm' ).length ) { + $wpt( '#FollowMeTabLeftSm' ).remove(); } +// $wpt( '.content iframe' ).each( function() { +// var iframeSrc = $wpt( this ).attr( 'src' ); +// $wpt( this ).replaceWith( '<video src='+iframeSrc+' controls=controls></video>' ) +// +// }); + + + } // End document ready -$wptouch( document ).ready( function() { doWPtouchReady(); } ); \ No newline at end of file +$wpt( document ).ready( function() { doWPtouchReady(); } ); \ No newline at end of file diff --git a/wp-content/plugins/wptouch/themes/core/core.min.js b/wp-content/plugins/wptouch/themes/core/core.min.js index 6e1208699cac36d8a7660789255a5326c260875d..038143d960925da4519a3c7ca02ff231389c863a 100644 --- a/wp-content/plugins/wptouch/themes/core/core.min.js +++ b/wp-content/plugins/wptouch/themes/core/core.min.js @@ -1 +1 @@ -$wptouch=jQuery.noConflict();if((navigator.platform=="iPhone"||navigator.platform=="iPod")&&typeof orientation!="undefined"){var touchStartOrClick="touchstart"}else{var touchStartOrClick="click"}if(top.location!=self.location){top.location=self.location.href}$wptouch.fn.wptouchFadeToggle=function(a,c,b){return this.animate({opacity:"toggle"},a,c,b)};function wptouch_switch_confirmation(a){if(document.cookie&&document.cookie.indexOf("wptouch_switch_toggle")>-1){$wptouch("a#switch-link").toggleClass("offimg");setTimeout("switch_delayer()",1250)}else{if(confirm("Switch to regular view? \n \n You can switch back again in the footer.")){$wptouch("a#switch-link").toggleClass("offimg");setTimeout("switch_delayer()",1350)}else{a.preventDefault();a.stopImmediatePropagation()}}}if($wptouch("#prowl-success").length){setTimeout(function(){$wptouch("#prowl-success").fadeOut(350)},5250)}if($wptouch("#prowl-fail").length){setTimeout(function(){$wptouch("#prowl-fail").fadeOut(350)},5250)}$wptouch(function(){var a=$wptouch("#menu-head > ul");$wptouch("#tabnav a").bind(touchStartOrClick,function(){a.hide().filter(this.hash).show();$wptouch("#tabnav a").removeClass("selected");$wptouch(this).addClass("selected");return false}).filter(":first").trigger(touchStartOrClick)});function bnc_showhide_coms_toggle(){$wptouch("#commentlist").wptouchFadeToggle(350);$wptouch("img#com-arrow").toggleClass("com-arrow-down");$wptouch("h3#com-head").toggleClass("comhead-open")}function doWPtouchReady(){$wptouch.timerId=setInterval(function(){var b=$wptouch.timers;for(var a=0;a<b.length;a++){if(!b[a]()){b.splice(a--,1)}}if(!b.length){clearInterval($wptouch.timerId);$wptouch.timerId=null}},83);$wptouch("#headerbar-menu a").bind(touchStartOrClick,function(a){$wptouch("#wptouch-menu").wptouchFadeToggle(350);$wptouch("#headerbar-menu a").toggleClass("open")});$wptouch("a#searchopen, #wptouch-search-inner a").bind(touchStartOrClick,function(a){$wptouch("#wptouch-search").wptouchFadeToggle(350)});$wptouch("a#prowlopen").bind(touchStartOrClick,function(a){$wptouch("#prowl-message").wptouchFadeToggle(350)});$wptouch("a#wordtwitopen").bind(touchStartOrClick,function(a){$wptouch("#wptouch-wordtwit").wptouchFadeToggle(350)});$wptouch("a#gigpressopen").bind(touchStartOrClick,function(a){$wptouch("#wptouch-gigpress").wptouchFadeToggle(350)});$wptouch("a#loginopen, #wptouch-login-inner a").bind(touchStartOrClick,function(a){$wptouch("#wptouch-login").wptouchFadeToggle(350)});$wptouch("a#obook").bind(touchStartOrClick,function(){$wptouch("#bookmark-box").wptouchFadeToggle(350)});$wptouch(".singlentry img, .singlentry .wp-caption").each(function(){if($wptouch(this).width()<=250){$wptouch(this).addClass("aligncenter")}});if($wptouch("#FollowMeTabLeftSm").length){$wptouch("#FollowMeTabLeftSm").remove()}}$wptouch(document).ready(function(){doWPtouchReady()}); \ No newline at end of file +var $wpt=jQuery.noConflict();if((navigator.platform=="iPhone"||navigator.platform=="iPod")&&typeof orientation!="undefined"){var touchStartOrClick="touchstart"}else{var touchStartOrClick="click"}if(top.location!=self.location){top.location=self.location.href}$wpt.fn.wptouchFadeToggle=function(a,c,b){return this.animate({opacity:"toggle"},a,c,b)};function wptouch_switch_confirmation(a){if(document.cookie&&document.cookie.indexOf("wptouch_switch_toggle")>-1){$wpt("a#switch-link").toggleClass("offimg");setTimeout("switch_delayer()",1250)}else{if(confirm("Switch to regular view? \n \n You can switch back again in the footer.")){$wpt("a#switch-link").toggleClass("offimg");setTimeout("switch_delayer()",1350)}else{a.preventDefault();a.stopImmediatePropagation()}}}if($wpt("#prowl-success").length){setTimeout(function(){$wpt("#prowl-success").fadeOut(350)},5250)}if($wpt("#prowl-fail").length){setTimeout(function(){$wpt("#prowl-fail").fadeOut(350)},5250)}$wpt(function(){var a=$wpt("#menu-head > ul");$wpt("#tabnav a").bind(touchStartOrClick,function(){a.hide().filter(this.hash).show();$wpt("#tabnav a").removeClass("selected");$wpt(this).addClass("selected");return false}).filter(":first").trigger(touchStartOrClick)});function bnc_showhide_coms_toggle(){$wpt("#commentlist").wptouchFadeToggle(350);$wpt("img#com-arrow").toggleClass("com-arrow-down");$wpt("h3#com-head").toggleClass("comhead-open")}function doWPtouchReady(){$wpt.timerId=setInterval(function(){var b=$wpt.timers;for(var a=0;a<b.length;a++){if(!b[a]()){b.splice(a--,1)}}if(!b.length){clearInterval($wpt.timerId);$wpt.timerId=null}},83);$wpt("#headerbar-menu a").bind(touchStartOrClick,function(a){$wpt("#wptouch-menu").wptouchFadeToggle(350);$wpt("#headerbar-menu a").toggleClass("open")});$wpt("a#searchopen, #wptouch-search-inner a").bind(touchStartOrClick,function(a){$wpt("#wptouch-search").wptouchFadeToggle(350)});$wpt("a#prowlopen").bind(touchStartOrClick,function(a){$wpt("#prowl-message").wptouchFadeToggle(350)});$wpt("a#wordtwitopen").bind(touchStartOrClick,function(a){$wpt("#wptouch-wordtwit").wptouchFadeToggle(350)});$wpt("a#gigpressopen").bind(touchStartOrClick,function(a){$wpt("#wptouch-gigpress").wptouchFadeToggle(350)});$wpt("a#loginopen, #wptouch-login-inner a").bind(touchStartOrClick,function(a){$wpt("#wptouch-login").wptouchFadeToggle(350)});$wpt("a#obook").bind(touchStartOrClick,function(){$wpt("#bookmark-box").wptouchFadeToggle(350)});$wpt(".singlentry img, .singlentry .wp-caption").each(function(){if($wpt(this).width()<=250){$wpt(this).addClass("aligncenter")}});if($wpt("#FollowMeTabLeftSm").length){$wpt("#FollowMeTabLeftSm").remove()}}$wpt(document).ready(function(){doWPtouchReady()}); \ No newline at end of file diff --git a/wp-content/plugins/wptouch/themes/default/comments.php b/wp-content/plugins/wptouch/themes/default/comments.php index 93bb22201e4a8cbbf811f5289250a06df7abbf7c..8a707d471faf35fa3af91ffc5b2012427bd0f2f7 100644 --- a/wp-content/plugins/wptouch/themes/default/comments.php +++ b/wp-content/plugins/wptouch/themes/default/comments.php @@ -36,8 +36,8 @@ <?php if (is_single()) { ?> <span><?php wptouch_moderate_comment_link(get_comment_ID()); ?></span> <?php } ?> - <?php if (function_exists('time_since')) { - echo time_since(abs(strtotime($comment->comment_date_gmt . " GMT")), time()) . " " . __( 'ago', 'wptouch' ); } else { the_time('F jS, Y'); + <?php if (function_exists('wptouch_time_since')) { + echo wptouch_time_since(abs(strtotime($comment->comment_date_gmt . " GMT")), time()) . " " . __( 'ago', 'wptouch' ); } else { the_time('F jS, Y'); } ?> </div> diff --git a/wp-content/plugins/wptouch/themes/default/functions.php b/wp-content/plugins/wptouch/themes/default/functions.php index 7bc37a5d5e0bfe84a2085fea00e84ce0909ef4d9..688d0bc4b4762c7edcea44475107cce0715cb559 100644 --- a/wp-content/plugins/wptouch/themes/default/functions.php +++ b/wp-content/plugins/wptouch/themes/default/functions.php @@ -2,23 +2,46 @@ include( dirname(__FILE__) . '/../core/core-functions.php' ); //---------------- Custom Exclude Cats Function ----------------// -function exclude_category($query) { - $cats = wptouch_excluded_cats(); - $icats = explode( ",", $cats ); - $new_cats = array(); - foreach( $icats as $icat ) { - $new_cats[] = "-" . $icat; -} - $cats = implode( ",", $new_cats ); + +function wptouch_exclude_category( $query ) { + $excluded = wptouch_excluded_cats(); + + if ( $excluded ) { + $cats = explode( ',', $excluded ); + $new_cats = array(); + + foreach( $cats as $cat ) { + $new_cats[] = trim( $cat ); + } -if ( $query->is_home || $query->is_search || $query->is_archive || $query->is_feed ) { - $query->set('cat', $cats); + $query->set( 'category__not_in', $new_cats ); } -return $query; + + return $query; } -add_filter('pre_get_posts', 'exclude_category'); +add_filter('pre_get_posts', 'wptouch_exclude_category'); + +//---------------- Custom Exclude Tags Function ----------------// + +function wptouch_exclude_tags( $query ) { + $excluded = wptouch_excluded_tags(); + + if ( $excluded ) { + $tags = explode( ',', $excluded ); + $new_tags = array(); + + foreach( $tags as $tag ) { + $new_tags[] = trim( $tag ); + } + + $query->set( 'tag__not_in', $new_tags ); + } + + return $query; +} +add_filter('pre_get_posts', 'wptouch_exclude_tags'); //---------------- Custom Excerpts Function ----------------// function wptouch_trim_excerpt($text) { @@ -44,7 +67,7 @@ function wptouch_trim_excerpt($text) { //---------------- Custom Time Since Function ----------------// -function time_since($older_date, $newer_date = false) +function wptouch_time_since($older_date, $newer_date = false) { // array of time period chunks $chunks = array( diff --git a/wp-content/plugins/wptouch/themes/default/header.php b/wp-content/plugins/wptouch/themes/default/header.php index f754d192040e58c8b926696befe081ad5a61682d..ebdeda3cab397960c9bfc093f602a8a061a1856b 100644 --- a/wp-content/plugins/wptouch/themes/default/header.php +++ b/wp-content/plugins/wptouch/themes/default/header.php @@ -71,13 +71,13 @@ include( dirname(__FILE__) . '/../core/core-header.php' ); <?php if (bnc_is_cats_button_enabled()) { ?> <ul id="head-cats"> - <?php bnc_get_ordered_cat_list(); ?> + <?php bnc_get_ordered_cat_list( 35 ); ?> </ul> <?php } ?> <?php if (bnc_is_tags_button_enabled()) { ?> <ul id="head-tags"> - <li><?php wp_tag_cloud('smallest=13&largest=13&unit=px&number=20&order=asc&format=list'); ?></li> + <li><?php wptouch_ordered_tag_list( 35 ); ?></li> </ul> <?php } ?> @@ -210,4 +210,4 @@ include( dirname(__FILE__) . '/../core/core-header.php' ); <?php } ?> </div> <?php -wptouch_core_header_check_use(); \ No newline at end of file +wptouch_core_header_check_use(); diff --git a/wp-content/plugins/wptouch/themes/default/index.php b/wp-content/plugins/wptouch/themes/default/index.php index 8e71b53f7d19a2d6e3c50d7219276542ac310991..75029687de8d811565108f3f40b40e682ff6423e 100644 --- a/wp-content/plugins/wptouch/themes/default/index.php +++ b/wp-content/plugins/wptouch/themes/default/index.php @@ -8,8 +8,8 @@ <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> - <?php if ( is_home() && is_sticky( $post_ID ) && $wptouch_settings['post-cal-thumb'] == 'nothing-shown' ) echo '<div class="sticky-icon-none"></div>'; ?> - <?php if ( is_home() && is_sticky( $post_ID ) && $wptouch_settings['post-cal-thumb'] != 'nothing-shown' ) echo '<div class="sticky-icon"></div>'; ?> + <?php if ( is_home() && is_sticky() && $wptouch_settings['post-cal-thumb'] == 'nothing-shown' ) echo '<div class="sticky-icon-none"></div>'; ?> + <?php if ( is_home() && is_sticky() && $wptouch_settings['post-cal-thumb'] != 'nothing-shown' ) echo '<div class="sticky-icon"></div>'; ?> <?php if (!function_exists('dsq_comments_template') && !function_exists('id_comments_template')) { ?> <?php if (wptouch_get_comment_count() && !is_archive() && !is_search() && bnc_can_show_comments() ) { ?> @@ -24,10 +24,10 @@ <div class="archive-top-right"> <?php if (bnc_excerpt_enabled()) { ?> <script type="text/javascript"> - $wptouch(document).ready(function(){ - $wptouch("a#arrow-<?php the_ID(); ?>").bind( touchStartOrClick, function(e) { - $wptouch(this).toggleClass("post-arrow-down"); - $wptouch('#entry-<?php the_ID(); ?>').wptouchFadeToggle(500); + $wpt(document).ready(function(){ + $wpt("a#arrow-<?php the_ID(); ?>").bind( touchStartOrClick, function(e) { + $wpt(this).toggleClass("post-arrow-down"); + $wpt('#entry-<?php the_ID(); ?>').wptouchFadeToggle(500); }); }); </script> @@ -41,10 +41,10 @@ <?php } else { ?> <?php if (bnc_excerpt_enabled()) { ?> <script type="text/javascript"> - $wptouch(document).ready(function(){ - $wptouch("a#arrow-<?php the_ID(); ?>").bind( touchStartOrClick, function(e) { - $wptouch(this).toggleClass("post-arrow-down"); - $wptouch('#entry-<?php the_ID(); ?>').wptouchFadeToggle(500); + $wpt(document).ready(function(){ + $wpt("a#arrow-<?php the_ID(); ?>").bind( touchStartOrClick, function(e) { + $wpt(this).toggleClass("post-arrow-down"); + $wpt('#entry-<?php the_ID(); ?>').wptouchFadeToggle(500); }); }); </script> @@ -124,13 +124,13 @@ <a class="h2" href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <div class="post-author"> - <?php if ($wptouch_settings['post-cal-thumb'] != 'calendar-icons') { ?><span class="lead"><?php _e("Written on", "wptouch"); ?></span> <?php echo get_the_time('F jS, Y') ?> <?php _e("at", "wptouch"); ?> <?php echo get_the_time('G:ia') ?><?php if (!bnc_show_author()) { echo '<br />';} ?><?php } ?> + <?php if ($wptouch_settings['post-cal-thumb'] != 'calendar-icons') { ?><span class="lead"><?php _e("Written on", "wptouch"); ?></span> <?php echo get_the_time('d.m.Y') ?> <?php _e("at", "wptouch"); ?> <?php echo get_the_time('G:i') ?><br /><?php if (!bnc_show_author()) { echo '<br />';} ?><?php } ?> <?php if (bnc_show_author()) { ?><span class="lead"><?php _e("By", "wptouch"); ?></span> <?php the_author(); ?><br /><?php } ?> <?php if (bnc_show_categories()) { echo('<span class="lead">' . __( 'Categories', 'wptouch' ) . ':</span> '); the_category(', '); echo('<br />'); } ?> <?php if (bnc_show_tags() && get_the_tags()) { the_tags('<span class="lead">' . __( 'Tags', 'wptouch' ) . ':</span> ', ', ', ''); } ?> </div> <div class="clearer"></div> - <div id="entry-<?php the_ID(); ?>" <?php if (bnc_excerpt_enabled()) { ?>style="display:none"<?php } ?> class="mainentry <?php echo $wptouch_settings['style-text-size']; ?> <?php echo $wptouch_settings['style-text-justify']; ?>"> + <div id="entry-<?php the_ID(); ?>" <?php if (bnc_excerpt_enabled()) { ?>style="display:none"<?php } ?> class="mainentry <?php echo $wptouch_settings['style-text-justify']; ?>"> <?php the_excerpt(); ?> <a class="read-more" href="<?php the_permalink() ?>"><?php _e( "Read This Post", "wptouch" ); ?></a> </div> @@ -142,7 +142,7 @@ <div id="call<?php echo md5($_SERVER['REQUEST_URI']); ?>" class="ajax-load-more"> <div id="spinner<?php echo md5($_SERVER['REQUEST_URI']); ?>" class="spin" style="display:none"></div> - <a class="ajax" href="javascript:return false;" onclick="$wptouch('#spinner<?php echo md5($_SERVER['REQUEST_URI']); ?>').fadeIn(200); $wptouch('#ajaxentries<?php echo md5($_SERVER['REQUEST_URI']); ?>').load('<?php echo get_next_posts_page_link(); ?>', {}, function(){ $wptouch('#call<?php echo md5($_SERVER['REQUEST_URI']); ?>').fadeOut();});"> + <a class="ajax" href="javascript:return false;" onclick="$wpt('#spinner<?php echo md5($_SERVER['REQUEST_URI']); ?>').fadeIn(200); $wpt('#ajaxentries<?php echo md5($_SERVER['REQUEST_URI']); ?>').load('<?php echo get_next_posts_page_link(); ?>', {}, function(){ $wpt('#call<?php echo md5($_SERVER['REQUEST_URI']); ?>').fadeOut();});"> <?php _e( "Load more entries...", "wptouch" ); ?> </a> </div> diff --git a/wp-content/plugins/wptouch/themes/default/page.php b/wp-content/plugins/wptouch/themes/default/page.php index da26f292eceee51e3ef70f0033f8f4f9936fd225..f25a7591f2ea55a87820a3170410e13457d60a6b 100644 --- a/wp-content/plugins/wptouch/themes/default/page.php +++ b/wp-content/plugins/wptouch/themes/default/page.php @@ -4,29 +4,14 @@ <div class="post content" id="post-<?php the_ID(); ?>"> <div class="page"> <div class="page-title-icon"> - <?php - $mypages = bnc_wp_touch_get_pages(); - - if ( isset( $mypages[get_the_ID()]) ) { - $icon_name = $mypages[get_the_ID()]['icon']; - if ( file_exists( compat_get_plugin_dir( 'wptouch' ) . '/images/icon-pool/' . $icon_name ) ) { - $image = compat_get_plugin_url( 'wptouch' ) . '/images/icon-pool/' . $icon_name; - } else { - $image = compat_get_upload_url() . '/wptouch/custom-icons/' . $icon_name; - } - echo('<img class="pageicon" src="' . $image . '" alt="icon" />'); - } else { - echo ('<img class="pageicon" src="' . compat_get_plugin_url( 'wptouch' ) . '/images/icon-pool/Default.png" alt="pageicon" />'); - } - - ?> + <?php bnc_the_page_icon(); ?> </div> - <h2><?php the_title(); ?></h2> + <h2><?php the_title(); ?></h2> </div> <div class="clearer"></div> - <div id="entry-<?php the_ID(); ?>" class="pageentry <?php echo $wptouch_settings['style-text-size']; ?> <?php echo $wptouch_settings['style-text-justify']; ?>"> + <div id="entry-<?php the_ID(); ?>" class="pageentry <?php echo $wptouch_settings['style-text-justify']; ?>"> <?php if (!is_page('archives') || !is_page('links')) { the_content(); } ?> <?php if (is_page('archives')) { @@ -82,18 +67,18 @@ jQuery(document).ready( function() { // Ajaxify '#commentform' var formoptions = { - beforeSubmit: function() {$wptouch("#loading").fadeIn(400);}, + beforeSubmit: function() {$wpt("#loading").fadeIn(400);}, success: function() { - $wptouch("#commentform").hide(); - $wptouch("#loading").fadeOut(400); - $wptouch("#refresher").fadeIn(400); + $wpt("#commentform").hide(); + $wpt("#loading").fadeOut(400); + $wpt("#refresher").fadeIn(400); }, // end success error: function() { - $wptouch('#errors').show(); - $wptouch("#loading").fadeOut(400); + $wpt('#errors').show(); + $wpt("#loading").fadeOut(400); } //end error } //end options - $wptouch('#commentform').ajaxForm(formoptions); + $wpt('#commentform').ajaxForm(formoptions); }); //End onReady </script> <?php endif; ?> diff --git a/wp-content/plugins/wptouch/themes/default/single.php b/wp-content/plugins/wptouch/themes/default/single.php index e1d1fdf0d5b406da7d9f1169a556f1cf0d2c4d8d..790f5035c6059b8ff74b72faa537beafd2a2063e 100644 --- a/wp-content/plugins/wptouch/themes/default/single.php +++ b/wp-content/plugins/wptouch/themes/default/single.php @@ -73,18 +73,18 @@ bloginfo('name'); ?>- <?php the_title_attribute();?>&body=<?php _e( "Check out t jQuery(document).ready( function() { // Ajaxify '#commentform' var formoptions = { - beforeSubmit: function() {$wptouch("#loading").fadeIn(400);}, + beforeSubmit: function() {$wpt("#loading").fadeIn(400);}, success: function() { - $wptouch("#commentform").hide(); - $wptouch("#loading").fadeOut(400); - $wptouch("#refresher").fadeIn(400); + $wpt("#commentform").hide(); + $wpt("#loading").fadeOut(400); + $wpt("#refresher").fadeIn(400); }, // end success error: function() { - $wptouch('#errors').show(); - $wptouch("#loading").fadeOut(400); + $wpt('#errors').show(); + $wpt("#loading").fadeOut(400); } //end error } //end options -$wptouch('#commentform').ajaxForm(formoptions); +$wpt('#commentform').ajaxForm(formoptions); }); //End onReady </script> <?php endif; ?> diff --git a/wp-content/plugins/wptouch/themes/default/style.css b/wp-content/plugins/wptouch/themes/default/style.css index cb8edd9d101aae6c1cfc7ad46380684c5553ad68..8503d080991e90a1802e479117d8c95965a4d2e7 100644 --- a/wp-content/plugins/wptouch/themes/default/style.css +++ b/wp-content/plugins/wptouch/themes/default/style.css @@ -155,7 +155,7 @@ blockquote { margin-right: auto; } -.post object, .post embed, .post video, .post iframe { +.post object, .post embed, .post video { width: 100% !important; height: auto; max-height: 280px; diff --git a/wp-content/plugins/wptouch/wptouch.php b/wp-content/plugins/wptouch/wptouch.php index 9415758a5f210ed659a4deaa7e2bcc4f4a2c7c0b..d0fcd75d224226b461054014a5d174fe4046db36 100644 --- a/wp-content/plugins/wptouch/wptouch.php +++ b/wp-content/plugins/wptouch/wptouch.php @@ -1,53 +1,40 @@ <?php /* - Plugin Name: WPtouch - Plugin URI: http://www.bravenewcode.com/wptouch - Description: A plugin which formats your site with a mobile theme for visitors on Apple <a href="http://www.apple.com/iphone/">iPhone</a> / <a href="http://www.apple.com/ipodtouch/">iPod touch</a>, <a href="http://www.android.com/">Google Android</a>, <a href="http://www.blackberry.com/">Blackberry Storm and Torch</a>, <a href="http://www.palm.com/us/products/phones/pre/">Palm Pre</a> and other touch-based smartphones. - Author: Dale Mugford & Duane Storey (BraveNewCode Inc.) - Author URI: http://www.bravenewcode.com - Text Domain: wptouch - Domain Path: /lang - Version: 1.9.22.1 - - # Thanks to ContentRobot and the iWPhone theme/plugin - # which the detection feature of the plugin was based on. - # (http://iwphone.contentrobot.com/) - - # Also thanks to Henrik Urlund, who's "Prowl Me" plugin inspired - # the Push notification additions. - # (http://codework.dk/referencer/wp-plugins/prowl-me/) - - # All Admin and theme design is Copyright (c) 2008 - 2010 - # BraveNewCode Inc. - - # 'WPtouch' is an unregistered trademark of BraveNewCode Inc., - # and may not be used in conjuction with any redistribution - # of this software without express prior permission from BraveNewCode Inc. - - # This program is free software; you can redistribute it and/or - # modify it under the terms of the GNU General Public License - # as published by the Free Software Foundation; either version 2 - # of the License, or (at your option) any later version. - - # This program is distributed in the hope that it will be useful, - # but WITHOUT ANY WARRANTY; without even the implied warranty of - # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - # GNU General Public License for more details. - - # You should have received a copy of the GNU General Public License - # along with this program; if not, write to the Free Software - # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +Plugin Name: WPtouch +Plugin URI: http://wordpress.org/extend/plugins/wptouch/ +Version: 1.9.34 +Description: A plugin which formats your site with a mobile theme for visitors on Apple <a href="http://www.apple.com/iphone/">iPhone</a> / <a href="http://www.apple.com/ipodtouch/">iPod touch</a>, <a href="http://www.android.com/">Google Android</a>, <a href="http://www.blackberry.com/">Blackberry Storm and Torch</a>, <a href="http://www.palm.com/us/products/phones/pre/">Palm Pre</a> and other touch-based smartphones. +Author: BraveNewCode Inc. +Author URI: http://www.bravenewcode.com +Text Domain: wptouch +Domain Path: /lang +License: GNU General Public License 2.0 (GPL) http://www.gnu.org/licenses/gpl.html + +# Thanks to ContentRobot and the iWPhone theme/plugin +# which the detection feature of the plugin was based on. +# (http://iwphone.contentrobot.com/) + +# Also thanks to Henrik Urlund, who's "Prowl Me" plugin inspired +# the Push notification additions. +# (http://codework.dk/referencer/wp-plugins/prowl-me/) + +# Copyright (c) 2008 - 2011 BraveNewCode Inc. + +# 'WPtouch' is an unregistered trademark of BraveNewCode Inc., +# and may not be used in conjuction with any redistribution +# of this software without express prior permission from BraveNewCode Inc. */ load_plugin_textdomain( 'wptouch', false, dirname( plugin_basename( __FILE__ ) ) ); global $bnc_wptouch_version; -$bnc_wptouch_version = '1.9.22.1'; +$bnc_wptouch_version = '1.9.34'; require_once( 'include/plugin.php' ); require_once( 'include/compat.php' ); define( 'WPTOUCH_PROWL_APPNAME', 'WPtouch'); +define( 'WPTOUCH_ATOM', 1 ); //The WPtouch Settings Defaults global $wptouch_defaults; @@ -56,6 +43,7 @@ $wptouch_defaults = array( 'main_title' => 'Default.png', 'enable-post-excerpts' => true, 'enable-page-coms' => false, + 'enable-zoom' => false, 'enable-cats-button' => true, 'enable-tags-button' => true, 'enable-search-button' => true, @@ -83,6 +71,7 @@ $wptouch_defaults = array( 'style-icon' => 'glossy-icon', 'enable-regular-default' => false, 'excluded-cat-ids' => '', + 'excluded-tag-ids' => '', 'custom-footer-msg' => 'All content Copyright '. get_bloginfo('name') . '', 'home-page' => 0, 'enable-exclusive' => false, @@ -95,7 +84,8 @@ $wptouch_defaults = array( 'enable-show-tweets' => false, 'enable-gigpress-button' => false, 'enable-flat-icon' => false, - 'wptouch-language' => 'auto' + 'wptouch-language' => 'auto', + 'enable-twenty-eleven-footer' => 0 ); function wptouch_get_plugin_dir_name() { @@ -104,15 +94,18 @@ function wptouch_get_plugin_dir_name() { } function wptouch_delete_icon( $icon ) { - if ( !current_user_can( 'upload_files' ) ) { - // don't allow users to delete who don't have access to upload (security feature) + if ( !current_user_can( 'manage_options' ) ) { + // don't allow users non administrators to delete files (security check) return; } $dir = explode( 'wptouch', $icon ); $loc = compat_get_upload_dir() . "/wptouch/" . ltrim( $dir[1], '/' ); - unlink( $loc ); + $real_location = realpath( $loc ); + if ( strpos( $real_location, WP_CONTENT_DIR ) !== false ) { + unlink( $loc ); + } } add_action( 'wptouch_load_locale', 'load_wptouch_languages' ); @@ -143,9 +136,14 @@ function load_wptouch_languages() { function wptouch_init() { if ( isset( $_GET['delete_icon'] ) ) { - wptouch_delete_icon( $_GET['delete_icon'] ); - header( 'Location: ' . get_bloginfo('wpurl') . '/wp-admin/options-general.php?page=wptouch/wptouch.php#available_icons' ); - die; + $nonce = $_GET['nonce']; + if ( !wp_verify_nonce( $nonce, 'wptouch_delete_nonce' ) ) { + die( 'Security Failure' ); + } else { + wptouch_delete_icon( $_GET['delete_icon'] ); + header( 'Location: ' . get_bloginfo('wpurl') . '/wp-admin/options-general.php?page=wptouch/wptouch.php#available_icons' ); + die; + } } if ( !is_admin() ) { @@ -182,8 +180,6 @@ function wptouch_content_filter( $content ) { } } - add_filter('init', 'wptouch_init'); - // Version number for the admin header, footer function WPtouch($before = '', $after = '') { global $bnc_wptouch_version; @@ -203,16 +199,16 @@ function wp_touch_get_comment_count() { } } -// WPtouch WP Thumbnail Support + // WPtouch WP Thumbnail Support if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9 - add_theme_support( 'post-thumbnails'); // Add it for posts + add_theme_support( 'post-thumbnails' ); // Add it for posts } //Add a link to 'Settings' on the plugin listings page function wptouch_settings_link( $links, $file ) { if( $file == 'wptouch/wptouch.php' && function_exists( "admin_url" ) ) { $settings_link = '<a href="' . admin_url( 'options-general.php?page=wptouch/wptouch.php' ) . '">' . __('Settings') . '</a>'; - array_unshift( $links, $settings_link ); // before the other links + array_push( $links, $settings_link ); // after other links } return $links; } @@ -257,23 +253,34 @@ function wptouch_ajax_handler() { add_action( 'init', 'wptouch_ajax_handler' ); +function bnc_wptouch_get_exclude_user_agents() { + $user_agents = array( + 'SCH-I800', + 'Xoom' + ); + + return apply_filters( 'wptouch_exclude_user_agents', $user_agents ); +} + function bnc_wptouch_get_user_agents() { $useragents = array( - "iPhone", // Apple iPhone - "iPod", // Apple iPod touch - "Android", // 1.5+ Android - "dream", // Pre 1.5 Android - "CUPCAKE", // 1.5+ Android - "blackberry9500", // Storm - "blackberry9530", // Storm - "blackberry9520", // Storm v2 - "blackberry9550", // Storm v2 - "blackberry 9800", // Torch - "webOS", // Palm Pre Experimental - "incognito", // Other iPhone browser - "webmate", // Other iPhone browser - "s8000", // Samsung Dolphin browser - "bada" // Samsung Dolphin browser + "iPhone", // Apple iPhone + "iPod", // Apple iPod touch + "incognito", // Other iPhone browser + "webmate", // Other iPhone browser + "Android", // 1.5+ Android + "dream", // Pre 1.5 Android + "CUPCAKE", // 1.5+ Android + "blackberry9500", // Storm + "blackberry9530", // Storm + "blackberry9520", // Storm v2 + "blackberry9550", // Storm v2 + "blackberry 9800", // Torch + "webOS", // Palm Pre Experimental + "s8000", // Samsung Dolphin browser + "bada", // Samsung Dolphin browser + "Googlebot-Mobile" // the Google mobile crawler + ); $settings = bnc_wptouch_get_settings(); @@ -324,7 +331,7 @@ class WPtouchPlugin { // Don't change the template directory when in the admin panel add_action( 'plugins_loaded', array(&$this, 'detectAppleMobile') ); - if ( strpos( $_SERVER['REQUEST_URI'], '/wp-admin' ) === false ) { + if ( !is_admin() ) { add_filter( 'stylesheet', array(&$this, 'get_stylesheet') ); add_filter( 'theme_root', array(&$this, 'theme_root') ); add_filter( 'theme_root_uri', array(&$this, 'theme_root_uri') ); @@ -348,6 +355,16 @@ class WPtouchPlugin { return $msg; } + function wptouch_output_supports_in_footer( $content ) { + $mobile_string = sprintf( __( 'Mobile site by %s', 'wptouch' ), '<a href="http://www.bravenewcode.com/wptouch" title="Mobile iPhone and iPad Plugin for WordPress">WPtouch</a>' ); + $content = str_replace( 'WordPress</a>', 'WordPress</a><br />' . $mobile_string, $content ); + return $content; + } + + function wptouch_show_supports_in_footer() { + ob_start( array( &$this, 'wptouch_output_supports_in_footer' ) ); + } + function wptouch_send_prowl_message( $title, $message ) { require_once( 'include/class.prowl.php' ); @@ -490,36 +507,64 @@ class WPtouchPlugin { function bnc_filter_iphone() { $key = 'wptouch_switch_toggle'; - $time = time()+60*60*24*365; + $time = time()+60*60*24*365; // one year $url_path = '/'; - if (isset($_GET['wptouch_view'])) { - if ($_GET['wptouch_view'] == 'mobile') { - setcookie($key, 'mobile', $time, $url_path); - } elseif ($_GET['wptouch_view'] == 'normal') { - setcookie($key, 'normal', $time, $url_path); + if ( isset( $_GET[ 'wptouch_view'] ) ) { + if ( $_GET[ 'wptouch_view' ] == 'mobile' ) { + setcookie( $key, 'mobile', $time, $url_path ); + } elseif ( $_GET[ 'wptouch_view' ] == 'normal') { + setcookie( $key, 'normal', $time, $url_path ); } if ( isset( $_GET['wptouch_redirect'] ) ) { - $protocol = ($_SERVER['HTTPS'] == 'on') ? 'https://' : 'http://'; - $redirect_location = $protocol . $_SERVER['HTTP_HOST'] . $_GET['wptouch_redirect']; - } + if ( isset( $_GET['wptouch_redirect_nonce'] ) ) { + $nonce = $_GET['wptouch_redirect_nonce']; + if ( !wp_verify_nonce( $nonce, 'wptouch_redirect' ) ) { + _e( 'Nonce failure', 'wptouch' ); + die; + } + + $protocol = ( $_SERVER['HTTPS'] == 'on') ? 'https://' : 'http://'; + $redirect_location = $protocol . $_SERVER['SERVER_NAME'] . $_GET['wptouch_redirect']; - header( 'Location: ' . $redirect_location ); - die; + header( 'Location: ' . $redirect_location ); + die; + } + } } $settings = bnc_wptouch_get_settings(); if (isset($_COOKIE[$key])) { $this->desired_view = $_COOKIE[$key]; } else { - if ( $settings['enable-regular-default'] ) { + if ( $settings['enable-regular-default'] || defined( 'XMLRPC_REQUEST' ) || defined( 'APP_REQUEST' ) ) { $this->desired_view = 'normal'; } else { $this->desired_view = 'mobile'; } + } + + if ( isset( $settings['enable-twenty-eleven-footer'] ) && $settings['enable-twenty-eleven-footer'] ) { + if ( function_exists( 'twentyeleven_setup' ) ) { + add_action( 'twentyeleven_credits', array( &$this, 'handle_footer' ) ); + } else if ( function_exists( 'twentyten_setup' ) ) { + add_action( 'twentyten_credits', array( &$this, 'handle_footer' ) ); + } } } + + function handle_footer() { + ob_start( array( &$this, 'handle_footer_done') ); + } + + function handle_footer_done( $content ) { + if ( function_exists( 'twentyeleven_setup' ) ) { + return str_replace( "WordPress</a>", "WordPress</a> <a href='http://www.wordpress.org/extend/plugins/wptouch'>" . sprintf( __( 'and %s', 'wptouch' ), "WPtouch" ) . "</a>", $content ); + } else if ( function_exists( 'twentyten_setup' ) ) { + return str_replace( "WordPress. </a>", "WordPress</a> <a style='background-image: none;' href='http://www.wordpress.org/extend/plugins/wptouch'>" . sprintf( __( 'and %s', 'wptouch' ), "WPtouch" ) . "</a>", $content ); + } + } function detectAppleMobile($query = '') { $container = $_SERVER['HTTP_USER_AGENT']; @@ -527,11 +572,24 @@ class WPtouchPlugin { // print_r($container); $this->applemobile = false; $useragents = bnc_wptouch_get_user_agents(); + $exclude_agents = bnc_wptouch_get_exclude_user_agents(); $devfile = compat_get_plugin_dir( 'wptouch' ) . '/include/developer.mode'; + foreach ( $useragents as $useragent ) { if ( preg_match( "#$useragent#i", $container ) || file_exists( $devfile ) ) { $this->applemobile = true; + break; } + + } + + if ( $this->applemobile && !file_exists( $devfile ) ) { + foreach( $exclude_agents as $agent ) { + if ( preg_match( "#$agent#i", $container ) ) { + $this->applemobile = false; + break; + } + } } } @@ -602,13 +660,13 @@ function wptouch_switch() { if ( bnc_is_iphone() && $wptouch_plugin->desired_view == 'normal' ) { echo '<div id="wptouch-switch-link">'; _e( "Mobile Theme", "wptouch" ); - echo "<a onclick=\"document.getElementById('switch-on').style.display='block';document.getElementById('switch-off').style.display='none';\" href=\"" . get_bloginfo('url') . "/?wptouch_view=mobile&wptouch_redirect=" . $_SERVER['REQUEST_URI'] . "\"><img id=\"switch-on\" src=\"" . compat_get_plugin_url( 'wptouch' ) . "/themes/core/core-images/on.jpg\" alt=\"on switch image\" class=\"wptouch-switch-image\" style=\"display:none\" /><img id=\"switch-off\" src=\"" . compat_get_plugin_url( 'wptouch' ) . "/themes/core/core-images/off.jpg\" alt=\"off switch image\" class=\"wptouch-switch-image\" /></a>"; + echo "<a onclick=\"document.getElementById('switch-on').style.display='block';document.getElementById('switch-off').style.display='none';\" href=\"" . get_bloginfo('url') . "/?wptouch_view=mobile&wptouch_redirect_nonce=" . wp_create_nonce( 'wptouch_redirect' ) . "&wptouch_redirect=" . $_SERVER['REQUEST_URI'] . "\"><img id=\"switch-on\" src=\"" . compat_get_plugin_url( 'wptouch' ) . "/themes/core/core-images/on.jpg\" alt=\"on switch image\" class=\"wptouch-switch-image\" style=\"display:none\" /><img id=\"switch-off\" src=\"" . compat_get_plugin_url( 'wptouch' ) . "/themes/core/core-images/off.jpg\" alt=\"off switch image\" class=\"wptouch-switch-image\" /></a>"; echo '</div>'; } } function bnc_options_menu() { - add_options_page( __( 'WPtouch iPhone Theme', 'wptouch' ), 'WPtouch', 9, __FILE__, 'bnc_wp_touch_page' ); + add_options_page( __( 'WPtouch Options', 'wptouch' ), 'WPtouch', 'manage_options', __FILE__, 'bnc_wp_touch_page' ); } function bnc_wptouch_get_settings() { @@ -684,6 +742,11 @@ function wptouch_excluded_cats() { return stripslashes($settings['excluded-cat-ids']); } +function wptouch_excluded_tags() { + $settings = bnc_wptouch_get_settings(); + return stripslashes($settings['excluded-tag-ids']); +} + function wptouch_custom_footer_msg() { $settings = bnc_wptouch_get_settings(); return stripslashes($settings['custom-footer-msg']); @@ -699,6 +762,11 @@ function bnc_is_page_coms_enabled() { return $ids['enable-page-coms']; } +function bnc_is_zoom_enabled() { + $ids = bnc_wp_touch_get_menu_pages(); + return $ids['enable-zoom']; +} + function bnc_is_cats_button_enabled() { $ids = bnc_wp_touch_get_menu_pages(); return $ids['enable-cats-button']; @@ -816,11 +884,12 @@ function bnc_wp_touch_get_pages() { $results = false; if ( count( $keys ) > 0 ) { - $query = "select * from {$table_prefix}posts where ID in (" . implode(',', $keys) . ") and post_status = 'publish' order by post_title asc"; + $query = "SELECT * from {$table_prefix}posts where ID in (" . implode(',', $keys) . ") and post_status = 'publish' order by post_title asc"; $results = $wpdb->get_results( $query, ARRAY_A ); } if ( $results ) { + $inc = 0; foreach ( $results as $row ) { $row['icon'] = $ids[$row['ID']]; $a[$row['ID']] = $row; @@ -834,13 +903,44 @@ function bnc_wp_touch_get_pages() { } if (isset($ids['sort-order']) && $ids['sort-order'] == 'page') { - asort($menu_order); return $menu_order; } else { return $a; } } +function bnc_the_page_icon() { + $settings = bnc_wp_touch_get_menu_pages(); + + $mypages = bnc_wp_touch_get_pages(); + $icon_name = false; + if ( isset( $settings['sort-order'] ) && $settings['sort-order'] == 'page' ) { + global $post; + foreach( $mypages as $key => $page ) { + if ( $page['ID'] == $post->ID ) { + $icon_name = $page['icon']; + break; + } + } + } else { + if ( isset( $mypages[ get_the_ID() ]) ) { + $icon_name = $mypages[ get_the_ID() ]['icon']; + } + } + + if ( $icon_name ) { + if ( file_exists( compat_get_plugin_dir( 'wptouch' ) . '/images/icon-pool/' . $icon_name ) ) { + $image = compat_get_plugin_url( 'wptouch' ) . '/images/icon-pool/' . $icon_name; + } else { + $image = compat_get_upload_url() . '/wptouch/custom-icons/' . $icon_name; + } + + echo( '<img class="pageicon" src="' . $image . '" alt="icon" />' ); + } else { + echo( '<img class="pageicon" src="' . compat_get_plugin_url( 'wptouch' ) . '/images/icon-pool/Default.png" alt="pageicon" />'); + } +} + function bnc_get_header_title() { $v = bnc_wp_touch_get_menu_pages(); return $v['header-title']; @@ -934,17 +1034,19 @@ function bnc_wp_touch_page() { </form> <form method="post" action=""> - <input type="submit" onclick="return confirm('<?php _e('Restore default WPtouch settings?', 'wptouch' ); ?>');" name="reset" value="<?php _e('Restore Defaults', 'wptouch' ); ?>" id="bnc-button-reset" class="button-highlighted" /> + <input type="submit" onclick="return confirm('<?php _e( 'Restore default WPtouch settings?', 'wptouch' ); ?>');" name="reset" value="<?php _e('Restore Defaults', 'wptouch' ); ?>" id="bnc-button-reset" class="button-highlighted" /> </form> - <?php echo('' . WPtouch('<div class="bnc-plugin-version"> This is ','</div>') . ''); ?> + <?php // echo( '' . WPtouch( '<div class="bnc-plugin-version"> This is ','</div>' ) . '' ); ?> <div class="bnc-clearer"></div> </div> <?php -echo('</div>'); } -add_action('wp_footer', 'wptouch_switch'); -add_action( 'admin_init', 'wptouch_admin_enqueue_files' ); -add_action( 'admin_head', 'wptouch_admin_files' ); -add_action('admin_menu', 'bnc_options_menu'); +echo('</div>'); } + +add_filter( 'init', 'wptouch_init' ); +add_action( 'wp_footer', 'wptouch_switch' ); +add_action( 'admin_init', 'wptouch_admin_enqueue_files' ); +add_action( 'admin_head', 'wptouch_admin_files' ); +add_action( 'admin_menu', 'bnc_options_menu' ); add_filter( 'plugin_action_links', 'wptouch_settings_link', 9, 2 );