repo.or.cz
/
LibreOffice.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bump product version to 6.4.0.3
[LibreOffice.git]
/
solenv
/
bin
/
localestr
blob
c66d40cbfd581e9cd7c8deb6d51537f46d8776cc
1
#!/bin/sh
2
3
case
"
$1
"
in
4
ca-valencia
)
5
echo
ca@valencia
6
;;
7
kmr-Latn
)
8
echo
kmr@latin
9
;;
10
sr-Latn
)
11
echo
sr@latin
12
;;
13
hu-Hung
)
14
echo
hu@hung
15
;;
16
*)
17
echo
$1
|
tr
'-'
'_'
18
;;
19
esac
20