What is the way to ship read-me strings like plugin-strings for internationalization?

You can ship translations of some of the metadata used in your main plugin file’s header comment fields. Namely: Name, Description, PluginURI, Author, and AuthorURI. Just add the source strings into your PO/POT files exactly as they appear in your plugin headers. When a MO file is available containing these strings, WordPress will display the … Read more

Styling readme.html in plugin?

It would be better to include your own CSS file that way you can: Use a relative path to your CSS. Avoid problems getting the path right to the wp-admin directory. Not all people put WordPress in the root directory, so your example above would break for them. Possibly redundancy by reusing the CSS in … Read more

How to update WordPress plugin readme.txt description page without triggering a plugin update?

When you look at the plugin description (and other sections), it all comes from the current version README.TXT file. So if you upload a changed version of README.TXT to the current version’s repository (not changing the repository version number), the newly updated README.TXT file information is shown on the page. This is great for updating … Read more