' . $contributor_name . $contributor_username . '
' ); + + // Build the link + $contributor_link = '' . $contributor_gravatar . $contributor_text . ''; + + /** + * Filters contributor link. + * + * @since 1.0.0 + * + * @param string $contributor_link Contributor link markup. + * @param string $contributor_url Contributor wp.org profile URL. + * @param string $contributor_gravatar Contributor gravatar markup. + * @param string $contributor_text Contributor wp.org display_name and username. + */ + $contributor_link = apply_filters( 'helphub_contributors_contributor_link', $contributor_link, $contributor_url, $contributor_gravatar, $contributor_text ); + + $contributor_item = '' . sprintf( __( '%s is not a valid username.', 'wporg-forums' ), '' . $contributor . '' ) . '
' . esc_html__( 'Contributors', 'wporg-forums' ) . '
'; + $contributors_list = '- '.
+ */
+ $contributors_markup = apply_filters( 'helphub_contributors', $contributors_markup, $contributors_heading, $contributors_list, $contributors_items );
+
+ endif; // is_array( $contributors ) && ! empty( $contributors )
+
+ endif; // is_array( $meta ) && ! empty( $meta )
+
+ $output = $content . $contributors_markup;
+
+ /**
+ * Filters complete output, post content and contributors markup.
+ *
+ * @since 1.0.0
+ *
+ * @param string $output Complete output, post content and contributors markup.
+ * @param string $content Post content, accessed via 'the_content' filter.
+ * @param string $contributors_markup Contributors markup, appened to post content.
+ */
+ return apply_filters( 'helphub_contributors_output', $output, $content, $contributors_markup );
+ }
+}
diff --git a/plugins/support-helphub/inc/helphub-contributors/public/index.php b/plugins/support-helphub/inc/helphub-contributors/public/index.php
new file mode 100644
index 00000000..8142269b
--- /dev/null
+++ b/plugins/support-helphub/inc/helphub-contributors/public/index.php
@@ -0,0 +1 @@
+ div {
+ display: inline-block;
+ width: 100%;
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
+ border-radius: 3px;
+ margin-bottom: 20px;
+ vertical-align: middle;
+
+ @media (min-width: 690px) {
+ width: 70%;
+ }
+
+ @media (min-width: 768px) {
+ width: 48%;
+ }
+
+ &:nth-child(2n+2) {
+
+ @media (min-width: 768px) {
+ float: right;
+ }
+ }
+ }
+}
diff --git a/plugins/support-helphub/inc/helphub-contributors/uninstall.php b/plugins/support-helphub/inc/helphub-contributors/uninstall.php
new file mode 100644
index 00000000..b0cc42b0
--- /dev/null
+++ b/plugins/support-helphub/inc/helphub-contributors/uninstall.php
@@ -0,0 +1,15 @@
+_version = $version;
+ $this->_token = 'helphub_custom_roles';
+
+ $this->file = $file;
+ $this->dir = dirname( $this->file );
+
+ $this->add_helphub_customrole();
+
+ add_action( 'admin_init', array( $this, 'hh_restrict_admin_pages' ), 0 );
+
+ add_action( 'admin_menu', array( $this, 'hh_hide_thememenu' ), 0 );
+
+ } // End __construct ()
+
+ /**
+ * This will add restriction to the custom rule.
+ */
+ public function hh_restrict_admin_pages() {
+
+ if ( $this->check_ifhelphub_editor() ) {
+ global $pagenow;
+ $restricted_pages = array(
+ 'themes.php',
+ );
+ if ( in_array( $pagenow, $restricted_pages, true ) ) {
+ wp_safe_redirect( admin_url( '/' ) );
+ exit;
+ }
+ }
+ }
+
+ /**
+ * This will hide the themes.php under Appearances if using a custom HelpHub Editor.
+ */
+ public function hh_hide_thememenu() {
+ if ( $this->check_ifhelphub_editor() ) {
+ remove_submenu_page( 'themes.php', 'themes.php' );
+ }
+ }
+
+ /**
+ * Check if a current user's assigned role is a HelpHub Editor.
+ *
+ * @return boolean returns true if a current user's assigned role is a HelpHub Editor.
+ */
+ public function check_ifhelphub_editor() {
+ $user_roles = wp_get_current_user()->roles;
+ if ( in_array( 'helphub_editor', $user_roles, true ) ) {
+ return true;
+ }
+ return false;
+ }
+
+ /**
+ * Main HelpHub_Custom_Roles Instance
+ *
+ * Ensures only one instance of HelpHub_Custom_Roles is loaded or can be loaded.
+ *
+ * @param string $file Filename of site.
+ * @param string $version Version number.
+ * @since 1.0.0
+ * @static
+ * @see HelpHub_Custom_Roles()
+ * @return Main HelpHub_Custom_Roles instance
+ */
+ public static function instance( $file = '', $version = '1.0.0' ) {
+ if ( is_null( self::$_instance ) ) {
+ self::$_instance = new self( $file, $version );
+ }
+ return self::$_instance;
+ } // End instance ()
+
+ /**
+ * Cloning is forbidden.
+ *
+ * @since 1.0.0
+ */
+ public function __clone() {
+ _doing_it_wrong( __FUNCTION__, esc_html( __( 'Sorry, this is not allowed.', 'wporg-forums' ) ), esc_html( $this->_version ) );
+ } // End __clone ()
+
+ /**
+ * Unserializing instances of this class is forbidden.
+ *
+ * @since 1.0.0
+ */
+ public function __wakeup() {
+ _doing_it_wrong( __FUNCTION__, esc_html( __( 'Sorry, this is not allowed.', 'wporg-forums' ) ), esc_html( $this->_version ) );
+ } // End __wakeup ()
+
+ /**
+ * Log the plugin version number.
+ *
+ * @access public
+ * @since 1.0.0
+ * @return void
+ */
+ private function _log_version_number() {
+ update_option( $this->_token . '_version', $this->_version );
+ } // End _log_version_number ()
+
+ /**
+ * Adds a HelpHub custom role.
+ */
+ public function add_helphub_customrole() {
+
+ // Load users library.
+ if ( ! function_exists( 'get_editable_roles' ) ) {
+ require_once ABSPATH . 'wp-admin/includes/user.php';
+ }
+ get_editable_roles();
+ $role = 'helphub_editor';
+
+ // Check if the custom role is already added.
+ global $wp_roles;
+ $default_editorroles = $wp_roles->get_role( 'editor' );
+ if ( empty( $GLOBALS['wp_roles']->is_role( $role ) ) ) {
+ $wp_roles->add_role( $role, __( 'HelpHub Editor', 'wporg-forums' ), $default_editorroles->capabilities );
+
+ $wp_roles->add_cap( $role, 'edit_theme_options' );
+ }
+ }
+}
+
+/**
+ * Returns the main instance of HelpHub_Custom_Roles to prevent the need to use globals.
+ *
+ * @since 1.0.0
+ * @return object HelpHub_Custom_Roles
+ */
+function helphub_custom_roles() {
+ $instance = HelpHub_Custom_Roles::instance( __FILE__, '1.0.0' );
+ return $instance;
+}
+
+helphub_custom_roles();
diff --git a/plugins/helphub-post-types/index.php b/plugins/support-helphub/inc/helphub-customroles/index.php
similarity index 100%
rename from plugins/helphub-post-types/index.php
rename to plugins/support-helphub/inc/helphub-customroles/index.php
diff --git a/plugins/support-helphub/inc/helphub-front-page-blocks/helphub-front-page-blocks.php b/plugins/support-helphub/inc/helphub-front-page-blocks/helphub-front-page-blocks.php
new file mode 100644
index 00000000..fc8b1dd8
--- /dev/null
+++ b/plugins/support-helphub/inc/helphub-front-page-blocks/helphub-front-page-blocks.php
@@ -0,0 +1,19 @@
+ 'helphub-front-page-block',
+ 'description' => __( 'Add a link block to support pages', 'wporg-forums' ),
+ );
+
+ parent::__construct( 'helphub_front_page_block', __( '(HelpHub) Link block', 'wporg-forums' ), $widget_options );
+ }
+
+ /**
+ * Output the widget on the front end.
+ *
+ * @param array $args The widget arguments, passed on from the themes widget area.
+ * @param array $instance This individual widgets settings.
+ *
+ * @return void
+ */
+ public function widget( $args, $instance ) {
+ include( dirname( __FILE__ ) . '/widget-front-end.php' );
+ }
+
+ /**
+ * Generate the widget settings.
+ *
+ * @param array $instance The widget instance and arguments.
+ *
+ * @return void
+ */
+ public function form( $instance ) {
+ include( dirname( __FILE__ ) . '/widget-back-end.php' );
+ }
+
+ /**
+ * Save the widget settings from the admin.
+ *
+ * @param array $new_instance The old widget instance, for comparison.
+ * @param array $old_instance The new widget instance, to be saved.
+ *
+ * @return array
+ */
+ public function update( $new_instance, $old_instance ) {
+ $save_instance = array();
+
+ $save_instance['icon'] = ( ! empty( $new_instance['icon'] ) ? strip_tags( $new_instance['icon'] ) : '' );
+ $save_instance['title'] = ( ! empty( $new_instance['title'] ) ? strip_tags( $new_instance['title'] ) : '' );
+ $save_instance['description'] = ( ! empty( $new_instance['description'] ) ? strip_tags( $new_instance['description'] ) : '' );
+ $save_instance['categoryid'] = ( ! empty( $new_instance['categoryid'] ) ? strip_tags( $new_instance['categoryid'] ) : '' );
+ $save_instance['menu'] = ( ! empty( $new_instance['menu'] ) ? strip_tags( $new_instance['menu'] ) : '' );
+
+ return $save_instance;
+ }
+}
diff --git a/plugins/support-helphub/inc/helphub-front-page-blocks/includes/widget-back-end.php b/plugins/support-helphub/inc/helphub-front-page-blocks/includes/widget-back-end.php
new file mode 100644
index 00000000..3602fa1a
--- /dev/null
+++ b/plugins/support-helphub/inc/helphub-front-page-blocks/includes/widget-back-end.php
@@ -0,0 +1,71 @@
+
+
+
- × ' + + '
- %2s', sanitize_title_with_dashes( $item[3] ), $item[3] ); + $toc .= sprintf( '
- %2s', sanitize_title_with_dashes( remove_accents( $item[3] ) ), $item[3] ); } - $toc = sprintf( '%s
+ + +
+ ++ + +
+ ++ + +
+ ++ + +
+ ++ + +
diff --git a/plugins/support-helphub/inc/helphub-front-page-blocks/includes/widget-front-end.php b/plugins/support-helphub/inc/helphub-front-page-blocks/includes/widget-front-end.php new file mode 100644 index 00000000..31217fe5 --- /dev/null +++ b/plugins/support-helphub/inc/helphub-front-page-blocks/includes/widget-front-end.php @@ -0,0 +1,42 @@ + + + +- ' +
+ '
' . $v['description'] . '
' . "\n"; } @@ -344,7 +390,7 @@ public function meta_box_content_render( $field_data ) { break; case 'textarea': $field = ''; - $html .= '' . $v['description'] . '
' . "\n"; } @@ -352,10 +398,15 @@ public function meta_box_content_render( $field_data ) { break; case 'editor': ob_start(); - wp_editor( $data, $k, array( 'media_buttons' => false, 'textarea_rows' => 10 ) ); + wp_editor( + $data, $k, array( + 'media_buttons' => false, + 'textarea_rows' => 10, + ) + ); $field = ob_get_contents(); ob_end_clean(); - $html .= '' . $v['description'] . '
' . "\n"; } @@ -373,9 +424,9 @@ public function meta_box_content_render( $field_data ) { $data_atts .= sprintf( 'data-library="%s" ', esc_attr( $v['media-frame']['library'] ) ); } - $field = ''; - $field .= ''; - $html .= '' . $v['description'] . '
' . "\n"; } @@ -388,7 +439,7 @@ public function meta_box_content_render( $field_data ) { $field .= '' . "\n"; } } - $html .= '' . $v['description'] . '
' . "\n"; } @@ -399,17 +450,17 @@ public function meta_box_content_render( $field_data ) { if ( isset( $v['description'] ) ) { $field .= '' . $v['description'] . '
' . "\n"; } - $html .= '' . $v['description'] . '
' . "\n"; } @@ -423,7 +474,7 @@ public function meta_box_content_render( $field_data ) { } } $field .= '' . "\n"; - $html .= '' . $v['description'] . '
' . "\n"; } @@ -434,7 +485,7 @@ public function meta_box_content_render( $field_data ) { $data = time(); } $field = ''; - $html .= '' . $v['description'] . '
' . "\n"; } @@ -443,21 +494,22 @@ public function meta_box_content_render( $field_data ) { default: $field = apply_filters( 'helphub_data_field_type_' . $v['type'], null, $k, $data, $v ); if ( $field ) { - $html .= '' . $v['description'] . '
' . "\n"; } $html .= '' . __( 'Topics', 'wporg-forums' ) . '
'; + $toc .= '- ';
+ $last_item = false;
foreach ( $items as $item ) {
+ $last_item = $item[2];
if ( $last_item ) {
if ( $last_item < $item[2] ) {
- $toc = sprintf( '%s
- ', $toc );
+ $toc .= '
- ';
} elseif ( $last_item > $item[2] ) {
- $toc = sprintf( '%s
' . __( 'Top ↑', 'table-of-contents-lite' ) . '
'; + $replacement .= '' . __( 'Top ↑', 'wporg-forums' ) . '
'; } else { $first = false; } $a11y_text = sprintf( '%s', $item[2] ); - $anchor = sprintf( '%2$s', $id, $a11y_text ); + $hash = __( '', 'wporg-forums' ); + $anchor = sprintf( '%2$s %3$s', $id, $hash, $a11y_text ); $replacement .= sprintf( '<%1$s class="toc-heading" id="%2$s" tabindex="-1">%3$s %4$s%1$s>', $tag, $id, $item[2], $anchor ); $replacements[] = $replacement; } diff --git a/plugins/support-helphub/inc/table-of-contents-lite/index.php b/plugins/support-helphub/inc/table-of-contents-lite/index.php new file mode 100644 index 00000000..80327027 --- /dev/null +++ b/plugins/support-helphub/inc/table-of-contents-lite/index.php @@ -0,0 +1,5 @@ +\n" -"Language-Team: LANGUAGE<pre> "
-"tags rather than shortcodes)If left " -"unchecked (default), then language files will only be loaded when needed
If unsure, leave this box unchecked" -msgstr "" - -#: syntaxhighlighter.php:1048 -msgid "Defaults" -msgstr "" - -#: syntaxhighlighter.php:1050 -msgid "" -"All of the settings below can be configured on a per-code block basis, but " -"you can control the defaults of all code blocks here." -msgstr "" - -#: syntaxhighlighter.php:1054 syntaxhighlighter.php:1057 -msgid "Miscellaneous" -msgstr "" - -#: syntaxhighlighter.php:1059 -msgid "Display line numbers" -msgstr "" - -#: syntaxhighlighter.php:1060 -msgid "Display the toolbar" -msgstr "" - -#: syntaxhighlighter.php:1061 -msgid "Automatically make URLs clickable" -msgstr "" - -#: syntaxhighlighter.php:1062 -msgid "Collapse code boxes" -msgstr "" - -#: syntaxhighlighter.php:1063 -msgid "Use the light display mode, best for single lines of code" -msgstr "" - -#: syntaxhighlighter.php:1064 -msgid "Use smart tabs allowing tabs being used for alignment" -msgstr "" - -#: syntaxhighlighter.php:1065 -msgid "" -"Wrap long lines (v2.x only, disabling this will make a scrollbar show " -"instead)" -msgstr "" - -#: syntaxhighlighter.php:1066 -msgid "" -"Enable "HTML script" mode by default (see the bottom of this page " -"for details). Checking this box is not recommended as this mode only works " -"with certain languages." -msgstr "" - -#: syntaxhighlighter.php:1071 -msgid "Additional CSS Class(es)" -msgstr "" - -#: syntaxhighlighter.php:1075 -msgid "Starting Line Number" -msgstr "" - -#: syntaxhighlighter.php:1079 -msgid "Line Number Padding" -msgstr "" - -#: syntaxhighlighter.php:1084 -msgid "Off" -msgstr "" - -#: syntaxhighlighter.php:1085 -msgid "Automatic" -msgstr "" - -#: syntaxhighlighter.php:1101 -msgid "Tab Size" -msgstr "" - -#: syntaxhighlighter.php:1105 -msgid "Title" -msgstr "" - -#: syntaxhighlighter.php:1108 -msgid "" -"Some optional default text to display above each code block or as the " -"clickable text for collapsed code blocks." -msgstr "" - -#: syntaxhighlighter.php:1118 syntaxhighlighter.php:1121 -msgid "Reset to Defaults" -msgstr "" - -#: syntaxhighlighter.php:1120 -msgid "Save Changes" -msgstr "" - -#: syntaxhighlighter.php:1128 -msgid "Preview" -msgstr "" - -#: syntaxhighlighter.php:1130 -msgid "Click "Save Changes" to update this preview." -msgstr "" - -#: syntaxhighlighter.php:1149 -msgid "PHP Code Example" -msgstr "" - -#: syntaxhighlighter.php:1151 -msgid "Hello World!" -msgstr "" - -#: syntaxhighlighter.php:1153 -msgid "This line is highlighted." -msgstr "" - -#: syntaxhighlighter.php:1156 -msgid "" -"\t\tThis\tis\tan\r\n" -"\t\texample\tof\tsmart\r\n" -"\t\ttabs." -msgstr "" - -#: syntaxhighlighter.php:1161 -msgid "WordPress" -msgstr "" - -#: syntaxhighlighter.php:1172 -msgid "Shortcode Parameters" -msgstr "" - -#: syntaxhighlighter.php:1174 -msgid "" -"These are the parameters you can pass to the shortcode and what they do. For " -"the booleans (i.e. on/off), pass %1$s/%2$s or %3$s/%4$s." -msgstr "" - -#: syntaxhighlighter.php:1177 -msgctxt "language parameter" -msgid "" -"%1$s or %2$s — The language syntax to highlight with. You can " -"alternately just use that as the tag, such as
[php]code[/php]. "
-"Click here for a list of valid tags (under ""
-"aliases")."
-msgstr ""
-
-#: syntaxhighlighter.php:1178
-msgctxt "autolinks parameter"
-msgid "%s — Toggle automatic URL linking."
-msgstr ""
-
-#: syntaxhighlighter.php:1179
-msgctxt "classname parameter"
-msgid "%s — Add an additional CSS class to the code box."
-msgstr ""
-
-#: syntaxhighlighter.php:1180
-msgctxt "collapse parameter"
-msgid ""
-"%s — Toggle collapsing the code box by default, requiring a click to "
-"expand it. Good for large code posts."
-msgstr ""
-
-#: syntaxhighlighter.php:1181
-msgctxt "firstline parameter"
-msgid ""
-"%s — An interger specifying what number the first line should be (for "
-"the line numbering)."
-msgstr ""
-
-#: syntaxhighlighter.php:1182
-msgctxt "gutter parameter"
-msgid "%s — Toggle the left-side line numbering."
-msgstr ""
-
-#: syntaxhighlighter.php:1183
-msgctxt "highlight parameter"
-msgid ""
-"%1$s — A comma-separated list of line numbers to highlight. You can "
-"also specify a range. Example: %2$s"
-msgstr ""
-
-#: syntaxhighlighter.php:1184
-msgctxt "htmlscript parameter"
-msgid ""
-"%s — Toggle highlighting any extra HTML/XML. Good for when you're "
-"mixing HTML/XML with another language, such as having PHP inside an HTML web "
-"page. The above preview has it enabled for example. This only works with "
-"certain languages."
-msgstr ""
-
-#: syntaxhighlighter.php:1185
-msgctxt "light parameter"
-msgid ""
-"%s — Toggle light mode which disables the gutter and toolbar all at "
-"once."
-msgstr ""
-
-#: syntaxhighlighter.php:1186
-msgctxt "padlinenumbers parameter"
-msgid ""
-"%s — Controls line number padding. Valid values are false "
-"(no padding), true (automatic padding), or an integer (forced "
-"padding)."
-msgstr ""
-
-#: syntaxhighlighter.php:1187
-msgctxt "title parameter"
-msgid ""
-"%1$s (v3 only) — Sets some text to show up before the code. Very "
-"useful when combined with the %2$s parameter."
-msgstr ""
-
-#: syntaxhighlighter.php:1188
-msgctxt "toolbar parameter"
-msgid ""
-"%s — Toggle the toolbar (buttons in v2, the about question mark in v3)"
-msgstr ""
-
-#: syntaxhighlighter.php:1189
-msgctxt "wraplines parameter"
-msgid "%s (v2 only) — Toggle line wrapping."
-msgstr ""
-
-#: syntaxhighlighter.php:1192
-msgid "Some example shortcodes:"
-msgstr ""
-
-#: syntaxhighlighter.php:1195 syntaxhighlighter.php:1196
-#: syntaxhighlighter.php:1197 syntaxhighlighter.php:1198
-msgid "your code here"
-msgstr ""
-
-#: syntaxhighlighter.php:1196
-msgid "example-filename.php"
-msgstr ""
-
-#. Plugin Name of the plugin/theme
-msgid "SyntaxHighlighter Evolved"
-msgstr ""
-
-#. Plugin URI of the plugin/theme
-msgid "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-msgstr ""
-
-#. Description of the plugin/theme
-msgid ""
-"Easily post syntax-highlighted code to your site without having to modify "
-"the code at all. Uses Alex Gorbatchev's SyntaxHighlighter. TIP: Don't "
-"use the Visual editor if you don't want your code mangled. TinyMCE will "
-"\"clean up\" your HTML."
-msgstr ""
-
-#. Author of the plugin/theme
-msgid "Alex Mills (Viper007Bond)"
-msgstr ""
-
-#. Author URI of the plugin/theme
-msgid "http://www.viper007bond.com/"
-msgstr ""
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.mo b/plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.mo
deleted file mode 100644
index 6492fcd6..00000000
Binary files a/plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.mo and /dev/null differ
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.po b/plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.po
deleted file mode 100644
index 36f01329..00000000
--- a/plugins/syntaxhighlighter/localization/syntaxhighlighter-da_DK.po
+++ /dev/null
@@ -1,312 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: Syntax Highlighter 2.3.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-09 08:02+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Team Blogos [php]code[/php]. Click here for a list of valid tags (under "aliases")."
-msgstr "%1$s eller %2$s — Sprogsyntaksen til at fremhæve med. Alternativt kan du bruge dem som tags, så som [php]code[/php]. Klik her, hvis du vil se en liste med gyldige tags (under "aliasser")."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:975
-#, php-format
-msgid "%s — Toggle automatic URL linking."
-msgstr "%s — Slår automatisk URL-linkning til/fra."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:976
-#, php-format
-msgid "%s — Add an additional CSS class to the code box."
-msgstr "%s — Tilføjer en ekstra CSS-class til kode-boksen."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:977
-#, php-format
-msgid "%s — Toggle collapsing the code box by default, requiring a click to expand it. Good for large code posts."
-msgstr "%s — Som standard skjules koden i kodeboksen, så der skal klikkes for at vise koden. Nyttigt til indlæg med megen kode."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:978
-#, php-format
-msgid "%s — An interger specifying what number the first line should be (for the line numbering)."
-msgstr "%s — Et heltal, som angiver, hvilken nummer den første linje skal have (til brug for linjenummerering)."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:979
-#, php-format
-msgid "%s — Toggle the left-side line numbering."
-msgstr "%s — Skifter mellem linjenummerering til venstre og til højre."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:980
-#, php-format
-msgid "%s — A comma-sperated list of line numbers to highlight."
-msgstr "%s — En kommasepareret liste med linjenumre, der skal fremhæves."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:981
-#, php-format
-msgid "%s — Toggle highlighting any extra HTML/XML. Good for when you're mixing HTML/XML with another language, such as having PHP inside an HTML web page. The above preview has it enabled for example. This only works with certain languages."
-msgstr "%s — Slår fremhævelse af ekstra HTML/XML til/fra. Det er nyttigt, når du bruger HTML/XML sammen med et andet sprog, som f.eks. hvis du har PHP på en HTML-webside. Eksempelvis har ovenstående forhåndsvisning det aktiveret. Funktionen virker kun med visse sprog."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:982
-#, php-format
-msgid "%s — Toggle light mode which disables the gutter and toolbar all at once."
-msgstr "%s — Slår \"bar fremvisning\" til/fra, hvilket skjuler \"afløbsrenden\" og værktøjslinjen med det samme."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:983
-#, php-format
-msgid "%s — Controls line number padding. Valid values are false (no padding), true (automatic padding), or an integer (forced padding)."
-msgstr "%s — Kontrollerer padding omkring linjenumre. Gyldige værdier er false (inge padding), true (automatisk padding) eller en integer (tvungen padding)."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:984
-#, php-format
-msgid "%s — Toggle the toolbar containing the helpful buttons."
-msgstr "%s — Slår værktøjslinjen med nyttige knapper til/fra."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:985
-#, php-format
-msgid "%s — Toggle line wrapping."
-msgstr "%s — Slår linjedeling til/fra."
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:988
-msgid "Some example shortcodes:"
-msgstr "Nogle eksempler på kortkoder:"
-
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:991
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:992
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:993
-#: d:\wordpress\plugins\syntaxhighlighter/syntaxhighlighter/syntaxhighlighter.php:994
-msgid "your code here"
-msgstr "din kode her"
-
-#~ msgid "expand source"
-#~ msgstr "udvid kode"
-#~ msgid "Show a ruler column along the top of the code box"
-#~ msgstr "Vis en lineal for oven på kodeboksen"
-#~ msgid "%s — Toggle the column ruler at the top of the code box."
-#~ msgstr "%s — Slår kolonnelinealen til/fra i toppen af kodeboksen."
-#~ msgid "Cheatin’ uh?"
-#~ msgstr "Snyder du, hva'?"
-
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.mo b/plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.mo
deleted file mode 100644
index e884b60a..00000000
Binary files a/plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.mo and /dev/null differ
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.po b/plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.po
deleted file mode 100644
index 53902d27..00000000
--- a/plugins/syntaxhighlighter/localization/syntaxhighlighter-de_DE.po
+++ /dev/null
@@ -1,455 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Viper007Bond
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR In Version 3.x können Teile des Quelltextes mit der "
-"Maus markiert und in die Zwischenablage kopiert werden, ohne dass Adobe "
-"Flash benötigt wird.
In Version 2.x können lange Zeilen mittels "
-"Zeilenumbruch angezeigt werden.
<pre> "
-"tags rather than shortcodes)If left " -"unchecked (default), then language files will only be loaded when needed
If unsure, leave this box unchecked" -msgstr "" -"Immer alle Syntax-Dateien laden, um
<pre> Tags anstelle "
-"von Shortcodes verwenden zu können.Wenn diese " -"Option deaktiviert ist, werden die Syntax-Dateien nur bei Bedarf geladen " -"(Voreinstellung). Im Zweifel solltest du diese Option deaktiviert lassen.
" - -#: syntaxhighlighter.php:1040 -msgid "Defaults" -msgstr "Voreinstellungen" - -#: syntaxhighlighter.php:1042 -msgid "" -"All of the settings below can be configured on a per-code block basis, but " -"you can control the defaults of all code blocks here." -msgstr "" -"Alle folgenden Einstellungen können mit den unten beschriebenen Shortcode " -"Parametern pro Quelltext-Block festgelegt werden. Du kannst hier aber die " -"Voreinstellungen für alle Quellcode-Blöcke festlegen." - -#: syntaxhighlighter.php:1046 syntaxhighlighter.php:1049 -msgid "Miscellaneous" -msgstr "Allgemein" - -#: syntaxhighlighter.php:1051 -msgid "Display line numbers" -msgstr "gutter — Zeilennummern anzeigen"
-
-#: syntaxhighlighter.php:1052
-msgid "Display the toolbar"
-msgstr "toolbar — Toolbar anzeigen"
-
-#: syntaxhighlighter.php:1053
-msgid "Automatically make URLs clickable"
-msgstr "autolinks — URLs im Quelltext als Link darstellen"
-
-#: syntaxhighlighter.php:1054
-msgid "Collapse code boxes"
-msgstr "collapse — Quelltext-Block zugeklappt anzeigen"
-
-#: syntaxhighlighter.php:1055
-msgid "Use the light display mode, best for single lines of code"
-msgstr ""
-"light — Keine Zeilennummern und kein Toolbar anzeigen"
-
-#: syntaxhighlighter.php:1056
-msgid "Use smart tabs allowing tabs being used for alignment"
-msgstr "smarttabs — Tabstopps zur Ausrichtung verwenden"
-
-#: syntaxhighlighter.php:1057
-msgid ""
-"Wrap long lines (v2.x only, disabling this will make a scrollbar show "
-"instead)"
-msgstr ""
-"wraplines — Zu lange Zeilen mittels Zeilenumbruch statt "
-"einer Bildlaufleiste darstellen (nur in Version 2.x möglich)"
-
-#: syntaxhighlighter.php:1058
-msgid ""
-"Enable "HTML script" mode by default (see the bottom of this page "
-"for details). Checking this box is not recommended as this mode only works "
-"with certain languages."
-msgstr ""
-"htmlscript — HTML/XML innerhalb des Quelltextes "
-"hervorheben. Es wird nicht empfohlen, diesen Modus als Voreinstellung zu "
-"verwenden, da er nur bei bestimmten Programmiersprachen verfügbar ist."
-
-#: syntaxhighlighter.php:1063
-msgid "Additional CSS Class(es)"
-msgstr "Zusätzliche CSS Klasse(n)"
-
-#: syntaxhighlighter.php:1067
-msgid "Starting Line Number"
-msgstr "Erste Zeilennummer"
-
-#: syntaxhighlighter.php:1071
-msgid "Line Number Padding"
-msgstr "Führende Nullen anzeigen"
-
-#: syntaxhighlighter.php:1076
-msgid "Off"
-msgstr "Keine"
-
-#: syntaxhighlighter.php:1077
-msgid "Automatic"
-msgstr "Automatisch"
-
-#: syntaxhighlighter.php:1093
-msgid "Tab Size"
-msgstr "Tabulatorbreite"
-
-#: syntaxhighlighter.php:1097
-msgid "Title"
-msgstr "Überschrift"
-
-#: syntaxhighlighter.php:1100
-msgid ""
-"Some optional default text to display above each code block or as the "
-"clickable text for collapsed code blocks."
-msgstr ""
-"Überschrift für den Quelltext (nur in Version 3.x " -"möglich)
" - -#: syntaxhighlighter.php:1110 syntaxhighlighter.php:1113 -msgid "Reset to Defaults" -msgstr "Alle Einstellungen zurücksetzen" - -#: syntaxhighlighter.php:1112 -msgid "Save Changes" -msgstr "Änderungen speichern" - -#: syntaxhighlighter.php:1120 -msgid "Preview" -msgstr "Vorschau" - -#: syntaxhighlighter.php:1122 -msgid "Click "Save Changes" to update this preview." -msgstr "Klicke „Änderungen speichern” zur Aktualisierung der Vorschau." - -#: syntaxhighlighter.php:1141 -msgid "PHP Code Example" -msgstr "PHP Quelltext Beispiel" - -#: syntaxhighlighter.php:1143 -msgid "Hello World!" -msgstr "Hallo Welt!" - -#: syntaxhighlighter.php:1145 -msgid "This line is highlighted." -msgstr "Diese Zeile ist hervorgehoben." - -#: syntaxhighlighter.php:1148 -msgid "" -"\t\tThis\tis\tan\n" -"\t\texample\tof\tsmart\n" -"\t\ttabs." -msgstr "" -"\t\tDies\tist\tein\n" -"\t\tBeispiel\tfür\tSmart\n" -"\t\tTabs." - -#: syntaxhighlighter.php:1153 -msgid "WordPress" -msgstr "WordPress" - -#: syntaxhighlighter.php:1164 -msgid "Shortcode Parameters" -msgstr "Shortcodes" - -#: syntaxhighlighter.php:1166 -#, php-format -msgid "" -"These are the parameters you can pass to the shortcode and what they do. For " -"the booleans (i.e. on/off), pass %1$s/%2$s or %3$s/%4$s." -msgstr "" -"Liste der Shortcode Parameter und ihrer Funktion. Für boolesche Werte (d.h. " -"an/aus), verwende %1$s/%2$s oder %3$s/%4$s." - -#: syntaxhighlighter.php:1169 -#, php-format -msgctxt "language parameter" -msgid "" -"%1$s or %2$s — The language syntax to highlight with. You can " -"alternately just use that as the tag, such as[php]code[/php]. "
-"Click here for a list of valid tags (under ""
-"aliases")."
-msgstr ""
-"%1$s oder %2$s — Programmiersprache des Quelltextes festlegen. Du "
-"kannst alternativ auch nur den Namen der Programmiersprache als Tag "
-"verwenden. Beispiel: [php]code[/php]. Eine Liste der gültigen "
-"Tags findest du auf dieser Seite unter dem "
-"Navigationspunkt syntaxes."
-
-#: syntaxhighlighter.php:1170
-#, php-format
-msgctxt "autolinks parameter"
-msgid "%s — Toggle automatic URL linking."
-msgstr "%s — URLs im Quelltext als Link darstellen."
-
-#: syntaxhighlighter.php:1171
-#, php-format
-msgctxt "classname parameter"
-msgid "%s — Add an additional CSS class to the code box."
-msgstr ""
-"%s — Zusätzliche CSS Klasse(n) für den Quelltext-Block einbinden. "
-"Mehrere Klassen durch Leerzeichen voneinander trennen."
-
-#: syntaxhighlighter.php:1172
-#, php-format
-msgctxt "collapse parameter"
-msgid ""
-"%s — Toggle collapsing the code box by default, requiring a click to "
-"expand it. Good for large code posts."
-msgstr ""
-"%s — Quelltext-Block zugeklappt anzeigen. Zum Aufklappen ist dann ein "
-"Klick auf den Quelltext-Block notwendig. Diese Einstellung eignet sich "
-"insbesondere für längere Quelltexte."
-
-#: syntaxhighlighter.php:1173
-#, php-format
-msgctxt "firstline parameter"
-msgid ""
-"%s — An interger specifying what number the first line should be (for "
-"the line numbering)."
-msgstr ""
-"%s — Erste Zeilennummer für die Nummerierung der Quelltextzeilen "
-"festlegen."
-
-#: syntaxhighlighter.php:1174
-#, php-format
-msgctxt "gutter parameter"
-msgid "%s — Toggle the left-side line numbering."
-msgstr "%s — Zeilennummern anzeigen."
-
-#: syntaxhighlighter.php:1175
-#, php-format
-msgctxt "highlight parameter"
-msgid ""
-"%1$s — A comma-sperated list of line numbers to highlight. You can "
-"also specify a range. Example: %2$s"
-msgstr ""
-"%1$s — Quelltextzeilen hervorheben. Die Angabe erfolgt in Form einer "
-"kommaseparierten Liste oder eines Bereichs: %2$s"
-
-#: syntaxhighlighter.php:1176
-#, php-format
-msgctxt "htmlscript parameter"
-msgid ""
-"%s — Toggle highlighting any extra HTML/XML. Good for when you're "
-"mixing HTML/XML with another language, such as having PHP inside an HTML web "
-"page. The above preview has it enabled for example. This only works with "
-"certain languages."
-msgstr ""
-"%s — HTML/XML innerhalb des Quelltextes hervorheben. Diese Option ist "
-"geeignet, wenn HTML/XML und eine andere Sprache gemischt werden (z.B. PHP "
-"innerhalb einer HTML Webseite in der obigen Vorschau). Diese Option ist "
-"jedoch nur für bestimmte Programmiersprachen verfügbar."
-
-#: syntaxhighlighter.php:1177
-#, php-format
-msgctxt "light parameter"
-msgid ""
-"%s — Toggle light mode which disables the gutter and toolbar all at "
-"once."
-msgstr "%s — Keine Zeilennummern und kein Toolbar anzeigen."
-
-#: syntaxhighlighter.php:1178
-#, php-format
-msgctxt "padlinenumbers parameter"
-msgid ""
-"%s — Controls line number padding. Valid values are false "
-"(no padding), true (automatic padding), or an integer (forced "
-"padding)."
-msgstr ""
-"%s — Führenden Nullen anzeigen. Gültige Werte sind false "
-"(keine führenden Nullen), true (automatische Anzahl führender "
-"Nullen) oder ein Integer Wert (feste Anzahl von Stellen)."
-
-#: syntaxhighlighter.php:1179
-#, php-format
-msgctxt "title parameter"
-msgid ""
-"%1$s (v3 only) — Sets some text to show up before the code. Very "
-"useful when combined with the %2$s parameter."
-msgstr ""
-"%1$s (nur Version 3.x) — Überschrift für den Quelltext. Diese Option "
-"empfiehlt sich, wenn %2$s verwendet wird."
-
-#: syntaxhighlighter.php:1180
-#, php-format
-msgctxt "toolbar parameter"
-msgid ""
-"%s — Toggle the toolbar (buttons in v2, the about question mark in v3)"
-msgstr "%s — Toolbar anzeigen."
-
-#: syntaxhighlighter.php:1181
-#, php-format
-msgctxt "wraplines parameter"
-msgid "%s (v2 only) — Toggle line wrapping."
-msgstr ""
-"%s (nur Version 2.x) — Zu lange Zeilen mittels Zeilenumbruch statt "
-"einer Bildlaufleiste darstellen."
-
-#: syntaxhighlighter.php:1184
-msgid "Some example shortcodes:"
-msgstr "Einige Beispiele für Shortcodes:"
-
-#: syntaxhighlighter.php:1187 syntaxhighlighter.php:1188
-#: syntaxhighlighter.php:1189 syntaxhighlighter.php:1190
-msgid "your code here"
-msgstr "Hier steht der Quelltext"
-
-#: syntaxhighlighter.php:1188
-msgid "example-filename.php"
-msgstr "beispieldatei.php"
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.mo b/plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.mo
deleted file mode 100644
index 6f103204..00000000
Binary files a/plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.mo and /dev/null differ
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.po b/plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.po
deleted file mode 100644
index b4988966..00000000
--- a/plugins/syntaxhighlighter/localization/syntaxhighlighter-it_IT.po
+++ /dev/null
@@ -1,422 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Viper007Bond
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <pre> tags rather than shortcodes)If left unchecked (default), then language files will only be loaded when needed
If unsure, leave this box unchecked" -msgstr "Carica sempre tutti i file di linguaggio (per utilizzo diretto dei tag
<pre> piuttosto che gli shortcode)Se non attivo (predefinito), i file di linguaggio saranno caricati secondo necessità
" - -#: syntaxhighlighter.php:1004 -msgid "Defaults" -msgstr "Parametri predefiniti" - -#: syntaxhighlighter.php:1006 -msgid "All of the settings below can be configured on a per-code block basis, but you can control the defaults of all code blocks here." -msgstr "Tutte le impostazioni qui sotto potranno essere configurate singolarmente comunque, sarà altresì possibile controllare qui le predefinite per tutti i blocchi codice." - -#: syntaxhighlighter.php:1010 -#: syntaxhighlighter.php:1013 -msgid "Miscellaneous" -msgstr "Varie" - -#: syntaxhighlighter.php:1015 -msgid "Display line numbers" -msgstr "mostra la numerazione delle linee" - -#: syntaxhighlighter.php:1016 -msgid "Display the toolbar" -msgstr "mostra la barra degli strumenti" - -#: syntaxhighlighter.php:1017 -msgid "Automatically make URLs clickable" -msgstr "rendi gli URL cliccabili (in automatico)" - -#: syntaxhighlighter.php:1018 -msgid "Collapse code boxes" -msgstr "comprimi le caselle del codice" - -#: syntaxhighlighter.php:1019 -msgid "Use the light display mode, best for single lines of code" -msgstr "utilizza la modalità light del tema, ideale per le singole linee di codice" - -#: syntaxhighlighter.php:1020 -msgid "Use smart tabs allowing tabs being used for alignment" -msgstr "utilizza le smart tabs in modo che le tag siano utilizzate per l'allineamento" - -#: syntaxhighlighter.php:1021 -msgid "Wrap long lines (v2.x only, disabling this will make a scrollbar show instead)" -msgstr "Wrap per le righe di grandi dimensioni (solo v2.x, disattivando l'opzione si otterrà una barra di scorrimento)" - -#: syntaxhighlighter.php:1022 -msgid "Enable "HTML script" mode by default (see the bottom of this page for details). Checking this box is not recommended as this mode only works with certain languages." -msgstr "Abilita la modalità "HTML script" come predefinita (vedi i dettagli a fondo pagina). La selezione di questa casella non é raccomandabile poiché la funzione lavora solamente con alcuni linguaggi." - -#: syntaxhighlighter.php:1027 -msgid "Additional CSS Class(es)" -msgstr "classe/i CSS addizionali" - -#: syntaxhighlighter.php:1031 -msgid "Starting Line Number" -msgstr "Numero di inizio linea" - -#: syntaxhighlighter.php:1035 -msgid "Line Number Padding" -msgstr "Padding numerazione linea" - -#: syntaxhighlighter.php:1040 -msgid "Off" -msgstr "Spento" - -#: syntaxhighlighter.php:1041 -msgid "Automatic" -msgstr "Automatico" - -#: syntaxhighlighter.php:1057 -msgid "Tab Size" -msgstr "Dimensione tab" - -#: syntaxhighlighter.php:1061 -msgid "Title" -msgstr "Titolo" - -#: syntaxhighlighter.php:1064 -msgid "Some optional default text to display above each code block or as the clickable text for collapsed code blocks." -msgstr "Testo predefinito e facoltativo da mostrare al di sopra di ogni blocco codice o come testo cliccabile per i blocchi codice da espandere." - -#: syntaxhighlighter.php:1074 -#: syntaxhighlighter.php:1077 -msgid "Reset to Defaults" -msgstr "Ripristina alle predefinite" - -#: syntaxhighlighter.php:1076 -msgid "Save Changes" -msgstr "Salva le modifiche" - -#: syntaxhighlighter.php:1084 -msgid "Preview" -msgstr "Anteprima della casella" - -#: syntaxhighlighter.php:1086 -msgid "Click "Save Changes" to update this preview." -msgstr "Clicca "Salva le modifiche" per visualizzare l'anteprima aggiornata." - -#: syntaxhighlighter.php:1105 -msgid "PHP Code Example" -msgstr "Codice PHP di esempio" - -#: syntaxhighlighter.php:1107 -msgid "Hello World!" -msgstr "Hello World!" - -#: syntaxhighlighter.php:1109 -msgid "This line is highlighted." -msgstr "Questa linea é evidenziata." - -#: syntaxhighlighter.php:1112 -msgid "" -"\t\tThis\tis\tan\n" -"\t\texample\tof\tsmart\n" -"\t\ttabs." -msgstr "" -"\t\tQuesto\té\tun\n" -"\t\tesempio\tdi\tsmart\n" -"\t\ttabs." - -#: syntaxhighlighter.php:1117 -msgid "WordPress" -msgstr "WordPress" - -#: syntaxhighlighter.php:1128 -msgid "Shortcode Parameters" -msgstr "Parametri per lo shortcode" - -#: syntaxhighlighter.php:1130 -#, php-format -msgid "These are the parameters you can pass to the shortcode and what they do. For the booleans (i.e. on/off), pass %1$s/%2$s or %3$s/%4$s." -msgstr "Lista dei parametri (e loro funzioni) che potrai inserire nello shortcode. Per i booleani (es: on/off), inserisci %1$s/%2$s oppure %3$s/%4$s." - -#: syntaxhighlighter.php:1148 -msgid "Some example shortcodes:" -msgstr "Alcuni esempi di shortcode:" - -#: syntaxhighlighter.php:1151 -#: syntaxhighlighter.php:1152 -#: syntaxhighlighter.php:1153 -#: syntaxhighlighter.php:1154 -msgid "your code here" -msgstr "inserisci qui il tuo codice" - -#: syntaxhighlighter.php:1152 -msgid "example-filename.php" -msgstr "example-filename.php" - -#~ msgid "" -#~ "%1$s or %2$s — The language syntax to highlight with. You can " -#~ "alternately just use that as the tag, such as
[php]code[/php]"
-#~ "code>. Click here for a list of valid tags (under "
-#~ ""aliases")."
-#~ msgstr ""
-#~ "%1$s oppure %2$s — Il linguaggio da evidenziare. Potrai in "
-#~ "alternativa utilizzarne il solo nome. Ad esempio: [php]code[/php]"
-#~ "code>. Clicca qui per la lista dei tag validi (sotto "
-#~ ""aliases")."
-
-#~ msgid "%s — Toggle automatic URL linking."
-#~ msgstr "%s — Commutazione automatica collegamento ad un URL."
-
-#~ msgid "%s — Add an additional CSS class to the code box."
-#~ msgstr ""
-#~ "%s — Aggiungi una classe CSS addizionale alla casella per il codice."
-
-#~ msgid ""
-#~ "%s — Toggle collapsing the code box by default, requiring a click "
-#~ "to expand it. Good for large code posts."
-#~ msgstr ""
-#~ "%s — Commuta in automatico (predefinita) la compressione della "
-#~ "casella. Sarà necessario cliccare sulla casella per espanderla. Ottimo "
-#~ "per l'inserimento di codici di grande dimensione."
-
-#~ msgid ""
-#~ "%s — An interger specifying what number the first line should be "
-#~ "(for the line numbering)."
-#~ msgstr ""
-#~ "%s — Un numero intero per definire con quale numero abbia inizio la "
-#~ "prima linea (per la numerazione)."
-
-#~ msgid "%s — Toggle the left-side line numbering."
-#~ msgstr "%s — Commutazione numerazione della linea nel lato sinistro."
-
-#~ msgid ""
-#~ "%1$s — A comma-sperated list of line numbers to highlight. You can "
-#~ "also specify a range. Example: %2$s"
-#~ msgstr ""
-#~ "%1$s — Lista delle linee da evidenziare (numeri separati da una "
-#~ "virgola). Puoi anche specificare il range. Esempio: %2$s"
-
-#~ msgid ""
-#~ "%s — Toggle highlighting any extra HTML/XML. Good for when you're "
-#~ "mixing HTML/XML with another language, such as having PHP inside an HTML "
-#~ "web page. The above preview has it enabled for example. This only works "
-#~ "with certain languages."
-#~ msgstr ""
-#~ "%s — Commuta mettendo in evidenza ogni HTML/XML extra. Ottima "
-#~ "soluzione qualora utilizzassi del HTML/XML con un altro linguaggio (ad "
-#~ "esempio del codice PHP inserito nel HTML di una pagina web). Vedi "
-#~ "l'anteprima qui sopra. Questa funziona solamente per alcuni linguaggi."
-
-#~ msgid ""
-#~ "%s — Toggle light mode which disables the gutter and toolbar all at "
-#~ "once."
-#~ msgstr ""
-#~ "%s — Commuta alla modalità light del tema disattivando "
-#~ "contemporaneamente il gutter e la toolbar."
-
-#~ msgid ""
-#~ "%s — Controls line number padding. Valid values are false"
-#~ "code> (no padding), true (automatic padding), or an integer "
-#~ "(forced padding)."
-#~ msgstr ""
-#~ "%s — Controlla il padding per la linea di numerazione. I valori "
-#~ "validi sono false (nessun padding), true "
-#~ "(padding automatico) oppure un numero intero (padding forzato)."
-
-#~ msgid ""
-#~ "%1$s — Sets some text to show up before the code. Very useful when "
-#~ "combined with the %2$s parameter."
-#~ msgstr ""
-#~ "%1$s — Imposta il testo da mostrare prima del codice. Molto utile "
-#~ "in combinazione con il parametro %2$s."
-
-#~ msgid "%s — Toggle the toolbar containing the helpful buttons."
-#~ msgstr "%s — Commutazione toolbar contenente i pulsanti opzione."
-
-#~ msgid "%s — Toggle line wrapping."
-#~ msgstr "%s — Commuta il wrapping della riga."
-
-#~ msgid "SyntaxHighlighter Evolved"
-#~ msgstr "SyntaxHighlighter Evolved"
-
-#~ msgid "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-#~ msgstr "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-
-#~ msgid ""
-#~ "Easily post syntax-highlighted code to your site without having to modify "
-#~ "the code at all. Uses Alex Gorbatchev's SyntaxHighlighter v2.0.320 and some code "
-#~ "by Andrew Ozz of Automattic."
-#~ msgstr ""
-#~ "Inserisci con semplicità il codice syntax-highlight nel tuo blog senza "
-#~ "l'obbligo di doverlo modificare. Utilizza il SyntaxHighlighter "
-#~ "v2.0.320 di Alex Gorbatchev ed un po' di codice da Andrew Ozz di Automattic."
-
-#~ msgid "Viper007Bond"
-#~ msgstr "Viper007Bond"
-
-#~ msgid "http://www.viper007bond.com/"
-#~ msgstr "http://www.viper007bond.com/"
-
-#~ msgid "Show a ruler column along the top of the code box"
-#~ msgstr ""
-#~ "mostra in alto del box per il codice una riga graduata per le colonne"
-
-#~ msgid "Font Size (Percentage)"
-#~ msgstr "Dimensione font (percentuale)"
-
-#~ msgid "%s — Toggle the column ruler at the top of the code box."
-#~ msgstr ""
-#~ "%s — Commuta la riga graduata posizionata nella parte superiore del "
-#~ "box per il codice."
-
-#~ msgid "Cheatin’ uh?"
-#~ msgstr "Problemi! uh?"
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.mo b/plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.mo
deleted file mode 100644
index 3b024903..00000000
Binary files a/plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.mo and /dev/null differ
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.po b/plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.po
deleted file mode 100644
index 8cd65034..00000000
--- a/plugins/syntaxhighlighter/localization/syntaxhighlighter-ja.po
+++ /dev/null
@@ -1,354 +0,0 @@
-# Translation of SyntaxHighlighter Evolved in Japanese
-# This file is distributed under the same license as the SyntaxHighlighter Evolved package.
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2014-04-06 21:14:45+0000\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: GlotPress/0.1\n"
-"Project-Id-Version: SyntaxHighlighter Evolved\n"
-
-#: syntaxhighlighter.php:665 syntaxhighlighter.php:672
-msgid "?"
-msgstr "SyntaxHighlighterについて"
-
-#: syntaxhighlighter.php:662
-msgid "copy to clipboard"
-msgstr "クリップボードへコピー"
-
-#: syntaxhighlighter.php:308
-msgid "Settings"
-msgstr "設定"
-
-#: syntaxhighlighter.php:664
-msgid "print"
-msgstr "印刷"
-
-#: syntaxhighlighter.php:663
-msgid "The code is in your clipboard now"
-msgstr "コードをクリップボードへコピーしました"
-
-#: syntaxhighlighter.php:661
-msgid "view source"
-msgstr "ソースを表示"
-
-#: syntaxhighlighter.php:660
-msgid "show source"
-msgstr "ソースを見る"
-
-#: syntaxhighlighter.php:267
-msgid "SyntaxHighlighter"
-msgstr "SyntaxHighlighter"
-
-#: syntaxhighlighter.php:267 syntaxhighlighter.php:998
-msgid "SyntaxHighlighter Settings"
-msgstr "SyntaxHighlighterの設定"
-
-#: syntaxhighlighter.php:255
-msgid "[None]"
-msgstr "[なし]"
-
-#: syntaxhighlighter.php:254
-msgid "RDark"
-msgstr "RDark"
-
-#: syntaxhighlighter.php:253
-msgid "Midnight"
-msgstr "Midnight"
-
-#: syntaxhighlighter.php:252
-msgid "Fade to Grey"
-msgstr "Fade to Grey"
-
-#: syntaxhighlighter.php:251
-msgid "Emacs"
-msgstr "Emacs"
-
-#: syntaxhighlighter.php:250
-msgid "Eclipse"
-msgstr "Eclipse"
-
-#: syntaxhighlighter.php:249
-msgid "Django"
-msgstr "Django"
-
-#: syntaxhighlighter.php:248
-msgid "Default"
-msgstr "Default"
-
-#: syntaxhighlighter.php:666 syntaxhighlighter.php:673
-msgid "SyntaxHighlighter\\n\\n"
-msgstr "SyntaxHighlighter\\n\\n"
-
-#: syntaxhighlighter.php:667 syntaxhighlighter.php:674
-msgid "Can't find brush for: "
-msgstr "指定のブラシが見つかりませんでした: "
-
-#: syntaxhighlighter.php:668 syntaxhighlighter.php:675
-msgid "Brush wasn't configured for html-script option: "
-msgstr "HTMLスクリプトのオプションのためにブラシが構成されませんでした: "
-
-#: syntaxhighlighter.php:671
-msgid "+ expand source"
-msgstr "ソースを表示"
-
-#: syntaxhighlighter.php:986
-msgid "Are you sure you want to reset your settings to the defaults?"
-msgstr "設定を初期化してもよいですか?"
-
-#: syntaxhighlighter.php:990
-msgid "Settings reset to defaults."
-msgstr "設定を初期化する"
-
-#: syntaxhighlighter.php:1007
-msgid "Highlighter Version"
-msgstr "SyntaxHighlighterのバージョン"
-
-#: syntaxhighlighter.php:1012
-msgid "Version 3.x"
-msgstr "バージョン 3.x"
-
-#: syntaxhighlighter.php:1013
-msgid "Version 2.x"
-msgstr "バージョン 2.x"
-
-#: syntaxhighlighter.php:1021
-msgid "Version 3 allows visitors to easily highlight portions of your code with their mouse (either by dragging or double-clicking) and copy it to their clipboard. No toolbar containing a Flash-based button is required."
-msgstr "バージョン3は、訪問者が簡単にマウスを使用して(ドラッグかダブルクリック)、コードの部分を強調表示し、クリップボードにへコピーできます。Flashベースボタンを含むツールバーが不要です。"
-
-#: syntaxhighlighter.php:1022
-msgid "Version 2 allows for line wrapping, something that version 3 does not do at this time."
-msgstr "バージョン2は行 の折り返しが許可されています、この機能は現時点でバージョン3はサポートされません"
-
-#: syntaxhighlighter.php:1026
-msgid "Color Theme"
-msgstr "テーマ"
-
-#: syntaxhighlighter.php:1038 syntaxhighlighter.php:1041
-msgid "Load All Brushes"
-msgstr "すべてのブラシを読み込む"
-
-#: syntaxhighlighter.php:1042
-msgid "Always load all language files (for directly using <pre> tags rather than shortcodes)
If left unchecked (default), then language files will only be loaded when needed
If unsure, leave this box unchecked"
-msgstr "常にすべての言語ファイルを読込みます(ショートコードではなく、<pre>タグを直接使用する場合)
オフ(デフォルト)の場合、言語ファイルは必要に応じてロードされます。
よくわからない場合は、このチェックボックスをオフのままにしてください。"
-
-#: syntaxhighlighter.php:1048
-msgid "Defaults"
-msgstr "規定の設定"
-
-#: syntaxhighlighter.php:1050
-msgid "All of the settings below can be configured on a per-code block basis, but you can control the defaults of all code blocks here."
-msgstr "設定はコードの出力ごとに構成できますが、規定の設定をここで指定できます"
-
-#: syntaxhighlighter.php:1054 syntaxhighlighter.php:1057
-msgid "Miscellaneous"
-msgstr "一般"
-
-#: syntaxhighlighter.php:1059
-msgid "Display line numbers"
-msgstr "行番号を表示する"
-
-#: syntaxhighlighter.php:1060
-msgid "Display the toolbar"
-msgstr "ツールバーを表示する"
-
-#: syntaxhighlighter.php:1061
-msgid "Automatically make URLs clickable"
-msgstr "自動リンクを有効にする"
-
-#: syntaxhighlighter.php:1062
-msgid "Collapse code boxes"
-msgstr "コードボックスの表示を閉じておく"
-
-#: syntaxhighlighter.php:1063
-msgid "Use the light display mode, best for single lines of code"
-msgstr "軽い表示モードを使う"
-
-#: syntaxhighlighter.php:1064
-msgid "Use smart tabs allowing tabs being used for alignment"
-msgstr "インデントタブを許容するスマートタブを使う"
-
-#: syntaxhighlighter.php:1065
-msgid "Wrap long lines (v2.x only, disabling this will make a scrollbar show instead)"
-msgstr "長い行を折り返す(v2.xのみ、横スクロールバーを無効にする)"
-
-#: syntaxhighlighter.php:1066
-msgid "Enable "HTML script" mode by default (see the bottom of this page for details). Checking this box is not recommended as this mode only works with certain languages."
-msgstr ""HTMLスクリプト" モードを有効にする。 (詳細はこのページの下を参照)。Checking this box is not recommended as this mode only works with certain languages."
-
-#: syntaxhighlighter.php:1071
-msgid "Additional CSS Class(es)"
-msgstr "追加のCSSのclass名(複数可能)"
-
-#: syntaxhighlighter.php:1075
-msgid "Starting Line Number"
-msgstr "行番号の開始"
-
-#: syntaxhighlighter.php:1079
-msgid "Line Number Padding"
-msgstr "行番号の余白"
-
-#: syntaxhighlighter.php:1084
-msgid "Off"
-msgstr "なし"
-
-#: syntaxhighlighter.php:1085
-msgid "Automatic"
-msgstr "自動"
-
-#: syntaxhighlighter.php:1101
-msgid "Tab Size"
-msgstr "タブのサイズ"
-
-#: syntaxhighlighter.php:1105
-msgid "Title"
-msgstr "タイトル"
-
-#: syntaxhighlighter.php:1108
-msgid "Some optional default text to display above each code block or as the clickable text for collapsed code blocks."
-msgstr "いくつかのオプションの既定のテキストは、各コードブロックの上または折りたたまれたコードブロックのクリック可能なテキストとして表示する"
-
-#: syntaxhighlighter.php:1118 syntaxhighlighter.php:1121
-msgid "Reset to Defaults"
-msgstr "設定を初期化"
-
-#: syntaxhighlighter.php:1120
-msgid "Save Changes"
-msgstr "変更を保存"
-
-#: syntaxhighlighter.php:1128
-msgid "Preview"
-msgstr "プレビュー"
-
-#: syntaxhighlighter.php:1130
-msgid "Click "Save Changes" to update this preview."
-msgstr "プレビューを更新するには "変更を保存" をクリックしてください"
-
-#: syntaxhighlighter.php:1149
-msgid "PHP Code Example"
-msgstr "PHP コードサンプル"
-
-#: syntaxhighlighter.php:1151
-msgid "Hello World!"
-msgstr "Hello World!"
-
-#: syntaxhighlighter.php:1153
-msgid "This line is highlighted."
-msgstr "この行はハイライトされました"
-
-#: syntaxhighlighter.php:1156
-msgid ""
-"\t\tThis\tis\tanr\n"
-"\t\texample\tof\tsmartr\n"
-"\t\ttabs."
-msgstr ""
-"\t\tこの\t行は\tスマートr\n"
-"\t\tタブ\tの\t例r\n"
-"\t\tです。"
-
-#: syntaxhighlighter.php:1161
-msgid "WordPress"
-msgstr "WordPress"
-
-#: syntaxhighlighter.php:1172
-msgid "Shortcode Parameters"
-msgstr "ショートコードパラメータ"
-
-#: syntaxhighlighter.php:1174
-msgid "These are the parameters you can pass to the shortcode and what they do. For the booleans (i.e. on/off), pass %1$s/%2$s or %3$s/%4$s."
-msgstr "これらはショートコードで渡すことができるパラメータと説明です。 bool値(有効・無効など)の指定には %1$s/%2$s または %3$s/%4$s を渡してください。"
-
-#: syntaxhighlighter.php:1177
-msgctxt "language parameter"
-msgid "%1$s or %2$s — The language syntax to highlight with. You can alternately just use that as the tag, such as [php]code[/php]. Click here for a list of valid tags (under "aliases")."
-msgstr "%1$s または %2$s — ハイライトするコードの言語。パラメータ指定だけでなく[php]code[/php]のように言語をタグとして記述できます。有効なタグのリストは こちらをクリック ("aliases"の下を参照)"
-
-#: syntaxhighlighter.php:1178
-msgctxt "autolinks parameter"
-msgid "%s — Toggle automatic URL linking."
-msgstr "%s — 自動リンクの有効・無効"
-
-#: syntaxhighlighter.php:1179
-msgctxt "classname parameter"
-msgid "%s — Add an additional CSS class to the code box."
-msgstr "%s — コードボックスに追加するCSSのclass"
-
-#: syntaxhighlighter.php:1180
-msgctxt "collapse parameter"
-msgid "%s — Toggle collapsing the code box by default, requiring a click to expand it. Good for large code posts."
-msgstr "%s — コードボックスをデフォルトの状態で閉じるかどうか。コードボックスを開くにはクリックが要求されます。長いコードの出力の際に有効です。"
-
-#: syntaxhighlighter.php:1181
-msgctxt "firstline parameter"
-msgid "%s — An interger specifying what number the first line should be (for the line numbering)."
-msgstr "%s — 行番号の出力の際に、最初の行の番号を表す数値"
-
-#: syntaxhighlighter.php:1182
-msgctxt "gutter parameter"
-msgid "%s — Toggle the left-side line numbering."
-msgstr "%s — 左側に行番号を配置するかどうか"
-
-#: syntaxhighlighter.php:1183
-msgctxt "highlight parameter"
-msgid "%1$s — A comma-separated list of line numbers to highlight. You can also specify a range. Example: %2$s"
-msgstr "%1$s — ハイライトする行番号のカンマ区切りのリスト。範囲を指定することもできます。 例: %2$s"
-
-#: syntaxhighlighter.php:1184
-msgctxt "htmlscript parameter"
-msgid "%s — Toggle highlighting any extra HTML/XML. Good for when you're mixing HTML/XML with another language, such as having PHP inside an HTML web page. The above preview has it enabled for example. This only works with certain languages."
-msgstr "%s — HTML/XML をハイライトするかどうか。HTMLウェブページで PHP を使うようにHTML/XMLとプログラムが混在するような時に有効です。上のプレビューではこの設定が有効になっています。これは特定の言語でしか動作しません。"
-
-#: syntaxhighlighter.php:1185
-msgctxt "light parameter"
-msgid "%s — Toggle light mode which disables the gutter and toolbar all at once."
-msgstr "%s — 行番号やツールバーを無効にする軽い表示モードのオン・オフ"
-
-#: syntaxhighlighter.php:1186
-msgctxt "padlinenumbers parameter"
-msgid "%s — Controls line number padding. Valid values are false (no padding), true (automatic padding), or an integer (forced padding)."
-msgstr "%s — 行番号の余白。有効な値は、 false(余白なし), true (自動)、数値(余白)"
-
-#: syntaxhighlighter.php:1187
-msgctxt "title parameter"
-msgid "%1$s (v3 only) — Sets some text to show up before the code. Very useful when combined with the %2$s parameter."
-msgstr "%1$s (v3のみ) — コードの前に表示される表題テキスト。%2$sのパラメータと合わせて使うと有効です。"
-
-#: syntaxhighlighter.php:1188
-msgctxt "toolbar parameter"
-msgid "%s — Toggle the toolbar (buttons in v2, the about question mark in v3)"
-msgstr "%s — ツールバーのオン・オフ(v2のボタン、v3のクエッションマーク)"
-
-#: syntaxhighlighter.php:1189
-msgctxt "wraplines parameter"
-msgid "%s (v2 only) — Toggle line wrapping."
-msgstr "%s (v2のみ) — 折り返しの有効・無効"
-
-#: syntaxhighlighter.php:1192
-msgid "Some example shortcodes:"
-msgstr "引数指定の例:"
-
-#: syntaxhighlighter.php:1195 syntaxhighlighter.php:1196
-#: syntaxhighlighter.php:1197 syntaxhighlighter.php:1198
-msgid "your code here"
-msgstr "ここにコードを入れます"
-
-#: syntaxhighlighter.php:1196
-msgid "example-filename.php"
-msgstr "example-filename.php"
-
-msgid "SyntaxHighlighter Evolved"
-msgstr "SyntaxHighlighter Evolved"
-
-msgid "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-msgstr "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-
-msgid "Easily post syntax-highlighted code to your site without having to modify the code at all. Uses Alex Gorbatchev's SyntaxHighlighter. TIP: Don't use the Visual editor if you don't want your code mangled. TinyMCE will \"clean up\" your HTML."
-msgstr "コードを全く変更することなく、簡単にシンタックス・ハイライトされたコードをサイトに投稿できます。Alex GorbatchevのSyntaxHighlighterを使用しています。ヒント:コードを台無しにされたくないのであれば、ビジュアルエディターを使わないでください。TinyMCEはHTMLを\"クリーンアップ\"してしまいます。"
-
-msgid "Alex Mills (Viper007Bond)"
-msgstr "Alex Mills (Viper007Bond)"
-
-msgid "http://www.viper007bond.com/"
-msgstr "http://www.viper007bond.com/"
\ No newline at end of file
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.mo b/plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.mo
deleted file mode 100644
index f2244d2a..00000000
Binary files a/plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.mo and /dev/null differ
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.po b/plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.po
deleted file mode 100644
index 6aad393b..00000000
--- a/plugins/syntaxhighlighter/localization/syntaxhighlighter-tr_TR.po
+++ /dev/null
@@ -1,276 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Viper007Bond
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: http://wordpress.org/tag/syntaxhighlighter\n"
-"POT-Creation-Date: 2009-03-29 05:19+0000\n"
-"PO-Revision-Date: 2009-07-06 12:36+0200\n"
-"Last-Translator: Alper \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: syntaxhighlighter.php:128
-msgid "Default"
-msgstr "Varsayılan"
-
-#: syntaxhighlighter.php:129
-msgid "Django"
-msgstr "Avakado Yeşili"
-
-#: syntaxhighlighter.php:130
-msgid "Emacs"
-msgstr "Siyah"
-
-#: syntaxhighlighter.php:131
-msgid "Fade to Grey"
-msgstr "Gri"
-
-#: syntaxhighlighter.php:132
-msgid "Midnight"
-msgstr "Gece Yarısı"
-
-#: syntaxhighlighter.php:133
-msgid "RDark"
-msgstr "Prusya Mavisi"
-
-#: syntaxhighlighter.php:134
-msgid "[None]"
-msgstr "Hiçbiri"
-
-#: syntaxhighlighter.php:181
-#: syntaxhighlighter.php:526
-msgid "SyntaxHighlighter Settings"
-msgstr "SyntaxHighlighter Ayarlari"
-
-#. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
-#. Plugin Name of an extension
-#: syntaxhighlighter.php:181
-msgid "SyntaxHighlighter"
-msgstr "SyntaxHighlighter"
-
-#: syntaxhighlighter.php:329
-msgid "expand source"
-msgstr "kaynağı genişlet"
-
-#: syntaxhighlighter.php:330
-msgid "view source"
-msgstr "kaynağı göster"
-
-#: syntaxhighlighter.php:331
-msgid "copy to clipboard"
-msgstr "panoya kopyala"
-
-#: syntaxhighlighter.php:332
-msgid "The code is in your clipboard now"
-msgstr "Simdi panoya kopyalandi."
-
-#: syntaxhighlighter.php:333
-msgid "print"
-msgstr "yazdır"
-
-#: syntaxhighlighter.php:334
-msgid "?"
-msgstr "?"
-
-#: syntaxhighlighter.php:335
-msgid ""
-"SyntaxHighlighter\\n"
-"\\n"
-msgstr ""
-"SyntaxHighlighter\\n"
-"\\n"
-
-#: syntaxhighlighter.php:336
-msgid "Can't find brush for: "
-msgstr "Fırça bulunamadı :"
-
-#: syntaxhighlighter.php:337
-msgid "Brush wasn't configured for html-script option: "
-msgstr "Firça Html-script seçenegi için yapilandirilmis degil: "
-
-#: syntaxhighlighter.php:509
-msgid "Settings reset to defaults."
-msgstr "Varsayilan ayarlara dön."
-
-#: syntaxhighlighter.php:517
-msgid "Are you sure you want to reset your settings to the defaults?"
-msgstr "Varsayilan ayarlara geri dönmek istediginize emin misiniz ?"
-
-#: syntaxhighlighter.php:536
-msgid "Color Theme"
-msgstr "Tema rengi"
-
-#: syntaxhighlighter.php:551
-msgid "Defaults"
-msgstr "Varsayılan"
-
-#: syntaxhighlighter.php:553
-msgid "All of the settings below can also be configured on a per-code box basis."
-msgstr "Asagidaki tüm ayarlar \"tik\" isareti konularak yapilandirilabilir."
-
-#: syntaxhighlighter.php:557
-#: syntaxhighlighter.php:560
-msgid "Miscellaneous"
-msgstr "Çeşitli Ayarlar"
-
-#: syntaxhighlighter.php:562
-msgid "Display line numbers"
-msgstr "Satir numaralarini göster."
-
-#: syntaxhighlighter.php:563
-msgid "Display the toolbar"
-msgstr "Araç çubugunu göster"
-
-#: syntaxhighlighter.php:564
-msgid "Automatically make URLs clickable"
-msgstr "Url'leri otomatik tiklanabilir yap"
-
-#: syntaxhighlighter.php:565
-msgid "Collapse code boxes"
-msgstr "Kod kutusunu daralt"
-
-#: syntaxhighlighter.php:566
-msgid "Show a ruler column along the top of the code box"
-msgstr "Sütun için cetveli görüntüle"
-
-#: syntaxhighlighter.php:567
-msgid "Use the light display mode, best for single lines of code"
-msgstr "En iyi tek satir için aydinlatma modunu kullan."
-
-#: syntaxhighlighter.php:568
-msgid "Use smart tabs allowing tabs being used for alignment"
-msgstr "Hizalama için akilli sekmeleri kullan."
-
-#: syntaxhighlighter.php:573
-msgid "Additional CSS Class(es)"
-msgstr "Ek CSS Sinif(lar)i"
-
-#: syntaxhighlighter.php:577
-msgid "Starting Line Number"
-msgstr "Satir baslama numarasi"
-
-#: syntaxhighlighter.php:582
-msgid "Font Size (Percentage)"
-msgstr "Yazi boyutu (Yüzde olarak)"
-
-#: syntaxhighlighter.php:588
-msgid "Tab Size"
-msgstr "Sekme Boyutu"
-
-#: syntaxhighlighter.php:594
-msgid "Save Changes"
-msgstr "Degisiklikleri kaydet"
-
-#: syntaxhighlighter.php:595
-msgid "Reset to Defaults"
-msgstr "Varsayilan ayarlara dön"
-
-#: syntaxhighlighter.php:600
-msgid "Preview"
-msgstr "Önizleme"
-
-#: syntaxhighlighter.php:602
-msgid "Click "Save Changes" to update this preview."
-msgstr "Önizlemeyi güncellemek için "Degisiklikleri Kaydet" tiklayin"
-
-#: syntaxhighlighter.php:637
-msgid "Shortcode Parameters"
-msgstr "Kisakod parametreleri"
-
-#: syntaxhighlighter.php:639
-#, php-format
-msgid "These are the parameters you can pass to the shortcode and what they do. For the booleans (i.e. on/off), pass %1$s/%2$s or %3$s/%4$s."
-msgstr "Asağıdakı parametreleri uygulamak istediginiz yerde girebilirsiniz. (i.e. on/off), pass %1$s/%2$s or %3$s/%4$s."
-
-#: syntaxhighlighter.php:642
-#, php-format
-msgid "%1$s or %2$s — The language syntax to highlight with. You can alternately just use that as the tag, such as [php]code[/php]. Click here for a list of valid tags (under "aliases")."
-msgstr "%1$s or %2$s — Dili sözdizimi ile vurgulamak için. Alternatif olarak bu etiketi kullanabilrsiniz, örneğin [php]code[/php]. Tıkla geçerli etiketlerin listesi için ( "aliases" altında)."
-
-#: syntaxhighlighter.php:643
-#, php-format
-msgid "%s — Toggle automatic URL linking."
-msgstr "%s — Geçiş için otomatik URL bağlantısı."
-
-#: syntaxhighlighter.php:644
-#, php-format
-msgid "%s — Add an additional CSS class to the code box."
-msgstr "%s — Kod kutusunu ek bir CSS sınıf eklemek."
-
-#: syntaxhighlighter.php:645
-#, php-format
-msgid "%s — Toggle collapsing the code box by default, requiring a click to expand it. Good for large code posts."
-msgstr "%s — Kod kutusunu daraltın, büyültmek için tıklama gerekir. Uzun kodlar için kullanışlı."
-
-#: syntaxhighlighter.php:646
-#, php-format
-msgid "%s — An interger specifying what number the first line should be (for the line numbering)."
-msgstr "%s — Satir numarasinin ne olacağna dair bir tamsayi."
-
-#: syntaxhighlighter.php:647
-#, php-format
-msgid "%s — Toggle the left-side line numbering."
-msgstr "%s — Sol tarafı satır numaralama."
-
-#: syntaxhighlighter.php:648
-#, php-format
-msgid "%s — A comma-sperated list of line numbers to highlight."
-msgstr "%s — Virgülle ayrilmiş listelerin satir numaralarını vurgulamak."
-
-#: syntaxhighlighter.php:649
-#, php-format
-msgid "%s — Toggle highlighting any extra HTML/XML. Good for when you're mixing HTML/XML with another language, such as having PHP inside an HTML web page. The above preview has it enabled for example."
-msgstr "%s — extra html/xml leri vurgulamak için, Html/Xml leri bir başka dil ile karışık kullandığınzda iyidir. Örneğin, PHp'nin HTML sayfasinda kullanmak gibi. Yukardaki önizleme buna bir örnektir."
-
-#: syntaxhighlighter.php:650
-#, php-format
-msgid "%s — Toggle light mode which disables the gutter, toolbar, and ruler all at once."
-msgstr "%s — Numaranladırmayı, araç çubuğuınu, cetveli bir seferde kaldıran sade mod."
-
-#: syntaxhighlighter.php:651
-#, php-format
-msgid "%s — Toggle the column ruler at the top of the code box."
-msgstr "%s — Kodu kutusunun üstündeki sütun cetveli aktifleştir."
-
-#: syntaxhighlighter.php:652
-#, php-format
-msgid "%s — Toggle the toolbar containing the helpful buttons."
-msgstr "%s — Geçiş yapmak için araç çubuğu içeren yararlı düğmeler."
-
-#: syntaxhighlighter.php:655
-msgid "Some example shortcodes:"
-msgstr "Bazı örnek kodlar:"
-
-#: syntaxhighlighter.php:658
-#: syntaxhighlighter.php:659
-#: syntaxhighlighter.php:660
-#: syntaxhighlighter.php:661
-msgid "your code here"
-msgstr "kod buraya"
-
-#: syntaxhighlighter.php:676
-msgid "Cheatin’ uh?"
-msgstr "Hile ha ?"
-
-#. Plugin URI of an extension
-msgid "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-msgstr "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-
-#. Description of an extension
-msgid "Easily post code to your blog while still maintaining complete control over it's display. Uses Alex Gorbatchev's SyntaxHighlighter and code by Automattic."
-msgstr "%s — extra html/xml leri vurgulamak için. Html/Xml leri bir başka dil ile karışık kullandığınzda iyidir. Örneğin, PHp'nin HTML sayfasinda kullanmak gibi. Yukardaki önizleme buna bir örnektir."
-
-#. Author of an extension
-msgid "Viper007Bond"
-msgstr "Viper007Bond"
-
-#. Author URI of an extension
-msgid "http://www.viper007bond.com/"
-msgstr "http://www.viper007bond.com/"
-
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.mo b/plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.mo
deleted file mode 100644
index ace73a88..00000000
Binary files a/plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.mo and /dev/null differ
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.po b/plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.po
deleted file mode 100644
index adae6d4c..00000000
--- a/plugins/syntaxhighlighter/localization/syntaxhighlighter-uk.po
+++ /dev/null
@@ -1,330 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: \n"
-"Last-Translator: Dmitro Kondryuk \n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Viper007Bond
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-#msgid ""
-#msgstr ""
-#: syntaxhighlighter.php:209
-msgid "Default"
-msgstr "По замовчуванню"
-
-#: syntaxhighlighter.php:210
-msgid "Django"
-msgstr "Django"
-
-#: syntaxhighlighter.php:211
-msgid "Eclipse"
-msgstr "Eclipse"
-
-#: syntaxhighlighter.php:212
-msgid "Emacs"
-msgstr "Emacs"
-
-#: syntaxhighlighter.php:213
-msgid "Fade to Grey"
-msgstr "З переходом в сірий"
-
-#: syntaxhighlighter.php:214
-msgid "Midnight"
-msgstr "Північ"
-
-#: syntaxhighlighter.php:215
-msgid "RDark"
-msgstr "RDark"
-
-#: syntaxhighlighter.php:216
-msgid "[None]"
-msgstr "Жодного"
-
-#: syntaxhighlighter.php:223
-#: syntaxhighlighter.php:845
-msgid "SyntaxHighlighter Settings"
-msgstr "Налаштування SyntaxHighlighter"
-
-#: syntaxhighlighter.php:223
-msgid "SyntaxHighlighter"
-msgstr "SyntaxHighlighter"
-
-#: syntaxhighlighter.php:254
-msgid "Settings"
-msgstr "Налаштування"
-
-#: syntaxhighlighter.php:542
-msgid "show source"
-msgstr "показати код"
-
-#: syntaxhighlighter.php:543
-msgid "view source"
-msgstr "дивитись код"
-
-#: syntaxhighlighter.php:544
-msgid "copy to clipboard"
-msgstr "скопіювати у буфер"
-
-#: syntaxhighlighter.php:545
-msgid "The code is in your clipboard now"
-msgstr "Код скопійовано у буфер"
-
-#: syntaxhighlighter.php:546
-msgid "print"
-msgstr "друк"
-
-#: syntaxhighlighter.php:547
-msgid "?"
-msgstr "?"
-
-#: syntaxhighlighter.php:548
-msgid ""
-"SyntaxHighlighter\\n"
-"\\n"
-msgstr ""
-"SyntaxHighlighter\\n"
-"\\n"
-
-#: syntaxhighlighter.php:549
-msgid "Can't find brush for: "
-msgstr "Не можу знайти \"кольорову схему\" для:"
-
-#: syntaxhighlighter.php:550
-msgid "Brush wasn't configured for html-script option: "
-msgstr "\"Кольорова схема\" не налаштована для опції html-script"
-
-#: syntaxhighlighter.php:833
-msgid "Are you sure you want to reset your settings to the defaults?"
-msgstr "Ви впевнені, що хочете повернутися до стандартних налаштувань?"
-
-#: syntaxhighlighter.php:837
-msgid "Settings reset to defaults."
-msgstr "Налаштування зкинуті до стандартних"
-
-#: syntaxhighlighter.php:854
-msgid "Color Theme"
-msgstr "Кольорова схема"
-
-#: syntaxhighlighter.php:869
-msgid "Defaults"
-msgstr "За замовчуванням"
-
-#: syntaxhighlighter.php:871
-msgid "All of the settings below can be configured on a per-code box basis, but you can control the defaults of all code boxes here."
-msgstr "Усі налаштування можуть бути сконфігуровані при використанні коротких кодів, але Ви можете також зробити налаштування для усіх блоків коду тут"
-
-#: syntaxhighlighter.php:875
-#: syntaxhighlighter.php:878
-msgid "Miscellaneous"
-msgstr "Інше"
-
-#: syntaxhighlighter.php:880
-msgid "Display line numbers"
-msgstr "Показувати номери рядків"
-
-#: syntaxhighlighter.php:881
-msgid "Display the toolbar"
-msgstr "Показувати панель інструментів"
-
-#: syntaxhighlighter.php:882
-msgid "Automatically make URLs clickable"
-msgstr "Робити лінки клікабельними"
-
-#: syntaxhighlighter.php:883
-msgid "Collapse code boxes"
-msgstr "Звертати блоки коду"
-
-#: syntaxhighlighter.php:884
-msgid "Use the light display mode, best for single lines of code"
-msgstr "Використовувати \"легкий\" вигляд (добре для однорядкового коду)"
-
-#: syntaxhighlighter.php:885
-msgid "Use smart tabs allowing tabs being used for alignment"
-msgstr "Використовувати закладки"
-
-#: syntaxhighlighter.php:886
-msgid "Wrap long lines (disabling this will make a scrollbar show instead)"
-msgstr "Переносити слова у довгих рядках"
-
-#: syntaxhighlighter.php:887
-msgid "Enable "HTML script" mode by default (see the bottom of this page for details). Checking this box is not recommended as this mode only works with certain languages."
-msgstr "Активувати "HTML script" режим по замовчуванню (деталі внизу сторінки). Не рекомендується відмічати цю опцію, в цьому режимі плагін працює лише з декількома мовами."
-
-#: syntaxhighlighter.php:892
-msgid "Additional CSS Class(es)"
-msgstr "Додаткові класи CSS"
-
-#: syntaxhighlighter.php:896
-msgid "Starting Line Number"
-msgstr "Початковий номер рядка"
-
-#: syntaxhighlighter.php:900
-msgid "Line Number Padding"
-msgstr "Відступ в номерах рядків"
-
-#: syntaxhighlighter.php:903
-msgid "Load All Brushes"
-msgstr "Підгружати усі стилі"
-
-#: syntaxhighlighter.php:904
-msgid "Always load all language files (for directly using <pre> tags rather than shortcodes)
If left unchecked (default), then language files will only be loaded when needed"
-msgstr "Завжди завантажувати усі файли мов для підсвітки (для використання з тегом <pre> замість використання коротких кодів)
Якщо не вмикати(по замовчуванню), тоді файли будуть підгружатись тільки при потребі"
-
-#: syntaxhighlighter.php:905
-msgid "Off"
-msgstr "Вимкнути"
-
-#: syntaxhighlighter.php:906
-msgid "Automatic"
-msgstr "Автоматично"
-
-#: syntaxhighlighter.php:924
-msgid "Tab Size"
-msgstr "Розмір закладки"
-
-#: syntaxhighlighter.php:930
-msgid "Save Changes"
-msgstr "Зберегти зміни"
-
-#: syntaxhighlighter.php:931
-msgid "Reset to Defaults"
-msgstr "Відновати початкові налаштування"
-
-#: syntaxhighlighter.php:936
-msgid "Preview"
-msgstr "Прев'ю"
-
-#: syntaxhighlighter.php:938
-msgid "Click "Save Changes" to update this preview."
-msgstr "Натисніть "Зберегти зміни" аби оновити прев'ю, що наведене нижче."
-
-#: syntaxhighlighter.php:950
-msgid "PHP Code Example"
-msgstr "Приклад PHP коду"
-
-#: syntaxhighlighter.php:952
-msgid "Hello World!"
-msgstr "Привіт світ!"
-
-#: syntaxhighlighter.php:954
-msgid "This line is highlighted."
-msgstr "Цей рядок підсвічений"
-
-#: syntaxhighlighter.php:957
-msgid ""
-"\t\tThis\tis\tan\r\n"
-"\t\texample\tof\tsmart\r\n"
-"\t\ttabs."
-msgstr ""
-"\t\tThis\tis\tan\r\n"
-"\t\texample\tof\tsmart\r\n"
-"\t\ttabs."
-
-#: syntaxhighlighter.php:972
-msgid "Shortcode Parameters"
-msgstr "Параметри коротких кодів"
-
-#: syntaxhighlighter.php:974
-#, php-format
-msgid "These are the parameters you can pass to the shortcode and what they do. For the booleans (i.e. on/off), pass %1$s/%2$s or %3$s/%4$s."
-msgstr "Параметри, які Ви можете використати у коротких кодах, та їх призначення. Для логічних параметрів (як увімкнути/вимкнути), використовується %1$s/%2$s або %3$s/%4$s."
-
-#: syntaxhighlighter.php:977
-#, php-format
-msgid "%1$s or %2$s — The language syntax to highlight with. You can alternately just use that as the tag, such as [php]code[/php]. Click here for a list of valid tags (under "aliases")."
-msgstr "1%s або %2$s — Мова, синтаксис якої потрібно підсвічувати. Можете скористатись тегом, наприклад, [php]code[/php]. Для перегляду усіх варіантів натисніть тут"
-
-#: syntaxhighlighter.php:978
-#, php-format
-msgid "%s — Toggle automatic URL linking."
-msgstr "%s — Дозволяє увімкнути чи вимкнути \"активність\" лінків (автоматичо робить лінки \"клікабельними\"). По замовчуванню - увімкнено."
-
-#: syntaxhighlighter.php:979
-#, php-format
-msgid "%s — Add an additional CSS class to the code box."
-msgstr "%s — Додати додатковий клас CSS до блоку з кодом"
-
-#: syntaxhighlighter.php:980
-#, php-format
-msgid "%s — Toggle collapsing the code box by default, requiring a click to expand it. Good for large code posts."
-msgstr "%s — Дозволяє увімкнути чи вимкнути показ блоку у зверненому вигляді. Якщо увімкнете, блок буде прихованим."
-
-#: syntaxhighlighter.php:981
-#, php-format
-msgid "%s — An interger specifying what number the first line should be (for the line numbering)."
-msgstr "%s — Вкажіть число, починаючи з якого нумерувати рядки"
-
-#: syntaxhighlighter.php:982
-#, php-format
-msgid "%s — Toggle the left-side line numbering."
-msgstr "%s — Дозволяє увімкнути чи вимкнути нумерацію рядків."
-
-#: syntaxhighlighter.php:983
-#, php-format
-msgid "%s — A comma-sperated list of line numbers to highlight."
-msgstr "%s — Список номерів рядків через кому, які треба \"підсвітити\""
-
-#: syntaxhighlighter.php:984
-#, php-format
-msgid "%s — Toggle highlighting any extra HTML/XML. Good for when you're mixing HTML/XML with another language, such as having PHP inside an HTML web page. The above preview has it enabled for example. This only works with certain languages."
-msgstr "%s — Дозволяє увімкнути чи вимкнути підсвітку HTML/XML коду. Наприклад корисно, коли Ви публікуєте змішаний код ( HTML/XML та PHP, чи інш.) Працює з обмеженою кількістю мов."
-
-#: syntaxhighlighter.php:985
-#, php-format
-msgid "%s — Toggle light mode which disables the gutter and toolbar all at once."
-msgstr "%s — Дозволяє увімкнути чи вимкнути полегшену версію блоку з кодом (без нумерації рядків та панелі інструментів)"
-
-#: syntaxhighlighter.php:986
-#, php-format
-msgid "%s — Controls line number padding. Valid values are false (no padding), true (automatic padding), or an integer (forced padding)."
-msgstr "%s — Контролює відступ в номерах рядків. Може приймати значення false (без відступів), true (з автоматичними відступами) або число (примусовий відступ на Х знаків)."
-
-#: syntaxhighlighter.php:987
-#, php-format
-msgid "%s — Toggle the toolbar containing the helpful buttons."
-msgstr "%s — Дозволяє увімкнути чи вимкнути панель інструментів з корисними кнопками"
-
-#: syntaxhighlighter.php:988
-#, php-format
-msgid "%s — Toggle line wrapping."
-msgstr "%s — Дозволяє увімкнути чи вимкнути перенесення слів в довгих рядках коду."
-
-#: syntaxhighlighter.php:991
-msgid "Some example shortcodes:"
-msgstr "декілька коротких кодів для прикладу"
-
-#: syntaxhighlighter.php:994
-#: syntaxhighlighter.php:995
-#: syntaxhighlighter.php:996
-#: syntaxhighlighter.php:997
-msgid "your code here"
-msgstr "ваш код тут"
-
-#. Plugin Name of an extension
-msgid "SyntaxHighlighter Evolved"
-msgstr "SyntaxHighlighter Evolved"
-
-#. Plugin URI of an extension
-msgid "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-msgstr "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-
-#. Description of an extension
-msgid "Easily post syntax-highlighted code to your site without having to modify the code at all. Uses Alex Gorbatchev's SyntaxHighlighter v2.0.320 and some code by Andrew Ozz of Automattic."
-msgstr "Легко підсвічує код на Вашому сайті за допомогою коротких кодів. Використовує SyntaxHighlighter v2.0.320 від Alex Gorbatchev та деякі доробки від Andrew Ozz з Automattic."
-
-#. Author of an extension
-msgid "Viper007Bond"
-msgstr "Viper007Bond"
-
-#. Author URI of an extension
-msgid "http://www.viper007bond.com/"
-msgstr "http://www.viper007bond.com/"
-
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.mo b/plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.mo
deleted file mode 100644
index 46d64f4e..00000000
Binary files a/plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.mo and /dev/null differ
diff --git a/plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.po b/plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.po
deleted file mode 100644
index 3bcf9ea8..00000000
--- a/plugins/syntaxhighlighter/localization/syntaxhighlighter-zh_CN.po
+++ /dev/null
@@ -1,288 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Viper007Bond
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-08-10 22:08+0800\n"
-"PO-Revision-Date: 2009-08-11 16:23+0800\n"
-"Last-Translator: Hinker \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Chinese\n"
-"X-Poedit-Country: CHINA\n"
-"X-Poedit-SourceCharset: utf-8\n"
-
-#: syntaxhighlighter.php:141
-msgid "Default"
-msgstr "缺省值"
-
-#: syntaxhighlighter.php:142
-msgid "Django"
-msgstr "Django"
-
-#: syntaxhighlighter.php:143
-msgid "Emacs"
-msgstr "Emacs"
-
-#: syntaxhighlighter.php:144
-msgid "Fade to Grey"
-msgstr "Fade to Grey"
-
-#: syntaxhighlighter.php:145
-msgid "Midnight"
-msgstr "Midnight"
-
-#: syntaxhighlighter.php:146
-msgid "RDark"
-msgstr "RDark"
-
-#: syntaxhighlighter.php:147
-msgid "[None]"
-msgstr "[无]"
-
-#: syntaxhighlighter.php:194
-msgid "SyntaxHighlighter Settings"
-msgstr "SyntaxHighlighter设置"
-
-#: syntaxhighlighter.php:194
-msgid "SyntaxHighlighter"
-msgstr "SyntaxHighlighter"
-
-#: syntaxhighlighter.php:219
-msgid "Settings"
-msgstr "设定"
-
-#: syntaxhighlighter.php:361
-msgid "expand source"
-msgstr "展开代码框"
-
-#: syntaxhighlighter.php:362
-msgid "view source"
-msgstr "查看源代码"
-
-#: syntaxhighlighter.php:363
-msgid "copy to clipboard"
-msgstr "复制到剪贴板"
-
-#: syntaxhighlighter.php:364
-msgid "The code is in your clipboard now"
-msgstr "代码现在在你的剪贴板"
-
-#: syntaxhighlighter.php:365
-msgid "print"
-msgstr "打印"
-
-#: syntaxhighlighter.php:366
-msgid "?"
-msgstr "帮助"
-
-#: syntaxhighlighter.php:367
-msgid ""
-"SyntaxHighlighter\\n"
-"\\n"
-msgstr ""
-"SyntaxHighlighter\\n"
-"\\n"
-
-#: syntaxhighlighter.php:368
-msgid "Can't find brush for: "
-msgstr "无法找到Brush:"
-
-#: syntaxhighlighter.php:369
-msgid "Brush wasn't configured for html-script option: "
-msgstr "Brush不能设置 html-script选项"
-
-#: syntaxhighlighter.php:554
-msgid "Are you sure you want to reset your settings to the defaults?"
-msgstr "您确定想要将首选项重置为默认设置吗?"
-
-#: syntaxhighlighter.php:670
-#, php-format
-msgid "These are the parameters you can pass to the shortcode and what they do. For the booleans (i.e. on/off), pass %1$s/%2$s or %3$s/%4$s."
-msgstr "这些参数你能够设置在简码中。对于布尔值(即 on/off),使用 %1$s/%2$s 或者 %3$s/%4$s。"
-
-#: syntaxhighlighter.php:673
-#, php-format
-msgid "%1$s or %2$s — The language syntax to highlight with. You can alternately just use that as the tag, such as [php]code[/php]. Click here for a list of valid tags (under "aliases")."
-msgstr "%1$s 或者 %2$s — 要高亮显示的代码语言。你能够像标签一样交替使用它们,例如[php]code[/php]。点击这里有一个有效的标签列表 (在"aliases"的下面)。"
-
-#: syntaxhighlighter.php:674
-#, php-format
-msgid "%s — Toggle automatic URL linking."
-msgstr "%s — 切换自动URL链接。"
-
-#: syntaxhighlighter.php:675
-#, php-format
-msgid "%s — Add an additional CSS class to the code box."
-msgstr "%s — 加一个附加的CSS类到代码框。"
-
-#: syntaxhighlighter.php:676
-#, php-format
-msgid "%s — Toggle collapsing the code box by default, requiring a click to expand it. Good for large code posts."
-msgstr "%s — 切换缺省代码框收缩选项,请求点击展开代码。张贴大段代码时比较好看。"
-
-#: syntaxhighlighter.php:677
-#, php-format
-msgid "%s — An interger specifying what number the first line should be (for the line numbering)."
-msgstr "%s — 你想要在代码第一行显示的指定整数(有行号显示时)。"
-
-#: syntaxhighlighter.php:678
-#, php-format
-msgid "%s — Toggle the left-side line numbering."
-msgstr "%s — 切换左边行号显示。"
-
-#: syntaxhighlighter.php:679
-#, php-format
-msgid "%s — A comma-sperated list of line numbers to highlight."
-msgstr "%s — 需要高亮行号的逗号分隔列表"
-
-#: syntaxhighlighter.php:680
-#, php-format
-msgid "%s — Toggle highlighting any extra HTML/XML. Good for when you're mixing HTML/XML with another language, such as having PHP inside an HTML web page. The above preview has it enabled for example."
-msgstr "%s — 切换任意HTML/XML扩展高亮。当 HTML/XML和其它语言混合时是有用的,比如在一个HTML网页里包含PHP。上面的预览这个选项是激活的。"
-
-#: syntaxhighlighter.php:681
-#, php-format
-msgid "%s — Toggle light mode which disables the gutter, toolbar, and ruler all at once."
-msgstr "%s — 切换高亮模式,此模式下装订线、工具条和标尺不可见。"
-
-#: syntaxhighlighter.php:682
-#, php-format
-msgid "%s — Toggle the column ruler at the top of the code box."
-msgstr "%s — 切换代码框部的列标尺显示。"
-
-#: syntaxhighlighter.php:683
-#, php-format
-msgid "%s — Toggle the toolbar containing the helpful buttons."
-msgstr "%s — 切换工具条上的帮助按钮。"
-
-#: syntaxhighlighter.php:684
-#, php-format
-msgid "%s — Toggle line wrapping."
-msgstr "%s — 切换自动换行。"
-
-#: syntaxhighlighter.php:708
-msgid "Cheatin’ uh?"
-msgstr "Cheatin’ uh?"
-
-#: syntaxhighlighter.php:546
-msgid "Settings reset to defaults."
-msgstr "将设置重置为默认值"
-
-#: syntaxhighlighter.php:573
-msgid "Color Theme"
-msgstr "颜色主题"
-
-#: syntaxhighlighter.php:588
-msgid "Defaults"
-msgstr "默认值"
-
-#: syntaxhighlighter.php:590
-msgid "All of the settings below can also be configured on a per-code box basis."
-msgstr "下面的所有设定都能在基本pre-code框中配置"
-
-#: syntaxhighlighter.php:594
-#: syntaxhighlighter.php:597
-msgid "Miscellaneous"
-msgstr "杂项"
-
-#: syntaxhighlighter.php:599
-msgid "Display line numbers"
-msgstr "显示行号"
-
-#: syntaxhighlighter.php:600
-msgid "Display the toolbar"
-msgstr "显示工具条"
-
-#: syntaxhighlighter.php:601
-msgid "Automatically make URLs clickable"
-msgstr "自动转换URI为可点击"
-
-#: syntaxhighlighter.php:602
-msgid "Collapse code boxes"
-msgstr "收缩代码框"
-
-#: syntaxhighlighter.php:603
-msgid "Show a ruler column along the top of the code box"
-msgstr "允许在代码框的顶部显示列标尺"
-
-#: syntaxhighlighter.php:604
-msgid "Use the light display mode, best for single lines of code"
-msgstr "用高亮显示模式,最好在单行代码中使用"
-
-#: syntaxhighlighter.php:605
-msgid "Use smart tabs allowing tabs being used for alignment"
-msgstr "使用智能制表符允许制表符对齐"
-
-#: syntaxhighlighter.php:606
-msgid "Wrap long lines, using an icon to show where line wraps occur (disabling this will make a scrollbar show instead)"
-msgstr "自动换行长的行,用一个图标指示换行的地方(禁用此选项将用滚动条代替显示)"
-
-#: syntaxhighlighter.php:611
-msgid "Additional CSS Class(es)"
-msgstr "附加的CSS类(es)"
-
-#: syntaxhighlighter.php:615
-msgid "Starting Line Number"
-msgstr "开始行号"
-
-#: syntaxhighlighter.php:619
-msgid "Tab Size"
-msgstr "制表符长度"
-
-#: syntaxhighlighter.php:625
-msgid "Save Changes"
-msgstr "保存更改"
-
-#: syntaxhighlighter.php:626
-msgid "Reset to Defaults"
-msgstr "重置为默认值"
-
-#: syntaxhighlighter.php:631
-msgid "Preview"
-msgstr "预览"
-
-#: syntaxhighlighter.php:633
-msgid "Click "Save Changes" to update this preview."
-msgstr "点击 "保存更改" 更新这段预览。"
-
-#: syntaxhighlighter.php:668
-msgid "Shortcode Parameters"
-msgstr "简码参数"
-
-#: syntaxhighlighter.php:687
-msgid "Some example shortcodes:"
-msgstr "一些简码示例"
-
-#: syntaxhighlighter.php:690
-#: syntaxhighlighter.php:691
-#: syntaxhighlighter.php:692
-#: syntaxhighlighter.php:693
-msgid "your code here"
-msgstr "这里写你的代码"
-
-#~ msgid "Font Size (Percentage)"
-#~ msgstr "字体大小(百分比)"
-#~ msgid "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-#~ msgstr "http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/"
-#~ msgid ""
-#~ "Easily post code to your blog while still maintaining complete control "
-#~ "over it's display. Uses Alex Gorbatchev's SyntaxHighlighter and code by Automattic."
-#~ msgstr ""
-#~ "很容易的粘贴代码到你的博客中,同时保持显示的完整控制。使用Alex Gorbatchev"
-#~ "的 SyntaxHighlighter, 由Automattic编程。"
-#~ msgid "Viper007Bond"
-#~ msgstr "Viper007Bond"
-#~ msgid "http://www.viper007bond.com/"
-#~ msgstr "http://www.viper007bond.com/"
-
diff --git a/plugins/syntaxhighlighter/readme.txt b/plugins/syntaxhighlighter/readme.txt
deleted file mode 100644
index 3252668d..00000000
--- a/plugins/syntaxhighlighter/readme.txt
+++ /dev/null
@@ -1,263 +0,0 @@
-=== SyntaxHighlighter Evolved ===
-Contributors: Viper007Bond, automattic
-Donate link: http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/donate/
-Tags: code, sourcecode, php, xhtml, html, css, WordPress.com
-Requires at least: 4.2.3
-Tested up to: 4.5
-Stable tag: trunk
-
-Easily post syntax-highlighted code to your site without having to modify the code at all. As seen on WordPress.com.
-
-== Description ==
-
-SyntaxHighlighter Evolved allows you to easily post syntax-highlighted code to your site without losing its formatting or making any manual changes. It uses the [SyntaxHighlighter JavaScript package by Alex Gorbatchev](http://alexgorbatchev.com/wiki/SyntaxHighlighter).
-
-For a live demo, see [this plugin's homepage](http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/).
-
-For a list of supported languages (most widely used languages are supported), see the [WordPress.com support document](http://en.support.wordpress.com/code/posting-source-code/).
-
-*[As seen on WordPress.com.](http://en.blog.wordpress.com/2009/12/02/better-source-code-posting/)*
-
-== Installation ==
-
-###Upgrading From A Previous Version###
-
-To upgrade from a previous version of this plugin, delete the entire folder and files from the previous version of the plugin and then follow the installation instructions below.
-
-###Uploading The Plugin###
-
-Extract all files from the ZIP file, **making sure to keep the file/folder structure intact**, and then upload it to `/wp-content/plugins/`.
-
-**See Also:** ["Installing Plugins" article on the WP Codex](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins)
-
-###Plugin Activation###
-
-Go to the admin area of your WordPress install and click on the "Plugins" menu. Click on "Activate" for the "SyntaxHighlighter" plugin.
-
-###Plugin Usage###
-
-Just wrap your code in `[language]`, such as `[php]code here[/php]` or `[css]code here[/css]`. For a list of supported languages (all widely used languages are supported), please [click here](http://alexgorbatchev.com/wiki/SyntaxHighlighter:Brushes).
-
-You do not need to escape HTML entities or anything, just post your code as-is. The plugin will handle the rest.
-
-The shortcodes accept a wide variety of parameters. For details, see the bottom of the plugin's settings page.
-
-== Frequently Asked Questions ==
-
-= The code is just being displayed raw. It isn't being converted into a code box or anything. What's wrong? =
-
-Make sure your theme's `footer.php` file has `` somewhere inside of it, otherwise the plugin won't be able to do it's thing.
-
-== Screenshots ==
-
-1. Example code display of some PHP inside some HTML.
-2. A part of the Settings page which controls the defaults.
-
-== ChangeLog ==
-
-= Version 3.2.1 =
-
-* Fix shortcode issues that would occur during post editing if the code contained what looked like opening HTML tags such as `` tag. Props [NoMad1337](http://www.tacticalcode.de/).
-
-= Version 3.1.6 =
-
-* Kill off v2 copy-to-clipboard SWF file due to XSS security issue with the file. If you want to be able to copy/paste, use the better v3.
-* Switch from using a `` tag to a `' . "\n";
- }
-
-
- // Output any needed scripts. This is meant for the footer.
- function maybe_output_scripts() {
- global $wp_styles;
-
- if ( 1 == $this->settings['loadallbrushes'] )
- $this->usedbrushes = array_flip( array_values( $this->brushes ) );
-
- if ( empty($this->usedbrushes) )
- return;
-
- $scripts = array();
- foreach ( $this->usedbrushes as $brush => $unused )
- $scripts[] = 'syntaxhighlighter-brush-' . strtolower( $brush );
-
- wp_print_scripts( $scripts );
-
- // Stylesheets can't be in the footer, so inject them via Javascript
- echo "
-'s
- function shortcode_callback( $atts, $code = '', $tag = false ) {
- global $post;
-
- if ( false === $tag || empty($code) )
- return $code;
-
- // Avoid PHP notices
- if ( !isset($post) )
- $post = null;
-
- $code = apply_filters( 'syntaxhighlighter_precode', $code, $atts, $tag );
-
- // Error fixing for [tag="language"]
- if ( isset($atts[0]) ) {
- $atts = $this->attributefix( $atts );
- $atts['language'] = $atts[0];
- unset($atts[0]);
- }
-
- // Default out all of the available parameters to "false" (easy way to check if they're set or not)
- // Note this isn't the same as if the user passes the string "false" to the shortcode
- $atts = (array) apply_filters( 'syntaxhighlighter_shortcodeatts', shortcode_atts( array(
- 'language' => false,
- 'lang' => false,
- 'type' => false, // language alias
- 'autolinks' => false,
- 'classname' => false,
- 'collapse' => false,
- 'firstline' => false,
- 'fontsize' => false,
- 'gutter' => false,
- 'highlight' => false,
- 'htmlscript' => false,
- 'light' => false,
- 'padlinenumbers' => false,
- 'smarttabs' => false,
- 'tabsize' => false,
- 'title' => $this->settings['title'],
- 'toolbar' => false,
- 'wraplines' => false,
- ), $atts ) );
-
- // Check for language shortcode tag such as [php]code[/php]
- if ( isset($this->brushes[$tag]) ) {
- $lang = $tag;
- }
-
- // If a valid tag is not used, it must be sourcecode/source/code
- else {
- $atts = $this->attributefix( $atts );
-
- // Check for the "language" attribute
- if ( false !== $atts['language'] )
- $lang = $atts['language'];
-
- // Check for the "lang" attribute
- elseif ( false !== $atts['lang'] )
- $lang = $atts['lang'];
-
- // Default to plain text
- else
- $lang = 'text';
-
- // All language aliases are lowercase
- $lang = strtolower( $lang );
-
- // Validate passed attribute
- if ( !isset($this->brushes[$lang]) )
- return $code;
- }
-
- // Switch from the alias to the real brush name (so custom aliases can be used)
- $lang = $this->brushes[$lang];
-
- // Register this brush as used so it's script will be outputted
- $this->usedbrushes[$lang] = true;
-
- $params = array();
- $params[] = "brush: $lang;";
-
- // Fix bug that prevents collapse from working if the toolbar is off or light mode is on
- if ( 'true' == $atts['collapse'] || '1' === $atts['collapse'] || 1 == $this->settings['collapse'] ) {
- $atts['toolbar'] = 'true';
- $atts['light'] = 'false';
- }
-
- // Parameter renaming (the shortcode API doesn't like parameter names with dashes)
- $rename_map = array(
- 'autolinks' => 'auto-links',
- 'classname' => 'class-name',
- 'firstline' => 'first-line',
- 'fontsize' => 'font-size',
- 'htmlscript' => 'html-script',
- 'padlinenumbers' => 'pad-line-numbers',
- 'smarttabs' => 'smart-tabs',
- 'tabsize' => 'tab-size',
- 'wraplines' => 'wrap-lines',
- );
-
- // Allowed configuration parameters and their type
- // Use the proper names (see above)
- $allowed_atts = (array) apply_filters( 'syntaxhighlighter_allowedatts', array(
- 'auto-links' => 'boolean',
- 'class-name' => 'other',
- 'collapse' => 'boolean',
- 'first-line' => 'integer',
- 'font-size' => 'integer',
- 'gutter' => 'boolean',
- 'highlight' => 'other',
- 'html-script' => 'boolean',
- 'light' => 'boolean',
- 'pad-line-numbers' => 'other',
- 'smart-tabs' => 'boolean',
- 'tab-size' => 'integer',
- 'title' => 'other',
- 'toolbar' => 'boolean',
- 'wrap-lines' => 'boolean',
- ) );
-
- $title = '';
-
- // Sanitize configuration parameters and such
- foreach ( $atts as $key => $value ) {
- $key = strtolower( $key );
-
- // Put back parameter names that have been renamed for shortcode use
- if ( !empty($rename_map[$key]) )
- $key = $rename_map[$key];
-
- // This this parameter if it's unknown, not set, or the language which was already handled
- if ( empty($allowed_atts[$key]) || false === $value || in_array( $key, array( 'language', 'lang' ) ) )
- continue;
-
- // Sanitize values
- switch ( $allowed_atts[$key] ) {
- case 'boolean':
- $value = strtolower( $value );
- if ( 'true' === $value || '1' === $value || 'on' == $value )
- $value = 'true';
- elseif ( 'false' === $value || '0' === $value || 'off' == $value )
- $value = 'false';
- else
- continue 2; // Invalid value, ditch parameter
- break;
-
- // integer
- case 'integer':
- $value = (int) $value;
- break;
- }
-
- // Sanitize the "classname" parameter
- if ( 'class-name' == $key )
- $value = trim( preg_replace( '/[^a-zA-Z0-9 _-]/i', '', $value ) );
-
- // Special sanitization for "pad-line-numbers"
- if ( 'pad-line-numbers' == $key ) {
- $value = strtolower( $value );
- if ( 'true' === $value || '1' === $value )
- $value = 'true';
- elseif ( 'false' === $value || '0' === $value )
- $value = 'false';
- else
- $value = (int) $value;
- }
-
- // Add % sign to "font-size"
- if ( 'font-size' == $key )
- $value = $value . '%';
-
- // If "html-script", then include the XML brush as it's needed
- if ( 'html-script' == $key && 'true' == $value )
- $this->usedbrushes['xml'] = true;
-
- // Sanitize row highlights
- if ( 'highlight' == $key ) {
- if ( false === strpos( $value, ',' ) && false === strpos( $value, '-' ) ) {
- $value = (int) $value;
- } else {
- $lines = explode( ',', $value );
- $highlights = array();
-
- foreach ( $lines as $line ) {
- // Line range
- if ( false !== strpos( $line, '-' ) ) {
- list( $range_start, $range_end ) = array_map( 'intval', explode( '-', $line ) );
- if ( ! $range_start || ! $range_end || $range_end <= $range_start )
- continue;
-
- for ( $i = $range_start; $i <= $range_end; $i++ )
- $highlights[] = $i;
- } else {
- $highlights[] = (int) $line;
- }
- }
-
- natsort( $highlights );
-
- $value = implode( ',', $highlights );
- }
-
- if ( empty( $value ) )
- continue;
-
- // Wrap highlight in [ ]
- $params[] = "$key: [$value];";
- continue;
- }
-
- // Don't allow HTML in the title parameter
- if ( 'title' == $key ) {
- $value = strip_tags( html_entity_decode( strip_tags( $value ) ) );
- }
-
- $params[] = "$key: $value;";
-
- // Set the title variable if the title parameter is set (but not for feeds)
- if ( 'title' == $key && ! is_feed() )
- $title = ' title="' . esc_attr( $value ) . '"';
- }
-
- $code = ( false === strpos( $code, '<' ) && false === strpos( $code, '>' ) && 2 == $this->get_code_format($post) ) ? strip_tags( $code ) : htmlspecialchars( $code );
-
- $params[] = 'notranslate'; // For Google, see http://otto42.com/9k
-
- $params = apply_filters( 'syntaxhighlighter_cssclasses', $params ); // Use this to add additional CSS classes / SH parameters
-
- return apply_filters( 'syntaxhighlighter_htmlresult', '' . $code . '
' );;
- }
-
-
- // Settings page
- function settings_page() { ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
- ';
-
- $title = ( empty( $this->settings['title'] ) && 1 != $this->settings['collapse'] ) ? ' title="Code example: (this example was added using the title parameter)"' : '';
-
- // Site owners may opt to disable the short tags, i.e. [php]
- $democode = apply_filters( 'syntaxhighlighter_democode', '[sourcecode language="php" htmlscript="true" highlight="12"' . $title . ']
-
-
-
- PHP Code Example
-
-
- ' . __( 'PHP Code Example', 'syntaxhighlighter' ) . '
-
-
-
- ' . __( 'This line is highlighted.', 'syntaxhighlighter' ) . '
-
-
-
-
-
-[/sourcecode]' );
-
- $this->codeformat = 1;
- echo $this->parse_shortcodes( $democode );
- $this->codeformat = false;
-
- echo '';
-?>
-
-
-
- true
', '1', 'false', '0' ); ?>









+
+Back to Administration Screens.
+
+
+
+You can add different link types into your menu, these are split between panes left of the menu you\'re currently editing.
+
+
+
+
+If your current theme does not support custom menus, you will need to add your new menu via the Custom Menu widget in the Appearance Widgets Screen.
+
+Congratulations! Your new custom menu has now been added to your site.]]>
+Begin by logging into the “administration area” or the back end of your website. Visit your site's login page by placing “wp-admin” after your domain name (e.g. http://example.com/wp-admin). Some themes provide a “login” link or form on the front end as well. Now log into WordPress using the username and password you created in the 5 minute install.
+
+
+
+After logging in you are on the main Administration Screen called the Dashboard. This is where the organization of your site begins.
+
+At the top of the screen is the area called the “toolbar”. Click on your site name, it's a link and it will take you to a view of your new WordPress site. Like it? Don't like it? Doesn't matter, just look at it. This is where you are going to be spending a lot of time!
+
+
+The layout you are looking at is defined by a WordPress Theme. It is the appearance of your website, styling the look of the site and the framing of the content. The WordPress Twenty Seventeen theme features a “header” at the top with the title and tagline for your site. Below this is your Menu, if you have one. Along the side you will see some titles and links. This is the Sidebar. The different items inside a Sidebar are called Widgets. The main middle section of the page is the content area.
+
+Scroll down the page and notice the bar at the end of the page. This is called the “footer.” It says “Proudly powered by WordPress.”
+
+Back to the sidebar, you will see different sections with information. Among these you may find a list of Recent Posts, Recent Comments, Archives, Categories, links to the Administration Screens, Log Out, and RSS feeds. This is part of the menu or navigation Screen that people will use to move around your site, visiting posts from different categories or time periods.
+
+
+Now, let's look at some other powerful features of the WordPress Admin.
+
+The Appearance, Themes Screen allows you to change the look of your site using different Themes. Themes are presentation styles that completely change the look of your site. Designed by developers and users, there are hundreds of themes available for you to choose from. In your Appearance Screen, you will see a list of currently installed themes, including the WordPress Twenty Seventeen theme. To quickly change the theme, simply click on the Activate button under one of the themes listed, then click on your site name in the top toolbar to see how it looks.
+
+










+
+Back to Administration Screens.
+
Add New Screen
+(In the Publish panel under Visibility. Click edit to see the checkbox). If checked, the post will be placed at the top of the front page of posts, keeping it there until new posts are published. Please notice that this feature is only available for the built-in post type post and not for custom post types.
+
+
+
+
+Once you know which specific bit of CSS it is, you can head into your style.css file and remove it. Pat yourself on the back for a job well done!
+
+If you don't have a browser with built-in inspection tools handy, you can still seek out the rogue line of CSS code. You can do this by viewing the page source. Let's say you have a sidebar that includes a post titled "All About Harry." When you view the page's source code, you'll see that title listed in your sidebar div.
+
+To view a page's source code, navigate to the menu bar of your browser and choose View > Page Source or View > Source. A page will pop up displaying the source code for that page.
+
+Use your handy detective tool (Ctrl+F on Windows or CMD+F on a Mac) to activate your search. Type in "all about harry" and click Find. This will take you to the first occurrence of the phrase. Unless you have the words "all about harry" in your post, odds are that it will take you directly to the phrase in your sidebar. If not, click Find again until you've found the phrase in the right area.
+
+Once you've found the phrase, it's time to play CSS detective. Look above the code starting with the phrase "all about harry" for one of two things. It will look something like either of the following examples, using words like sidebar, menu, or sidecolumn:
+
+[code language="html"]
+
+<div id="sidebar">[/code]
+
+or
+
+[code language="html"]
+
+<div class="sidebar">[/code]
+
+This is the main section that contains your sidebar menu. You've found the first suspect.
+
+Now, open your style.css file and do another search for sidebar (or whatever the resulting name was that you uncovered). It can usually be identified in two ways:
+
+[code language="css"]#sidebar[/code]
+
+or
+
+[code language="css"].sidebar[/code]
+
+Look at the styles under these CSS selectors and see if there is a mention of "border," often looking something like this:
+
+[code language="css"]#sidebar {
+ position: relative;
+ float: right;
+ width: 170px;
+ color: blue;
+ font-size: 90%;
+ border-right: solid 1px blue;
+}[/code]
+
+If this is the guilty party, delete the reference to the border and you are good to go. If it isn't, then the hunt continues.
+
+Sometimes the real culprit is the one that you least suspect. Maybe the border isn't caused by the obvious suspect, the sidebar, but by the content section. Return to the page's source code and search for the first words of your post. Look above that for something like:
+
+[code language="html"]
+<div id="content">[/code]
+
+It could be called content, page, post, maincolumn, or widecolumn (or it could have another alias) but it should be the CSS container that holds your post information. Now, go back to the stylesheet and check to see if there is a border in that section.
+
+
+
+


+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Attachment Details changes its appearance and information by media type. The left side of this dialog shows the Image, Audio player or Video player. The right side lists the following media file attributes and optional data. Some of them are editable from this dialog.
+
+
+
+
+
+
+Clicking Attach link in the "Attached to" column or "Media" column when Unattached filtered view appears Find Posts or Pages dialogue box. From this dialogue box, you can select a Posts or Pages that the media should be attached to. Follow the steps:
+
+
+The table of Posts contains the following columns:
+
+Back to Administration Screens
+
+
+
+
+
+
+
+
+
+
+
+
+

















+
+It will insert a code at that point that looks like this:
+
+[code language="html"]
+and I told him that he should get moving or I'd be
+on him like a limpet. He looked at me with shock on
+his face and said
+
+<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" data-wp-more="more" data-wp-more-text="" class="wp-more-tag mce-wp-more" alt="" title="Read more..." data-mce-resize="false" data-mce-placeholder="1" />
+[/code]
+
+The rest of the post continues in the editing window, but when viewed on the non-single/non-permalink web page such as archives, categories, front page, and searches, the post is shown as an excerpt to the more point.
+
+Users can then continue reading more as you have enticed them with your summary introduction, by clicking on a link to the full article. Themes usually include this link in the title and the above methods will generate it by default trailing your teaser, as the example below.
+
+
+
+
+
+
+









Depending on your site's settings, comments display slightly differently from site to site. The basic comment form includes:
+
After navigating to the editing screen for the post or Page you wish to add comments to, find the “Discussion” box and check “Allow Comments.” (If you do not see the “Discussion” box on the edit Page, click “Screen Options” in the upper right corner of the browser window. Make sure the box next to “Discussion” is checked.) Save your changes by clicking “Publish”, “Save Draft” or “Update."
+
Navigate to the Posts or Pages screen. In the list of Pages or posts, find the one you want and hover your cursor over the title of the post. You will see several links appear underneath the title. Click "Quick Edit" and check “Allow Comments.” Click “Update” to turn comments on for that post.
+
From the Posts/Pages screen, check the boxes next to the posts or Pages on which you want to enable comments. Select "Edit" from the "Bulk Edit" Dropdown box and click Apply. Then, select "Allow" next in the Comments dropdown box and finish by clicking "update."
+
Once you start receiving comments on your site, you can check the status of comments quickly by looking at the dashboard, the admin bar, or the left navigation menu. When you log in, the dashboard's "Activity" box will show you the status of your comments. Hover over a comment to see your moderation options. From "Activity - Comments" you can approve, reply, edit, mark as spam, or trash comments. Alternatively, you can look to see if there is a number next to the comment bubble in the admin bar or "Comments" in the left navigation. This number represents how many pending comments require your attention.
+
+
+
+Like the posts and Pages screens, the Comments screen supplies a Bulk Action dropdown box. Select the comments you want to edit, and then select Unapprove, Approve, Mark as Spam, or Move to Trash from the dropdown and click "Apply."
+
+
+The default state for post and Page visibility is Public. Public visibility means that the content will be visible to the outside world as soon as it is published.
+
+By clicking on the edit link next to Visibility: Public in the Publish options, you can choose from an expanded selection of visibility options.
+
+
+
+The options are:
+
+
+The title for your protected entry is shown, along with a password prompt. A visitor to your site must enter the password in the box in order to see the content of the post or Page.
+
+
+Once you change the visibility to private, the post or page status changes to "Privately Published" as shown. Private posts are automatically published but not visible to anyone but those with the appropriate permission levels (Editor or Administrator).
+
+WARNING: If your site has multiple editors or administrators, they will be able to see your protected and private posts in the Edit screen. They do not need the password to be able to see your protected posts. They can see the private posts in the Edit Posts/Pages list, and are able to modify them, or even make them public. Consider these consequences before making such posts in such a multiple-user environment.
+
+
+When you click on "Links" in the navigation menu on the left of your dashboard screen, you will come first to the Manage Links SubPanel, where you will see a list of all of your links.
+
+
+In the Manage Links SubPanel, your links are displayed in a tabular format. Each link is a row in the table, and the table has the following columns:
+
+Name
+
+
+
+When you click Links in the navigation menu, and then click Add Link, you will come to the Add Link SubPanel, where you can add a new link to your list.
+
+
+
+The screen looks similar to the image above, and has the following sections - Sample input is shown in parentheses.:
+
+Name
+
+
+
+Clicking on Edit brings you to the Edit a Link subpanel.
+
+This mode is essentially the same as the Add Link SubPanel. The only difference is that the button to save your work is called "Update Link" instead of "Add Link."
+
+
+Remember, you will not have a chance to recover from this delete. It makes a permanent change to the database.
+
+
+
+A popup window with a confirmation should appear. Choose OK or Cancel if you hit the Delete link by accident. Remember, this is the only chance you have. After making your choice, you will be directed back to the Manage Links page.
+
+To delete multiple links you can select the tick box of link entries that you want to delete on the Manage Links screen and then select Delete from the Bulk Actions drop down menu and then click on the Apply button.
+
+
+
+
+Links in WordPress can be organized into categories, all the better for organization. The default installation of WordPress automatically sets one category, Blogroll. You are given the ability to add, edit and delete categories.
+
+
+Enter the name and other details of your category.
+
+
+
+Click on the Add New Link Category button.
+
+A full description of how to add, edit and delete Link Categories is on the page on the Links Link Categories Screen
+

+When you're done editing the post's visibility, click the "OK" button. You should now see your post's new setting, e.g., Visibility: Password Protected. Remember: a setting change does not take effect until you click the "Publish" button (or "Update" if the post is already published.)
+
+
+
+
+
+The image above shows the error to be in jquery.js on line 2.
+
+
+2. Identify the Error
+
+The error console will open. If you don't see any errors try reloading the page. The error may be generated when the page loads.
+
+The console will provide you with the error type, the location of the error and the line number
+
+
+
+The image above shows the error to be in jquery.js on line 2.
+
+
+The image above shows the error to be in jquery.js on line 2.
+
+
+2. Open the Console
+
+Go to the screen where you are experiencing the error. In Safari, navigate to Develop > Show Error Console
+
+3. Identify the Error
+
+The error console will open. If you don't see any errors try reloading the page.
+
+The console show you the error, the error location and the line number:
+
+
+
+The image above shows the error to be in jquery.js on line 2.
+
+Note: If you cannot see the error click the back button within the console.
+
+
+
+
+The image above shows the error to be in jquery.js on line 2, however remember to copy the whole stack information! Just saying what line is less helpful that showing context.
+
+
+
+
+
+























+
+You can also choose whether or not to allow end users to create new sites on demand. Domain-based on-demand sites are normally only possible using subdomains like
+
+For this, and many other reasons, we do not suggest you use www in your domain name whenever possible. If you plan on changing them to 





Figure 1: Host example #1[/caption]
+
+[caption id="attachment_1136" align="alignnone" width="300"]
Figure 2: Host example #2[/caption]
+
+Your screen could have
Figure 3 : Server window[/caption]
+
+Click Create Directory, enter the name you want, and click Okay.
+
+NOTE: The name you choose will be where your WordPress weblog will appear, and although it can be changed later, it's much better to avoid that by choosing what you want now. For example, if your website has the URL
Figure 4 : Newly created directory[/caption]
+
+Now the directory
Figure 5 : The new and empty directory[/caption]
+
+Nothing there yet ... but note the folder with the dots following it -- clicking that takes you back up a folder level.
+
Figure 6 : Folder navigation - top window[/caption]
+
+When you have found it and clicked the
Figure 7 : Folder navigation - bottom window[/caption]
+
+Hold the SHIFT key , and press the DOWN arrow on the keyboard to highlight all the files and folders in that window.
+
+Now RIGHT-click, and choose Upload from the menu. Now watch ...... everything should be uploaded straight to your website.
+
+Once that has happened, then whatever is in the server window should be on your computer window. The
Figure 8 : Files in each folder should be the same[/caption]
+
+This concludes the guide for uploading files to your server, using an FTP client, FileZilla, especially with regard to installing WordPress.
+
+You may want to read more about Changing File Permissions and seeing hidden files on the server.]]>