official (momanager) language packs

For efforts in internationalising Puppy and solving problems in this area
Message
Author
User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

momanager

#51 Post by L18L »

Bert wrote:#130525 L18L replace intltool-update by msgmerge

I presumed that was the code in your reply to Don570...so added that now.
Exactly!
... and this code snippet has made it into official momanager
http://bkhome.org/blog2/?viewDetailed=00267
(where Barry says it occurs in two places.)

I really should build an actual version of fast momanager soon.

edit
...done

edit
deleted 13 times downloaded pet

please simply use newer momanager-130601.pet: http://www.murga-linux.com/puppy/viewto ... 9&start=85
Last edited by L18L on Sun 09 Jun 2013, 12:35, edited 1 time in total.

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

fast momanager

#52 Post by L18L »

How would you like this sort

alphabetic
case insensitive
basename. not PATH

:?:

I have found it difficult to find any script in the old sort order
Attachments
momanager_sort.png
(32.25 KiB) Downloaded 366 times

User avatar
Bert
Posts: 1103
Joined: Fri 30 Jun 2006, 20:09

Re: fast momanager

#53 Post by Bert »

L18L wrote:How would you like this sort

alphabetic
case insensitive
basename. not PATH

:?:

I have found it difficult to find any script in the old sort order
Great idea!

I have a secret momanager wish list, one of the items on that list was a search function...your idea is much better. It would certainly clear up the interface.

PATH is probably only useful for people like me, still learning where things are in Puppy?
Otherwise, would it be helpful to do:

alphabetic
case insensitive
basename, then PATH

?

Would the latest edited file be still on top in this new setup? Or is that then redundant, given the ease with which to find a file?

Anyhow, I vote 5 stars for your idea :!:
[url=http://pupsearch.weebly.com/][img]http://pupsearch.weebly.com/uploads/7/4/6/4/7464374/125791.gif[/img][/url]
[url=https://startpage.com/do/search?q=host%3Awww.murga-linux.com%2F][img]http://i.imgur.com/XJ9Tqc7.png[/img][/url]

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#54 Post by don570 »

My wish list ---

A warning about old .pot files :twisted:

If the script has been changed momanager uses the old
pot file and becomes confused. I've had more problems with
old pot files than anything else.

_________________________________

User avatar
vicmz
Posts: 1262
Joined: Sun 15 Jan 2012, 22:47

Re: momanager

#55 Post by vicmz »

L18L wrote: Why not use the new Puppies built with woof2 ?
... and improve them if there should be anything wrong in them ?
That's actually what I say and do. Maybe some people feel nostalgic, like they miss that times, or maybe they think their hardware is too old for a newer Puppy.
[url=http://murga-linux.com/puppy/viewtopic.php?t=76948]Puppy Linux en español[/url]

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

Re: momanager

#56 Post by L18L »

vicmz wrote:...Maybe some people feel nostalgic...
... and English only is part of that nostalgic :lol:

They all should try shinobar's waryq...

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

momanager

#57 Post by L18L »

don570 wrote:My wish list ---

A warning about old .pot files :twisted:

If the script has been changed momanager uses the old
pot file and becomes confused. I've had more problems with
old pot files than anything else.

_________________________________
Check the POT-Creation-Date

momanager is always trying to create an actual pot file for scripts,
except in case when a pot file or a po file is found.

Look for example at
"POT-Creation-Date: 2011-08-27 16:07+0100\n"

is it from today?
No?
So it is old and you should delete .pot and .po

... and momanager will
- create an actual pot file
- merge your existing translations

You have to check
- empty msgstr
- Fuzzy marked translations
- delete unneeded #

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

Re: fast momanager

#58 Post by L18L »

Bert wrote:I have a secret momanager wish list
Could you publish this list please?
Bert wrote:PATH is probably only useful for people like me, still learning where things are in Puppy?

Where is what in puppy? (How I do it)
You know the text in the menu only. ex: Pcur

Code: Select all

# which Pcur
#
returned nothing because there is no executable Pcur.
So you will grep the menu:

Code: Select all

# grep Pcur .jwmrc
<Program label="Pcur Mauszeiger-Auswahl" icon="default_left_ptr.png">pcur</Program>
<Program label="PcurlFtp Datei sharing" icon="pc-2x.xpm">rox -d /root/File-Sharing</Program>
from which you pick the program pcur.
...now command which will show you where it is:

Code: Select all

# which pcur
/usr/sbin/pcur
#
That's it :wink:
Bert wrote:Otherwise, would it be helpful to do:

alphabetic
case insensitive
basename, then PATH
I understand. Just the base name at the beginning would make it easiest possible for you (and me). But that would have to result in too big changes from Barry's momanager. I want the changes in the code being very simple, and just sorting is simple.
Bert wrote:Would the latest edited file be still on top in this new setup? Or is that then redundant, given the ease with which to find a file?
Yes it is on top because everything other than this would slow it down again.

-----
what is new in attached momanager-20130602 ?
scripts are sorted
binaries are sorted

edit
12 x downloaded momanager-20130602 deleted
simply use newer momanager.pet: http://www.murga-linux.com/puppy/viewto ... 9&start=85
Attachments
momanager_sort.png
(32.25 KiB) Downloaded 301 times
momanager_sort_binaries.png
(22.9 KiB) Downloaded 308 times
Last edited by L18L on Sun 09 Jun 2013, 12:46, edited 5 times in total.

User avatar
Bert
Posts: 1103
Joined: Fri 30 Jun 2006, 20:09

Re: momanager

#59 Post by Bert »

L18L wrote:
don570 wrote:My wish list ---

A warning about old .pot files :twisted:

If the script has been changed momanager uses the old
pot file and becomes confused. I've had more problems with
old pot files than anything else.

_________________________________
Check the POT-Creation-Date

momanager is always trying to create an actual pot file for scripts,
except in case when a pot file or a po file is found.

Look for example at
"POT-Creation-Date: 2011-08-27 16:07+0100\n"

is it from today?
No?
So it is old and you should delete .pot and .po

... and momanager will
- create an actual pot file
- merge your existing translations
That looks like one of the many L18L-posts that should be stickied :wink:
is it from today?
No?
So it is old and you should delete .pot and .po
Delete from? /usr/share/doc/nls only?
[url=http://pupsearch.weebly.com/][img]http://pupsearch.weebly.com/uploads/7/4/6/4/7464374/125791.gif[/img][/url]
[url=https://startpage.com/do/search?q=host%3Awww.murga-linux.com%2F][img]http://i.imgur.com/XJ9Tqc7.png[/img][/url]

User avatar
Bert
Posts: 1103
Joined: Fri 30 Jun 2006, 20:09

Re: fast momanager

#60 Post by Bert »

L18L wrote:
Bert wrote:I have a secret momanager wish list
Could you publish this list please?
Well it's a short wish list really:

1. a search/find function, you know the luxurious type: just type 'pc' and up come all the entries for 'pcur'.

2. A 'Preferences' button ( or 'Settings' button) for Momanager:

* whenever I start a new translation, there's the MoManager intro-window, which I have to OK. Not really needed. So in 'Preferences' I tick 'No thanks, I've read it a hundred times'

* whenever I start a new translation, I am asked to choose between 'nl' and 'nl.NL'. I would like to teach MoManager I only use e.g. 'nl'. So this could be in the MoManager 'Preferences' as a predefined choice, not asked again at every new start of a translation.

* whenever I start a new translation, MoManager wants to know if I'm root@localhost :roll: ...I'm Bert and I typed in my email address so many times, I will never be able to forget it. So, in 'Preferences' there's a field to enter your email address once and for all.
L18L wrote:
Bert wrote:PATH is probably only useful for people like me, still learning where things are in Puppy?

Where is what in puppy? (How I do it)
You know the text in the menu only. ex: Pcur

Code: Select all

# which Pcur
#
returned nothing because there is no executable Pcur.
So you will grep the menu:

Code: Select all

# grep Pcur .jwmrc
<Program label="Pcur Mauszeiger-Auswahl" icon="default_left_ptr.png">pcur</Program>
<Program label="PcurlFtp Datei sharing" icon="pc-2x.xpm">rox -d /root/File-Sharing</Program>
from which you pick the program pcur.
...now command which will show you where it is:

Code: Select all

# which pcur
/usr/sbin/pcur
#
That's it :wink:


Thanks for this new voodoo lesson :lol:
When I type ' which Pcur' in terminal, I get:

Code: Select all

 /usr/sbin/pcur
The grep stuff is probably for learning purposes?

L18L wrote:
Bert wrote:Otherwise, would it be helpful to do:

alphabetic
case insensitive
basename, then PATH
I understand. Just the base name at the beginning would make it easiest possible for you (and me). But that would have to result in too big changes from Barry's momanager. I want the changes in the code being very simple, and just sorting is simple.
Wouldn't it make sense to fork Fast MoManager for a while? That would allow you to freely explore new territory.
Your original sorting idea is too good to get compromised by the need to keep compatibility with our grand master BK.
[url=http://pupsearch.weebly.com/][img]http://pupsearch.weebly.com/uploads/7/4/6/4/7464374/125791.gif[/img][/url]
[url=https://startpage.com/do/search?q=host%3Awww.murga-linux.com%2F][img]http://i.imgur.com/XJ9Tqc7.png[/img][/url]

User avatar
Bert
Posts: 1103
Joined: Fri 30 Jun 2006, 20:09

back to my "BAD NEWS" returning

#61 Post by Bert »

Okay, this is about my problem with MoManager described on top of last page.

L18L tried to reproduce it and could not do so.

Neither can I, but I don't need to, as it reproduces itself... randomly.(or so it seems)

I'll try to explain: I can translate a couple of files without any problem and then suddenly things go wrong in one of two ways:

1. This is what happens most often: when trying to edit a left side file, MoManager is unable to merge the .po and .pot files and pops up "BAD NEWS", etc..

2. Same as 1., but a seemingly random amount of right side (untranslated) files (without a .mo) move to the left side.
After restarting MM, everything is back to normal.

As no other translators are complaining about this, I can only conclude:

* no one is really actively using MM at the moment, I mean doing translation with many files still to go.

OR:

* I have a local problem that is not yet understood.

Using the 20130601 pet didn't solve it.

I'm not panicking, as it is more or less usable. But something is definitely not right.
[url=http://pupsearch.weebly.com/][img]http://pupsearch.weebly.com/uploads/7/4/6/4/7464374/125791.gif[/img][/url]
[url=https://startpage.com/do/search?q=host%3Awww.murga-linux.com%2F][img]http://i.imgur.com/XJ9Tqc7.png[/img][/url]

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

Re: momanager

#62 Post by L18L »

Bert wrote:...Delete from? /usr/share/doc/nls only?
Yes or move it elsewhere.[/quote]
/usr/sbin/momanager wrote:#120731 any script can have a pre-existing .pot file in /usr/share/doc/nls, it will automatically be used instead of generating a .pot file.
#
Bert wrote:When I type ' which Pcur' in terminal, I get:
Code:
/usr/sbin/pcur
So I guess you are using something other than precise5.6.1.
Bert wrote:The grep stuff is probably for learning purposes?
Yes, I had the impression that you wanted to learn something :)

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

Re: fast momanager

#63 Post by L18L »

Bert wrote:Well it's a short wish list really:

1. a search/find function, you know the luxurious type: just type 'pc' and up come all the entries for 'pcur'.

2. A 'Preferences' button ( or 'Settings' button) for Momanager:

* whenever I start a new translation, there's the MoManager intro-window, which I have to OK. Not really needed. So in 'Preferences' I tick 'No thanks, I've read it a hundred times'

* whenever I start a new translation, I am asked to choose between 'nl' and 'nl.NL'. I would like to teach MoManager I only use e.g. 'nl'. So this could be in the MoManager 'Preferences' as a predefined choice, not asked again at every new start of a translation.

* whenever I start a new translation, MoManager wants to know if I'm root@localhost :roll: ...I'm Bert and I typed in my email address so many times, I will never be able to forget it. So, in 'Preferences' there's a field to enter your email address once and for all.
.... and I add:
suppress create button for empty list
.... and I readd:
sort by base name.......
At http://puppylinux.com/development/project-statement.htm BarryK wrote:Now to get onto what really matters... having fun with Puppy.
.... and fork 8)

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

forked fast momanager

#64 Post by L18L »

Wish number 2 became true

Note the Preferences button

Have fun
Attachments
momanager-20130603.pet
(26.22 KiB) Downloaded 458 times

User avatar
Bert
Posts: 1103
Joined: Fri 30 Jun 2006, 20:09

#65 Post by Bert »

Wow .. what can I say, never really expected you to implement this and certainly not this fast. Just wonderful :!:

Code: Select all

showINTRO=no 
transLANG=nl
myEMAIL=bert@
* Email: It now says "Automatically generated" in the .po heading. When does this happen? I reopened a translated file and it still says this. Email generation when the pet is created?

Thank You Very Much L18L!
[url=http://pupsearch.weebly.com/][img]http://pupsearch.weebly.com/uploads/7/4/6/4/7464374/125791.gif[/img][/url]
[url=https://startpage.com/do/search?q=host%3Awww.murga-linux.com%2F][img]http://i.imgur.com/XJ9Tqc7.png[/img][/url]

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

bug

#66 Post by L18L »

Bert wrote:* Email: It now says "Automatically generated" in the .po heading.
Sorry, my bug :oops:

gettext-tool msginit scans your PC about all known email clients where there could be your email addresses (yes: plural)
and $USER@$HOST which is root@localhost. If there is more than 1 address it has to be selected, just one address has to be confirmed.

I have inserted the --no-translator parameter which creates the "Automatically generated".

... and wanted to change this into $myEMAIL.

Reviewing the code I see my mistake: I forgot to change de.po (my test file) to output-file ${ATEXTDOMAIN}.po
in lines: 917 1062 1647 1656

Code: Select all

sed -i 's/ de.po/ ${ATEXTDOMAIN}.po/' /usr/sbin/momager
will repair this. (copy the code into console and press ENTER key :D )

Or wait for next version which will have also other improvements

User avatar
Bert
Posts: 1103
Joined: Fri 30 Jun 2006, 20:09

#67 Post by Bert »

Repaired :)
(after correcting 'momager' typo in code)
((funny, I often have that typo too! ))

It works flawlessly on new files.

But the file I translated yesterday still has "Automatically generated" in the header, even after editing and saving it twice.

So, for existing translations the programme doesn't use the $myEMAIL , it seems.
(which is maybe a design decision, not a bug :wink: )

Thanks again.
[url=http://pupsearch.weebly.com/][img]http://pupsearch.weebly.com/uploads/7/4/6/4/7464374/125791.gif[/img][/url]
[url=https://startpage.com/do/search?q=host%3Awww.murga-linux.com%2F][img]http://i.imgur.com/XJ9Tqc7.png[/img][/url]

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

forked fast momanager

#68 Post by L18L »

Bert wrote:...
So, for existing translations the programme doesn't use the $myEMAIL , it seems.
(which is maybe a design decision, not a bug :wink: )
Yes it it is a design decision.
msginit is invoked only for create.

Here is next version 130604 :

language in head line
--empty-- simply makes momanager restart now
search
Attachments
momanager-20130604.pet
(26.76 KiB) Downloaded 455 times
momanager_search.png
(54.2 KiB) Downloaded 388 times

User avatar
Bert
Posts: 1103
Joined: Fri 30 Jun 2006, 20:09

#69 Post by Bert »

Looking good!

Nice to have the correct language notation on top ('de' or 'de.DE')

After reading your thread about"How to find typo in mo file", I'm beginning to understand what you had in mind for the search engine.

To be honest, my proposal was much more modest: I was thinking about a find-function only for the script names in the Momanager lists. That was before you decided to reconsider 'sort by basename'... :wink:

But I can see how your search function will become useful.

"--empty--"...nice..but why? (no need to reply, I'll get it in a few hours :lol: )

I'll continue playing with FFMM-20130604 now.
Thanks!
[url=http://pupsearch.weebly.com/][img]http://pupsearch.weebly.com/uploads/7/4/6/4/7464374/125791.gif[/img][/url]
[url=https://startpage.com/do/search?q=host%3Awww.murga-linux.com%2F][img]http://i.imgur.com/XJ9Tqc7.png[/img][/url]

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

#70 Post by L18L »

Bert wrote:"--empty--"...nice..but why? (no need to reply, I'll get it in a few hours :lol: )
But it is fun to reply.

You will never get it because nothing happens.
Before this improvement I had to cancel the edit of a file named ".po" and click some cancel buttons when I was accidently clicking "create" button for --empty--.

BTW do you have --empty-- at left side?
If yes then you could have tried it. :wink:

Post Reply