Stop using presentSuccess because it is hidden behind the modal in slide

This commit is contained in:
Caleb James DeLisle
2017-10-03 12:10:16 +03:00
parent 53f65f6a87
commit 94d2f4472b
10 changed files with 9 additions and 20 deletions
+6
View File
@@ -111,3 +111,9 @@ These tests will check to make sure that your translation has an entry for every
If you have any issues, reach out via any of the methods listed in the readme under **Contacting Us**.
We're happy to help.
## Deleting a translation
When a key is nolonger used (such as presentSuccess) you can delete it using this bash one-liner.
```shell
( export KEY=presentSuccess && grep -nr "$KEY" ./customize.dist/translations/ | sed 's/:.*$//' | while read x; do sed -i -e "/out\.$KEY =/d" $x; done )
```