New to Translating WordPress? Read through our Translator Handbook to get started. Hide

Translation of Development Readme (trunk): English (Canada)

Filter ↓ Sort ↓ All (87) Translated (87) Untranslated (0) Waiting (0) Changes requested (0) Fuzzy (0) Warnings (0)
1 2 3 6
Prio Original string Translation
Debug Bar Shortcodes adds a new panel to the Debug Bar that displays the registered shortcodes for the current request.
Priority: high
Debug Bar Shortcodes adds a new panel to the Debug Bar that displays the registered shortcodes for the current request. Details
Debug Bar Shortcodes adds a new panel to the Debug Bar that displays the registered shortcodes for the current request.
Comment

Short description.

You have to log in to edit this translation.

Debug Bar Shortcodes
Priority: high
Debug Bar Shortcodes Details
Debug Bar Shortcodes
Comment

Name.

You have to log in to edit this translation.

<p>If you are a <strong><em>developer</em></strong>:</p> <ul> <li>to avoid name conflicts with shortcodes registered by other plugins/themes. <p>If you are a <strong><em>developer</em></strong>:</p> <ul> <li>to avoid name conflicts with shortcodes registered by other plugins/themes. Details
<p>If you are a <strong><em>developer</em></strong>:</p> <ul> <li>to avoid name conflicts with shortcodes registered by other plugins/themes.
Comment

Found in description list item.

You have to log in to edit this translation.

<p>If you are a <strong><em>web designer / web master</em></strong>:</p> <ul> <li>if you switch plugins or remove a plugin, to know in which posts/pages you need to remove/replace old shortcodes. <p>If you are a <strong><em>web designer / web master</em></strong>:</p> <ul> <li>if you switch plugins or remove a plugin, to know in which posts/pages you need to remove/replace old shortcodes. Details
<p>If you are a <strong><em>web designer / web master</em></strong>:</p> <ul> <li>if you switch plugins or remove a plugin, to know in which posts/pages you need to remove/replace old shortcodes.
Comment

Found in description list item.

You have to log in to edit this translation.

<p>If you are a <strong><em>blog author</em></strong>:</p> <ul> <li>to know which shortcodes you can use in your posts/pages. <p>If you are a <strong><em>blog author</em></strong>:</p> <ul> <li>to know which shortcodes you can use in your posts/pages. Details
<p>If you are a <strong><em>blog author</em></strong>:</p> <ul> <li>to know which shortcodes you can use in your posts/pages.
Comment

Found in description list item.

You have to log in to edit this translation.

Any additional information available about the shortcode, such as a description, which parameters it takes, whether or not it is self-closing. <em>Want to control the additional information displayed about your own shortcodes ? You can! See the <a href="https://wordpress.org/plugins/debug-bar-shortcodes/faq/">FAQ</a> for more info.</em> Any additional information available about the shortcode, such as a description, which parameters it takes, whether or not it is self-closing. <em>Want to control the additional information displayed about your own shortcodes? You can! See the <a href="https://en-ca.wordpress.org/plugins/debug-bar-shortcodes/faq/">FAQ</a> for more info.</em> Details
Any additional information available about the shortcode, such as a description, which parameters it takes, whether or not it is self-closing. <em>Want to control the additional information displayed about your own shortcodes ? You can! See the <a href="https://wordpress.org/plugins/debug-bar-shortcodes/faq/">FAQ</a> for more info.</em>
Comment

Found in description list item.

You have to log in to edit this translation.

Have you read what it says in the beautifully red bar at the top of your plugins page ? As it says there, the Debug Bar plugin needs to be active for this plugin to work. If the Debug Bar plugin is not active, this plugin will automatically de-activate itself. Have you read what it says in the beautifully red bar at the top of your plugins page ? As it says there, the Debug Bar plugin needs to be active for this plugin to work. If the Debug Bar plugin is not active, this plugin will automatically de-activate itself. Details
Have you read what it says in the beautifully red bar at the top of your plugins page ? As it says there, the Debug Bar plugin needs to be active for this plugin to work. If the Debug Bar plugin is not active, this plugin will automatically de-activate itself.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Updated code for v2.0: Updated code for v2.0: Details
Updated code for v2.0:
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Old code for v1.0: Old code for v1.0: Details
Old code for v1.0:
Comment

Found in faq paragraph.

You have to log in to edit this translation.

If you <em>did</em> already have a filter in place, sorry I didn't find your plugin/theme! Not to worry though, I've tried to make it really easy to upgrade your code. First off, you'll need to change the <code>add_filter()</code> hook in code and your function signature to now received two variables. The first variable will be the new object, but the second variable will still be an array in the format which was passed in 1.0 so you can continue to use that in your function to enrich the information. Secondly, as all this plugin uses are the properties of the object, you can just cast your array to an object in the return and it'll work again. If you <em>did</em> already have a filter in place, sorry I didn't find your plugin/theme! Not to worry though, I've tried to make it really easy to upgrade your code. First off, you'll need to change the <code>add_filter()</code> hook in code and your function signature to now received two variables. The first variable will be the new object, but the second variable will still be an array in the format which was passed in 1.0 so you can continue to use that in your function to enrich the information. Secondly, as all this plugin uses are the properties of the object, you can just cast your array to an object in the return and it'll work again. Details
If you <em>did</em> already have a filter in place, sorry I didn't find your plugin/theme! Not to worry though, I've tried to make it really easy to upgrade your code. First off, you'll need to change the <code>add_filter()</code> hook in code and your function signature to now received two variables. The first variable will be the new object, but the second variable will still be an array in the format which was passed in 1.0 so you can continue to use that in your function to enrich the information. Secondly, as all this plugin uses are the properties of the object, you can just cast your array to an object in the return and it'll work again.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

I'm aware that this is a backward compatibility break, but I've done some quite extensive searches and considering I did not find any plugin using the filter (yet), I decided this backward compatibility break would have little to no effect and therefore would be safe to implement. I'm aware that this is a backward compatibility break, but I've done some quite extensive searches and considering I did not find any plugin using the filter (yet), I decided this backward compatibility break would have little to no effect and therefore would be safe to implement. Details
I'm aware that this is a backward compatibility break, but I've done some quite extensive searches and considering I did not find any plugin using the filter (yet), I decided this backward compatibility break would have little to no effect and therefore would be safe to implement.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

In version 1.0 of the plugin <code>$info</code> variable passed to the filter was an array. This has changed in version 2.0. In version 1.0 of the plugin <code>$info</code> variable passed to the filter was an array. This has changed in version 2.0. Details
In version 1.0 of the plugin <code>$info</code> variable passed to the filter was an array. This has changed in version 2.0.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Similarly, if you provide information for the <a href="https://wordpress.org/plugins/shortcode-ui/">Shortcake/Shortcode UI</a> feature plugin, that information will be used automatically to enrich the available information. Similarly, if you provide information for the <a href="https://en-ca.wordpress.org/plugins/shortcode-ui/">Shortcake/Shortcode UI</a> feature plugin, that information will be used automatically to enrich the available information. Details
Similarly, if you provide information for the <a href="https://wordpress.org/plugins/shortcode-ui/">Shortcake/Shortcode UI</a> feature plugin, that information will be used automatically to enrich the available information.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

If you happen to already provide similar information using the <code>sim_{shortcode}</code> filter for the <a href="https://wordpress.org/plugins/lrh-shortcode-list/">LHR-Shortcode list</a> plugin, no need to do anything extra, that information will be picked up by this plugin. If you happen to already provide similar information using the <code>sim_{shortcode}</code> filter for the <a href="https://en-ca.wordpress.org/plugins/lrh-shortcode-list/">LHR-Shortcode list</a> plugin, no need to do anything extra, that information will be picked up by this plugin. Details
If you happen to already provide similar information using the <code>sim_{shortcode}</code> filter for the <a href="https://wordpress.org/plugins/lrh-shortcode-list/">LHR-Shortcode list</a> plugin, no need to do anything extra, that information will be picked up by this plugin.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

is expected to contain (a selection of) the following parameters: is expected to contain (a selection of) the following parameters: Details
is expected to contain (a selection of) the following parameters:
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Legend:
Current
Waiting
Rejected
Fuzzy
Old
Changes requested
With warnings
1 2 3 6

Export as