Author |
Message |
L18L
Joined: 19 Jun 2010 Posts: 3450 Location: www.eussenheim.de/
|
Posted: Tue 01 Jul 2014, 10:16 Post subject:
Re: Deppen-Apostroph und unvollständige Sätze |
|
antilet wrote: | ...aber der hier ist peinlich:
Da kommt natürlich kein (Deppen-) Apostroph... |
...aber Deppen dürfens doch so schreiben, oder?
|
Back to top
|
|
 |
RSH

Joined: 05 Sep 2011 Posts: 2420 Location: Germany
|
Posted: Tue 01 Jul 2014, 10:41 Post subject:
Re: Deppen-Apostroph und unvollständige Sätze |
|
L18L wrote: | antilet wrote: | ...aber der hier ist peinlich:
Da kommt natürlich kein (Deppen-) Apostroph... |
...aber Deppen dürfens doch so schreiben, oder? |
Cool, Ihr habt ihn auf Anhieb gefunden!
Dann dürfte die nächste Version des DE Sprachpakets wohl um einiges besser ausfallen (was wirklich schön wäre)?
Bin schon gespannt.
_________________ LazY Puppy
RSH's DNA
SARA B.
|
Back to top
|
|
 |
gcmartin
Joined: 14 Oct 2005 Posts: 6730 Location: Earth
|
Posted: Tue 01 Jul 2014, 13:01 Post subject:
|
|
@L18L, there is a PM to you on something you may find useful as discussion continues on a technique to have Puppy start with proper language for user use: And, where in the system start, language can be offered.
For your consideration. If you find it proper, share it with the community.
_________________ Get ACTIVE Create Circles; Do those good things which benefit people's needs!
We are all related ... Its time to show that we know this!
3 Different Puppy Search Engines or use DogPile
|
Back to top
|
|
 |
xanad

Joined: 28 Feb 2014 Posts: 400 Location: 2 locations: MonteRosa Alp and Milano
|
Posted: Sat 05 Jul 2014, 15:09 Post subject:
|
|
Hi L18L
I solved a little problem that perhaps it may be useful to you too.
to rename the links inside
/root/.config/rox.sourceforge.net/OpenWith/***
I created a file called delete.sh (a + x) and placed in /root/Startup with the following code inside:
for slacko570
Code: | #!/bin/sh
mv /root/.config/rox.sourceforge.net/OpenWith/.inode_directory/Search\ with\ Pfind /root/.config/rox.sourceforge.net/OpenWith/.inode_directory/Cerca\ con\ Pfind ;
mv /root/.config/rox.sourceforge.net/OpenWith/.image_gif/Send-to\ Backgrounds /root/.config/rox.sourceforge.net/OpenWith/.image_gif/Copia\ in\ Backgrounds ;
mv /root/.config/rox.sourceforge.net/OpenWith/.image_jpeg/Send-to\ Backgrounds /root/.config/rox.sourceforge.net/OpenWith/.image_jpeg/Copia\ in\ Backgrounds ;
mv /root/.config/rox.sourceforge.net/OpenWith/.image_png/Send-to\ Backgrounds /root/.config/rox.sourceforge.net/OpenWith/.image_png/Copia\ in\ Backgrounds ;
rm /root/Startup/delete.sh |
for Precise 5.7.1:
Code: | #!/bin/sh
mv /root/.config/rox.sourceforge.net/OpenWith/.inode_directory/Search\ with\ Pfind /root/.config/rox.sourceforge.net/OpenWith/.inode_directory/Cerca\ con\ Pfind ;
mv /root/.config/rox.sourceforge.net/OpenWith/.application_x-cd-image/Burn\ with\ Pburn /root/.config/rox.sourceforge.net/OpenWith/.application_x-cd-image/Masterizza\ con\ Pburn ;
rm /root/Startup/delete.sh |
After restarting X everything is translated, and the delete.sh file is deleted automatically.
Great for:
Search with PFind
Burn with PBurn
Extract here
Send-to Backgrounds, etc..
Just add /root/Startup/delete.sh in langpack
_________________ www.xanad.tk Html5 Parallax
|
Back to top
|
|
 |
L18L
Joined: 19 Jun 2010 Posts: 3450 Location: www.eussenheim.de/
|
Posted: Tue 15 Jul 2014, 14:04 Post subject:
OpenWith |
|
Thank you, xanad
You have made me thinking and doing it my way:
Code: | #!/bin/sh
# /usr/sbin/fixroxOpenWith
# L18L July 2014 GPL
# make link text translatable
# based upon xanad's suggestion,
# see http://www.murga-linux.com/puppy/viewtopic.php?t=76368&start=123
export TEXTDOMAIN=fixroxOpenWith
cd /root/.config/rox.sourceforge.net/OpenWith
for DATA in "Pfind|.inode_directory|$(gettext 'Search with Pfind')" "pburn|.application_x-cd-image|$(gettext 'Burn with Pburn')" "Backgrounds|.image_gif|$(gettext 'Send-to Backgrounds')" "Backgrounds|.image_jpeg|$(gettext 'Send-to Backgrounds')" "Backgrounds|.image_png|$(gettext 'Send-to Backgrounds')"
do
APP="`echo $DATA | cut -d'|' -f1`"
DIR="`echo $DATA | cut -d'|' -f2`"
LNK="`echo $DATA | cut -d'|' -f3`"
oldLINK="`ls --full-time $DIR | grep $APP | cut -d' ' -f9- | cut -d'>' -f1 | rev | cut -c3- | rev`" #ex:Copia in Backgrounds
[ "$oldLINK" != "$LNK" ] && mv "${DIR}/${oldLINK}" "${DIR}"/"${LNK}"
done
cd - >/dev/null |
It is included into multilingual simultan where you can switch between several languages....
Thank you again
|
Back to top
|
|
 |
xanad

Joined: 28 Feb 2014 Posts: 400 Location: 2 locations: MonteRosa Alp and Milano
|
Posted: Wed 16 Jul 2014, 11:24 Post subject:
|
|
Ciao L18L,
great, is better than mine, and can be added in the next puppies.
Last edited by xanad on Fri 18 Jul 2014, 06:34; edited 1 time in total
|
Back to top
|
|
 |
xanad

Joined: 28 Feb 2014 Posts: 400 Location: 2 locations: MonteRosa Alp and Milano
|
Posted: Fri 18 Jul 2014, 04:07 Post subject:
|
|
solved!
Last edited by xanad on Fri 18 Jul 2014, 06:36; edited 1 time in total
|
Back to top
|
|
 |
L18L
Joined: 19 Jun 2010 Posts: 3450 Location: www.eussenheim.de/
|
Posted: Fri 18 Jul 2014, 05:02 Post subject:
|
|
xanad
please ask moderator Flash to delete this post and your post above.
It is double posted and not at all related to this thread
|
Back to top
|
|
 |
L18L
Joined: 19 Jun 2010 Posts: 3450 Location: www.eussenheim.de/
|
Posted: Mon 06 Oct 2014, 14:33 Post subject:
woof international (Sprachpaket langpack_de-20141006.pet) Subject description: 20141006 |
|
Link zum etwas aktuelleren Sprachpaket wie immer auf Seite 1.
|
Back to top
|
|
 |
L18L
Joined: 19 Jun 2010 Posts: 3450 Location: www.eussenheim.de/
|
Posted: Tue 07 Oct 2014, 11:29 Post subject:
Sprachpaket langpack_de-20141007.pet Subject description: 20141007 |
|
Link zum aktuellsten Sprachpaket wie immer auf Seite 1.
|
Back to top
|
|
 |
antilet
Joined: 17 Aug 2012 Posts: 217
|
Posted: Tue 11 Nov 2014, 06:03 Post subject:
|
|
Hast du schon mal daran gedacht, die Sparchdateien bei git oder so einzustellen, da könnte jeder, der möchte, auf die Schnelle was ändern.
(Das habe ich schon bei einigen anderen Programmen gesehen und genutzt - ich finde das sehr praktisch.) Vorallem muss dann nicht jeder mit den mo und po rumwurschteln...
_________________ Toshiba Satallite M30X-124 | ATI Mobility Radeon 9700 | Intel PRO/Wireless 2200BG
Most Linux need special boot options to boot on this laptop: i8042.nomux=1 highres=off nohz=off irqpoll
|
Back to top
|
|
 |
L18L
Joined: 19 Jun 2010 Posts: 3450 Location: www.eussenheim.de/
|
Posted: Tue 11 Nov 2014, 13:50 Post subject:
|
|
antilet wrote: | Hast du schon mal daran gedacht, die Sprachdateien bei git oder so einzustellen, ... |
Nein, ich nicht. Aber ASRI hat: http://www.murga-linux.com/puppy/viewtopic.php?t=95215
|
Back to top
|
|
 |
antilet
Joined: 17 Aug 2012 Posts: 217
|
Posted: Wed 12 Nov 2014, 04:19 Post subject:
|
|
Ah interessant, aber wenn du nicht mitmachst für das deutsche Paket irrelavant - oder
Und mich interessiert die frz. Version auch nicht so wirklich...
_________________ Toshiba Satallite M30X-124 | ATI Mobility Radeon 9700 | Intel PRO/Wireless 2200BG
Most Linux need special boot options to boot on this laptop: i8042.nomux=1 highres=off nohz=off irqpoll
|
Back to top
|
|
 |
L18L
Joined: 19 Jun 2010 Posts: 3450 Location: www.eussenheim.de/
|
Posted: Wed 12 Nov 2014, 05:48 Post subject:
|
|
antilet wrote: | ... wenn du nicht mitmachst... |
Mein Mitmachen besteht in Warten auf
ASRI wrote: | will soon be informed of the tests/successes/challenges. |
|
Back to top
|
|
 |
antilet
Joined: 17 Aug 2012 Posts: 217
|
Posted: Wed 12 Nov 2014, 09:52 Post subject:
|
|
ah ok, dann warte ich mal mit
_________________ Toshiba Satallite M30X-124 | ATI Mobility Radeon 9700 | Intel PRO/Wireless 2200BG
Most Linux need special boot options to boot on this laptop: i8042.nomux=1 highres=off nohz=off irqpoll
|
Back to top
|
|
 |
|