-
-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eeb7c78
commit 1299667
Showing
10 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.strings text | ||
*.strings diff=localizablestrings | ||
This comment has been minimized.
Sorry, something went wrong. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[diff "localizablestrings"] | ||
textconv = "iconv -f utf-16 -t utf-8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ | |
|
||
|
||
<!-- START LICENSE --> | ||
<p class="license">The source code of Keka 1.0 will be not public due some legal issues. Legal support is needed, if you can help the project, please get in contact on [email protected] or the Project page in the official Keka website. Any help is welcome.</p> | ||
<p class="license">The source code of Keka 1.0 will not be public due some legal issues. Legal support is needed, if you can help the project, please get in contact on [email protected] or the Project page on the official Keka website. Any help is welcome.</p> | ||
<!-- END LICENSE --> | ||
|
||
<!-- START WARRANTY --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.strings diff=localizablestrings |
Binary file not shown.
Binary file not shown.
Tip
There's a better way to work with UTF-16-encoded files:
The files will continue to be stored internally in the index using UTF-8, but Git will automatically re-encode them using the value of the working-tree-encoding= attribute (in this case, little-endian UTF-16). Note that a BOM is required for files marked simply as
UTF-16
rather thanUTF-16LE
orUTF-16BE
.Don't forget to run
git add --renormalize .
after updating your.gitattributes
to employ this method (You may need to add or remove byte-order marks for files being marked as UTF-16).