Thanks to visit codestin.com
Credit goes to translate.wordpress.org

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

Translation of Development Readme (trunk): Lao

Filter ↓ Sort ↓ All (127) Translated (0) Untranslated (127) Waiting (0) Changes requested (0) Fuzzy (0) Warnings (0)
1 2 3 9
Prio Original string Translation
A modern, React-powered WordPress theme options framework. 30 field types, white-label support, conditional logic — free forever.
Priority: high
You have to log in to add a translation. Details
A modern, React-powered WordPress theme options framework. 30 field types, white-label support, conditional logic — free forever.
Comment

Short description.

You have to log in to edit this translation.

ThemePlus – Modern Theme Options Framework by FrontTheme
Priority: high
You have to log in to add a translation. Details
ThemePlus – Modern Theme Options Framework by FrontTheme
Comment

Plugin name.

You have to log in to edit this translation.

No — intentionally. <code>false</code> and <code>0</code> are NOT considered empty. Only truly absent values, empty strings, empty arrays, and <code>null</code> trigger <code>empty</code>. This matches PHP's <code>empty()</code> semantics for booleans and integers, which is the least surprising behavior for theme developers. You have to log in to add a translation. Details
No — intentionally. <code>false</code> and <code>0</code> are NOT considered empty. Only truly absent values, empty strings, empty arrays, and <code>null</code> trigger <code>empty</code>. This matches PHP's <code>empty()</code> semantics for booleans and integers, which is the least surprising behavior for theme developers.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Yes — use <code>themeplus_add_subsection( 'parent_section_id', [ ...subsection config... ] )</code> from your own <code>init</code> hook (priority 20 or later, after the parent section is registered). This is the recommended pattern for child themes and addon plugins extending a parent theme's panel. You have to log in to add a translation. Details
Yes — use <code>themeplus_add_subsection( 'parent_section_id', [ ...subsection config... ] )</code> from your own <code>init</code> hook (priority 20 or later, after the parent section is registered). This is the recommended pattern for child themes and addon plugins extending a parent theme's panel.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

When <code>define('THEMEPLUS_DEV', true)</code> is added to <code>wp-config.php</code>, a Developer Panel appears in the sidebar showing every registered field with its current saved value, PHP data type, dependency metadata, and code snippets for <code>themeplus_get_option()</code>, direct array access, and <code>themeplus_update_option()</code>. Remove the constant on production sites. You have to log in to add a translation. Details
When <code>define('THEMEPLUS_DEV', true)</code> is added to <code>wp-config.php</code>, a Developer Panel appears in the sidebar showing every registered field with its current saved value, PHP data type, dependency metadata, and code snippets for <code>themeplus_get_option()</code>, direct array access, and <code>themeplus_update_option()</code>. Remove the constant on production sites.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Yes. Any typography field set to a Google Font is automatically enqueued on the frontend via a combined Google Fonts URL. System fonts and custom uploaded fonts are detected and excluded from the Google Fonts request automatically. You have to log in to add a translation. Details
Yes. Any typography field set to a Google Font is automatically enqueued on the frontend via a combined Google Fonts URL. System fonts and custom uploaded fonts are detected and excluded from the Google Fonts request automatically.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Custom fonts are uploaded files stored in the Media Library — not option values. Reset All and Reset Section only affect your option values. Use the Delete button in the Custom Fonts section to remove uploaded font files. This is intentional: resetting settings should never silently delete uploaded assets. You have to log in to add a translation. Details
Custom fonts are uploaded files stored in the Media Library — not option values. Reset All and Reset Section only affect your option values. Use the Delete button in the Custom Fonts section to remove uploaded font files. This is intentional: resetting settings should never silently delete uploaded assets.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

The plugin activates per-site. The uninstall routine cleans up options across all sites on the network. You have to log in to add a translation. Details
The plugin activates per-site. The uninstall routine cleans up options across all sites on the network.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Yes. ThemePlus is GPL-licensed and can be bundled with commercial themes. The recommended approach for ThemeForest is TGM Plugin Activation so buyers can install it from your theme package. You have to log in to add a translation. Details
Yes. ThemePlus is GPL-licensed and can be bundled with commercial themes. The recommended approach for ThemeForest is TGM Plugin Activation so buyers can install it from your theme package.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Section and subsection <code>icon</code> takes a FontAwesome <strong>name only</strong>: <code>'pen'</code>, <code>'palette'</code>, <code>'code'</code>. The Icon <strong>field</strong> <code>default</code> takes the <strong>full FontAwesome class</strong>: <code>'fa-solid fa-star'</code>, <code>'fa-brands fa-github'</code>. The picker modal handles selection in the UI — the default is only the stored fallback. You have to log in to add a translation. Details
Section and subsection <code>icon</code> takes a FontAwesome <strong>name only</strong>: <code>'pen'</code>, <code>'palette'</code>, <code>'code'</code>. The Icon <strong>field</strong> <code>default</code> takes the <strong>full FontAwesome class</strong>: <code>'fa-solid fa-star'</code>, <code>'fa-brands fa-github'</code>. The picker modal handles selection in the UI — the default is only the stored fallback.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

For structured fields like image, border, or repeater, the return value is an array — see the field shapes in the Description section above. You have to log in to add a translation. Details
For structured fields like image, border, or repeater, the return value is an array — see the field shapes in the Description section above.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

$value = themeplus_get_option( 'field_id', 'default_value' ); You have to log in to add a translation. Details
$value = themeplus_get_option( 'field_id', 'default_value' );
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Yes. ThemePlus requires PHP 8.0 or higher and uses PHP 8 type hints, union types, and named arguments throughout. You have to log in to add a translation. Details
Yes. ThemePlus requires PHP 8.0 or higher and uses PHP 8 type hints, union types, and named arguments throughout.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

ThemePlus provides 30 field types, white-label support, conditional logic, Google Fonts, custom fonts, Import/Export, a REST API, and a Developer Panel — all in a modern React UI. It is designed as a complete, standalone theme options solution for WordPress theme developers. You have to log in to add a translation. Details
ThemePlus provides 30 field types, white-label support, conditional logic, Google Fonts, custom fonts, Import/Export, a REST API, and a Developer Panel — all in a modern React UI. It is designed as a complete, standalone theme options solution for WordPress theme developers.
Comment

Found in faq paragraph.

You have to log in to edit this translation.

Yes, completely. ThemePlus is open-source and GPL-2.0-or-later. There are no premium tiers, no feature locks, and no license keys. You have to log in to add a translation. Details
Yes, completely. ThemePlus is open-source and GPL-2.0-or-later. There are no premium tiers, no feature locks, and no license keys.
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 9

Export as