Version: 0.8.0-beta2 (using KDE KDE 3.4.2) Installed from: Compiled From Sources OS: Linux the aspect ratio combobox has a tip : "<p>Select here your constrained aspect ratio for cropping. The Golden Ratio 1:1.618. A composition following this rule is considered visually harmonious". The string "Golden Ratio" in the tip is mostly translated by the different languages but the same string remain in english in the combobox.
SVN commit 476944 by cgilles: Fix i18n CCBUG: 115535 M +1 -1 imageeffect_ratiocrop.cpp --- trunk/extragear/graphics/digikam/imageplugins/imageeffect_ratiocrop.cpp #476943:476944 @@ -95,7 +95,7 @@ m_ratioCB->insertItem( "4:5" ); m_ratioCB->insertItem( "5:7" ); m_ratioCB->insertItem( "7:10" ); - m_ratioCB->insertItem( "Golden Ratio" ); + m_ratioCB->insertItem( i18n("Golden Ratio") ); m_ratioCB->insertItem( i18n("None") ); m_ratioCB->setCurrentText( "1:1" ); QWhatsThis::add( m_ratioCB, i18n("<p>Select here your constrained aspect ratio for cropping. "
*** Bug has been marked as fixed ***.
Fixed with works from bug #438701 for next 7.5.0 release Gilles Caulier