Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[loc] add localization support
* This is a merge up to commit bd31926 of the localization branch * Also fixes Clang warnings
- Loading branch information
Showing
with
3,022 additions
and 489 deletions.
- +690 −0 res/localization/rufus.loc
- +7 −0 src/.msvc/rufus.vcxproj
- +9 −0 src/.msvc/rufus.vcxproj.filters
- +1 −0 src/.msvc/rufus_sources
- +1 −1 src/Makefile.am
- +16 −7 src/Makefile.in
- +8 −6 src/badblocks.c
- +3 −2 src/drive.c
- +30 −34 src/format.c
- +8 −9 src/iso.c
- +13 −14 src/license.h
- +368 −0 src/localization.c
- +158 −0 src/localization.h
- +382 −0 src/localization_data.h
- +89 −0 src/localization_data.sh
- +42 −0 src/msapi_utf8.h
- +11 −10 src/net.c
- +434 −24 src/parser.c
- +288 −15 src/resource.h
- +212 −205 src/rufus.c
- +17 −6 src/rufus.h
- +37 −36 src/rufus.rc
- +3 −1 src/stdfn.c
- +41 −54 src/stdio.c
- +152 −64 src/stdlg.c
- +2 −1 src/syslinux.c
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
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
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
| @@ -36,6 +36,7 @@ SOURCES=rufus.c \ | ||
| stdlg.c \ | ||
| icon.c \ | ||
| parser.c \ | ||
| localization.c \ | ||
| net.c \ | ||
| iso.c \ | ||
| dos.c \ | ||
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
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
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
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
Oops, something went wrong.