Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Miscellaneous
»
Translations
»
Show 'Language-Team' value of po file in application
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Lazarus Release 2.2.2
by
folkeu08
[
Today
at 09:31:08 pm]
Vector graphics floodfill...
by
BobDog
[
Today
at 08:51:45 pm]
installation warning
by
tetrastes
[
Today
at 08:49:03 pm]
Regex conversion escapes
by
AlexTP
[
Today
at 08:19:24 pm]
binding DOM elements in D...
by
nomorelogic
[
Today
at 07:04:18 pm]
sqlite + spellfix
by
Espectr0
[
Today
at 06:23:33 pm]
HTML to text
by
pcurtis
[
Today
at 06:12:33 pm]
How do I add a Pascal com...
by
rvk
[
Today
at 05:40:11 pm]
Using FV's TListBox, Memo...
by
Mathias
[
Today
at 05:30:06 pm]
How do I access the full ...
by
rvk
[
Today
at 05:21:57 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Show 'Language-Team' value of po file in application (Read 5967 times)
stem
Jr. Member
Posts: 84
Show 'Language-Team' value of po file in application
«
on:
December 30, 2018, 11:09:16 pm »
Hi,
with Poedit you can add in the properties a 'Language-Team'. How can I easily show the value of the 'Language-Team' for the currently selected translation in my application? Thank you!
stem
Logged
stem
Jr. Member
Posts: 84
Re: Show 'Language-Team' value of po file in application
«
Reply #1 on:
May 04, 2019, 09:54:30 pm »
No ideas?
Logged
wp
Hero Member
Posts: 9591
Re: Show 'Language-Team' value of po file in application
«
Reply #2 on:
May 04, 2019, 10:12:54 pm »
In unit "Translations" you can find a class TPoFile which reads the entire file. Property Header contains the name of the last translator and the name of the team. The following code extracts this information from the header:
Code: Pascal
[Select]
[+]
[-]
uses
Translations
;
procedure
ShowTranslationInfo
(
AFileName
:
String
;
out Team
,
Translator
:
String
)
;
var
pofile
:
TPoFile
;
L
:
TStringList
;
i
:
Integer
;
sa
:
TStringArray
;
begin
L
:
=
TStringList
.
Create
;
try
pofile
:
=
TPoFile
.
Create
(
AFileName
)
;
try
L
.
Text
:
=
pofile
.
Header
.
Translation
;
finally
pofile
.
Free
;
end
;
for
i
:
=
0
to
L
.
Count
-
1
do
begin
sa
:
=
L
[
i
]
.
Split
(
':'
)
;
if
(
Length
(
sa
)
=
2
)
then
case
sa
[
0
]
of
'Last-Translator'
:
Translator
:
=
Trim
(
sa
[
1
]
)
;
'Language-Team'
:
Team
:
=
Trim
(
sa
[
1
]
)
;
end
;
end
;
finally
L
.
Free
;
end
;
end
;
Logged
Mainly Lazarus trunk / fpc 3.2.0 / all 32-bit on Win-10, but many more...
stem
Jr. Member
Posts: 84
Re: Show 'Language-Team' value of po file in application
«
Reply #3 on:
May 04, 2019, 10:58:18 pm »
Thank you!
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Miscellaneous
»
Translations
»
Show 'Language-Team' value of po file in application
TinyPortal
© 2005-2018