summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
m---------admin0
-rw-r--r--amor/amor.cpp14
-rw-r--r--amor/amoranim.cpp4
-rw-r--r--amor/amorbubble.cpp6
-rw-r--r--amor/amorconfig.cpp4
-rw-r--r--amor/amordialog.cpp4
-rw-r--r--amor/amortips.cpp4
-rw-r--r--doc/kworldclock/index.docbook4
-rw-r--r--kmoon/kmoondlg.cpp2
-rw-r--r--kmoon/kmoonwidget.cpp2
-rw-r--r--kodo/kodometer.cpp6
-rw-r--r--kodo/kodometer.h2
-rw-r--r--kteatime/TODO2
-rw-r--r--kteatime/toplevel.cpp12
-rw-r--r--ktux/sprite.cpp2
-rw-r--r--kweather/kweather.cpp2
-rw-r--r--kweather/kweather.kdevprj296
-rw-r--r--kweather/reportview.cpp2
-rw-r--r--kweather/sidebarwidget.cpp4
-rw-r--r--kweather/stationdatabase.h2
-rw-r--r--kweather/stationsconfigwidget.cpp4
-rw-r--r--kweather/weather_icon.cpp2
-rw-r--r--kweather/weatherbar.cpp4
-rw-r--r--kweather/weatherbutton.cpp10
-rw-r--r--kweather/weatherservice.cpp12
-rw-r--r--kworldwatch/cities.cpp2
-rw-r--r--kworldwatch/flags.cpp2
-rw-r--r--kworldwatch/main.cpp6
-rw-r--r--kworldwatch/maploader.cpp2
-rw-r--r--kworldwatch/mapwidget.cpp6
-rw-r--r--translations/desktop_files/kweather-stations/nl.po52
-rw-r--r--translations/desktop_files/kweather-stations/zh_Hans.po1440
32 files changed, 1530 insertions, 386 deletions
diff --git a/admin b/admin
-Subproject 85116532467b2bb4c73caf54c106c91a22dbe37
+Subproject 4185112a621d8c5bc88984b117f434c9560e2cc
diff --git a/amor/amor.cpp b/amor/amor.cpp
index c6de8af..5038752 100644
--- a/amor/amor.cpp
+++ b/amor/amor.cpp
@@ -40,7 +40,7 @@
#include <tdestartupinfo.h>
#include <twin.h>
#include <twinmodule.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <khelpmenu.h>
#include <kiconloader.h>
@@ -191,7 +191,7 @@ Amor::Amor() : DCOPObject( "AmorIface" ), TQObject()
}
else
{
- kapp->quit();
+ tdeApp->quit();
}
}
@@ -315,7 +315,7 @@ bool Amor::readConfig()
// Store relative paths into files to avoid storing absolute pathnames.
TDEGlobal::dirs()->findAllResources("appdata", "*rc", false, false, files);
- int randomTheme = kapp->random() % files.count();
+ int randomTheme = tdeApp->random() % files.count();
mConfig.mTheme = (TQString)*files.at(randomTheme);
}
@@ -473,7 +473,7 @@ void Amor::selectAnimation(State state)
if (mTargetRect.width() == mCurrAnim->frame()->width())
mPosition = mCurrAnim->hotspot().x();
else
- mPosition = ( kapp->random() %
+ mPosition = ( tdeApp->random() %
(mTargetRect.width() - mCurrAnim->frame()->width()) )
+ mCurrAnim->hotspot().x();
}
@@ -613,7 +613,7 @@ void Amor::slotMouseClicked(const TQPoint &pos)
mMenu->insertItem(SmallIcon("configure"), i18n("&Configure..."), this, TQ_SLOT(slotConfigure()));
mMenu->insertSeparator();
mMenu->insertItem(SmallIcon("help"), i18n("&Help"), helpMnu);
- mMenu->insertItem(SmallIcon("system-log-out"), i18n("&Quit"), kapp, TQ_SLOT(quit()));
+ mMenu->insertItem(SmallIcon("system-log-out"), i18n("&Quit"), tdeApp, TQ_SLOT(quit()));
}
mMenu->exec(pos);
@@ -680,7 +680,7 @@ void Amor::slotTimeout()
// only displayed on the first frame of mBaseAnim (the old way of doing this).
if ( !mTipsQueue.isEmpty() && !mBubble && mConfig.mAppTips)
showBubble();
- else if (kapp->random()%TIP_FREQUENCY == 1 && mConfig.mTips && !mBubble && !mCurrAnim->frameNum())
+ else if (tdeApp->random()%TIP_FREQUENCY == 1 && mConfig.mTips && !mBubble && !mCurrAnim->frameNum())
{
mTipsQueue.enqueue(new QueueItem(QueueItem::Tip, mTips.tip()));
showBubble();
@@ -1014,7 +1014,7 @@ AmorSessionWidget::AmorSessionWidget()
{
// the only function of this widget is to catch & forward the
// saveYourself() signal from the session manager
- connect(kapp, TQ_SIGNAL(saveYourself()), TQ_SLOT(wm_saveyourself()));
+ connect(tdeApp, TQ_SIGNAL(saveYourself()), TQ_SLOT(wm_saveyourself()));
}
void AmorSessionWidget::wm_saveyourself()
diff --git a/amor/amoranim.cpp b/amor/amoranim.cpp
index 3dcfef5..4d7c071 100644
--- a/amor/amoranim.cpp
+++ b/amor/amoranim.cpp
@@ -26,7 +26,7 @@
*/
#include <stdlib.h>
#include <tdeapplication.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include "amoranim.h"
#include "amorpm.h"
@@ -198,7 +198,7 @@ AmorAnim *AmorThemeManager::random(const TQString & group)
AmorAnimationGroup *animGroup = mAnimations.find(grp);
if (animGroup) {
- int idx = kapp->random()%animGroup->count();
+ int idx = tdeApp->random()%animGroup->count();
return animGroup->at( idx );
}
diff --git a/amor/amorbubble.cpp b/amor/amorbubble.cpp
index fce5df8..dc2b383 100644
--- a/amor/amorbubble.cpp
+++ b/amor/amorbubble.cpp
@@ -29,7 +29,7 @@
#include <tqpainter.h>
#include <ktextbrowser.h>
#include <tqtooltip.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <X11/Xlib.h>
#include <X11/extensions/shape.h>
#include <tqtimer.h>
@@ -119,7 +119,7 @@ void AmorBubble::calcGeometry()
// The actual position of the bubble may change if it is too close to
// the desktop boundary.
- if (mOriginX + w > kapp->desktop()->width())
+ if (mOriginX + w > tdeApp->desktop()->width())
{
// source on right
xpos = mOriginX - w - BUBBLE_OFFSET;
@@ -127,7 +127,7 @@ void AmorBubble::calcGeometry()
mBound.moveBy( -ARROW_WIDTH, 0 );
}
- if (mOriginY + h > kapp->desktop()->height())
+ if (mOriginY + h > tdeApp->desktop()->height())
{
// source at bottom
ypos = mOriginY - h + BORDER_SIZE + ARROW_HEIGHT / 2;
diff --git a/amor/amorconfig.cpp b/amor/amorconfig.cpp
index b58c2b5..d5896e0 100644
--- a/amor/amorconfig.cpp
+++ b/amor/amorconfig.cpp
@@ -48,7 +48,7 @@ AmorConfig::AmorConfig()
//
void AmorConfig::read()
{
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
TDEConfigGroupSaver cs(config, "General");
mOnTop = config->readBoolEntry("OnTop", false);
@@ -66,7 +66,7 @@ void AmorConfig::read()
//
void AmorConfig::write()
{
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
TDEConfigGroupSaver cs(config, "General");
config->writeEntry("OnTop", mOnTop);
diff --git a/amor/amordialog.cpp b/amor/amordialog.cpp
index 9af3b47..6e5f7cb 100644
--- a/amor/amordialog.cpp
+++ b/amor/amordialog.cpp
@@ -36,7 +36,7 @@
#include "version.h"
#include <tdelocale.h>
#include <tqvbox.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
//---------------------------------------------------------------------------
//
@@ -251,7 +251,7 @@ void AmorDialog::slotApply()
void AmorDialog::slotCancel()
{
// restore offset
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
TDEConfigGroupSaver cs(config, "General");
emit offsetChanged(config->readNumEntry("Offset"));
reject();
diff --git a/amor/amortips.cpp b/amor/amortips.cpp
index 7c0c0d4..8e7ef41 100644
--- a/amor/amortips.cpp
+++ b/amor/amortips.cpp
@@ -27,7 +27,7 @@
#include <stdlib.h>
#include <tdeapplication.h>
#include "amortips.h"
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdelocale.h>
#include <tqfile.h>
#include <tqregexp.h>
@@ -75,7 +75,7 @@ TQString AmorTips::tip()
{
if (mTips.count())
{
- TQString tip = *mTips.at(kapp->random() % mTips.count());
+ TQString tip = *mTips.at(tdeApp->random() % mTips.count());
return i18n(tip.utf8());
}
diff --git a/doc/kworldclock/index.docbook b/doc/kworldclock/index.docbook
index 8937d3b..1f77f60 100644
--- a/doc/kworldclock/index.docbook
+++ b/doc/kworldclock/index.docbook
@@ -65,7 +65,7 @@ Please report any problems or feature requests to the &kde; mailing lists.
</para>
</chapter>
-<chapter id="using-kapp">
+<chapter id="using-tdeApp">
<title>Using &kworldclock;</title>
<sect1><title>The main display</title>
@@ -469,7 +469,7 @@ Documentation Copyright &copy; 2004 &Brad.Hards; &Brad.Hards.mail;.
<appendix id="installation">
<title>Installation</title>
-<sect1 id="getting-kapp">
+<sect1 id="getting-tdeApp">
<title>How to obtain &kworldclock;</title>
diff --git a/kmoon/kmoondlg.cpp b/kmoon/kmoondlg.cpp
index eeafbcc..2190151 100644
--- a/kmoon/kmoondlg.cpp
+++ b/kmoon/kmoondlg.cpp
@@ -94,7 +94,7 @@ void KMoonDlg::angleChanged(int value) {
}
void KMoonDlg::help() {
- kapp->invokeHelp(TQString::fromLatin1("config"));
+ tdeApp->invokeHelp(TQString::fromLatin1("config"));
}
void KMoonDlg::toggleHemi() {
diff --git a/kmoon/kmoonwidget.cpp b/kmoon/kmoonwidget.cpp
index 711beaf..8a5d390 100644
--- a/kmoon/kmoonwidget.cpp
+++ b/kmoon/kmoonwidget.cpp
@@ -26,7 +26,7 @@
#include <tqpainter.h>
#include <kdebug.h>
#include <tdelocale.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <kiconeffect.h>
#include <tdeconfig.h>
diff --git a/kodo/kodometer.cpp b/kodo/kodometer.cpp
index 473b27e..dc0bd01 100644
--- a/kodo/kodometer.cpp
+++ b/kodo/kodometer.cpp
@@ -56,7 +56,7 @@ Kodometer::Kodometer(TQWidget* parent, const char* name)
pollInterval(10),
saveFrequency(10)
{
- display = TDEApplication::kApplication()->getDisplay();
+ display = tdeApp->getDisplay();
FindAllScreens();
root = RootWindow(display, DefaultScreen(display));
@@ -86,7 +86,7 @@ Kodometer::Kodometer(TQWidget* parent, const char* name)
// Make the popup menu
menu = new TDEPopupMenu();
- menu->insertTitle(kapp->miniIcon(), TDEGlobal::instance()->aboutData()->programName());
+ menu->insertTitle(tdeApp->miniIcon(), TDEGlobal::instance()->aboutData()->programName());
enabledID = menu->insertItem(i18n("&Enable"), this, TQ_SLOT(toggleEnabled()));
metricID = menu->insertItem(i18n("&Metric Display"), this,
@@ -594,7 +594,7 @@ void Kodometer::saveSettings(void)
void Kodometer::quit()
{
saveSettings();
- kapp->quit();
+ tdeApp->quit();
}
#include "kodometer.moc"
diff --git a/kodo/kodometer.h b/kodo/kodometer.h
index 77f40b0..13eaeb1 100644
--- a/kodo/kodometer.h
+++ b/kodo/kodometer.h
@@ -42,7 +42,7 @@
#include <tdelocale.h>
#include <tdemessagebox.h>
#include <tdepopupmenu.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdetoolbar.h>
#include <twin.h>
diff --git a/kteatime/TODO b/kteatime/TODO
index b1b096d..4aa36a3 100644
--- a/kteatime/TODO
+++ b/kteatime/TODO
@@ -24,7 +24,7 @@
internals:
- 'int2time()' somewhere into class-namespace? (ie. not as global function)
-- do kapp->closeAllWindows() on slotFileQuit() ?
+- do tdeApp->closeAllWindows() on slotFileQuit() ?
- when in "ready"-state, left-click -> auto-go to initial state
before opening left-click menu(?)
- remember geometry of config-dialog (and its QListView!)
diff --git a/kteatime/toplevel.cpp b/kteatime/toplevel.cpp
index f38437a..281583b 100644
--- a/kteatime/toplevel.cpp
+++ b/kteatime/toplevel.cpp
@@ -69,7 +69,7 @@ TopLevel::TopLevel() : KSystemTray()
teas.clear();
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
config->setGroup("Teas");
if (config->hasKey("Number")) {
@@ -152,7 +152,7 @@ TopLevel::TopLevel() : KSystemTray()
menu->insertSeparator();
confAct->plug(menu);
menu->insertItem(SmallIcon("help"), i18n("&Help"), helpMnu);
- menu->insertItem(SmallIcon("system-log-out"), i18n("Quit"), kapp, TQ_SLOT(quit()));
+ menu->insertItem(SmallIcon("system-log-out"), i18n("Quit"), tdeApp, TQ_SLOT(quit()));
// quitAct->plug(menu); // FIXME: this doesn't seem to work with above definition of quitAct?
// (need special 'quit'-method?)
@@ -186,7 +186,7 @@ TopLevel::TopLevel() : KSystemTray()
/* (not currently needed)
void TopLevel::queryExit()
{
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
// config->sync();
}
*/
@@ -421,7 +421,7 @@ void TopLevel::teaSelected(int index)
menu->setItemChecked(index, true);
current_selected = index;
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
config->setGroup("General");
config->writeEntry("Tea", current_selected);
}
@@ -657,7 +657,7 @@ void TopLevel::actionEnableToggled(bool on)
/* config-slot: "help" button clicked */
void TopLevel::help()
{
- kapp->invokeHelp();
+ tdeApp->invokeHelp();
}
/* config-slot: "Configure Events..." button clicked */
@@ -845,7 +845,7 @@ void TopLevel::config()
rebuildTeaMenus();
// and store to config
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
// remove old-style entries from default-group (if present)
if (config->hasKey("UserTea"))
config->deleteEntry("UserTea");
diff --git a/ktux/sprite.cpp b/ktux/sprite.cpp
index d7ada59..0c6f93c 100644
--- a/ktux/sprite.cpp
+++ b/ktux/sprite.cpp
@@ -11,7 +11,7 @@
#include <tqmessagebox.h>
#include <tqlayout.h>
#include <tqslider.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdelocale.h>
#include <kdebug.h>
#include <kstdguiitem.h>
diff --git a/kweather/kweather.cpp b/kweather/kweather.cpp
index 61e5eb4..9843914 100644
--- a/kweather/kweather.cpp
+++ b/kweather/kweather.cpp
@@ -173,7 +173,7 @@ void kweather::preferences()
/** The help handler */
void kweather::help()
{
- kapp->invokeHelp(TQString(), TQString::fromLatin1("kweather"));
+ tdeApp->invokeHelp(TQString(), TQString::fromLatin1("kweather"));
}
/** Display the current weather report. */
diff --git a/kweather/kweather.kdevprj b/kweather/kweather.kdevprj
deleted file mode 100644
index 75578e0..0000000
--- a/kweather/kweather.kdevprj
+++ /dev/null
@@ -1,296 +0,0 @@
-[./AUTHORS]
-dist=true
-install=false
-install_location=
-type=DATA
-[./Makefile.am]
-files=./AUTHORS,./dockwidget.cpp,./dockwidget.h,./kweather.cpp,./kweather.desktop,./kweather.h,./prefsDialog.cpp,./prefsDialog.h,./prefsDialogData.cpp,./prefsDialogData.h,./reportview.cpp,./reportview.h,./weatherIface.h,./weatherlib.cpp,./weatherlib.h,./kweather.kdevprj,
-sub_dirs=
-type=normal
-[./dockwidget.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-[./dockwidget.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-[./kweather.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-[./kweather.desktop]
-dist=true
-install=false
-install_location=
-type=DATA
-[./kweather.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-[./kweather.kdevprj]
-dist=true
-install=false
-install_location=
-type=DATA
-[./prefsDialog.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-[./prefsDialog.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-[./prefsDialogData.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-[./prefsDialogData.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-[./reportview.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-[./reportview.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-[./weatherIface.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-[./weatherlib.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-[./weatherlib.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-[Config for BinMakefileAm]
-addcxxflags=
-bin_program=kweather
-cxxflags= -O1
-ldadd=
-ldflags=
-libtool_dir=
-path_to_bin_program=.
-[General]
-author=ian reinhart geiser
-dir_where_make_will_be_called=
-kdevprj_version=1.3
-lfv_open_groups=
-make_options= -j1
-makefiles=./Makefile.am,graphics/Makefile.am,
-modifyMakefiles=true
-project_name=kweather
-project_type=normal_empty
-short_info=A kickerapplet that will display the current weather outside
-sub_dir=
-version=2.0
-version_control=CVS
-workspace=1
-[LFV Groups]
-Desktop=*.desktop,
-GNU=AUTHORS,COPYING,ChangeLog,INSTALL,README,TODO,NEWS,
-Headers=*.h,*.hxx,*.hpp,*.H,
-Others=*,
-Sources=*.cpp,*.c,*.cc,*.C,*.cxx,*.ec,*.ecpp,*.lxx,*.l++,*.ll,*.l,
-Translations=*.ts,*.po,
-User Interface=*.ui,*.kdevdlg,*.rc,
-groups=Headers,Sources,GNU,Translations,User Interface,Desktop,Others
-[graphics/Makefile.am]
-files=graphics/cloudy1.png,graphics/cloudy2.png,graphics/cloudy3.png,graphics/cloudy4.png,graphics/cloudy5.png,graphics/dunno.png,graphics/fog.png,graphics/hail.png,graphics/light_rain.png,graphics/mcloudy.png,graphics/mist.png,graphics/overcast.png,graphics/part-cloud.png,graphics/pcloudy.png,graphics/rain.png,graphics/rainy.png,graphics/shower1.png,graphics/shower2.png,graphics/shower3.png,graphics/sleet.png,graphics/slop.png,graphics/snow.png,graphics/snow1.png,graphics/snow2.png,graphics/snow3.png,graphics/snow4.png,graphics/snow5.png,graphics/snowshowers.png,graphics/sunny.png,graphics/thunderstorm.png,graphics/tstorm.png,graphics/tstorm1.png,graphics/tstorm2.png,graphics/tstorm3.png,graphics/wind.png,
-sub_dirs=
-type=normal
-[graphics/cloudy1.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/cloudy2.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/cloudy3.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/cloudy4.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/cloudy5.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/dunno.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/fog.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/hail.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/light_rain.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/mcloudy.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/mist.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/overcast.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/part-cloud.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/pcloudy.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/rain.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/rainy.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/shower1.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/shower2.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/shower3.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/sleet.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/slop.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/snow.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/snow1.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/snow2.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/snow3.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/snow4.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/snow5.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/snowshowers.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/sunny.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/thunderstorm.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/tstorm.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/tstorm1.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/tstorm2.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/tstorm3.png]
-dist=true
-install=false
-install_location=
-type=DATA
-[graphics/wind.png]
-dist=true
-install=false
-install_location=
-type=DATA
diff --git a/kweather/reportview.cpp b/kweather/reportview.cpp
index 97c308f..6db9f7a 100644
--- a/kweather/reportview.cpp
+++ b/kweather/reportview.cpp
@@ -18,7 +18,7 @@
#include <tdeconfig.h>
#include <kdebug.h>
#include <tdelocale.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdehtml_part.h>
#include <tdehtmlview.h>
#include <tdeglobalsettings.h>
diff --git a/kweather/sidebarwidget.cpp b/kweather/sidebarwidget.cpp
index dc481ec..6a785d1 100644
--- a/kweather/sidebarwidget.cpp
+++ b/kweather/sidebarwidget.cpp
@@ -63,9 +63,9 @@ sidebarwidget::sidebarwidget(TQWidget* parent, const char* name)
mainLayout->addWidget(toolbar);
mainLayout->addWidget(reportGrid);
- if(!kapp->dcopClient()->isAttached())
+ if(!tdeApp->dcopClient()->isAttached())
{
- kapp->dcopClient()->attach();
+ tdeApp->dcopClient()->attach();
}
dcopCall = new DCOPRef( "KWeatherService", "WeatherService" );
diff --git a/kweather/stationdatabase.h b/kweather/stationdatabase.h
index d1f414a..df37cbb 100644
--- a/kweather/stationdatabase.h
+++ b/kweather/stationdatabase.h
@@ -17,7 +17,7 @@
#include <tqstring.h>
#include <tdelocale.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
/**
This is the main database for mapping METAR codes to Station information.
diff --git a/kweather/stationsconfigwidget.cpp b/kweather/stationsconfigwidget.cpp
index 5ba7aee..3adb8e0 100644
--- a/kweather/stationsconfigwidget.cpp
+++ b/kweather/stationsconfigwidget.cpp
@@ -29,7 +29,7 @@
#include <tdelistview.h>
#include <tdelocale.h>
#include <kpushbutton.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <kiconloader.h>
#include "stationsconfigwidget.h"
@@ -204,7 +204,7 @@ bool StationsConfigWidget::dcopActive()
TQString error;
TQCString appID;
bool isGood = true;
- DCOPClient *client = kapp->dcopClient();
+ DCOPClient *client = tdeApp->dcopClient();
if ( !client->isApplicationRegistered( "KWeatherService" ) ) {
if ( TDEApplication::startServiceByDesktopName( "kweatherservice", TQStringList(), &error, &appID ) )
isGood = false;
diff --git a/kweather/weather_icon.cpp b/kweather/weather_icon.cpp
index bce9073..1100ded 100644
--- a/kweather/weather_icon.cpp
+++ b/kweather/weather_icon.cpp
@@ -1,6 +1,6 @@
#include <tqpair.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <kiconloader.h>
#include <kdebug.h>
diff --git a/kweather/weatherbar.cpp b/kweather/weatherbar.cpp
index 98cad49..f66e1d1 100644
--- a/kweather/weatherbar.cpp
+++ b/kweather/weatherbar.cpp
@@ -32,7 +32,7 @@
#include <tdelocale.h>
#include <kdebug.h>
#include <tdeconfig.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdeglobalsettings.h>
#include <tdemessagebox.h>
#include <dcopclient.h>
@@ -187,7 +187,7 @@ bool KonqSidebarWeather::startWeatherService()
TQDataStream arg(data, IO_WriteOnly);
arg << TQString("KWeatherService") << TQStringList();
- if ( !kapp->dcopClient()->call(
+ if ( !tdeApp->dcopClient()->call(
"tdelauncher", "tdelauncher",
"start_service_by_name(TQString,TQStringList)",
data, replyType, replyData) ) {
diff --git a/kweather/weatherbutton.cpp b/kweather/weatherbutton.cpp
index 986eebf..a75402d 100644
--- a/kweather/weatherbutton.cpp
+++ b/kweather/weatherbutton.cpp
@@ -27,20 +27,20 @@
#include <kiconeffect.h>
#include <kicontheme.h>
#include <kipc.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
WeatherButton::WeatherButton( TQWidget *parent, const char *name )
: TQButton( parent, name ), m_highlight( false )
{
setBackgroundOrigin( AncestorOrigin );
- connect( kapp, TQ_SIGNAL( settingsChanged( int ) ),
+ connect( tdeApp, TQ_SIGNAL( settingsChanged( int ) ),
TQ_SLOT( slotSettingsChanged( int ) ) );
- connect( kapp, TQ_SIGNAL( iconChanged( int ) ),
+ connect( tdeApp, TQ_SIGNAL( iconChanged( int ) ),
TQ_SLOT( slotIconChanged( int ) ) );
- kapp->addKipcEventMask( KIPC::SettingsChanged );
- kapp->addKipcEventMask( KIPC::IconChanged );
+ tdeApp->addKipcEventMask( KIPC::SettingsChanged );
+ tdeApp->addKipcEventMask( KIPC::IconChanged );
slotSettingsChanged( TDEApplication::SETTINGS_MOUSE );
}
diff --git a/kweather/weatherservice.cpp b/kweather/weatherservice.cpp
index 3ec47c9..0496bd8 100644
--- a/kweather/weatherservice.cpp
+++ b/kweather/weatherservice.cpp
@@ -24,7 +24,7 @@
#include <tdeconfig.h>
#include <tdeglobal.h>
#include <tdelocale.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <kiconloader.h>
#include "weatherlib.h"
@@ -47,7 +47,7 @@ WeatherService::WeatherService(TQObject *parent, const char *name) : TQObject (p
connect(m_weatherLib, TQ_SIGNAL(stationRemoved(const TQString&)),
TQ_SLOT(slotStationRemoved(const TQString&)));
- TDEConfig *conf = kapp->config();
+ TDEConfig *conf = tdeApp->config();
conf->setGroup("WEATHERSTATIONS");
TQStringList stations =conf->readListEntry("stations");
@@ -61,7 +61,7 @@ WeatherService::~WeatherService()
kdDebug(12006) << "Going away... " << endl;
// Don't need to call saveSettings() because WeatherService::exit
// already does that. Plus it wouldn't work here anyway because
- // we can't get the config after calling kapp->quit();
+ // we can't get the config after calling tdeApp->quit();
delete stationDB;
}
@@ -141,7 +141,7 @@ TQString WeatherService::pressure(const TQString &stationID)
TQPixmap WeatherService::icon(const TQString &stationID, uint iconSize)
{
- return kapp->iconLoader()->loadIcon(
+ return tdeApp->iconLoader()->loadIcon(
iconPath(stationID, iconSize),
TDEIcon::Panel, iconSize
);
@@ -249,7 +249,7 @@ void WeatherService::addStation(const TQString &stationID)
void WeatherService::exit()
{
saveSettings();
- kapp->quit();
+ tdeApp->quit();
}
TQStringList WeatherService::listStations()
@@ -259,7 +259,7 @@ TQStringList WeatherService::listStations()
void WeatherService::saveSettings()
{
- TDEConfig *conf = kapp->config();
+ TDEConfig *conf = tdeApp->config();
conf->setGroup("WEATHERSTATIONS");
conf->writeEntry( "stations", m_weatherLib->stations());
conf->sync();
diff --git a/kworldwatch/cities.cpp b/kworldwatch/cities.cpp
index 8179ed3..ab7cfd9 100644
--- a/kworldwatch/cities.cpp
+++ b/kworldwatch/cities.cpp
@@ -32,7 +32,7 @@
#include <tdeglobal.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include "cities.h"
diff --git a/kworldwatch/flags.cpp b/kworldwatch/flags.cpp
index 26ca4e6..f66462e 100644
--- a/kworldwatch/flags.cpp
+++ b/kworldwatch/flags.cpp
@@ -28,7 +28,7 @@
#include <limits.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include "flags.h"
diff --git a/kworldwatch/main.cpp b/kworldwatch/main.cpp
index 3195d55..78bd401 100644
--- a/kworldwatch/main.cpp
+++ b/kworldwatch/main.cpp
@@ -70,7 +70,7 @@ WorldWideWatch::WorldWideWatch(bool restore, TQWidget *parent, const char *name)
connect(_map, TQ_SIGNAL(saveSettings()), this, TQ_SLOT(doSave()));
if (restore)
- load(kapp->config());
+ load(tdeApp->config());
}
@@ -96,14 +96,14 @@ void WorldWideWatch::save(TDEConfig *config)
void WorldWideWatch::doSave()
{
- save(kapp->config());
+ save(tdeApp->config());
}
void WatchApplication::dumpMap()
{
// guess some default parameters
- TQSize mapSize(kapp->desktop()->size());
+ TQSize mapSize(tdeApp->desktop()->size());
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
diff --git a/kworldwatch/maploader.cpp b/kworldwatch/maploader.cpp
index ce192f2..927491f 100644
--- a/kworldwatch/maploader.cpp
+++ b/kworldwatch/maploader.cpp
@@ -36,7 +36,7 @@
#include <tdeglobal.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <kdesktopfile.h>
#include <kimageeffect.h>
diff --git a/kworldwatch/mapwidget.cpp b/kworldwatch/mapwidget.cpp
index 452a0ba..24e69f7 100644
--- a/kworldwatch/mapwidget.cpp
+++ b/kworldwatch/mapwidget.cpp
@@ -43,7 +43,7 @@
#include <tdeglobalsettings.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tqcursor.h>
#include <tqpainter.h>
@@ -69,7 +69,7 @@ MapWidget::MapWidget(bool applet, bool restore, TQWidget *parent, const char *na
if (restore)
{
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
if (applet)
config = new TDEConfig("kwwwappletrc");
_theme = config->readEntry("Theme", "depths");
@@ -152,7 +152,7 @@ MapWidget::MapWidget(bool applet, bool restore, TQWidget *parent, const char *na
_cityIndicator->setPalette(TQToolTip::palette());
if (restore && !applet)
- load(kapp->config());
+ load(tdeApp->config());
connect(&m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(updateCityIndicator()));
}
diff --git a/translations/desktop_files/kweather-stations/nl.po b/translations/desktop_files/kweather-stations/nl.po
index 6debce5..4ff12b6 100644
--- a/translations/desktop_files/kweather-stations/nl.po
+++ b/translations/desktop_files/kweather-stations/nl.po
@@ -6,7 +6,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-10 11:17+0000\n"
-"PO-Revision-Date: 2024-12-05 22:12+0000\n"
+"PO-Revision-Date: 2024-12-12 16:35+0000\n"
"Last-Translator: Heimen Stoffels <[email protected]>\n"
"Language-Team: Dutch <https://mirror.git.trinitydesktop.org/weblate/projects/"
"tdetoys/kweather-stations/nl/>\n"
@@ -1320,124 +1320,124 @@ msgstr "Frans-Guyana"
#. name
#: weather_stations.desktop.in:801
msgid "Falkland Islands, Islas Malvinas"
-msgstr ""
+msgstr "Falklandeilanden"
#. name
#: weather_stations.desktop.in:804
msgid "Grenada"
-msgstr ""
+msgstr "Grenada"
#. name
#: weather_stations.desktop.in:807
msgid "Guatemala"
-msgstr ""
+msgstr "Guatemala"
#. name
#: weather_stations.desktop.in:810
msgid "Guadeloupe"
-msgstr ""
+msgstr "Guadeloupe"
#. name
#: weather_stations.desktop.in:813
msgid "Guyana"
-msgstr ""
+msgstr "Guyana"
#. name
#: weather_stations.desktop.in:816
msgid "Haiti"
-msgstr ""
+msgstr "Haïti"
#. name
#: weather_stations.desktop.in:819
msgid "Honduras"
-msgstr ""
+msgstr "Honduras"
#. name
#: weather_stations.desktop.in:822
msgid "Jamaica"
-msgstr ""
+msgstr "Jamaica"
#. name
#: weather_stations.desktop.in:825
msgid "Martinique"
-msgstr ""
+msgstr "Martinique"
#. name
#: weather_stations.desktop.in:828
msgid "Netherlands Antilles"
-msgstr ""
+msgstr "Nederlandse Antillen"
#. name
#: weather_stations.desktop.in:831
msgid "Nicaragua"
-msgstr ""
+msgstr "Nicaragua"
#. name
#: weather_stations.desktop.in:834
msgid "Panama"
-msgstr ""
+msgstr "Panama"
#. name
#: weather_stations.desktop.in:837
msgid "Peru"
-msgstr ""
+msgstr "Peru"
#. name
#: weather_stations.desktop.in:840
msgid "Puerto Rico"
-msgstr ""
+msgstr "Puerto Rico"
#. name
#: weather_stations.desktop.in:843
msgid "Paraguay"
-msgstr ""
+msgstr "Paraguay"
#. name
#: weather_stations.desktop.in:846
msgid "Saint Kitts and Nevis"
-msgstr ""
+msgstr "Saint Kitts en Nevis"
#. name
#: weather_stations.desktop.in:849
msgid "Saint Lucia"
-msgstr ""
+msgstr "Saint Lucia"
#. name
#: weather_stations.desktop.in:852
msgid "Saint Vincent and the Grenadines"
-msgstr ""
+msgstr "Saint Vincent en de Grenadines"
#. name
#: weather_stations.desktop.in:855
msgid "Suriname"
-msgstr ""
+msgstr "Suriname"
#. name
#: weather_stations.desktop.in:858
msgid "Trinidad and Tobago"
-msgstr ""
+msgstr "Trinidad en Tobago"
#. name
#: weather_stations.desktop.in:861
msgid "Turks and Caicos Islands"
-msgstr ""
+msgstr "Turks- en Caicoseilanden"
#. name
#: weather_stations.desktop.in:864
msgid "Uruguay"
-msgstr ""
+msgstr "Uruguay"
#. name
#: weather_stations.desktop.in:867
msgid "Venezuela"
-msgstr ""
+msgstr "Venezuela"
#. name
#: weather_stations.desktop.in:870
msgid "Virgin Islands"
-msgstr ""
+msgstr "Maagdeneilanden"
#. name
#: weather_stations.desktop.in:873 weather_stations.desktop.in:877
msgid "Antarctica"
-msgstr ""
+msgstr "Antarctica"
diff --git a/translations/desktop_files/kweather-stations/zh_Hans.po b/translations/desktop_files/kweather-stations/zh_Hans.po
new file mode 100644
index 0000000..0dea195
--- /dev/null
+++ b/translations/desktop_files/kweather-stations/zh_Hans.po
@@ -0,0 +1,1440 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Toad114514 <[email protected]>, 2025.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2021-09-10 11:17+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: zh_Hans\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. name
+#: weather_stations.desktop.in:5
+msgid "Middle East"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:9
+msgid "United Arab Emirates"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:12
+msgid "Afghanistan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:15
+msgid "Bahrain"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:18
+msgid "Qatar"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:21
+msgid "Oman"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:24
+msgid "Yemen"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:27
+msgid "Saudi Arabia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:30
+msgid "Israel"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:33
+msgid "Lebanon"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:36
+msgid "Iran"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:39
+msgid "Iraq"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:42
+msgid "Jordan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:45
+msgid "Kuwait"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:48
+msgid "Syria"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:51
+msgid "United States"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:55
+msgid "Alaska"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:58
+msgid "Arkansas"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:61
+msgid "District of Columbia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:64
+msgid "Idaho"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:67 weather_stations.desktop.in:154
+msgid "Indiana"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:70
+msgid "Iowa"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:73
+msgid "Kansas"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:76
+msgid "Kentucky"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:79
+msgid "Lousiana"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:82
+msgid "Maine"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:85
+msgid "Mississippi"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:88
+msgid "Missouri"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:91
+msgid "Montana"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:94
+msgid "Nebraska"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:97
+msgid "New Hampshire"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:100
+msgid "New Mexico"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:103
+msgid "North Dakota"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:106
+msgid "Oklahoma"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:109
+msgid "South Dakota"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:112
+msgid "Utah"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:115
+msgid "Vermont"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:118
+msgid "Wyoming"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:121
+msgid "Pennsylvania"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:124
+msgid "California"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:127
+msgid "Alabama"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:130
+msgid "Arizona"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:133
+msgid "Colorado"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:136
+msgid "Connecticut"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:139
+msgid "Delaware"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:142
+msgid "Florida"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:145 weather_stations.desktop.in:304
+msgid "Georgia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:148
+msgid "Hawaii"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:151
+msgid "Illinois"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:157
+msgid "Maryland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:160
+msgid "Michigan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:163
+msgid "Minnesota"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:166
+msgid "Nevada"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:169
+msgid "New Jersey"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:172
+msgid "North Carolina"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:175
+msgid "Ohio"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:178
+msgid "Oregon"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:181
+msgid "Rhode Island"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:184
+msgid "South Carolina"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:187
+msgid "Tennessee"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:190
+msgid "Texas"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:193
+msgid "Virginia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:196
+msgid "West Virginia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:199
+msgid "Wisconsin"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:202
+msgid "Massachusetts"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:205
+msgid "New York"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:208
+msgid "Washington"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:211
+msgid "Canada"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:215
+msgid "Alberta"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:218
+msgid "British Columbia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:221
+msgid "Manitoba"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:224
+msgid "New Brunswick"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:227
+msgid "Newfoundland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:230
+msgid "Nova Scotia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:233
+msgid "Northwest Territories"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:236
+msgid "Nunavut"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:239
+msgid "Ontario"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:242
+msgid "Prince Edward Island"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:245
+msgid "Quebec"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:248
+msgid "Saskatchewan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:251
+msgid "Yukon"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:254
+msgid "North America"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:258
+msgid "Greenland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:261
+msgid "Mexico"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:264
+msgid "Saint Pierre and Miquelon"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:267
+msgid "Europe"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:271
+msgid "Albania"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:274
+msgid "Austria"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:277
+msgid "Belgium"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:280
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:283
+msgid "Bulgaria"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:286
+msgid "Belarus"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:289
+msgid "Czech Republic"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:292
+msgid "Croatia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:295
+msgid "Denmark"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:298
+msgid "Estonia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:301
+msgid "Gibraltar"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:307
+msgid "Iceland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:310
+msgid "Latvia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:313
+msgid "Lithuania"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:316
+msgid "Luxembourg"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:319
+msgid "Macedonia, The Republic of"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:322
+msgid "Malta"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:325
+msgid "Moldova"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:328
+msgid "Norway"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:331
+msgid "Poland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:334
+msgid "Portugal"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:337
+msgid "Romania"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:340
+msgid "Russia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:343
+msgid "Ukraine"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:346
+msgid "Slovakia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:349
+msgid "Slovenia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:352
+msgid "Sweden"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:355
+msgid "Switzerland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:358
+msgid "Turkey"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:361
+msgid "Cyprus"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:364
+msgid "Finland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:367
+msgid "France"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:370
+msgid "Germany"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:373
+msgid "Greece"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:376
+msgid "Hungary"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:379
+msgid "Ireland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:382
+msgid "Italy"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:385
+msgid "Netherlands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:388
+msgid "Spain"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:391
+msgid "United Kingdom"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:394
+msgid "Serbia and Montenegro"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:397
+msgid "Africa"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:401
+msgid "Algeria"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:404
+msgid "Angola"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:407
+msgid "Benin"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:410
+msgid "Botswana"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:413
+msgid "Burkina Faso"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:416
+msgid "Burundi"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:419
+msgid "Cape Verde"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:422
+msgid "Chad"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:425
+msgid "Comoros"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:428
+msgid "Cote d'Ivoire"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:431
+msgid "Congo, Democratic Republic of the"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:434
+msgid "Central African Republic"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:437
+msgid "Congo, Republic of the"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:440
+msgid "Cameroon"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:443
+msgid "Djibouti"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:446
+msgid "Egypt"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:449
+msgid "Ethiopia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:452
+msgid "Equatorial Guinea"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:455
+msgid "Gabon"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:458
+msgid "Gambia, The"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:461
+msgid "Ghana"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:464
+msgid "Guinea"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:467
+msgid "Guinea-Bissau"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:470
+msgid "Kenya"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:473
+msgid "Lesotho"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:476
+msgid "Liberia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:479
+msgid "Libya"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:482
+msgid "Madagascar"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:485
+msgid "Malawi"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:488
+msgid "Mali"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:491
+msgid "Mauritania"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:494
+msgid "Mauritius"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:497
+msgid "Morocco"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:500
+msgid "Mozambique"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:503
+msgid "Namibia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:506
+msgid "Nigeria"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:509
+msgid "Niger"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:512
+msgid "Reunion"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:515
+msgid "Rwanda"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:518
+msgid "Saint Helena"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:521
+msgid "Sao Tome and Principe"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:524
+msgid "Senegal"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:527
+msgid "Seychelles"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:530
+msgid "Sierra Leone"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:533
+msgid "Somalia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:536
+msgid "South Africa"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:539
+msgid "South Georgia and the Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:542
+msgid "Sudan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:545
+msgid "Swaziland"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:548
+msgid "Tanzania"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:551
+msgid "Togo"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:554
+msgid "Tunisia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:557
+msgid "Uganda"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:560
+msgid "Western Sahara"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:563
+msgid "Zambia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:566
+msgid "Zimbabwe"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:570
+msgid "Australia and Oceania"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:574
+msgid "Australia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:577
+msgid "Brunei"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:580
+msgid "Cook Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:583
+msgid "Christmas Island"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:586
+msgid "Fiji"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:589
+msgid "French Polynesia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:592
+msgid "Kiribati"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:595
+msgid "Malaysia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:598
+msgid "Marshall Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:601
+msgid "Micronesia, Federated States of"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:604
+msgid "New Caledonia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:607
+msgid "Nauru"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:610
+msgid "New Zealand"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:613
+msgid "NORTHERN MARIANA ISLAND"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:616
+msgid "Indonesia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:619
+msgid "Palau"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:622
+msgid "Papua New Guinea"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:625
+msgid "Philippines"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:628
+msgid "Solomon Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:631
+msgid "Samoa"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:634
+msgid "Tonga"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:637
+msgid "Tuvalu"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:640
+msgid "United States Minor Outlying Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:643
+msgid "Vanuatu"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:646
+msgid "Asia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:650
+msgid "Armenia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:653
+msgid "Azerbaijan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:656
+msgid "Bangladesh"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:659
+msgid "Cambodia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:662
+msgid "China"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:665
+msgid "East Timor"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:668
+msgid "Hong Kong"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:671
+msgid "India"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:674
+msgid "Japan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:677
+msgid "Kazakhstan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:680
+msgid "Korea, South"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:683
+msgid "Korea, North"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:686
+msgid "Kyrgyzstan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:689
+msgid "Laos"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:692
+msgid "Macau"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:695
+msgid "Maldives"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:698
+msgid "Mongolia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:701
+msgid "Myanmar"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:704
+msgid "Nepal"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:707
+msgid "Pakistan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:710
+msgid "Singapore"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:713
+msgid "Sri Lanka"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:716
+msgid "Tajikistan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:719
+msgid "Taiwan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:722
+msgid "Thailand"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:725
+msgid "Turkmenistan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:728
+msgid "Uzbekistan"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:731
+msgid "Vietnam"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:734
+msgid "Central and South America"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:738
+msgid "Anguilla"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:741
+msgid "Antigua and Barbuda"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:744
+msgid "Argentina"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:747
+msgid "Aruba"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:750
+msgid "Barbados"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:753
+msgid "Bahamas, The"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:756
+msgid "Belize"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:759
+msgid "Bermuda"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:762
+msgid "Bolivia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:765
+msgid "Brazil"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:768
+msgid "British Virgin Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:771
+msgid "Cayman Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:774
+msgid "Chile"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:777
+msgid "Costa Rica"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:780
+msgid "Colombia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:783
+msgid "Cuba"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:786
+msgid "Dominica"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:789
+msgid "Dominican Republic"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:792
+msgid "Ecuador"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:795
+msgid "El Salvador"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:798
+msgid "French Guiana"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:801
+msgid "Falkland Islands, Islas Malvinas"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:804
+msgid "Grenada"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:807
+msgid "Guatemala"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:810
+msgid "Guadeloupe"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:813
+msgid "Guyana"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:816
+msgid "Haiti"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:819
+msgid "Honduras"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:822
+msgid "Jamaica"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:825
+msgid "Martinique"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:828
+msgid "Netherlands Antilles"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:831
+msgid "Nicaragua"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:834
+msgid "Panama"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:837
+msgid "Peru"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:840
+msgid "Puerto Rico"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:843
+msgid "Paraguay"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:846
+msgid "Saint Kitts and Nevis"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:849
+msgid "Saint Lucia"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:852
+msgid "Saint Vincent and the Grenadines"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:855
+msgid "Suriname"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:858
+msgid "Trinidad and Tobago"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:861
+msgid "Turks and Caicos Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:864
+msgid "Uruguay"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:867
+msgid "Venezuela"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:870
+msgid "Virgin Islands"
+msgstr ""
+
+#. name
+#: weather_stations.desktop.in:873 weather_stations.desktop.in:877
+msgid "Antarctica"
+msgstr ""