summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWalter Pagani <paganiwalter@gmail.com>2021-01-02 21:30:10 -0300
committerGitHub <noreply@github.com>2021-01-03 01:30:10 +0100
commitf7b0532907f2d2b933a51323cc1815e5c58f3c5b (patch)
tree83269adfe113ee182c6e69b59f2691204d9111d4
parentdb9833ab37bb45207b1f7d62479572e2d619b239 (diff)
downloadwiki-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.
-rw-r--r--docs/achievement_reward_locale.md7
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.");
+```