From f7b0532907f2d2b933a51323cc1815e5c58f3c5b Mon Sep 17 00:00:00 2001 From: Walter Pagani Date: Sat, 2 Jan 2021 21:30:10 -0300 Subject: docs: SQL example of a Spanish translation. (#321) * SQL example of a Spanish translation. * The attribute is written with a capital letter. --- docs/achievement_reward_locale.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'docs') 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."); +``` -- cgit