ateeducacion / wp-decker

WordPress plugin to manage task lists with a Kanban board and unique priority system
GNU General Public License v3.0
0 stars 0 forks source link

Translate All Strings for Internationalization #2

Open erseco opened 5 days ago

erseco commented 5 days ago

Description:
Currently, some strings within the project are not translated, which affects the consistency and usability for non-English speaking users. All user-facing strings should be wrapped in translation functions to ensure they can be localized.

Tasks:

  1. Identify all strings that are currently hardcoded in English.
  2. Wrap each string using the appropriate translation function (e.g., _e(), __(), esc_html__(), etc. for WordPress).
  3. Create or update the translation files (.pot, .po, .mo) accordingly.

Expected Outcome:
All strings in the project should be ready for translation, allowing for seamless localization into different languages.

Additional Context:
This change is necessary for improving accessibility and user experience for international audiences. Ensure consistent text domain usage throughout the project to avoid conflicts or translation gaps.