-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    LinuxDaily.com    Linux42.org    OpenSkillz.com   
 
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login



Sponsoring


-
- Content .- Fans (35) .- Knowledge Base  . 

translatoid

   1.30  

Plasmoid Binary

Score 88%
translatoid
zoom


Depends on  KDE 4.x
Downloads:  5462
Submitted:  Jan 15 2009
Updated:  Dec 1 2010

Description:

translator using google translator!
And it\'s my first plasmoids!!

svn co svn://anonsvn.kde.org/home/kde/trunk/playground/base/plasma/applets/translatoid




Changelog:

-clear code
-add Catalan flag
-Add language title
- use Frame for the maintitle.
- Correct some encodage bug
- and more....

===0.4
- use kde svn :
http://websvn.kde.org/trunk/playground/base/plasma/applets/translatoid
- use PopupApplet! Now, Translatoid can be dock inside the main bar!
- Change language selection method! Now, You have to click and a KlistWidget appear !
- Add Copy and Past button
- Add AutoDetection language in languageList
- Add TooTip Message

Now, I need translator for translate, this translator... :)

===0.4.1
add Licence
add GPL2 header
replace setIcon() by nativeWidget()->seticon()

=====0.5
Add ListWidgetFlag inside the plasma and it appear with a Plasma::Animation!
Add Voice TTS support.

TODO : auto select - enter key - flag disabled for fedora!

======0.6
-AutoPaste the copy selection and autotranslate when you active Popup.
-GrabKeyboard when you active Popup
-Add "Clear Button"
-remove Cancel Button from DialogBox
-Add Po language file.
- Change inverse language icon
- Add Fedora Package without flags

====0.6.1
- Add new Icon
- change name : translatoid to plasma-applet-translatoid

======0.7
add New popup icon which can change his flags
use KConfigGroup for save favorite language
add FavoriteLanguage config dialog
some update of the code

=======0.8
IMPORTANT RELEASE :
change the algorithm of source translation. Now it use Post Method. It means that you can translate big text. And if you type 1 word, it get you the dictionnary result ! :) Thanks lexnewton.
=======0.9
-add new flags list ! Use a plasma::treeview with a QAbstractModel
-copy from the clipboard! Now, you just have to select a source text from anywhere, and active the popup, by cliking on the popup, or by a plasma shortcut.
-Change QTextEdit source event. Now, press Enter to translate, and press Shift+Enter to add a new line.

=======1.0
Change icon
Change a lot by aseigo , use KJob, nice animation during translate.
change the structure of translatoid
Will remove voice button, because KTTSD do the same job.
add estonishlanguage
===RC
After some error of myself! This is the good one :
- Set text color with theme color
- save your automaticaly last languages in use.

==1.1beta==== MAJOR CORRECTION
Now Translatoid use extender
Add Reminder extender to remind you some word after clicking on the star
Replace parsing by Json parsing. YOU NEED TO INSTALL libqjson
Clear some code and probably add some new bug.. :)
If you have some probs, contact me!

---1.1
Add new language :
"Afrikaans"
"Albanais"
"Albanais"
"Belarusian"
"Irish""Icelandic"
"Macedonian"
"Malaysia"
"Maltese"
"Persan"
"Swahili"
"Turkish"
"Yiddish"

1.12 ( Minor fix)
Just fix Icon installation...Sorry)
A new release will come out quickly

1.2 ( Minor fix)
Correct Html rending

1.21
Correct text color in "remind" area

1.30
Correct Json parser with new Google Api. Thanks alex789

1.30 bis
dominique fix




LicenseLGPL
Source(translatoid1.30.tar.gz)
Donate
Send to a friend
Subscribe
Other  Artwork  from dridk
Report inappropriate content



goto page: prev  ... 9  10  11  12  13  14  15  16  17  18  19  20  21 

-
.

 patch

 
 by alex789 on: Jun 26 2010
 
Score 50%

if json failed - just return raw text data, it is more usable than do nothing

Index: ktranslatoid.cpp
===================================================================
--- ktranslatoid.cpp (revision 1142885)
+++ ktranslatoid.cpp (working copy)
@@ -318,6 +318,7 @@

if (!ok) {
kDebug()<<"An error occured during parsing";
+ m_destText->setText(text);
return;
}


Reply to this

-
.

 patch

 
 by alex789 on: Jun 26 2010
 
Score 50%

if json failed - just return raw text data, it is more usable than do nothing

Index: ktranslatoid.cpp
===================================================================
--- ktranslatoid.cpp (revision 1142885)
+++ ktranslatoid.cpp (working copy)
@@ -318,6 +318,7 @@

if (!ok) {
kDebug()<<"An error occured during parsing";
+ m_destText->setText(text);
return;
}


Reply to this

-

 Re: patch

 
 by chepioq on: Jun 26 2010
 
Score 50%

Hi
I apply your patch to the 1.21 version and now when I do a translation (french to english..).
I have:


french
Red Bull, en plaçant ses deux pilotes, Sebastian Vettel, l'auteur de la pole position


english:
[[["Red Bull, by placing its two drivers, Sebastian Vettel, the author of the pole","Red Bull, en plaçant ses deux pilotes, Sebastian Vettel, l'auteur de la pole position",""]],,"fr"]

As you see it's not perfect, but the translation is here...


Reply to this

-
.

 Re: Re: patch

 
 by alex789 on: Jun 27 2010
 
Score 50%

i know it, now test final patch:

https://build.opensuse.org/package/view_file?file=json-parser.patch&package=share_for_patchs&project=home%3Aalexqwesa

or

-- plasmoid-translatoid/package/ktranslatoid.cpp 2009-11-19 22:59:15.000000000 +0300
+++ ktranslatoid.cpp 2010-06-27 05:23:31.000000000 +0400
@@ -302,57 +302,59 @@
m_job = 0;
//kDebug() << "HTTP Request done." << m_data;

+ if (m_data.at(m_data.size()-6) == ',' &&
+ m_data.at(m_data.size()-7) == ','){
+ m_data.insert((m_data.size()-6), '"');
+ m_data.insert((m_data.size()-6), '"');
+ }
QString text;
+ QString dictionnary;
+ QString textToReturn = QString();
text = text.fromUtf8(m_data);
+ kDebug() << text;
/* m_data.clear();
kDebug() << "All data is read.";*/

- QVariantMap sentences;
- QVariantList dict;
- QString textToReturn = QString();
QJson::Parser parser;
bool ok;
- QVariantMap result = parser.parse(m_data,&ok).toMap();
+ QVariantList result = parser.parse(m_data,&ok).toList();

if (!ok) {
kDebug()<<"An error occured during parsing";
+ m_destText->setText(text);
return;
}

- if (result.contains("sentences"))
- sentences = result["sentences"].toList().at(0).toMap();
-
- if (result.contains("dict"))
- dict = result["dict"].toList();
-
- if ( sentences.contains("trans"))
- textToReturn += sentences["trans"].toString()+"<hr/>";
-
-
- QString dictionnary=QString();
- foreach ( QVariant var, dict)
+ foreach ( QVariant map, result)
{
-
- if ( var.type() == QVariant::Map)
+ if ( map.type() == QVariant::List)
{
- foreach ( QVariant map, var.toMap())
+ foreach ( QVariant map2, map.toList())
{
- if ( map.type() == QVariant::String)
- dictionnary+="<b>"+map.toString()+"</b><br/>";
-
- if ( map.type() == QVariant::List)
+ if ( map2.type() == QVariant::List)
{
- foreach ( QVariant word, map.toList())
- {
- dictionnary+=( word.toString() + " ");
+ bool ishow = true;
+ foreach ( QVariant var, map2.toList()){
+ if ( (var.type() == QVariant::String) && ishow){
+ ishow=false;
+ dictionnary+=("<b>" + var.toString() + "</b><br/>\n");
+ }
+ if ( var.type() == QVariant::List){
+ foreach ( QVariant var2, var.toList()){
+ if ( var2.type() == QVariant::String)
+ dictionnary+=(var2.toString()+"<br/>\n");
+ }
+ }
}
+ dictionnary+="<hr/>\n";
}
}
}
}
-
textToReturn += dictionnary;
- m_destText->setText(textToReturn);
+
+ m_destText->setText("<html><body>" + textToReturn + "</body></html>");
+ //m_destText->setHtml(textToReturn);
}

//===================================================================================


Reply to this

-
.

 Re: Re: Re: patch

 
 by alex789 on: Jun 27 2010
 
Score 50%

now all should work good!


Reply to this

-

 Re: Re: Re: Re: patch

 
 by chepioq on: Jun 27 2010
 
Score 50%

Thank for the patch, it's work fine on Fedora13 and Fedora14-rawhide


Reply to this

-

 Re: Re: Re: Re: Re: patch

 
 by chepioq on: Jun 27 2010
 
Score 50%

And now, do you think that dridk include this patch in the future release?


Reply to this

-

 Re: Re: Re: Re: Re: Re: patch

 
 by chepioq on: Jun 27 2010
 
Score 50%

Hi...
There is problem with your patch..
The automatically translation work fine but when I write a sentence and try translate with translatoid, plasma crash:
here the output of crash:
Quote:
Application: Espace de travail Plasma (plasma-desktop), signal: Segmentation fault
[Current thread is 1 (Thread 0x7f3ff7cc0820 (LWP 1710))]

Thread 3 (Thread 0x7f3fdb158710 (LWP 1711)):
#0 0x00000035cea0b729 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1 0x00000033476717f2 in QWaitCondition::wait(QMutex*, unsigned long) () from /usr/lib64/libQtCore.so.4
#2 0x0000003347667d01 in ?? () from /usr/lib64/libQtCore.so.4
#3 0x0000003347670995 in ?? () from /usr/lib64/libQtCore.so.4
#4 0x00000035cea07761 in start_thread () from /lib64/libpthread.so.0
#5 0x00000035ce2e14dd in clone () from /lib64/libc.so.6

Thread 2 (Thread 0x7f3fd177a710 (LWP 1742)):
#0 0x00000035cea0b729 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1 0x00000033476717f2 in QWaitCondition::wait(QMutex*, unsigned long) () from /usr/lib64/libQtCore.so.4
#2 0x0000003347667d01 in ?? () from /usr/lib64/libQtCore.so.4
#3 0x0000003347670995 in ?? () from /usr/lib64/libQtCore.so.4
#4 0x00000035cea07761 in start_thread () from /lib64/libpthread.so.0
#5 0x00000035ce2e14dd in clone () from /lib64/libc.so.6

Thread 1 (Thread 0x7f3ff7cc0820 (LWP 1710)):
[KCrash Handler]
#5 0x000000334776a16f in QObject::disconnect(QObject const*, char const*, QObject const*, char const*) () from /usr/lib64/libQtCore.so.4
#6 0x00007f3fddecf6ec in KTranslatoid::translate (this=0x224be60) at /home/dominique/translatoid/ktranslatoid.cpp:271
#7 0x00007f3fdded159c in KTranslatoid::qt_metacall (this=0x224be60, _c=QMetaObject::InvokeMetaMethod, _id=<value optimized out>, _a=0x7fff169f0e30)
at /home/dominique/translatoid/build/ktranslatoid.moc:97
#8 0x000000334776a81f in QMetaObject::activate(QObject*, QMetaObject const*, int, void**) () from /usr/lib64/libQtCore.so.4
#9 0x00007f3ff7ea8de8 in Plasma::PushButton::qt_metacall(QMetaObject::Call, int, void**) () from /usr/lib64/libplasma.so.3
#10 0x000000334776a81f in QMetaObject::activate(QObject*, QMetaObject const*, int, void**) () from /usr/lib64/libQtCore.so.4
#11 0x00000033495df8b2 in QAbstractButton::clicked(bool) () from /usr/lib64/libQtGui.so.4
#12 0x000000334932f06b in ?? () from /usr/lib64/libQtGui.so.4
#13 0x00000033493303eb in ?? () from /usr/lib64/libQtGui.so.4
#14 0x000000334933065c in QAbstractButton::mouseReleaseEvent(QMouseEvent*) () from /usr/lib64/libQtGui.so.4
#15 0x0000003348ff5b6a in QWidget::event(QEvent*) () from /usr/lib64/libQtGui.so.4
#16 0x0000003348faa9cc in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib64/libQtGui.so.4
#17 0x0000003348fb115d in QApplication::notify(QObject*, QEvent*) () from /usr/lib64/libQtGui.so.4
#18 0x0000003349e06e86 in KApplication::notify(QObject*, QEvent*) () from /usr/lib64/libkdeui.so.5
#19 0x0000003347757cdc in QCoreApplication::notifyInternal(QObject*, QEvent*) () from /usr/lib64/libQtCore.so.4
#20 0x0000003348fb034e in QApplicationPrivate::sendMouseEvent(QWidget*, QMouseEvent*, QWidget*, QWidget*, QWidget**, QPointer<QWidget>&, bool) () from /usr/lib64/libQtGui.so.4
#21 0x00000033495578a6 in ?? () from /usr/lib64/libQtGui.so.4
#22 0x0000003349546044 in QGraphicsItem::sceneEvent(QEvent*) () from /usr/lib64/libQtGui.so.4
#23 0x000000334955ba18 in ?? () from /usr/lib64/libQtGui.so.4
#24 0x000000334955f935 in QGraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent*) () from /usr/lib64/libQtGui.so.4
#25 0x0000003349571b9f in QGraphicsScene::event(QEvent*) () from /usr/lib64/libQtGui.so.4
#26 0x0000003348faa9cc in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib64/libQtGui.so.4
#27 0x0000003348fb098b in QApplication::notify(QObject*, QEvent*) () from /usr/lib64/libQtGui.so.4
#28 0x0000003349e06e86 in KApplication::notify(QObject*, QEvent*) () from /usr/lib64/libkdeui.so.5
#29 0x0000003347757cdc in QCoreApplication::notifyInternal(QObject*, QEvent*) () from /usr/lib64/libQtCore.so.4
#30 0x000000334958b0b5 in QGraphicsView::mouseReleaseEvent(QMouseEvent*) () from /usr/lib64/libQtGui.so.4
#31 0x0000003348ff5b6a in QWidget::event(QEvent*) () from /usr/lib64/libQtGui.so.4
#32 0x0000003349370e26 in QFrame::event(QEvent*) () from /usr/lib64/libQtGui.so.4
#33 0x00000033495894db in QGraphicsView::viewportEvent(QEvent*) () from /usr/lib64/libQtGui.so.4
#34 0x00000033477570f7 in QCoreApplicationPrivate::sendThroughObjectEventFilters(QObject*, QEvent*) () from /usr/lib64/libQtCore.so.4
#35 0x0000003348faa99c in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib64/libQtGui.so.4
#36 0x0000003348fb115d in QApplication::notify(QObject*, QEvent*) () from /usr/lib64/libQtGui.so.4
#37 0x0000003349e06e86 in KApplication::notify(QObject*, QEvent*) () from /usr/lib64/libkdeui.so.5
#38 0x0000003347757cdc in QCoreApplication::notifyInternal(QObject*, QEvent*) () from /usr/lib64/libQtCore.so.4
#39 0x0000003348fb034e in QApplicationPrivate::sendMouseEvent(QWidget*, QMouseEvent*, QWidget*, QWidget*, QWidget**, QPointer<QWidget>&, bool) () from /usr/lib64/libQtGui.so.4
#40 0x0000003349022475 in ?? () from /usr/lib64/libQtGui.so.4
#41 0x0000003349020dec in QApplication::x11ProcessEvent(_XEvent*) () from /usr/lib64/libQtGui.so.4
#42 0x0000003349049dc2 in ?? () from /usr/lib64/libQtGui.so.4
#43 0x00000035cfa3bd02 in g_main_context_dispatch () from /lib64/libglib-2.0.so.0
#44 0x00000035cfa3fae8 in ?? () from /lib64/libglib-2.0.so.0
#45 0x00000035cfa3fc9c in g_main_context_iteration () from /lib64/libglib-2.0.so.0
#46 0x000000334777d603 in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib64/libQtCore.so.4
#47 0x0000003349049a8e in ?? () from /usr/lib64/libQtGui.so.4
#48 0x0000003347756722 in QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib64/libQtCore.so.4
#49 0x00000033477569ec in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib64/libQtCore.so.4
#50 0x0000003347758cd9 in QCoreApplication::exec() () from /usr/lib64/libQtCore.so.4
#51 0x00007f3ff864deb2 in kdemain () from /usr/lib64/libkdeinit4_plasma-desktop.so
#52 0x00000035ce21ec5d in __libc_start_main () from /lib64/libc.so.6
#53 0x0000000000400829 in _start ()


have you same issue?



-

 Re: Re: Re: Re: Re: Re: patch

 
 by alex789 on: Jun 27 2010
 
Score 50%

No, I have no such problem

can you describe more detail?
is it really depend to my patch?
(i didn't touch translate() function...)

also what version you use?
(i use 1.1b)

for easy testing you can use
/usr/bin/plasmoidviewer translatoid



-

 Re: Re: Re: Re: Re: Re: patch

 
 by chepioq on: Jun 27 2010
 
Score 50%

I use the svn version, and when I do /usr/bin/plasmoidviewer translatoid there is a crash with this log:
Quote:
[dominique@localhost ~]$ /usr/bin/plasmoidviewer translatoid
plasmoidviewer(11450)/libplasma Plasma::AppletPrivate::mainConfigGroup: requesting config for "Translator" without a containment!
plasmoidviewer(11450)/libplasma Plasma::Applet::itemChange: Configuration object was requested prior to init(), which is too early. Please fix this item: QGraphicsItem(0) Plasma::Containment (this = 0x1cbf120 , parent = 0x0 , pos = QPointF(0, 0), z =0, flags = (ItemIsFocusable|ItemUsesExtendedStyleOption|ItemSendsGeometryChanges))"Translator"
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
QGraphicsLinearLayout::removeAt: invalid index 0
KCrash: Application 'plasmoidviewer' crashing...
sock_file=/home/dominique/.kde/socket-localhost.localdomain/kdeinit4__0

[1]+ Stopped /usr/bin/plasmoidviewer translatoid
[dominique@localhost ~]$



-
.

 Translatoid does not work

 
 by idonnie on: Jun 26 2010
 
Score 50%

Hello

Ive managed to install your plasmoid on Kubuntu 10.4, here are the steps:

unzip to /home/tmp/translatoid-1.21
>mkdir /home/tmp/translatoid-1.21/build
>cd /home/tmp/translatoid-1.21/build
>sudo apt-get install build-essentials libplasma-dev pkg-config libqjson-dev
>cmake .. -DCMAKE_INSTALL_PREFIX=/opt/kde-nightly/
>sudo cp lib/plasma_applet_translatoid.so /usr/lib/kde4/
>sudo cp ../plasma-applet-translatoid.desktop /usr/share/kde4/services
>kbuildsycoca4

After that, I tried it, than rebooted... But plasmoid still does not translate, even from English to English. And no icons

I followed instructions in README. Is there any more steps?


Reply to this

-

 Re: Translatoid does not work

 
 by idonnie on: Jun 27 2010
 
Score 50%

Also, ability to resize translatoid to small - 2 times by height and width - will be very appreciated, because I can't use such a large plasmoid


Reply to this

-

 Re: Re: Translatoid does not work

 
 by franciscot on: Jun 27 2010
 
Score 50%

I confirm the problem.
My build 1.21 is here:
https://launchpad.net/~leviatan1/+archive/ppa


Reply to this

-

 Re: Re: Re: Translatoid does not work

 
 by idonnie on: Jun 27 2010
 
Score 50%

Your package installs with icons, thanks, but still no network activity.

If author will add ability to resize, and it will work, I will try use it. There is another, older .deb on kde-look.org, maybe it can translate, but I think it cannote resize, too


Reply to this

-
.

 Re: Re: Translatoid does not work

 
 by alex789 on: Jun 27 2010
 
Score 50%

this bug have very long history, and still unfixed


Reply to this

-

 Thank for the update

 
 by chepioq on: Jun 27 2010
 
Score 50%

Hello,
I install the last release (1.30) and now all work fine on my Fedora13 and Fedora 14-rawhide.
I'm happy because I use translatoid every days...
Thank


Reply to this

-

 Re: Thank for the update

 
 by dridk on: Jun 28 2010
 
Score 50%

I m happy to make you happy! :)
I m preparing translatoid 2 using plasma script. If you have some good idea, please tell me!


Reply to this

-

 Make it resizeable, responsive

 
 by idonnie on: Jun 30 2010
 
Score 50%

Im still using translate.google.com, but will try translatoid 2 when you finish


Reply to this

-

 Does not work

 
 by eliwap on: Jul 8 2010
 
Score 50%

Hi

kde-plasma-translatoid 1.30 does not seem to work with kde 4.4.5 and kde 4.5 rc1.

I type in test in top section. Either press Enter or on the Translate button and nothing happens. Fedora 13


Reply to this

-

 Re: Does not work

 
 by chepioq on: Jul 8 2010
 
Score 50%

I have same issue with fedora14 rawhide, kde 4.5 and translatoid 1.30.
I install it and when I launch I have this error message:

Cet objet ne peut être créé pour la raison suivante:

Impossible de trouver le composant demandé:
translatoid


Reply to this

-

 Re: Re: Does not work

 
 by chepioq on: Jul 13 2010
 
Score 50%

With the latest update of kde for F14 rawhide, translatoid work fine...


Reply to this

-

 Re: Re: Re: Does not work

 
 by chepioq on: Jul 14 2010
 
Score 50%

I am sorry, but translatoid don't work with Fedora 14 rawhide and kde 4.5...
Same problem: translatoid don't translate...


Reply to this

-

 Re: Re: Re: Re: Does not work

 
 by chepioq on: Jul 16 2010
 
Score 50%

With the last update of F14 rawhide, now translatoid work fine...
Sorry for the inconvenience


Reply to this

-

 Re: Re: Re: Re: Re: Does not work

 
 by Leiche on: Aug 23 2010
 
Score 50%

For me not work, running under PCLinuxOS 2010 KDE4.5 no translation :(

http://yfrog.com/mqtransrp

When will fixed?
Thanks for efforts...


Reply to this

-

 Re: Re: Re: Re: Re: Re: Does not work

 
 by Leiche on: Aug 24 2010
 
Score 50%

Forget my last post, it's work now perfect ;)



goto page: prev  ... 9  10  11  12  13  14  15  16  17  18  19  20  21 

Add commentBack




-

-
Do you like or dislike Ubuntu Unity?
 Yes, unity is alien technology!
 It is less confusing than Gnome 3 default, shell.
 Granny thinks it is much more usable than Gnome 2
 Canonical is embarrasing itself with this split project
 Gnome 3 default shell is much better
 I dislike Unity, Gnome 3 default shell is alien technology!
 None of the above, I like the 2Gb for free and Apple alike behavior. Will post a comment instead

resultmore




 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Facebook App
Content RSS   
News RSS   
Discussion RSS   
Events RSS   

Participate
Groups
Forum
Add Artwork
Public API
About KDE-Look.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2001-2013 KDE-Look.org Team  
All rights reserved. KDE-Look.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
KDE and K Desktop Environment are trademarks of KDE e.V.