diff options
| author | Walter Pagani <paganiwalter@gmail.com> | 2021-01-02 21:30:10 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-03 01:30:10 +0100 |
| commit | f7b0532907f2d2b933a51323cc1815e5c58f3c5b (patch) | |
| tree | 83269adfe113ee182c6e69b59f2691204d9111d4 /docs | |
| parent | db9833ab37bb45207b1f7d62479572e2d619b239 (diff) | |
| download | wiki-f7b0532907f2d2b933a51323cc1815e5c58f3c5b.tar.gz wiki-f7b0532907f2d2b933a51323cc1815e5c58f3c5b.tar.bz2 wiki-f7b0532907f2d2b933a51323cc1815e5c58f3c5b.zip | |
docs: SQL example of a Spanish translation. (#321)
* SQL example of a Spanish translation.
* The attribute is written with a capital letter.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/achievement_reward_locale.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/achievement_reward_locale.md b/docs/achievement_reward_locale.md index 6d66338..3c58a6f 100644 --- a/docs/achievement_reward_locale.md +++ b/docs/achievement_reward_locale.md @@ -42,3 +42,10 @@ It is the text of the column `Subject` of the table `achievement_reward` ### Text It is the text of the column `Body` of the table `achievement_reward` + +### Example +```sql +DELETE FROM `achievement_reward_locale` WHERE `ID`=13 AND `Locale`="esES"; +INSERT INTO `achievement_reward_locale` (`ID`, `Locale`, `Subject`, `Text`) VALUES +(13, "esES", "Nivel 80", "Alcanza el nivel 80."); +``` |
