Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
59f3098e
Kaydet (Commit)
59f3098e
authored
Ock 02, 2012
tarafından
Andras Timar
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix KeyID generation for a corner case
üst
7d8f3b19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
keyidGen.pl
l10ntools/scripts/keyidGen.pl
+12
-5
No files found.
l10ntools/scripts/keyidGen.pl
Dosyayı görüntüle @
59f3098e
...
@@ -67,16 +67,23 @@ while ( <INFILE> )
...
@@ -67,16 +67,23 @@ while ( <INFILE> )
my
$title
=
defined
$14
?
$14
:
''
;
my
$title
=
defined
$14
?
$14
:
''
;
my
$timestamp
=
defined
$15
?
$15
:
''
;
my
$timestamp
=
defined
$15
?
$15
:
''
;
@path
=
split
(
"\\\\"
,
$file
);
@path
=
split
(
"\\\\"
,
$file
);
$key
=
$path
[
-
3
]
.
"_"
.
$path
[
-
2
]
.
"_"
.
$path
[
-
1
]
.
"#"
.
$gid
.
"."
;
if
(
defined
$path
[
-
3
])
{
$key
=
$path
[
-
3
]
.
"_"
.
$path
[
-
2
]
.
"_"
.
$path
[
-
1
]
.
"#"
.
$gid
.
"."
;
}
else
{
$key
=
$prj
.
"_"
.
$path
[
-
2
]
.
"_"
.
$path
[
-
1
]
.
"#"
.
$gid
.
"."
;
}
if
(
length
(
$lid
))
{
$key
.=
$lid
.
"."
;}
if
(
length
(
$lid
))
{
$key
.=
$lid
.
"."
;}
if
(
length
(
$type
))
{
$key
.=
$type
.
"."
;}
if
(
length
(
$type
))
{
$key
.=
$type
.
"."
;}
# replace non-word characters to _ just as in po files in source keys
# replace non-word characters to _ just as in po files in source keys
$key
=~
s
|
[
^\
w
#\./]|_|g;
$key
=~
s
|
[
^\
w
#\./]|_|g;
# ISO 639 private use code
# ISO 639 private use code
$lang
=
"qtz"
;
$lang
=
"qtz"
;
if
(
$text
ne
""
)
{
$text
=
makekeyidstr
(
keyidgen
(
$key
.
"text"
),
$text
);}
if
(
$text
ne
""
)
{
$text
=
makekeyidstr
(
keyidgen
(
$key
.
"text"
),
$text
);}
if
(
$quickhelptext
ne
""
)
{
$quickhelptext
=
makekeyidstr
(
keyidgen
(
$key
.
"quickhelptext"
),
$quickhelptext
);}
if
(
$quickhelptext
ne
""
)
{
$quickhelptext
=
makekeyidstr
(
keyidgen
(
$key
.
"quickhelptext"
),
$quickhelptext
);}
if
(
$title
ne
""
)
{
$title
=
makekeyidstr
(
keyidgen
(
$key
.
"title"
),
$title
);}
if
(
$title
ne
""
)
{
$title
=
makekeyidstr
(
keyidgen
(
$key
.
"title"
),
$title
);}
print
OUTFILE
"$prj\t$file\t$dummy\t$type\t$gid\t$lid\t$helpid\t$platform\t$width\t$lang\t$text\t$helptext\t$quickhelptext\t$title\t$timestamp\n"
;
print
OUTFILE
"$prj\t$file\t$dummy\t$type\t$gid\t$lid\t$helpid\t$platform\t$width\t$lang\t$text\t$helptext\t$quickhelptext\t$title\t$timestamp\n"
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment