From: Reini U. <ru...@x-...> - 2004-12-20 09:02:04
|
Another good catch! Charles Corrigan schrieb: > I have started to use Eclipse and PHPeclipse to help me work out more of > what is happening with the issues that I have reported. > > When I use Eclipse to import CVS from Sourceforge, I get an error > message for /phpwiki/themes/MacOS/buttons/de/ telling me that > “Seite+l%F6schen.png” and “Seite+L%F6schen.png” have the same name with > different case (i.e. “l” and “L”). For unix systems this is technically > valid but I use windows and so it is a problem for me. > > My guess is that the two different names are an accident not deliberate… > is it possible to work out which one is correct and remove the other? Button filenames are automatically used from the urlencoded message. To check this out look at the locale definition: locale/po/de.po search for the strings: => #: ../lib/removepage.php:50 msgid "Remove page" msgstr "Seite löschen" #: ../lib/Theme.php:920 ../lib/removepage.php:22 msgid "Remove Page" msgstr "Seite Löschen" Then look at the sources, and decide what's better. For consistency I changed the lib/removepage.php:50 definition to "Remove Page", so it should be Seite+L%F6schen.png and Seite+l%F6schen.png is now deleted. -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/ |