mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-04-21 04:39:10 +02:00
Compare commits
No commits in common. "b43412b13510983639962e813aadff5d47fc6f65" and "ab7652199058b715a836677c042db8751c82f6f8" have entirely different histories.
b43412b135
...
ab76521990
@ -28,9 +28,9 @@ build_script:
|
|||||||
md installer
|
md installer
|
||||||
copy release\GPXSee.exe installer
|
copy release\GPXSee.exe installer
|
||||||
windeployqt --release installer\GPXSee.exe
|
windeployqt --release installer\GPXSee.exe
|
||||||
copy pkg\windows\gpxsee64.nsi installer
|
copy pkg\gpxsee64.nsi installer
|
||||||
xcopy pkg\common\csv installer\csv /i
|
xcopy pkg\csv installer\csv /i
|
||||||
xcopy pkg\common\maps installer\maps /i
|
xcopy pkg\maps installer\maps /i
|
||||||
xcopy lang\*.qm installer\translations\ /sy
|
xcopy lang\*.qm installer\translations\ /sy
|
||||||
xcopy icons\symbols installer\symbols /i
|
xcopy icons\symbols installer\symbols /i
|
||||||
copy licence.txt installer
|
copy licence.txt installer
|
||||||
|
29
gpxsee.pro
29
gpxsee.pro
@ -472,26 +472,23 @@ TRANSLATIONS = lang/gpxsee_en.ts \
|
|||||||
lang/gpxsee_it.ts \
|
lang/gpxsee_it.ts \
|
||||||
lang/gpxsee_eo.ts \
|
lang/gpxsee_eo.ts \
|
||||||
lang/gpxsee_zh.ts \
|
lang/gpxsee_zh.ts \
|
||||||
lang/gpxsee_ca.ts \
|
lang/gpxsee_ca.ts
|
||||||
lang/gpxsee_ko.ts
|
|
||||||
|
|
||||||
macx {
|
macx {
|
||||||
ICON = icons/app/gpxsee.icns
|
ICON = icons/app/gpxsee.icns
|
||||||
QMAKE_INFO_PLIST = pkg/mac/Info.plist
|
QMAKE_INFO_PLIST = pkg/Info.plist
|
||||||
locale.path = Contents/Resources/translations
|
locale.path = Contents/Resources/translations
|
||||||
locale.files = $$files(lang/*.qm)
|
locale.files = $$files(lang/*.qm)
|
||||||
csv.path = Contents/Resources
|
csv.path = Contents/Resources
|
||||||
csv.files = pkg/common/csv
|
csv.files = pkg/csv
|
||||||
maps.path = Contents/Resources
|
maps.path = Contents/Resources
|
||||||
maps.files = pkg/common/maps
|
maps.files = pkg/maps
|
||||||
symbols.path = Contents/Resources/symbols
|
symbols.path = Contents/Resources/symbols
|
||||||
symbols.files = $$files(icons/symbols/*.png)
|
symbols.files = $$files(icons/symbols/*.png)
|
||||||
icons.path = Contents/Resources/icons
|
icons.path = Contents/Resources/icons
|
||||||
icons.files = $$files(icons/formats/*.icns)
|
icons.files = $$files(icons/formats/*.icns)
|
||||||
lproj.path = Contents/Resources
|
|
||||||
lproj.files = $$files(pkg/mac/lproj/*)
|
|
||||||
|
|
||||||
QMAKE_BUNDLE_DATA += locale maps symbols icons csv lproj
|
QMAKE_BUNDLE_DATA += locale maps symbols icons csv
|
||||||
}
|
}
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
@ -536,9 +533,9 @@ win32 {
|
|||||||
unix:!macx:!android {
|
unix:!macx:!android {
|
||||||
isEmpty(PREFIX):PREFIX = /usr/local
|
isEmpty(PREFIX):PREFIX = /usr/local
|
||||||
|
|
||||||
maps.files = $$files(pkg/common/maps/*)
|
maps.files = $$files(pkg/maps/*)
|
||||||
maps.path = $$PREFIX/share/gpxsee/maps
|
maps.path = $$PREFIX/share/gpxsee/maps
|
||||||
csv.files = $$files(pkg/common/csv/*)
|
csv.files = $$files(pkg/csv/*)
|
||||||
csv.path = $$PREFIX/share/gpxsee/csv
|
csv.path = $$PREFIX/share/gpxsee/csv
|
||||||
symbols.files = $$files(icons/symbols/*.png)
|
symbols.files = $$files(icons/symbols/*.png)
|
||||||
symbols.path = $$PREFIX/share/gpxsee/symbols
|
symbols.path = $$PREFIX/share/gpxsee/symbols
|
||||||
@ -546,14 +543,12 @@ unix:!macx:!android {
|
|||||||
locale.path = $$PREFIX/share/gpxsee/translations
|
locale.path = $$PREFIX/share/gpxsee/translations
|
||||||
icon.files = $$files(icons/app/hicolor/*)
|
icon.files = $$files(icons/app/hicolor/*)
|
||||||
icon.path = $$PREFIX/share/icons/hicolor
|
icon.path = $$PREFIX/share/icons/hicolor
|
||||||
desktop.files = pkg/linux/gpxsee.desktop
|
desktop.files = pkg/gpxsee.desktop
|
||||||
desktop.path = $$PREFIX/share/applications
|
desktop.path = $$PREFIX/share/applications
|
||||||
mime.files = pkg/linux/gpxsee.xml
|
mime.files = pkg/gpxsee.xml
|
||||||
mime.path = $$PREFIX/share/mime/packages
|
mime.path = $$PREFIX/share/mime/packages
|
||||||
appdata.files = pkg/linux/gpxsee.appdata.xml
|
|
||||||
appdata.path = $$PREFIX/share/metainfo
|
|
||||||
target.path = $$PREFIX/bin
|
target.path = $$PREFIX/bin
|
||||||
INSTALLS += target maps csv symbols locale icon desktop mime appdata
|
INSTALLS += target maps csv symbols locale icon desktop mime
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
@ -586,9 +581,9 @@ android {
|
|||||||
pkg/android/build.gradle \
|
pkg/android/build.gradle \
|
||||||
pkg/android/res/values/libs.xml
|
pkg/android/res/values/libs.xml
|
||||||
|
|
||||||
maps.files = $$files(pkg/common/maps/*)
|
maps.files = $$files(pkg/maps/*)
|
||||||
maps.path = /assets/maps
|
maps.path = /assets/maps
|
||||||
csv.files = $$files(pkg/common/csv/*)
|
csv.files = $$files(pkg/csv/*)
|
||||||
csv.path = /assets/csv
|
csv.path = /assets/csv
|
||||||
symbols.files = $$files(icons/symbols/*.png)
|
symbols.files = $$files(icons/symbols/*.png)
|
||||||
symbols.path = /assets/symbols
|
symbols.path = /assets/symbols
|
||||||
|
@ -556,7 +556,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/GUI/gui.cpp" line="432"/>
|
<location filename="../src/GUI/gui.cpp" line="432"/>
|
||||||
<source>Use styles</source>
|
<source>Use styles</source>
|
||||||
<translation>Uzi stilojn</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/GUI/gui.cpp" line="439"/>
|
<location filename="../src/GUI/gui.cpp" line="439"/>
|
||||||
@ -603,7 +603,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/GUI/gui.cpp" line="482"/>
|
<location filename="../src/GUI/gui.cpp" line="482"/>
|
||||||
<source>Show tabs</source>
|
<source>Show tabs</source>
|
||||||
<translation>Montri langetojn</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/GUI/gui.cpp" line="491"/>
|
<location filename="../src/GUI/gui.cpp" line="491"/>
|
||||||
@ -1241,7 +1241,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/map/maplist.cpp" line="158"/>
|
<location filename="../src/map/maplist.cpp" line="158"/>
|
||||||
<source>Electronic Navigational Charts</source>
|
<source>Electronic Navigational Charts</source>
|
||||||
<translation>ENC-mapoj</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/map/maplist.cpp" line="165"/>
|
<location filename="../src/map/maplist.cpp" line="165"/>
|
||||||
|
@ -557,7 +557,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/GUI/gui.cpp" line="432"/>
|
<location filename="../src/GUI/gui.cpp" line="432"/>
|
||||||
<source>Use styles</source>
|
<source>Use styles</source>
|
||||||
<translation>Käytä tyylejä</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/GUI/gui.cpp" line="439"/>
|
<location filename="../src/GUI/gui.cpp" line="439"/>
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -557,7 +557,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/GUI/gui.cpp" line="432"/>
|
<location filename="../src/GUI/gui.cpp" line="432"/>
|
||||||
<source>Use styles</source>
|
<source>Use styles</source>
|
||||||
<translation>Использовать стили</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/GUI/gui.cpp" line="439"/>
|
<location filename="../src/GUI/gui.cpp" line="439"/>
|
||||||
@ -1247,7 +1247,7 @@
|
|||||||
<message>
|
<message>
|
||||||
<location filename="../src/map/maplist.cpp" line="158"/>
|
<location filename="../src/map/maplist.cpp" line="158"/>
|
||||||
<source>Electronic Navigational Charts</source>
|
<source>Electronic Navigational Charts</source>
|
||||||
<translation>Морские карты ENC</translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../src/map/maplist.cpp" line="165"/>
|
<location filename="../src/map/maplist.cpp" line="165"/>
|
||||||
|
Can't render this file because it is too large.
|
@ -325,7 +325,6 @@ SectionGroup "Localization" SEC_LOCALIZATION
|
|||||||
!insertmacro LOCALIZATION "German" "de"
|
!insertmacro LOCALIZATION "German" "de"
|
||||||
!insertmacro LOCALIZATION "Hungarian" "hu"
|
!insertmacro LOCALIZATION "Hungarian" "hu"
|
||||||
!insertmacro LOCALIZATION "Italian" "it"
|
!insertmacro LOCALIZATION "Italian" "it"
|
||||||
!insertmacro LOCALIZATION "Korean" "ko"
|
|
||||||
!insertmacro LOCALIZATION "Norwegian" "nb"
|
!insertmacro LOCALIZATION "Norwegian" "nb"
|
||||||
!insertmacro LOCALIZATION "Polish" "pl"
|
!insertmacro LOCALIZATION "Polish" "pl"
|
||||||
!insertmacro LOCALIZATION "Portuguese (Brazil)" "pt_BR"
|
!insertmacro LOCALIZATION "Portuguese (Brazil)" "pt_BR"
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>ca</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>cs</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>da</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>de</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>en</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>eo</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>es</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>fi</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>fr</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>hu</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>it</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>ko</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>nb</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>pl</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>pt</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>ru</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>sv</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>tr</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>uk</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>zh</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
@ -1,21 +0,0 @@
|
|||||||
#/bin/bash
|
|
||||||
|
|
||||||
for QM in ../../../lang/*.qm; do
|
|
||||||
LANG=`echo $QM | cut -d'_' -f2 | cut -d. -f1`
|
|
||||||
DIR=../lproj/$LANG.lproj
|
|
||||||
mkdir -p $DIR
|
|
||||||
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
|
|
||||||
<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
|
|
||||||
<plist version=\"1.0\">
|
|
||||||
<dict>
|
|
||||||
<key>LprojCompatibleVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
<key>LprojLocale</key>
|
|
||||||
<string>$LANG</string>
|
|
||||||
<key>LprojRevisionLevel</key>
|
|
||||||
<string>1</string>
|
|
||||||
<key>LprojVersion</key>
|
|
||||||
<string>123</string>
|
|
||||||
</dict>
|
|
||||||
</plist>" > $DIR/locversion.plist
|
|
||||||
done
|
|
Loading…
x
Reference in New Issue
Block a user